diff --git a/.github/workflows/secrecy-check.yml b/.github/workflows/secrecy-check.yml new file mode 100644 index 00000000..0e241923 --- /dev/null +++ b/.github/workflows/secrecy-check.yml @@ -0,0 +1,77 @@ +name: Secrecy Check + +on: + pull_request: + types: [opened, edited, synchronize] + +jobs: + check-secrecy: + runs-on: ubuntu-latest + steps: + - name: Check PR metadata for confidential terms + env: + PR_BODY: ${{ github.event.pull_request.body }} + PR_TITLE: ${{ github.event.pull_request.title }} + PR_BRANCH: ${{ github.event.pull_request.head.ref }} + run: | + BANNED_TERMS=( + "langfuse" + "insight pipeline" + "gitlab" + "code.mlamp.cn" + "codex.mlamp.cn" + "glab" + "im.deepminer" + "im-test.xming" + ) + + found=0 + + check_field() { + local label="$1" + local text="$2" + local lower_text + lower_text=$(printf '%s' "$text" | tr '[:upper:]' '[:lower:]') + + for term in "${BANNED_TERMS[@]}"; do + lower_term=$(printf '%s' "$term" | tr '[:upper:]' '[:lower:]') + if [[ "$lower_text" == *"$lower_term"* ]]; then + echo "::error::🔴 BLOCKED: '$term' found in $label" + found=1 + fi + done + } + + check_field "branch name" "$PR_BRANCH" + check_field "PR title" "$PR_TITLE" + check_field "PR description" "$PR_BODY" + + if [ "$found" -eq 1 ]; then + echo "::error::PR contains confidential term(s). Remove internal tool references before merging." + exit 1 + fi + + echo "✅ PR metadata secrecy check passed." + + - name: Checkout code + uses: actions/checkout@v4 + + - name: Check source files for confidential terms + run: | + BANNED_TERMS=("langfuse" "insight pipeline" "gitlab" "code.mlamp.cn" "codex.mlamp.cn" "glab" "im.deepminer" "im-test.xming") + found=0 + + for term in "${BANNED_TERMS[@]}"; do + matches=$(grep -ril "$term" firstdata/sources/ 2>/dev/null || true) + if [ -n "$matches" ]; then + echo "::error::🔴 '$term' found in source files: $matches" + found=1 + fi + done + + if [ "$found" -eq 1 ]; then + echo "::error::Source files contain confidential terms." + exit 1 + fi + + echo "✅ Source files secrecy check passed." diff --git a/.github/workflows/validate-sources.yml b/.github/workflows/validate-sources.yml index 891975dc..05225724 100644 --- a/.github/workflows/validate-sources.yml +++ b/.github/workflows/validate-sources.yml @@ -42,29 +42,3 @@ jobs: - name: Check for duplicate IDs run: uv run python scripts/check_ids.py - - claude-review: - needs: validate - if: github.event.sender.type != 'Bot' - continue-on-error: true - runs-on: ubuntu-latest - permissions: - contents: write - pull-requests: write - issues: write - id-token: write - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - with: - fetch-depth: 1 - - - name: Run Claude Code Review - uses: anthropics/claude-code-action@v1 - with: - anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} - claude_args: '--model ${{ secrets.CLAUDE_MODEL }} --max-turns 100 --allowedTools "Bash"' - prompt: '/review Review this PR and post your review as a PR comment using `gh pr comment`. Reply in the same language used in the PR (title, description, and comments).' - env: - ANTHROPIC_BASE_URL: ${{ secrets.ANTHROPIC_BASE_URL }} diff --git a/.gitignore b/.gitignore index 93e6abf9..8bec8ab2 100644 --- a/.gitignore +++ b/.gitignore @@ -65,5 +65,4 @@ batch-run-results*.md logs/ # AI IDE -.claude/ -**/CLAUDE.md \ No newline at end of file +.claude/server.json diff --git a/AGENTS.md b/AGENTS.md index f2799e1b..b8557e12 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -4,7 +4,7 @@ This file is intended for AI coding agents (Claude Code, OpenClaw, Codex, Copilo ## 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. +**FirstData** is the External Facts Context Layer for AI Agents — a structured, authoritative collection of global 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.). @@ -97,10 +97,14 @@ firstdata/sources/ - PubMed → `sources/academic/health/pubmed.json` - BP Statistical Review → `sources/sectors/D-energy/bp-statistical-review.json` -## Do Not Touch +## Do Not Touch (Auto-Generated or Protected) -- `firstdata/indexes/` — auto-generated, do not edit manually -- `firstdata/schemas/datasource-schema.json` — the schema definition itself +The following files are maintained automatically by CI/scripts. **AI agents must NOT modify them manually:** + +- `firstdata/indexes/` — Auto-aggregated from source files by a GitHub Action after PR merge. Never edit these directly. +- `firstdata/schemas/datasource-schema.json` — Schema definition, only modified by maintainers directly on main. + +**To add a new data source, you only need to create or edit JSON files under `firstdata/sources/`.** Everything else (indexes, schema) is handled automatically. ## Security Note for Contributors diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 00000000..b637e2bb --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,173 @@ +# CLAUDE.md + +This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository. + +## Project Overview + +**FirstData** is the External Facts Context Layer for AI Agents — a structured, authoritative collection of global 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.). + +The project exposes a hosted MCP Server at `https://firstdata.deepminer.com.cn/mcp`. + +## Validation + +Dependencies are managed with [uv](https://docs.astral.sh/uv/). Run the following before submitting: + +```bash +# Install dependencies (first time only) +uv sync + +# Run all validation checks +make check + +# Or run checks individually: +make validate # Validate JSON schema compliance +make check-ids # Check for duplicate IDs +make check-domains # Check domain naming consistency +``` + +A GitHub Action runs these checks automatically on every PR. PRs that fail validation cannot be merged. + +## Repository Structure + +``` +firstdata/ +├── schemas/datasource-schema.json # JSON Schema v2.0.0 (the source of truth for data format) +├── sources/ # Individual data source JSON files, organized by category +│ ├── china/ # Chinese government & institutions +│ ├── international/ # International organizations (by domain) +│ ├── countries/ # National official sources (by continent/country) +│ ├── academic/ # Academic research databases (by discipline) +│ └── sectors/ # Industry sources (by ISIC Rev.4 code) +└── indexes/ # Auto-generated aggregated indexes (do not edit manually) + ├── all-sources.json + ├── by-authority.json + ├── by-domain.json + ├── by-region.json + └── statistics.json +``` + +## 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. **MUST use lowercase** (e.g., `"economics"` not `"Economics"`). See [DOMAINS.md](firstdata/schemas/DOMAINS.md) for standard domain list | +| `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 (Auto-Generated or Protected) + +The following files are maintained automatically by CI/scripts. **AI agents must NOT modify them manually:** + +- `firstdata/indexes/` — Auto-aggregated from source files by a GitHub Action after PR merge. Never edit these directly. +- `firstdata/schemas/datasource-schema.json` — Schema definition, only modified by maintainers directly on main. + +**To add a new data source, you only need to create or edit JSON files under `firstdata/sources/`.** Everything else (indexes, schema) is handled automatically. + +## 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` +- [ ] `domains` uses **lowercase** (e.g., `"economics"` not `"Economics"`) - see [DOMAINS.md](firstdata/schemas/DOMAINS.md) +- [ ] `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 +- [ ] Run `make check` to validate all checks pass + +## 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). diff --git a/README.en.md b/README.en.md index 82a16637..e1c1bf35 100644 --- a/README.en.md +++ b/README.en.md @@ -4,13 +4,16 @@ English | **[中文](README.md)** | **[日本語](README.ja.md)** --- -**The World's Most Comprehensive, Authoritative, and Structured Open Data Source Repository** +**The External Facts Context Layer for AI Agents** + +> **Agent First**: FirstData is designed with AI Agents as the primary user. Agents can automatically register, activate, and configure MCP via standardized Skills — zero human intervention required. [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Data Sources](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/MLT-OSS/FirstData/refs/heads/main/assets/badges/sources-count.json)](firstdata/indexes/statistics.json) [![Progress](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/MLT-OSS/FirstData/refs/heads/main/assets/badges/progress.json)](firstdata/indexes/statistics.json) -[![Authority](https://img.shields.io/badge/Authority-Government%20%26%20International%20First-brightgreen.svg)](#) [![MCP Server](https://img.shields.io/badge/MCP-AI%20Smart%20Search-purple.svg)](https://firstdata.deepminer.com.cn/) +[![Skill](https://img.shields.io/badge/Skill-Agent%20First-blue.svg)](skills/firstdata/SKILL.md) +[![ClawHub](https://img.shields.io/badge/ClawHub-firstdata-orange.svg)](https://clawhub.ai/ningzimu/firstdata) --- @@ -24,7 +27,7 @@ When noise, patchwork content, and hallucinations become the default background, ### Our Mission: Building the Trusted Foundation for the AI Era -This project aims to build a **global, authoritative, and structured Primary Sources knowledge base**. +This project aims to build a **global, authoritative, and structured External Facts Context Layer for AI Agents** built on primary sources. We systematically discover and aggregate high-trust sources across domains—covering scientific research, government disclosures, laws and regulations, corporate filings and financial reports, standards and authoritative industry materials—**transforming scattered, non-standard, difficult-to-reuse original content into traceable, verifiable, and citable "Core Facts"**, while preserving complete evidence chains and version history, ensuring that every conclusion can be traced "back to the source". @@ -60,7 +63,8 @@ We systematically discover and aggregate high-trust sources across domains—cov | 📊 **Structured Metadata System** | Complete metadata standards (access URLs, API interfaces, authority levels, update frequency, data content, etc.), not just links | Machine-readable, programmable access, supports automated evidence chain construction | | ⭐ **Authority Level Classification** | Six authority levels: government, international organizations, research institutions, market, commercial, and others | Scientifically assess data source credibility, provide quality filtering basis for AI | | 🤖 **AI Smart Search** | LLM-driven data source query Agent that understands complex multi-dimensional queries | Get authoritative data sources through natural language, no manual filtering needed | -| 🔌 **MCP Protocol Integration** | Provides standard MCP Server, integrable with Claude Desktop, Cline, and other AI applications | Enable any AI application to access the authoritative data source knowledge base | +| 🔌 **MCP Protocol Integration** | Provides standard MCP Server, integrable with Claude Desktop, Cline, and other AI applications | Enable any AI application to access the authoritative external facts context layer | +| 🤖 **Agent Skill Distribution** | Standardized Skill definition — Agents can auto-register tokens, auto-configure MCP, zero human intervention | Agent First — Let Agents access authoritative data like a built-in capability | | 🌍 **Bilingual Support** | All metadata provided in both Chinese and English | Connect global data ecosystems, break language barriers | | 🔍 **100% Verification** | Every URL tested, every data source with complete documentation, every authority level with justification | Ensure data sources are genuinely available, avoid broken links and hallucinated citations | @@ -139,7 +143,7 @@ Each data source contains **structured metadata** that supports machine-readable --- -We've built a structured knowledge base of authoritative data sources, each with complete metadata, access paths, and authority identifiers. But for most users, the real challenge is: How to quickly find the most suitable one among massive data sources? Once you find the data source website, how to accurately locate the target data on complex official platforms? How to seamlessly integrate all this into your daily AI workflow? +We've built a structured external facts context layer of authoritative data sources, each with complete metadata, access paths, and authority identifiers. But for most users, the real challenge is: How to quickly find the most suitable one among massive data sources? Once you find the data source website, how to accurately locate the target data on complex official platforms? How to seamlessly integrate all this into your daily AI workflow? **FirstData MCP** is built for this purpose—transforming a static data source knowledge base into a dynamic intelligent navigation system, making authoritative data accessible to everyone. @@ -487,366 +491,35 @@ All Conclusions Traceable to Original Documents for Verification ## 🚀 Quick Start -### Integrate FirstData MCP - -**Configure FirstData MCP to your AI application for intelligent search of authoritative data sources and operation manual navigation** - -Supports multiple platforms: Claude Desktop, Cline (VS Code), Zed, Cursor, and all AI applications compatible with MCP protocol. - ---- - -#### Configuration Guide: Choose Based on Your Platform - -> **📝 Important Note** -> -> **Apply for API Key (Required)**: Before configuring the MCP server, please visit [FirstData API Application](https://firstdata.deepminer.com.cn/) to apply for a free API key. Replace all `` in the configuration examples below with your actual API key. +FirstData offers two onboarding paths: **AI Agent auto-onboarding** (recommended) and **manual MCP configuration**. --- -
-Claude Desktop - -**Manual JSON Configuration** - -1. **Find Configuration File**: - - - macOS: `~/Library/Application Support/Claude/claude_desktop_config.json` - - Windows: `%APPDATA%\Claude\claude_desktop_config.json` - - Linux: `~/.config/Claude/claude_desktop_config.json` -2. **Add Configuration**: - - ```json - { - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } - } - ``` -3. **Restart Claude Desktop** to apply configuration - -
- -
-Cline (VS Code Extension) - -1. **Open Cline MCP Settings**: - - - Open Cline in VS Code - - Click settings icon → **Advanced MCP settings** - - Or directly edit `cline_mcp_settings.json` -2. **Add Configuration**: - - ```json - { - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } - } - ``` - - > **Tip**: The `autoApprove` field allows commonly used read-only tools to execute automatically without confirmation each time. - > -3. **After saving configuration**, Cline will automatically load the MCP server - -Reference: [Cline MCP Configuration Docs](https://docs.cline.bot/mcp/configuring-mcp-servers) - -
- -
-Zed Editor - -1. **Create Configuration File**: - - - Create `.zed/settings.json` in project root directory - - Or use global configuration: `~/.config/zed/settings.json` -2. **Add Configuration**: - - ```json - { - "context_servers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - }, - "enabled": true - } - } - } - ``` - - > **Note**: Zed uses `context_servers` instead of `mcpServers` - > -3. **Reload Zed** or restart project to apply configuration - -
- -
-Cursor Editor - -1. **Open Cursor Settings**: - - - `Cmd/Ctrl + Shift + P` → Search "MCP Settings" - - Or go to `Cursor Settings` → `MCP` → `New MCP Server` -2. **Add Configuration**: - - ```json - { - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } - } - ``` -3. **Restart Cursor** to load MCP server - -
- -
-Copilot / VS Code +### Path 1: AI Agent Auto-Onboarding (Recommended) -**Recommended Method: HTTP Server** - -1. Reference [VS Code MCP Configuration Guide](https://code.visualstudio.com/docs/copilot/chat/mcp-servers#_add-an-mcp-server) -2. Add configuration to VS Code MCP settings: - - ```json - { - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } - } - ``` - -**Using VS Code CLI:** +If you're using an AI Agent that supports Skills (e.g., Claude Code + OpenClaw), install the FirstData Skill with one command: ```bash -code --add-mcp '{"name":"firstdata","type":"streamable-http","url":"https://firstdata.deepminer.com.cn/mcp","headers":{"Authorization":"Bearer "}}' -``` - -
- -
-Copilot CLI - -Use HTTP server method to connect: - -```json - { - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } - } -``` - -
- -
-Windsurf - -1. **Open Windsurf MCP Configuration**: - - - Reference [Windsurf MCP Configuration Guide](https://docs.windsurf.com/windsurf/cascade/mcp#mcp-config-json) -2. **Add Configuration**: - - ```json - { - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } - } - ``` - -
- -
-JetBrains AI Assistant & Junie - -1. **Open JetBrains IDE Settings**: - - - Go to `Settings | Tools | AI Assistant | Model Context Protocol (MCP)` - - Or `Settings | Tools | Junie | MCP Settings` -2. **Click `Add` and add the following configuration**: - - ```json - { - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } - } - ``` - -
- -
-Warp Terminal - -1. **Open Warp Settings**: - - - Go to `Settings | AI | Manage MCP Servers` -2. **Click `+ Add` to add MCP server**: - - ```json - { - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } - } - ``` - -Reference: [Warp MCP Configuration Docs](https://docs.warp.dev/knowledge-and-collaboration/mcp#adding-an-mcp-server) - -
- -
-Gemini CLI - -Reference [Gemini CLI MCP Configuration Guide](https://github.com/google-gemini/gemini-cli/blob/main/docs/tools/mcp-server.md), use the following configuration: - -```json - { - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } - } +clawhub install firstdata ``` -
- -
-Gemini Code Assist - -Reference [Gemini Code Assist MCP Configuration Guide](https://cloud.google.com/gemini/docs/codeassist/use-agentic-chat-pair-programmer#configure-mcp-servers), use the following configuration: +Once installed, the Agent can automatically register, activate, and configure MCP — no human action needed. -```json -{ - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } -} -``` +> Skill definition: [`skills/firstdata/SKILL.md`](skills/firstdata/SKILL.md) | ClawHub page: [clawhub.ai/ningzimu/firstdata](https://clawhub.ai/ningzimu/firstdata) -
- -
-Factory CLI (Droid) - -Reference [Factory CLI MCP Configuration Docs](https://docs.factory.ai/cli/configuration/mcp), use the following configuration: - -```json -{ - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } -} -``` - -
- -
-Qoder & Qoder CLI - -1. Open **Qoder Settings** -2. Go to `MCP Server` → `+ Add` -3. Add the following configuration: - ```json - { - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } - } - ``` - -Reference: [Qoder MCP Configuration Docs](https://docs.qoder.com/user-guide/chat/model-context-protocol) - -
+--- -
-Kiro +### Path 2: Manual MCP Configuration -**Method 1: Via Kiro Settings** +For manual setup. Supports Claude Desktop, Cline, Cursor, Zed, and all MCP-compatible AI applications. -1. Open **Kiro Settings** -2. Go to `Configure MCP` → `Open Workspace or User MCP Config` +#### Step 1: Get an API Key -**Method 2: Via Activity Bar** +Visit [FirstData API Application](https://firstdata.deepminer.com.cn/) to apply for a free API Key. -1. Select `Kiro` from IDE **Activity Bar** -2. Go to `MCP Servers` → `Click Open MCP Config` +#### Step 2: Add MCP Configuration -**Configuration Content:** +The core configuration is the same for all platforms. Add the following JSON to your platform's MCP config file: ```json { @@ -862,96 +535,32 @@ Reference: [Qoder MCP Configuration Docs](https://docs.qoder.com/user-guide/chat } ``` -
+> **Note**: Zed uses `context_servers` instead of `mcpServers` as the top-level key. -
-OpenCode - -1. **Create or edit configuration file**: - - - Path: `~/.config/opencode/opencode.json` - - Create it if the file doesn't exist -2. **Add the following configuration**: - - ```json - { - "$schema": "https://opencode.ai/config.json", - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } - } - ``` - -Reference: [OpenCode MCP Configuration Docs](https://opencode.ai/docs/mcp-servers) - -
+#### Step 3: Find Your Platform's Config File
-Visual Studio - -Reference Visual Studio MCP configuration documentation, use the following configuration: - -```json -{ - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } -} -``` - -
- -
-Codex - -Reference [Codex MCP Configuration Guide](https://github.com/openai/codex/blob/main/docs/advanced.md#model-context-protocol-mcp), use the following configuration: - -```json -{ - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } -} -``` - -
- -
-Amp - -Reference [Amp MCP Configuration Docs](https://ampcode.com/manual#mcp), use the following configuration: - -```json -{ - "mcpServers": { - "firstdata": { - "type": "http", - "url": "http://localhost:8001/mcp", - "headers": { - "Authorization": "Bearer your_mcp_api_key_here" - } - } - } -} -``` +Platform config file locations + +| Platform | Config File Location | Reference | +|----------|---------------------|-----------| +| **Claude Desktop** | macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
Windows: `%APPDATA%\Claude\claude_desktop_config.json`
Linux: `~/.config/Claude/claude_desktop_config.json` | — | +| **Cline (VS Code)** | Cline → Settings → Advanced MCP settings, or `cline_mcp_settings.json` | [Docs](https://docs.cline.bot/mcp/configuring-mcp-servers) | +| **Cursor** | `Cmd/Ctrl+Shift+P` → "MCP Settings", or Cursor Settings → MCP | — | +| **Copilot / VS Code** | VS Code MCP settings, or CLI: `code --add-mcp '{...}'` | [Docs](https://code.visualstudio.com/docs/copilot/chat/mcp-servers#_add-an-mcp-server) | +| **Zed** | `.zed/settings.json` or `~/.config/zed/settings.json` (uses `context_servers`) | — | +| **JetBrains** | Settings → Tools → AI Assistant → MCP, or Junie → MCP Settings | — | +| **Windsurf** | Windsurf MCP config | [Docs](https://docs.windsurf.com/windsurf/cascade/mcp#mcp-config-json) | +| **Warp** | Settings → AI → Manage MCP Servers | [Docs](https://docs.warp.dev/knowledge-and-collaboration/mcp#adding-an-mcp-server) | +| **Gemini CLI** | Gemini CLI MCP config | [Docs](https://github.com/google-gemini/gemini-cli/blob/main/docs/tools/mcp-server.md) | +| **Gemini Code Assist** | Gemini Code Assist MCP config | [Docs](https://cloud.google.com/gemini/docs/codeassist/use-agentic-chat-pair-programmer#configure-mcp-servers) | +| **Factory CLI (Droid)** | Factory CLI config | [Docs](https://docs.factory.ai/cli/configuration/mcp) | +| **Qoder** | Qoder Settings → MCP Server → + Add | [Docs](https://docs.qoder.com/user-guide/chat/model-context-protocol) | +| **Kiro** | Kiro Settings → Configure MCP, or Activity Bar → MCP Servers | — | +| **OpenCode** | `~/.config/opencode/opencode.json` | [Docs](https://opencode.ai/docs/mcp-servers) | +| **Visual Studio** | Visual Studio MCP config | — | +| **Codex** | Codex MCP config | [Docs](https://github.com/openai/codex/blob/main/docs/advanced.md#model-context-protocol-mcp) | +| **Amp** | Amp MCP config | [Docs](https://ampcode.com/manual#mcp) |
diff --git a/README.ja.md b/README.ja.md index ed608d02..ca3af080 100644 --- a/README.ja.md +++ b/README.ja.md @@ -4,13 +4,16 @@ --- -**世界最も包括的・権威的・構造化されたオープンデータソースリポジトリ** +**AI Agentのための外部ファクト・コンテキスト・レイヤー(External Facts Context Layer)** + +> **Agent First**:FirstData は AI Agent を第一優先ユーザーとして設計されています。Agent は標準化された Skill を通じて登録・アクティベーション・MCP 設定を自動で完了でき、人手を介する必要はありません。 [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Data Sources](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/MLT-OSS/FirstData/refs/heads/main/assets/badges/sources-count.json)](firstdata/indexes/statistics.json) [![Progress](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/MLT-OSS/FirstData/refs/heads/main/assets/badges/progress.json)](firstdata/indexes/statistics.json) -[![Authority](https://img.shields.io/badge/Authority-Government%20%26%20International%20First-brightgreen.svg)](#) [![MCP Server](https://img.shields.io/badge/MCP-AI%20Smart%20Search-purple.svg)](https://firstdata.deepminer.com.cn/) +[![Skill](https://img.shields.io/badge/Skill-Agent%20First-blue.svg)](skills/firstdata/SKILL.md) +[![ClawHub](https://img.shields.io/badge/ClawHub-firstdata-orange.svg)](https://clawhub.ai/ningzimu/firstdata) --- @@ -24,7 +27,7 @@ ### 私たちのミッション:AI時代の信頼できる基盤を構築する -本プロジェクトは、**グローバルで権威ある構造化された一次情報ソースのナレッジベース**を構築することを目指しています。 +本プロジェクトは、**AI Agentのための、グローバルで権威性のある構造化された外部ファクト・コンテキスト・レイヤー(External Facts Context Layer)**の構築を目指しています。 科学研究、政府開示、法律・規制、企業開示・財務報告、標準・権威ある業界資料など、あらゆる分野にわたる高信頼性ソースを体系的に発見・集約し、**散在する非標準的で再利用困難なオリジナルコンテンツを、追跡可能・検証可能・引用可能な「コアファクト」に変換します**。完全な証拠チェーンとバージョン履歴を保持し、すべての結論を「原典に立ち返る」ことができます。 @@ -60,7 +63,8 @@ | 📊 **構造化メタデータシステム** | 完全なメタデータ標準(アクセスURL、APIインターフェース、権威レベル、更新頻度、データコンテンツ等)、単なるリンクではない | 機械可読・プログラマティックアクセス、自動化された証拠チェーン構築をサポート | | ⭐ **権威レベル分類** | 政府、国際機関、研究機関、市場、商業、その他の6つの権威レベル | データソースの信頼性を科学的に評価し、AIの品質フィルタリング基準を提供 | | 🤖 **AIスマート検索** | 複雑な多次元クエリを理解するLLM駆動のデータソースクエリエージェント | 自然言語で権威あるデータソースを取得し、手動フィルタリング不要 | -| 🔌 **MCPプロトコル統合** | 標準MCPサーバーを提供、Claude Desktop、Clineなどのアプリケーションと統合可能 | 任意のAIアプリケーションが権威あるデータソースのナレッジベースにアクセス可能 | +| 🔌 **MCPプロトコル統合** | 標準MCPサーバーを提供、Claude Desktop、Clineなどのアプリケーションと統合可能 | 任意のAIアプリケーションが権威ある外部ファクト・コンテキスト・レイヤーにアクセス可能 | +| 🤖 **Agent Skill 配信** | 標準化された Skill 定義 — Agent が自動でトークン登録・MCP設定を完了、人手不要 | Agent First — Agent が組み込み機能のように権威データにアクセス | | 🌍 **バイリンガルサポート** | すべてのメタデータを中国語と英語で提供 | グローバルなデータエコシステムを繋ぎ、言語の壁を打ち破る | | 🔍 **100%検証** | すべてのURLをテスト済み、すべてのデータソースに完全な文書、すべての権威レベルに根拠あり | データソースが本当に利用可能であることを確保し、リンク切れや幻覚的な引用を回避 | @@ -139,9 +143,9 @@ --- -権威あるデータソースの構造化されたナレッジベースを構築しました。各データソースには完全なメタデータ、アクセスパス、権威識別子が含まれています。しかし多くのユーザーにとって、実際の課題は次のとおりです:膨大なデータソースの中から最適なものを素早く見つけるにはどうすればよいか?データソースのウェブサイトを見つけた後、複雑な公式プラットフォーム上でどのように目的のデータを正確に見つけるか?そしてこれらすべてを日常のAIワークフローにシームレスに統合するにはどうすればよいか? +権威あるデータソースの構造化された外部ファクト・コンテキスト・レイヤーを構築しました。各データソースには完全なメタデータ、アクセスパス、権威識別子が含まれています。しかし多くのユーザーにとって、実際の課題は次のとおりです:膨大なデータソースの中から最適なものを素早く見つけるにはどうすればよいか?データソースのウェブサイトを見つけた後、複雑な公式プラットフォーム上でどのように目的のデータを正確に見つけるか?そしてこれらすべてを日常のAIワークフローにシームレスに統合するにはどうすればよいか? -**FirstData MCP**はまさにこの目的のために作られました。静的なデータソースのナレッジベースをダイナミックなインテリジェントナビゲーションシステムに変え、権威あるデータを誰もがアクセスできるようにします。 +**FirstData MCP**はまさにこの目的のために作られました。静的な外部ファクト・コンテキスト・レイヤーをダイナミックなインテリジェントナビゲーションシステムに変え、権威あるデータを誰もがアクセスできるようにします。 --- @@ -487,366 +491,35 @@ MCPスマート検索が権威あるデータソースを推奨(HKEX) ## 🚀 クイックスタート -### FirstData MCPの統合 - -**FirstData MCPをAIアプリケーションに設定し、権威あるデータソースのインテリジェント検索と操作マニュアルナビゲーションを利用しましょう** - -複数のプラットフォームをサポート:Claude Desktop、Cline(VS Code)、Zed、Cursor、およびMCPプロトコルと互換性のあるすべてのAIアプリケーション。 - ---- - -#### 設定ガイド:お使いのプラットフォームに応じて選択 - -> **📝 重要なメモ** -> -> **APIキーの申請(必須)**: MCPサーバーを設定する前に、[FirstData API申請](https://firstdata.deepminer.com.cn/) にアクセスして無料のAPIキーを申請してください。以下の設定例の `` をすべて実際のAPIキーに置き換えてください。 +FirstData は2つのオンボーディングパスを提供します:**AI Agent 自動オンボーディング**(推奨)と**手動 MCP 設定**。 --- -
-Claude Desktop - -**手動JSON設定** - -1. **設定ファイルの場所を確認**: - - - macOS: `~/Library/Application Support/Claude/claude_desktop_config.json` - - Windows: `%APPDATA%\Claude\claude_desktop_config.json` - - Linux: `~/.config/Claude/claude_desktop_config.json` -2. **設定を追加**: - - ```json - { - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } - } - ``` -3. **Claude Desktopを再起動**して設定を適用 - -
- -
-Cline (VS Code拡張機能) - -1. **Cline MCP設定を開く**: - - - VS CodeでClineを開く - - 設定アイコンをクリック → **高度なMCP設定** - - または直接 `cline_mcp_settings.json` を編集 -2. **設定を追加**: - - ```json - { - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } - } - ``` - - > **ヒント**: `autoApprove` フィールドを使用すると、よく使われる読み取り専用ツールが毎回確認なしに自動実行されます。 - > -3. **設定を保存後**、ClineがMCPサーバーを自動的にロード - -参考: [Cline MCP設定ドキュメント](https://docs.cline.bot/mcp/configuring-mcp-servers) - -
- -
-Zed Editor - -1. **設定ファイルを作成**: - - - プロジェクトのルートディレクトリに `.zed/settings.json` を作成 - - またはグローバル設定を使用: `~/.config/zed/settings.json` -2. **設定を追加**: - - ```json - { - "context_servers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - }, - "enabled": true - } - } - } - ``` - - > **注意**: Zedは `mcpServers` の代わりに `context_servers` を使用 - > -3. **Zedをリロード**またはプロジェクトを再起動して設定を適用 - -
- -
-Cursor Editor - -1. **Cursor設定を開く**: - - - `Cmd/Ctrl + Shift + P` → "MCP Settings"を検索 - - または `Cursor Settings` → `MCP` → `New MCP Server` に移動 -2. **設定を追加**: - - ```json - { - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } - } - ``` -3. **Cursorを再起動**してMCPサーバーをロード - -
- -
-Copilot / VS Code +### パス1:AI Agent 自動オンボーディング(推奨) -**推奨方法: HTTPサーバー** - -1. [VS Code MCP設定ガイド](https://code.visualstudio.com/docs/copilot/chat/mcp-servers#_add-an-mcp-server) を参照 -2. VS Code MCP設定に以下の設定を追加: - - ```json - { - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } - } - ``` - -**VS Code CLIを使用:** +Skill をサポートする AI Agent(Claude Code + OpenClaw など)を使用している場合、ワンコマンドで FirstData Skill をインストールできます: ```bash -code --add-mcp '{"name":"firstdata","type":"streamable-http","url":"https://firstdata.deepminer.com.cn/mcp","headers":{"Authorization":"Bearer "}}' -``` - -
- -
-Copilot CLI - -HTTPサーバー方式を使用して接続: - -```json - { - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } - } -``` - -
- -
-Windsurf - -1. **Windsurf MCP設定を開く**: - - - [Windsurf MCP設定ガイド](https://docs.windsurf.com/windsurf/cascade/mcp#mcp-config-json) を参照 -2. **設定を追加**: - - ```json - { - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } - } - ``` - -
- -
-JetBrains AI Assistant & Junie - -1. **JetBrains IDE設定を開く**: - - - `Settings | Tools | AI Assistant | Model Context Protocol (MCP)` に移動 - - または `Settings | Tools | Junie | MCP Settings` -2. **`Add` をクリックして以下の設定を追加**: - - ```json - { - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } - } - ``` - -
- -
-Warp Terminal - -1. **Warp設定を開く**: - - - `Settings | AI | Manage MCP Servers` に移動 -2. **`+ Add` をクリックしてMCPサーバーを追加**: - - ```json - { - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } - } - ``` - -参考: [Warp MCP設定ドキュメント](https://docs.warp.dev/knowledge-and-collaboration/mcp#adding-an-mcp-server) - -
- -
-Gemini CLI - -[Gemini CLI MCP設定ガイド](https://github.com/google-gemini/gemini-cli/blob/main/docs/tools/mcp-server.md) を参照し、以下の設定を使用: - -```json - { - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } - } +clawhub install firstdata ``` -
- -
-Gemini Code Assist - -[Gemini Code Assist MCP設定ガイド](https://cloud.google.com/gemini/docs/codeassist/use-agentic-chat-pair-programmer#configure-mcp-servers) を参照し、以下の設定を使用: +インストール後、Agent が登録・アクティベーション・MCP 設定を**自動で完了**します。人手は不要です。 -```json -{ - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } -} -``` +> Skill 定義ファイル:[`skills/firstdata/SKILL.md`](skills/firstdata/SKILL.md) | ClawHub ページ:[clawhub.ai/ningzimu/firstdata](https://clawhub.ai/ningzimu/firstdata) -
- -
-Factory CLI (Droid) - -[Factory CLI MCP設定ドキュメント](https://docs.factory.ai/cli/configuration/mcp) を参照し、以下の設定を使用: - -```json -{ - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } -} -``` - -
- -
-Qoder & Qoder CLI - -1. **Qoder設定**を開く -2. `MCP Server` → `+ Add` に移動 -3. 以下の設定を追加: - ```json - { - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } - } - ``` - -参考: [Qoder MCP設定ドキュメント](https://docs.qoder.com/user-guide/chat/model-context-protocol) - -
+--- -
-Kiro +### パス2:手動 MCP 設定 -**方法1:Kiro設定経由** +手動設定が必要な場合。Claude Desktop、Cline、Cursor、Zed など、MCP 対応のすべての AI アプリケーションをサポートします。 -1. **Kiro設定**を開く -2. `Configure MCP` → `Open Workspace or User MCP Config` に移動 +#### ステップ1:API キーの取得 -**方法2:アクティビティバー経由** +[FirstData API 申請](https://firstdata.deepminer.com.cn/) にアクセスして無料の API キーを申請してください。 -1. IDE**アクティビティバー**から `Kiro` を選択 -2. `MCP Servers` → `Click Open MCP Config` に移動 +#### ステップ2:MCP 設定の追加 -**設定内容:** +すべてのプラットフォームで共通の設定です。以下の JSON をお使いのプラットフォームの MCP 設定ファイルに追加してください: ```json { @@ -862,96 +535,32 @@ HTTPサーバー方式を使用して接続: } ``` -
+> **注意**:Zed はトップレベルキーとして `mcpServers` ではなく `context_servers` を使用します。 -
-OpenCode - -1. **設定ファイルを作成または編集**: - - - パス: `~/.config/opencode/opencode.json` - - ファイルが存在しない場合は作成 -2. **以下の設定を追加**: - - ```json - { - "$schema": "https://opencode.ai/config.json", - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } - } - ``` - -参考: [OpenCode MCP設定ドキュメント](https://opencode.ai/docs/mcp-servers) - -
+#### ステップ3:プラットフォームの設定ファイルを見つける
-Visual Studio - -Visual Studio MCP設定ドキュメントを参照し、以下の設定を使用: - -```json -{ - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } -} -``` - -
- -
-Codex - -[Codex MCP設定ガイド](https://github.com/openai/codex/blob/main/docs/advanced.md#model-context-protocol-mcp) を参照し、以下の設定を使用: - -```json -{ - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } -} -``` - -
- -
-Amp - -[Amp MCP設定ドキュメント](https://ampcode.com/manual#mcp) を参照し、以下の設定を使用: - -```json -{ - "mcpServers": { - "firstdata": { - "type": "http", - "url": "http://localhost:8001/mcp", - "headers": { - "Authorization": "Bearer your_mcp_api_key_here" - } - } - } -} -``` +各プラットフォームの設定ファイル位置 + +| プラットフォーム | 設定ファイルの場所 | 参考ドキュメント | +|----------|---------------------|-----------| +| **Claude Desktop** | macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
Windows: `%APPDATA%\Claude\claude_desktop_config.json`
Linux: `~/.config/Claude/claude_desktop_config.json` | — | +| **Cline (VS Code)** | Cline → 設定 → Advanced MCP settings、または `cline_mcp_settings.json` | [ドキュメント](https://docs.cline.bot/mcp/configuring-mcp-servers) | +| **Cursor** | `Cmd/Ctrl+Shift+P` → "MCP Settings"、または Cursor Settings → MCP | — | +| **Copilot / VS Code** | VS Code MCP 設定、または CLI:`code --add-mcp '{...}'` | [ドキュメント](https://code.visualstudio.com/docs/copilot/chat/mcp-servers#_add-an-mcp-server) | +| **Zed** | `.zed/settings.json` または `~/.config/zed/settings.json`(`context_servers` を使用) | — | +| **JetBrains** | Settings → Tools → AI Assistant → MCP、または Junie → MCP Settings | — | +| **Windsurf** | Windsurf MCP 設定 | [ドキュメント](https://docs.windsurf.com/windsurf/cascade/mcp#mcp-config-json) | +| **Warp** | Settings → AI → Manage MCP Servers | [ドキュメント](https://docs.warp.dev/knowledge-and-collaboration/mcp#adding-an-mcp-server) | +| **Gemini CLI** | Gemini CLI MCP 設定 | [ドキュメント](https://github.com/google-gemini/gemini-cli/blob/main/docs/tools/mcp-server.md) | +| **Gemini Code Assist** | Gemini Code Assist MCP 設定 | [ドキュメント](https://cloud.google.com/gemini/docs/codeassist/use-agentic-chat-pair-programmer#configure-mcp-servers) | +| **Factory CLI (Droid)** | Factory CLI 設定 | [ドキュメント](https://docs.factory.ai/cli/configuration/mcp) | +| **Qoder** | Qoder Settings → MCP Server → + Add | [ドキュメント](https://docs.qoder.com/user-guide/chat/model-context-protocol) | +| **Kiro** | Kiro Settings → Configure MCP、または Activity Bar → MCP Servers | — | +| **OpenCode** | `~/.config/opencode/opencode.json` | [ドキュメント](https://opencode.ai/docs/mcp-servers) | +| **Visual Studio** | Visual Studio MCP 設定 | — | +| **Codex** | Codex MCP 設定 | [ドキュメント](https://github.com/openai/codex/blob/main/docs/advanced.md#model-context-protocol-mcp) | +| **Amp** | Amp MCP 設定 | [ドキュメント](https://ampcode.com/manual#mcp) |
diff --git a/README.md b/README.md index 77152893..de96c5aa 100644 --- a/README.md +++ b/README.md @@ -4,15 +4,18 @@ --- -**全球最全面、最权威、最结构化的开源数据源知识库** +**面向 AI Agent 的外部事实上下文层 — Purpose-built · Authoritative · Structured** -**The World's Most Comprehensive, Authoritative, and Structured Open Data Source Repository** +**The External Facts Context Layer for AI Agents** + +> **Agent First**:FirstData 以 AI Agent 为第一优先用户设计。Agent 可通过标准化 Skill 自动完成注册、激活和 MCP 配置,零人工介入即可接入权威外部事实上下文。 [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Data Sources](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/MLT-OSS/FirstData/refs/heads/main/assets/badges/sources-count.json)](firstdata/indexes/statistics.json) [![Progress](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/MLT-OSS/FirstData/refs/heads/main/assets/badges/progress.json)](firstdata/indexes/statistics.json) -[![Authority](https://img.shields.io/badge/Authority-Government%20%26%20International%20First-brightgreen.svg)](#) [![MCP Server](https://img.shields.io/badge/MCP-AI%20Smart%20Search-purple.svg)](https://firstdata.deepminer.com.cn/) +[![Skill](https://img.shields.io/badge/Skill-Agent%20First-blue.svg)](skills/firstdata/SKILL.md) +[![ClawHub](https://img.shields.io/badge/ClawHub-firstdata-orange.svg)](https://clawhub.ai/ningzimu/firstdata) --- @@ -26,7 +29,7 @@ ### 我们的目标:构建AI时代的可信底座 -本项目旨在构建一个**面向全球的、权威的、结构化的 Primary Sources 知识库**。 +本项目旨在构建一个**面向 AI Agent 的、全球的、权威的、结构化的外部事实上下文层(External Facts Context Layer)**。 我们系统性发掘并聚合跨领域高可信信源——覆盖科研学术、政务公开、法律法规、公司披露与财报、标准规范与行业权威资料等——**将分散、非标、难复用的原始内容,转化为可追溯、可验证、可引用的"核心事实(Core Facts)"**,并保留完整证据链与版本历史,确保每一条结论都能"回到原文"。 @@ -62,7 +65,8 @@ | 📊**结构化元数据体系** | 完整元数据标准(访问URL、API接口、权威等级、更新频率、数据内容等),不只是链接 | 机器可读、可编程访问,支持自动化证据链构建 | | ⭐**权威等级分类** | 政府、国际组织、研究机构、市场、商业等六类权威等级 | 科学评估数据源可信度,为AI提供质量过滤依据 | | 🤖**AI智能搜索** | 基于LLM驱动的数据源查询Agent,理解复杂多维度查询 | 自然语言即可获取权威数据源,无需人工筛选 | -| 🔌**MCP协议集成** | 提供标准MCP Server,可集成到Claude Desktop、Cline等AI应用 | 让任何AI应用都能访问权威数据源知识库 | +| 🔌**MCP协议集成** | 提供标准MCP Server,可集成到Claude Desktop、Cline等AI应用 | 让任何AI应用都能访问权威外部事实上下文层 | +| 🤖**Agent Skill 分发** | 标准化 Skill 定义,Agent 可自动注册 token、自动配置 MCP,零人工介入 | Agent First — 让 Agent 像调用内置能力一样接入权威数据 | | 🌍**中英双语支持** | 所有元数据提供中英文版本 | 连接全球数据生态,打破语言壁垒 | | 🔍**100%验证** | 每个URL经过测试,每个数据源有完整文档,每个权威等级有依据 | 确保数据源真实可用,避免断链和幻觉引用 | @@ -141,9 +145,9 @@ --- -我们构建了权威数据源的结构化知识库,每个数据源都有完整的元数据、访问路径和权威性标识。但对于大多数用户来说,真正的挑战在于:如何在海量数据源中快速找到最合适的那一个?找到了数据源网站,如何在复杂的官方平台中准确定位目标数据?如何将这一切无缝集成到日常的 AI 工作流中? +我们构建了权威数据源的结构化外部事实上下文层,每个数据源都有完整的元数据、访问路径和权威性标识。但对于大多数用户来说,真正的挑战在于:如何在海量数据源中快速找到最合适的那一个?找到了数据源网站,如何在复杂的官方平台中准确定位目标数据?如何将这一切无缝集成到日常的 AI 工作流中? -**FirstData MCP** 正是为此而生——将静态的数据源知识库转化为动态的智能导航系统,让每个人都能轻松访问权威数据。 +**FirstData MCP** 正是为此而生——将静态的外部事实上下文层转化为动态的智能导航系统,让每个人都能轻松访问权威数据。 --- @@ -488,366 +492,35 @@ MCP 智能检索推荐权威数据源(港交所披露易) ## 🚀 快速开始 -### 集成 FirstData MCP - -**将FirstData MCP配置到您的AI应用中,实现智能检索权威数据源和操作说明书导航** - -支持多个平台:Claude Desktop、Cline (VS Code)、Zed、Cursor 等所有兼容 MCP 协议的 AI 应用。 - ---- - -#### 配置指南:根据你使用的平台选择 - -> **📝 重要提示** -> -> **申请 API Key(必需)**:在配置 MCP 服务器之前,请先访问 [FirstData API 申请](https://firstdata.deepminer.com.cn/) 申请免费的 API key。将下方所有配置示例中的 `` 替换为你申请到的实际 API key。 +FirstData 提供两条接入路径:**AI Agent 自动接入**(推荐)和**手动配置 MCP**。 --- -
-Claude Desktop - -**手动 JSON 配置** - -1. **找到配置文件**: - - - macOS: `~/Library/Application Support/Claude/claude_desktop_config.json` - - Windows: `%APPDATA%\Claude\claude_desktop_config.json` - - Linux: `~/.config/Claude/claude_desktop_config.json` -2. **添加配置**: - - ```json - { - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } - } - ``` -3. **重启 Claude Desktop** 使配置生效 - -
- -
-Cline (VS Code 扩展) - -1. **打开 Cline MCP 设置**: - - - 在 VS Code 中打开 Cline - - 点击设置图标 → **Advanced MCP settings** - - 或直接编辑 `cline_mcp_settings.json` -2. **添加配置**: - - ```json - { - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } - } - ``` - - > **提示**:`autoApprove` 字段可以让常用的只读工具自动执行,无需每次确认。 - > -3. **保存配置**后,Cline 会自动加载 MCP 服务器 - -参考:[Cline MCP 配置文档](https://docs.cline.bot/mcp/configuring-mcp-servers) - -
- -
-Zed 编辑器 - -1. **创建配置文件**: - - - 在项目根目录创建 `.zed/settings.json` - - 或使用全局配置:`~/.config/zed/settings.json` -2. **添加配置**: - - ```json - { - "context_servers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - }, - "enabled": true - } - } - } - ``` - - > **注意**:Zed 使用 `context_servers` 而不是 `mcpServers` - > -3. **重新加载 Zed** 或重启项目以应用配置 - -
- -
-Cursor 编辑器 - -1. **打开 Cursor 设置**: - - - `Cmd/Ctrl + Shift + P` → 搜索 "MCP Settings" - - 或进入 `Cursor Settings` → `MCP` → `New MCP Server` -2. **添加配置**: - - ```json - { - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } - } - ``` -3. **重启 Cursor** 以加载 MCP 服务器 - -
- -
-Copilot / VS Code - -**推荐方式:HTTP 服务器** +### 路径一:AI Agent 自动接入(推荐) -1. 参考 [VS Code MCP 配置指南](https://code.visualstudio.com/docs/copilot/chat/mcp-servers#_add-an-mcp-server) -2. 添加配置到 VS Code MCP 设置: - - ```json - { - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } - } - ``` - -**使用 VS Code CLI:** +如果你正在使用支持 Skill 的 AI Agent(如 Claude Code + OpenClaw 等),可以一键安装 FirstData Skill: ```bash -code --add-mcp '{"name":"firstdata","type":"streamable-http","url":"https://firstdata.deepminer.com.cn/mcp","headers":{"Authorization":"Bearer "}}' -``` - -
- -
-Copilot CLI - -使用 HTTP 服务器方式连接: - -```json -{ - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } -} -``` - -
- -
-Windsurf - -1. **打开 Windsurf MCP 配置**: - - - 参考 [Windsurf MCP 配置指南](https://docs.windsurf.com/windsurf/cascade/mcp#mcp-config-json) -2. **添加配置**: - - ```json - { - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } - } - ``` - -
- -
-JetBrains AI Assistant & Junie - -1. **打开 JetBrains IDE 设置**: - - - 进入 `Settings | Tools | AI Assistant | Model Context Protocol (MCP)` - - 或 `Settings | Tools | Junie | MCP Settings` -2. **点击 `Add` 并添加以下配置**: - - ```json - { - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } - } - ``` - -
- -
-Warp Terminal - -1. **打开 Warp 设置**: - - - 进入 `Settings | AI | Manage MCP Servers` -2. **点击 `+ Add` 添加 MCP 服务器**: - - ```json - { - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } - } - ``` - -参考:[Warp MCP 配置文档](https://docs.warp.dev/knowledge-and-collaboration/mcp#adding-an-mcp-server) - -
- -
-Gemini CLI - -参考 [Gemini CLI MCP 配置指南](https://github.com/google-gemini/gemini-cli/blob/main/docs/tools/mcp-server.md),使用以下配置: - -```json -{ - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } -} -``` - -
- -
-Gemini Code Assist - -参考 [Gemini Code Assist MCP 配置指南](https://cloud.google.com/gemini/docs/codeassist/use-agentic-chat-pair-programmer#configure-mcp-servers),使用以下配置: - -```json -{ - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } -} -``` - -
- -
-Factory CLI (Droid) - -参考 [Factory CLI MCP 配置文档](https://docs.factory.ai/cli/configuration/mcp),使用以下配置: - -```json -{ - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } -} +clawhub install firstdata ``` -
+安装后 Agent 可自动完成注册、激活和 MCP 配置,无需人工操作。 -
-Qoder & Qoder CLI - -1. 打开 **Qoder Settings** -2. 进入 `MCP Server` → `+ Add` -3. 添加以下配置: - ```json - { - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } - } - ``` - -参考:[Qoder MCP 配置文档](https://docs.qoder.com/user-guide/chat/model-context-protocol) +> Skill 定义文件:[`skills/firstdata/SKILL.md`](skills/firstdata/SKILL.md) | ClawHub 页面:[clawhub.ai/ningzimu/firstdata](https://clawhub.ai/ningzimu/firstdata) -
+--- -
-Kiro +### 路径二:手动配置 MCP -**方式一:通过 Kiro Settings** +适用于人工配置场景。支持 Claude Desktop、Cline、Cursor、Zed 等所有兼容 MCP 协议的 AI 应用。 -1. 打开 **Kiro Settings** -2. 进入 `Configure MCP` → `Open Workspace or User MCP Config` +#### 第 1 步:获取 API Key -**方式二:通过 Activity Bar** +访问 [FirstData API 申请](https://firstdata.deepminer.com.cn/) 申请免费的 API Key。 -1. 从 IDE **Activity Bar** 选择 `Kiro` -2. 进入 `MCP Servers` → `Click Open MCP Config` +#### 第 2 步:添加 MCP 配置 -**配置内容:** +所有平台的核心配置相同,将以下 JSON 添加到你所用平台的 MCP 配置文件中: ```json { @@ -863,96 +536,32 @@ code --add-mcp '{"name":"firstdata","type":"streamable-http","url":"https://firs } ``` -
+> **注意**:Zed 使用 `context_servers` 而非 `mcpServers` 作为顶层 key。 -
-OpenCode - -1. **创建或编辑配置文件**: - - - 路径:`~/.config/opencode/opencode.json` - - 如果文件不存在,请创建它 -2. **添加以下配置**: - - ```json - { - "$schema": "https://opencode.ai/config.json", - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } - } - ``` - -参考:[OpenCode MCP 配置文档](https://opencode.ai/docs/mcp-servers) - -
+#### 第 3 步:找到你的平台配置文件
-Visual Studio - -参考 Visual Studio MCP 配置文档,使用以下配置: - -```json -{ - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } -} -``` - -
- -
-Codex - -参考 [Codex MCP 配置指南](https://github.com/openai/codex/blob/main/docs/advanced.md#model-context-protocol-mcp),使用以下配置: - -```json -{ - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } -} -``` - -
- -
-Amp - -参考 [Amp MCP 配置文档](https://ampcode.com/manual#mcp),使用以下配置: - -```json -{ - "mcpServers": { - "firstdata": { - "type": "streamable-http", - "url": "https://firstdata.deepminer.com.cn/mcp", - "headers": { - "Authorization": "Bearer " - } - } - } -} -``` +各平台配置文件位置 + +| 平台 | 配置文件位置 | 参考文档 | +|------|-------------|---------| +| **Claude Desktop** | macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
Windows: `%APPDATA%\Claude\claude_desktop_config.json`
Linux: `~/.config/Claude/claude_desktop_config.json` | — | +| **Cline (VS Code)** | Cline → 设置 → Advanced MCP settings,或 `cline_mcp_settings.json` | [文档](https://docs.cline.bot/mcp/configuring-mcp-servers) | +| **Cursor** | `Cmd/Ctrl+Shift+P` → "MCP Settings",或 Cursor Settings → MCP | — | +| **Copilot / VS Code** | VS Code MCP 设置,或 CLI:`code --add-mcp '{...}'` | [文档](https://code.visualstudio.com/docs/copilot/chat/mcp-servers#_add-an-mcp-server) | +| **Zed** | `.zed/settings.json` 或 `~/.config/zed/settings.json`(使用 `context_servers`) | — | +| **JetBrains** | Settings → Tools → AI Assistant → MCP,或 Junie → MCP Settings | — | +| **Windsurf** | Windsurf MCP 配置 | [文档](https://docs.windsurf.com/windsurf/cascade/mcp#mcp-config-json) | +| **Warp** | Settings → AI → Manage MCP Servers | [文档](https://docs.warp.dev/knowledge-and-collaboration/mcp#adding-an-mcp-server) | +| **Gemini CLI** | Gemini CLI MCP 配置 | [文档](https://github.com/google-gemini/gemini-cli/blob/main/docs/tools/mcp-server.md) | +| **Gemini Code Assist** | Gemini Code Assist MCP 配置 | [文档](https://cloud.google.com/gemini/docs/codeassist/use-agentic-chat-pair-programmer#configure-mcp-servers) | +| **Factory CLI (Droid)** | Factory CLI 配置 | [文档](https://docs.factory.ai/cli/configuration/mcp) | +| **Qoder** | Qoder Settings → MCP Server → + Add | [文档](https://docs.qoder.com/user-guide/chat/model-context-protocol) | +| **Kiro** | Kiro Settings → Configure MCP,或 Activity Bar → MCP Servers | — | +| **OpenCode** | `~/.config/opencode/opencode.json` | [文档](https://opencode.ai/docs/mcp-servers) | +| **Visual Studio** | Visual Studio MCP 配置 | — | +| **Codex** | Codex MCP 配置 | [文档](https://github.com/openai/codex/blob/main/docs/advanced.md#model-context-protocol-mcp) | +| **Amp** | Amp MCP 配置 | [文档](https://ampcode.com/manual#mcp) |
diff --git a/assets/badges/progress.json b/assets/badges/progress.json index a0a4ac11..c0810014 100644 --- a/assets/badges/progress.json +++ b/assets/badges/progress.json @@ -1,6 +1,6 @@ { "schemaVersion": 1, "label": "progress", - "message": "16%", - "color": "yellow" + "message": "68%", + "color": "green" } diff --git a/assets/badges/sources-count.json b/assets/badges/sources-count.json index 1d9c1a9d..262ecb5e 100644 --- a/assets/badges/sources-count.json +++ b/assets/badges/sources-count.json @@ -1,6 +1,6 @@ { "schemaVersion": 1, "label": "sources", - "message": "156/1000+", + "message": "679/1000+", "color": "blue" } diff --git a/docs/adr/ADR-001-positioning-context-layer.md b/docs/adr/ADR-001-positioning-context-layer.md new file mode 100644 index 00000000..5adb53ea --- /dev/null +++ b/docs/adr/ADR-001-positioning-context-layer.md @@ -0,0 +1,201 @@ +# ADR-001: Reposition FirstData as "The External Facts Context Layer for AI Agents" + +- **Status**: Proposed +- **Date**: 2026-05-07 +- **Deciders**: @ningzimu (owner), @墨子 (AI-0000001, proposer), @明察 (AI-0000002, reviewer), @明鉴 (AI-0000003, reviewer) +- **Rollback Owner**: @ningzimu +- **Scope lock**: v3 — 23 hits / 22 CHANGE + 1 KEEP (ja:592) / 8 files / base `bad47726fc50a3c7c69aaab1fae64286cb44350b` +- **Supersedes**: N/A (first positioning ADR) + +--- + +## 1. Context + +FirstData has described itself as a **"数据源知识库 / Open Data Source Repository / knowledge base"** across `README.md`, `README.en.md`, `README.ja.md`, `pyproject.toml`, `AGENTS.md`, `CLAUDE.md`, `skills/firstdata/SKILL.md`, and `firstdata/sources/china/README.md` since 2026-03. + +Three external forces in 2026-04 → 2026-05 invalidate the "data source repository" category framing: + +1. **DataHub declared the "data catalog" category dead** in its 2026-04-30 blog *Context Platform vs. Data Catalog*, rebranding itself as a "Context Platform" and coining *Agent Context Kit* to occupy the "Agent brain" mindshare. Source: `memory/growth-studies/2026-05-07-competitor-watch-data-catalog-ai-pivot.md`. +2. **OpenMetadata overtook DataHub on GitHub stars** (13,816 vs 11,874 as of 2026-05-06) after embedding an MCP server in v1.8.0 (2025-06) and narrating itself as "the first enterprise-grade MCP data platform". +3. **Standalone MCP-only repos failed to pull weight** (`acryldata/mcp-server-datahub` = 72⭐, `metadata-ai-sdk` = 8⭐, `okfn/mcp-ckan` = 0⭐; 165–1728× gap vs parent repo). The category fight is decided by **narrative** on the parent repo, not by an accessory MCP repo. + +Meanwhile, competitor watch (see R14 Step 1 CDN distribution report) shows FirstData's MCP endpoint `firstdata.deepminer.com.cn/mcp` is the project's only user-facing surface, and "data source repository" framing **places FirstData in a category DataHub is actively devaluing**. + +### What FirstData actually is, stripped of legacy wording + +- 494 (actively expanding toward 1000+) authoritative, curated, structured external data sources +- Delivered as **context into agent loops** via MCP (+ JSON schema + ask_agent) +- Designed for the *external facts* half of an agent's context (DataHub/OpenMetadata/CKAN cover the *internal enterprise metadata* half) + +The correct positioning is therefore **complementary** to DataHub's "Context Platform" land-grab, not competitive — by carving out a purpose-built, non-overlapping slot. + +## 2. Decision + +**FirstData is repositioned from "Open Data Source Repository / 数据源知识库 / knowledge base" to:** + +> ### The External Facts Context Layer for AI Agents +> +> *Purpose-built, authoritative, structured data sources — delivered as context into every agent loop via MCP.* + +**Why this exact phrasing (not alternatives)**: + +- `External Facts` anchors the **non-overlap** with DataHub/OpenMetadata/CKAN, which cover *internal enterprise metadata*. "External" is the disambiguator DataHub cannot claim. +- `Context Layer` (not "Context Platform") explicitly avoids the word **Acryl/DataHub are trying to consolidate**. We ride the Context Engineering wave, but stay a **layer** (a component), not a **platform** (a competitor). +- `for AI Agents` fixes the end-user from day 1, closing the door to "BI analyst" / "data scientist" persona drift. +- `Purpose-built` (replacing earlier drafts of "Lightweight") signals engineering intent without self-belittling on scope. + +**Rejected alternatives** (see §6): + +- "Open Data Catalog" — in DataHub's declared-dead category. +- "Context Platform" — consolidation word owned by Acryl; half-life uncertain (see §5 risk). +- "MCP Data Gateway" — over-indexes on one transport; MCP ≠ the product. +- "Agent Knowledge Base" — still category-adjacent to "knowledge base" (the word we are retiring). + +### Scope of this ADR + +This ADR covers **copy-only** changes in **8 files** (scope lock v3): + +| File | CHANGE | KEEP | +|---|---|---| +| `README.md` | 7 | 0 | +| `README.en.md` | 4 | 0 | +| `README.ja.md` | 5 | 1 (L592, contribution-flow wording) | +| `pyproject.toml` | 1 | 0 | +| `AGENTS.md` | 1 | 0 | +| `CLAUDE.md` | 1 | 0 | +| `skills/firstdata/SKILL.md` | 2 | 0 | +| `firstdata/sources/china/README.md` | 1 | 0 | +| **Total** | **22** | **1** | + +This ADR does **NOT** change: + +- Any file under `sources/**/*.json` (frozen by contract) +- Any file under `firstdata/indexes/*.json` (build artefacts) +- The MCP server name (`firstdata` — frozen; server-name change requires a 2-week ChangeLog + email notice) +- The HTTP endpoint (`https://firstdata.deepminer.com.cn/mcp`) +- The GitHub repo name (`MLT-OSS/FirstData`) +- The ClawHub skill slug (`firstdata`) + +## 3. Rollout Plan + +This ADR is delivered across **4 PRs** (proposer = @墨子, reviewer = @明察 + @明鉴, merger = **never `gh pr merge --admin`**). + +| # | Branch | Scope | Gate | +|---|---|---|---| +| PR-A | `feat/positioning-adr-001` (this) | ADR-001 + tracker + this file only | reviewer matrix × 2 | +| PR-1 | same branch, later commit | 22 CHANGE + 1 KEEP copy edits across 8 files | `scripts/check-positioning-consistency.sh` CHANGE == 0 | +| PR-2 | `feat/positioning-tooling` | `scripts/check-positioning-consistency.sh` + `.pre-commit-config.yaml` | local `pre-commit run --all-files` clean | +| PR-3 | `feat/positioning-ci` | `.github/workflows/positioning-check.yml` | CI green on main | + +**Tolerance window**: 3–7 days (data-backed, see §5) before CKAN MCP space closes. @ningzimu to decide final number; ClawHub `installsAllTime=0` means no downstream cache to thrash (明察 ClawHub API snapshot, msg `1501661431802888405`). + +## 4. Consequences + +### Positive + +- Exits the "data catalog" category DataHub is devaluing. +- Occupies **"External Facts Context Layer"** — a word-pair not yet claimed by any competitor (as of 2026-05-07 snapshot). +- Prepares CKAN MCP 6–12 month window for P1 (`firstdata-ckan-plugin`). +- All four bodies (proposer + 2 reviewers + owner) agree on scope lock v3 — no hidden disagreement at merge time. + +### Negative + +- **Category education cost**: "Context Layer" is less searchable than "data catalog" today; offset by §5 P2 blog matrix. +- **Old user confusion** during the 3–7 day window; mitigated by `installsAllTime=0` on ClawHub and by the Draft PR halt clause (see §7). +- **Reversibility cost**: rollback requires a second PR touching the same 8 files. Captured under §7. + +### Neutral + +- The MCP server name is **not changed** in this ADR. Any future rename enters a separate ADR-002 with a 2-week ChangeLog + email notice. + +## 5. Alternatives Considered + +### 5a. "Open Data Catalog for AI Agents" + +Rejected. DataHub's 2026-04-30 post *Context Platform vs. Data Catalog* explicitly declares the "data catalog" category dead. Adopting this framing now = entering a category DataHub (11.8K⭐, Series funded) and OpenMetadata (13.8K⭐) are both abandoning in narrative. **Downside > upside**. + +### 5b. "Context Platform for External Data" + +Rejected. "Context Platform" is the consolidation word **Acryl is actively buying up**. Using it makes FirstData a clone of DataHub's pivot, not a disambiguation. The half-life of "Context Platform" as a term is **itself uncertain** — if it deflates, we burn with it (see §reverseable). + +### 5c. "MCP Data Gateway" + +Rejected. Over-indexes on one transport. The MCP number wars (`110M` tool calls, "MCP is dead" / Durable Agent terminal form discourse from 2026-04-22 trend scan) warn that **MCP itself may not be the final transport**. The product is authoritative *data*, not *MCP*. + +### 5d. "Agent Knowledge Base" + +Rejected. Still adjacent to "knowledge base" — the exact word we are retiring from 23 hits across 8 files. Would also collide with the embedding-retrieval "knowledge base" meaning (OpenAI Assistants File Search, etc.), which is **different** from curated authoritative data sources. + +### 5e. Do nothing + +Rejected. Competitor watch shows the window is closing (DataHub already moved, OpenMetadata already moved, CKAN next to move in 6–12 months). Static positioning = silent irrelevance. + +## 6. Risks + +| Risk | Likelihood | Impact | Mitigation | +|---|---|---|---| +| "Context Platform" narrative collapses in <12 months | Medium | Low | We positioned as Context **Layer**, not **Platform** — decoupled from Acryl's fortune. Revision cost: 1 ADR. | +| External readers confuse "Context Layer" with vector DB / embedding store | Medium | Medium | Tagline explicit: "authoritative, structured data sources" — never "unstructured documents / embeddings / chunks". | +| Old ClawHub users (n=0 installs) affected | Very Low | None | `installsAllTime=0` per明察 ClawHub API snapshot 2026-05-07. | +| Regression: someone PR-merges "knowledge base" again post-rename | Medium | Low | `scripts/check-positioning-consistency.sh` + pre-commit (PR-2) + CI gate (PR-3). | +| Scope creep re-opens during PR-1 review | Medium | High | v3 scope frozen by three-party ack on 2026-05-07 02:23 GMT+8; script v7 wide vs narrow debate archived as review-gate tool only, does NOT reopen main scope (anti-pattern #30 CC defense). | + +## 7. Rollback Plan + +**Owner**: @ningzimu (no other party may unilaterally rollback) + +**Trigger conditions** (any one): + +1. Three separate external readers (non-MLT, non-Discord) report category confusion within 14 days of PR-1 merge +2. "Context Layer" term contaminated by an unrelated product launch before 2026-06-30 +3. @ningzimu direct call + +**Procedure**: + +```bash +git revert +git revert # this ADR becomes "Rejected" with dated note +``` + +**Cost estimate**: ≤ 30 min mechanical revert + 0.25 person-day of comms to update ClawHub listing. + +## 8. Method & Verification + +### 8.1 Enumeration method (how we got to 23 hits) + +The 8-file / 23-hit / 22 CHANGE + 1 KEEP figure is the three-party locked **v3** scope from 2026-05-07 02:23 GMT+8 (see `memory/reflections/2026-05-07-enumeration-discipline.md`). The authoritative script is maintained by @明察 on the PR-2 branch. + +> **Anti-pattern #30 (CC: Memory-Ground-Truth-Drift)** fired during this ADR's preparation. Local `v7 wide` reproduction yielded 25 hits (+en:7 subtitle, +KEEP hardcoding), which **tempted** proposer to override authoritative scope. Defense: proposer's local `exec` output is a **challenge signal**, not an override right; authoritative rests with the reviewer script. See §PR-2 for the eventual reconciliation. + +### 8.2 Byte-level verification + +- Base commit: `bad47726fc50a3c7c69aaab1fae64286cb44350b` (all three parties executed scripts against the same tree) +- Proposer独立 grep (regex v1.1 narrow): 23 hits, sha256 match with reviewer authoritative output +- Reviewer independent exec (msg `1501649361`): byte-identical +- Third-party independent exec (明鉴 v7 wide local): 25 hits; delta (+2) traced to en:7 subtitle + en:592/ja:592 KEEP whitelisting; all delta items captured in §2 scope table or archived as review-gate-only. + +### 8.3 Merge gate + +The PR-1 branch merges only when: + +1. `scripts/check-positioning-consistency.sh` returns `CHANGE == 0` on HEAD +2. Byte-level diff against v3 lock matches file-line enumeration +3. Two reviewer approvals from @明察 + @明鉴 (no admin merge — **Order-44** applies) + +## 9. Reviewers & Acknowledgements + +- **@明察** (AI-0000002): SOP-7 adjudication, authoritative regex & script, ClawHub API snapshot +- **@明鉴** (AI-0000003): methodology audit, anti-pattern sinking (#29 BB, #30 CC), reviewer matrix design +- **@ningzimu**: rollback owner, final merge authority, category word arbiter + +Three-party scope lock v3 confirmed at **2026-05-07 02:23 GMT+8 (UTC 2026-05-06 18:23)**, re-confirmed after v4/v8/v9/v10 override attempts were unanimously withdrawn by 03:24 GMT+8. + +## 10. References + +- Competitor watch: `memory/growth-studies/2026-05-07-competitor-watch-data-catalog-ai-pivot.md` +- Enumeration discipline: `memory/reflections/2026-05-07-enumeration-discipline.md` +- SOP: `docs/conventions.md` (anti-patterns #1–#30) +- R14 CDN distribution: `docs/verification/cdn-distribution-r14.md` +- Base commit: `bad47726fc50a3c7c69aaab1fae64286cb44350b` +- Authoritative script (PR-2): `scripts/check-positioning-consistency.sh` +- Lock-time: 2026-05-07 02:23 GMT+8 (UTC 2026-05-06 18:23) diff --git a/docs/adr/README.md b/docs/adr/README.md new file mode 100644 index 00000000..f9a30b97 --- /dev/null +++ b/docs/adr/README.md @@ -0,0 +1,29 @@ +# Architecture Decision Records (ADR) + +This directory captures architectural / strategic decisions for FirstData. We use ADRs for choices that would otherwise be lost in chat — category positioning, protocol boundaries, migration plans, rollback owners, and any decision whose reversal cost is > 1 person-day. + +## Conventions + +- **File name**: `ADR--.md` +- **Status values**: `Proposed` → `Accepted` → (`Deprecated` | `Superseded by ADR-` | `Rejected`) +- **Status transitions are commit-visible**: change the `Status:` field in a dated follow-up commit; never rewrite history. +- **Scope**: one ADR per decision. Do not bundle unrelated decisions for convenience. +- **Reviewers**: ADRs touching public positioning / protocol / rollback must be reviewed by **at least two** non-proposer parties. + +## Index + +| ID | Status | Title | Date | +|---|---|---|---| +| [ADR-001](./ADR-001-positioning-context-layer.md) | Proposed | Reposition FirstData as "The External Facts Context Layer for AI Agents" | 2026-05-07 | + +## Workflow + +1. Proposer copies the template (or an existing ADR) into a branch `feat/adr--`. +2. Proposer opens a Draft PR against `main` with the ADR file only (content changes land in follow-up PRs). +3. Reviewers leave inline comments; any `Deciders` line change requires a new commit. +4. When all listed `Deciders` approve, proposer flips `Status: Proposed` → `Status: Accepted` in a follow-up commit and drops the Draft flag. +5. Follow-up implementation PRs reference the ADR ID in their description. + +## Rollback + +Every ADR that can be reverted must have a `Rollback Plan` section that names a **single** rollback owner. No party other than the rollback owner may initiate revert. diff --git a/docs/positioning-rollout-tracker.md b/docs/positioning-rollout-tracker.md new file mode 100644 index 00000000..c6282e0b --- /dev/null +++ b/docs/positioning-rollout-tracker.md @@ -0,0 +1,82 @@ +# Positioning Rollout Tracker + +> Living companion to `docs/adr/ADR-001-positioning-context-layer.md`. +> Edits merge into `main` only via reviewed PRs; no direct pushes. + +## Scope Lock v3 (authoritative) + +- **Locked**: 2026-05-07 02:23 GMT+8 (UTC 2026-05-06 18:23) +- **Re-confirmed**: 2026-05-07 03:24 GMT+8 (after v4/v8/v9/v10 override attempts withdrawn) +- **Base commit**: `bad47726fc50a3c7c69aaab1fae64286cb44350b` +- **Authoritative regex**: held by @明察 in PR-2's `scripts/check-positioning-consistency.sh` +- **Totals**: 23 hits / 22 CHANGE + 1 KEEP / 8 files + +## Per-file breakdown (v3) + +| File | Line | Content (excerpt) | Action | +|---|---|---|---| +| `README.md` | 7 | 全球最全面、最权威、最结构化的开源数据源知识库 | CHANGE | +| `README.md` | 9 | 全球最全面的权威数据源知识库 | CHANGE | +| `README.md` | 11 | Structured Open Data Source Repository | CHANGE | +| `README.md` | 32 | 权威数据源知识库 | CHANGE | +| `README.md` | 68 | Primary Sources knowledge | CHANGE | +| `README.md` | 148 | 结构化数据源知识库 | CHANGE | +| `README.md` | 150 | Structured 数据源知识库 | CHANGE | +| `README.en.md` | 7 | (subtitle) Open Data Source Repository — Agent First | CHANGE | +| `README.en.md` | 30 | authoritative knowledge base | CHANGE | +| `README.en.md` | 66 | primary-sources knowledge base | CHANGE | +| `README.en.md` | 146 | structured knowledge base | CHANGE | +| `README.ja.md` | 7 | オープンデータソースリポジトリ — Agent First | CHANGE | +| `README.ja.md` | 30 | 権威的ナレッジベース | CHANGE | +| `README.ja.md` | 66 | 一次情報ナレッジベース | CHANGE | +| `README.ja.md` | 146 | 構造化ナレッジベース | CHANGE | +| `README.ja.md` | 148 | 構造化データソースナレッジベース | CHANGE | +| `README.ja.md` | 592 | 公式にデータソースリポジトリに収録されます | **KEEP** (business-process wording, not category self-title) | +| `pyproject.toml` | 4 | description: "Open Data Source Repository ..." | CHANGE | +| `AGENTS.md` | 7 | 数据源知识库 | CHANGE | +| `CLAUDE.md` | 7 | 数据源知识库 | CHANGE | +| `skills/firstdata/SKILL.md` | 20 | 全球权威数据源知识库 | CHANGE | +| `skills/firstdata/SKILL.md` | 179 | 数据源知识库 | CHANGE | +| `firstdata/sources/china/README.md` | 186 | 中国数据源知识库 | CHANGE | + +## Supersedes chain (for audit) + +| Version | Status | Numbers | Source | Retired at | +|---|---|---|---|---| +| v3 | **AUTHORITATIVE** | 23 / 22 / 1 | @明察 SOP-7 adjudication | — | +| v4 | withdrawn | 24 / 24 / 0 | @墨子 symmetry-flip over en:592+ja:592 | 2026-05-07 03:05 | +| v7 | withdrawn | 22 / 22 / 1 (same as v3, different lock-time) | prior naming attempt | 2026-05-07 02:40 | +| v8 | withdrawn | 26 / 26 / 0 | @明察 v1.3 regex upgrade proposal | 2026-05-07 03:15 | +| v9 | withdrawn | 25 / 23 / 2 | @明鉴 local v7 wide exec override | 2026-05-07 03:24 | +| v10 | withdrawn | 26 / 23 / 3 | @墨子 compromise proposal (KEEP L592×2 + L593) | 2026-05-07 03:26 | + +> All withdrawals are documented with message IDs in `memory/reflections/2026-05-07-enumeration-discipline.md`. + +## PR Map + +| PR | Branch | Scope | Status | +|---|---|---|---| +| PR-A | `feat/positioning-adr-001` | `docs/adr/ADR-001-*`, `docs/adr/README.md`, this tracker | Draft | +| PR-1 | same branch, later commit | 22 copy edits (CHANGE) across 8 files | Pending PR-A merge | +| PR-2 | `feat/positioning-tooling` | `scripts/check-positioning-consistency.sh`, `.pre-commit-config.yaml` | Pending | +| PR-3 | `feat/positioning-ci` | `.github/workflows/positioning-check.yml` | Pending PR-2 merge | + +## Merge gate (applies to every PR above) + +1. `scripts/check-positioning-consistency.sh` returns `CHANGE == 0` on HEAD (PR-1/PR-3 only; PR-A has no content diff, PR-2 adds the script) +2. Byte-level diff matches the per-file breakdown above (for PR-1) +3. Two reviewer approvals from @明察 + @明鉴 +4. **NEVER `gh pr merge --admin`** — Order-44 applies + +## Tolerance window + +- **Proposal**: 3–7 days (data-backed by ClawHub `installsAllTime=0`) +- **Decider**: @ningzimu +- **Start**: time of PR-1 merge +- **Exit**: external facing surfaces (README, ClawHub description, `pyproject.toml`, SKILL.md) all read as "External Facts Context Layer" language + +## Defensive artefacts + +- `scripts/check-positioning-consistency.sh` (authoritative, PR-2) +- Three-language self-title cross-reference table (enforced by `KEEP_WHITELIST` empty after v3 close) +- Anti-pattern #29 BB (Cross-language-self-title-blindspot) and #30 CC (Memory-Ground-Truth-Drift) both sunk into `docs/conventions.md` diff --git a/firstdata/indexes/all-sources.json b/firstdata/indexes/all-sources.json index 9b46c66e..62e3f867 100644 --- a/firstdata/indexes/all-sources.json +++ b/firstdata/indexes/all-sources.json @@ -1,7 +1,7 @@ { "metadata": { - "generated_at": "2026-03-02T08:05:03.494144+00:00", - "total_sources": 156, + "generated_at": "2026-05-04T06:42:43.195561+00:00", + "total_sources": 679, "version": "2.0", "schema_version": "v2.0.0" }, @@ -23,9 +23,9 @@ "domains": [ "genomics", "genetics", - "human genetic variation", - "population genetics", - "evolutionary biology", + "human-genetic-variation", + "population-genetics", + "evolutionary-biology", "bioinformatics" ], "geographic_scope": "global", @@ -33,22 +33,22 @@ "tags": [ "genomics", "genetics", - "whole genome sequencing", - "human genetics", - "population genetics", - "genetic variation", - "SNP", - "variant calling", - "reference genome", - "allele frequency", + "whole-genome-sequencing", + "human-genetics", + "population-genetics", + "genetic-variation", + "snp", + "variant-calling", + "reference-genome", + "allele-frequency", "haplotype", - "VCF", - "BAM", - "open data", - "international collaboration", - "evolutionary biology", + "vcf", + "bam", + "open-data", + "international-collaboration", + "evolutionary-biology", "bioinformatics", - "precision medicine" + "precision-medicine" ], "data_content": { "en": [ @@ -95,29 +95,29 @@ "api_url": "https://alphafold.com/api-docs", "country": null, "domains": [ - "Structural Biology", - "Proteomics", - "Drug Discovery", - "Molecular Biology", - "Biotechnology", - "Bioinformatics" + "structural-biology", + "proteomics", + "drug-discovery", + "molecular-biology", + "biotechnology", + "bioinformatics" ], "geographic_scope": "global", "update_frequency": "irregular", "tags": [ - "protein structure", - "structural biology", - "AI prediction", - "machine learning", + "protein-structure", + "structural-biology", + "ai-prediction", + "machine-learning", "proteomics", - "drug discovery", + "drug-discovery", "bioinformatics", - "AlphaFold", - "DeepMind", - "EMBL-EBI", - "computational biology", - "3D structure", - "protein folding" + "alphafold", + "deepmind", + "embl-ebi", + "computational-biology", + "3d-structure", + "protein-folding" ], "data_content": { "en": [ @@ -166,34 +166,34 @@ "api_url": "https://www.ebi.ac.uk/ena/browser/api/swagger-ui/index.html", "country": null, "domains": [ - "Genomics", - "Transcriptomics", - "Metagenomics", - "Molecular Biology", - "Bioinformatics", - "Biodiversity", - "Environmental Sciences", - "Healthcare", - "Pathogen Surveillance" + "genomics", + "transcriptomics", + "metagenomics", + "molecular-biology", + "bioinformatics", + "biodiversity", + "environmental-sciences", + "healthcare", + "pathogen-surveillance" ], "geographic_scope": "global", "update_frequency": "daily", "tags": [ - "nucleotide sequences", - "DNA", - "RNA", + "nucleotide-sequences", + "dna", + "rna", "genomics", "sequencing", "bioinformatics", - "INSDC", - "EMBL-EBI", - "genome assembly", + "insdc", + "embl-ebi", + "genome-assembly", "metagenomics", "transcriptomics", "biodiversity", - "pathogen surveillance", - "open data", - "life sciences" + "pathogen-surveillance", + "open-data", + "life-sciences" ], "data_content": { "en": [ @@ -248,25 +248,25 @@ "api_url": "https://www.ncbi.nlm.nih.gov/books/NBK25501/", "country": null, "domains": [ - "Genomics", - "Molecular Biology", - "Genetics", - "Bioinformatics" + "genomics", + "molecular-biology", + "genetics", + "bioinformatics" ], "geographic_scope": "global", "update_frequency": "daily", "tags": [ "genomics", - "DNA sequences", - "nucleotide database", - "molecular biology", + "dna-sequences", + "nucleotide-database", + "molecular-biology", "genetics", "bioinformatics", - "genome assembly", - "NCBI", - "NIH", - "INSDC", - "sequence database" + "genome-assembly", + "ncbi", + "nih", + "insdc", + "sequence-database" ], "data_content": { "en": [ @@ -313,30 +313,30 @@ "api_url": "https://data.rcsb.org", "country": null, "domains": [ - "Structural Biology", - "Biochemistry", - "Molecular Biology", - "Computational Biology", - "Drug Discovery", - "Biotechnology", - "Protein Science" + "structural-biology", + "biochemistry", + "molecular-biology", + "computational-biology", + "drug-discovery", + "biotechnology", + "protein-science" ], "geographic_scope": "global", "update_frequency": "weekly", "tags": [ - "protein structures", - "structural biology", - "3D structures", - "molecular biology", - "drug discovery", + "protein-structures", + "structural-biology", + "3d-structures", + "molecular-biology", + "drug-discovery", "biotechnology", - "open science", + "open-science", "bioinformatics", "crystallography", - "cryo-EM", - "NMR", - "PDB", - "macromolecular structures" + "cryo-em", + "nmr", + "pdb", + "macromolecular-structures" ], "data_content": { "en": [ @@ -390,7 +390,7 @@ "genomics", "epidemiology", "biomarkers", - "medical imaging", + "medical-imaging", "demographics", "lifestyle", "proteomics", @@ -402,21 +402,21 @@ "biobank", "genomics", "genetics", - "medical imaging", + "medical-imaging", "proteomics", "metabolomics", "epidemiology", - "UK", - "longitudinal study", - "precision medicine", - "whole genome sequencing", + "uk", + "longitudinal-study", + "precision-medicine", + "whole-genome-sequencing", "biomarkers", - "healthcare data", - "cohort study", - "personalized medicine", - "disease prevention", - "clinical research", - "population health" + "healthcare-data", + "cohort-study", + "personalized-medicine", + "disease-prevention", + "clinical-research", + "population-health" ], "data_content": { "en": [ @@ -463,17 +463,17 @@ "api_url": "https://www.ebi.ac.uk/chembl/api/data/docs", "country": null, "domains": [ - "Drug Discovery", - "Pharmaceutical Sciences", - "Medicinal Chemistry", - "Chemical Biology", - "Bioactivity", - "Pharmacology", - "Toxicology", - "ADMET", - "Agrochemical Research", - "Genomics", - "Proteomics" + "drug-discovery", + "pharmaceutical-sciences", + "medicinal-chemistry", + "chemical-biology", + "bioactivity", + "pharmacology", + "toxicology", + "admet", + "agrochemical-research", + "genomics", + "proteomics" ], "geographic_scope": "global", "update_frequency": "quarterly", @@ -552,14 +552,14 @@ "api_url": null, "country": null, "domains": [ - "Chemistry", - "Chemical Structures", - "Molecular Properties", - "Pharmaceutical Sciences", - "Materials Science", - "Organic Chemistry", - "Inorganic Chemistry", - "Chemical Information" + "chemistry", + "chemical-structures", + "molecular-properties", + "pharmaceutical-sciences", + "materials-science", + "organic-chemistry", + "inorganic-chemistry", + "chemical-information" ], "geographic_scope": "global", "update_frequency": "daily", @@ -629,16 +629,16 @@ "api_url": "https://docs.drugbank.com", "country": null, "domains": [ - "Pharmaceutical Sciences", - "Drug Discovery", - "Drug Development", - "Pharmacology", - "Medicinal Chemistry", - "Bioinformatics", - "Cheminformatics", - "Clinical Pharmacology", - "Drug Metabolism", - "Toxicology" + "pharmaceutical-sciences", + "drug-discovery", + "drug-development", + "pharmacology", + "medicinal-chemistry", + "bioinformatics", + "cheminformatics", + "clinical-pharmacology", + "drug-metabolism", + "toxicology" ], "geographic_scope": "global", "update_frequency": "irregular", @@ -716,12 +716,12 @@ "api_url": "https://pubchem.ncbi.nlm.nih.gov/docs/programmatic-access", "country": null, "domains": [ - "Chemistry", - "Biochemistry", - "Pharmacology", - "Toxicology", - "Biology", - "Medicine" + "chemistry", + "biochemistry", + "pharmacology", + "toxicology", + "biology", + "medicine" ], "geographic_scope": "global", "update_frequency": "daily", @@ -794,16 +794,16 @@ "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" + "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", @@ -872,12 +872,12 @@ "api_url": null, "country": null, "domains": [ - "Economics", - "Business Cycles", - "Consumer Confidence", - "Labor Markets", - "Employment", - "Economic Forecasting" + "economics", + "business-cycles", + "consumer-confidence", + "labor-markets", + "employment", + "economic-forecasting" ], "geographic_scope": "global", "update_frequency": "monthly", @@ -1190,7 +1190,7 @@ "ocean", "land", "atmosphere", - "disaster_management" + "disaster-management" ], "geographic_scope": "global", "update_frequency": "daily", @@ -1200,7 +1200,7 @@ "remote_sensing", "sentinel", "copernicus", - "ESA", + "esa", "radar", "optical", "atmospheric", @@ -1243,25 +1243,25 @@ "country": null, "domains": [ "health", - "clinical_research", - "medical_trials" + "clinical-research", + "medical-trials" ], "geographic_scope": "global", "update_frequency": "daily", "tags": [ - "clinical trials", - "medical research", - "NIH", - "NLM", - "drug trials", - "patient recruitment", - "NCT number", - "clinical research", - "medical studies", - "FDA", - "public health", - "evidence-based medicine", - "API" + "clinical-trials", + "medical-research", + "nih", + "nlm", + "drug-trials", + "patient-recruitment", + "nct-number", + "clinical-research", + "medical-studies", + "fda", + "public-health", + "evidence-based-medicine", + "api" ], "data_content": { "en": [ @@ -1311,19 +1311,19 @@ "geographic_scope": "regional", "update_frequency": "irregular", "tags": [ - "demographic surveys", - "health surveys", - "DHS", - "USAID", - "developing countries", - "maternal health", - "child health", - "HIV/AIDS", - "family planning", + "demographic-surveys", + "health-surveys", + "dhs", + "usaid", + "developing-countries", + "maternal-health", + "child-health", + "hiv/aids", + "family-planning", "fertility", "nutrition", - "household surveys", - "STATcompiler" + "household-surveys", + "statcompiler" ], "data_content": { "en": [ @@ -1370,29 +1370,29 @@ "demographics", "epidemiology", "mortality", - "disease burden", - "health financing", - "risk factors", - "health systems" + "disease-burden", + "health-financing", + "risk-factors", + "health-systems" ], "geographic_scope": "global", "update_frequency": "irregular", "tags": [ - "global health", - "disease burden", - "GBD", - "IHME", + "global-health", + "disease-burden", + "gbd", + "ihme", "mortality", "epidemiology", - "health metrics", - "DALYs", - "life expectancy", - "health financing", - "risk factors", + "health-metrics", + "dalys", + "life-expectancy", + "health-financing", + "risk-factors", "vaccination", - "health surveys", - "vital statistics", - "demographic data" + "health-surveys", + "vital-statistics", + "demographic-data" ], "data_content": { "en": [ @@ -1441,24 +1441,24 @@ "domains": [ "health", "biomedical", - "life_sciences" + "life-sciences" ], "geographic_scope": "global", "update_frequency": "daily", "tags": [ - "biomedical literature", - "MEDLINE", + "biomedical-literature", + "medline", "citations", "abstracts", - "life sciences", - "medical research", - "public health", - "clinical trials", - "MeSH", - "NIH", - "NLM", - "NCBI", - "E-utilities API" + "life-sciences", + "medical-research", + "public-health", + "clinical-trials", + "mesh", + "nih", + "nlm", + "ncbi", + "e-utilities-api" ], "data_content": { "en": [ @@ -1501,35 +1501,35 @@ "api_url": "https://gdc.cancer.gov/developers/gdc-application-programming-interface-api", "country": "US", "domains": [ - "cancer genomics", + "cancer-genomics", "oncology", - "molecular biology", + "molecular-biology", "genomics", "bioinformatics", - "precision medicine", - "biomedical research" + "precision-medicine", + "biomedical-research" ], "geographic_scope": "national", "update_frequency": "irregular", "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", + "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" + "biomarker-discovery", + "pan-cancer-analysis", + "molecular-characterization", + "tumor-genomics" ], "data_content": { "en": [ @@ -1565,6 +1565,129 @@ "has_api": true, "file_path": "academic/health/tcga.json" }, + { + "id": "ieee-xplore", + "name": { + "en": "IEEE Xplore Digital Library", + "zh": "IEEE Xplore数字图书馆" + }, + "description": { + "en": "IEEE Xplore is a research database providing access to scientific and technical content published by IEEE (Institute of Electrical and Electronics Engineers) and its publishing partners. It contains over 6 million documents including journal articles, conference proceedings, technical standards, and books covering electrical engineering, computer science, electronics, and related fields.", + "zh": "IEEE Xplore是一个科研数据库,提供IEEE(电气和电子工程师协会)及其合作出版方发布的科学技术内容。收录超过600万篇文献,包括期刊论文、会议论文、技术标准和专著,覆盖电气工程、计算机科学、电子学等相关领域。" + }, + "website": "https://www.ieee.org", + "data_url": "https://ieeexplore.ieee.org", + "api_url": "https://developer.ieee.org/docs/read/IEEE_Xplore_Metadata_API", + "authority_level": "research", + "country": null, + "domains": [ + "science", + "technology", + "engineering", + "computer-science" + ], + "geographic_scope": "global", + "update_frequency": "daily", + "tags": [ + "ieee", + "ieee-xplore", + "学术论文", + "research-papers", + "conference-proceedings", + "technical-standards", + "电气工程", + "计算机科学", + "半导体", + "semiconductor", + "artificial-intelligence", + "academic", + "peer-reviewed" + ], + "data_content": { + "en": [ + "Journal Articles - Peer-reviewed research papers from over 200 IEEE journals and magazines", + "Conference Proceedings - Papers from over 2,000 annual IEEE conferences worldwide", + "Technical Standards - IEEE standards documents covering electronics, computing, power, and telecommunications", + "Books and eBooks - Technical reference books and educational materials", + "Early Access Articles - Pre-publication versions of accepted journal articles" + ], + "zh": [ + "期刊论文 - 来自200多种IEEE期刊和杂志的同行评审研究论文", + "会议论文 - 来自全球2000多个IEEE年度会议的论文", + "技术标准 - 覆盖电子、计算、电力和电信领域的IEEE标准文件", + "书籍和电子书 - 技术参考书和教育材料", + "早期访问论文 - 已接受期刊论文的预出版版本" + ] + }, + "has_api": true, + "file_path": "academic/ieee-xplore.json" + }, + { + "id": "owid", + "name": { + "en": "Our World in Data", + "zh": "用数据看世界" + }, + "description": { + "en": "Our World in Data (OWID) is a scientific online publication by the University of Oxford that presents research and data on the world's largest problems — poverty, disease, hunger, climate change, war, existential risks, and inequality. All visualizations, data, and code are open-source and freely accessible. OWID aggregates data from authoritative sources (UN, World Bank, WHO, etc.) and presents it through interactive charts and downloadable datasets, making complex global data accessible to everyone.", + "zh": "Our World in Data(OWID)是牛津大学的科学在线出版物,提供关于全球最大挑战的研究和数据——贫困、疾病、饥饿、气候变化、战争、生存风险和不平等。所有可视化、数据和代码均为开源且免费访问。OWID汇集来自权威来源(联合国、世界银行、世卫组织等)的数据,通过交互式图表和可下载数据集呈现,使复杂的全球数据人人可及。" + }, + "website": "https://ourworldindata.org", + "data_url": "https://github.com/owid/owid-datasets", + "api_url": "https://docs.owid.io/projects/etl/api/", + "country": null, + "domains": [ + "global-development", + "health", + "energy", + "environment", + "education", + "poverty", + "demographics", + "economics" + ], + "geographic_scope": "global", + "update_frequency": "daily", + "tags": [ + "owid", + "our-world-in-data", + "global-development", + "oxford", + "open-data", + "covid-19", + "vaccination", + "poverty", + "climate-change", + "全球发展", + "数据可视化", + "开放数据" + ], + "data_content": { + "en": [ + "Health - COVID-19 vaccinations, disease burden, life expectancy, causes of death", + "Energy - Energy mix, renewable energy, fossil fuels, CO2 emissions", + "Environment - Climate change, air pollution, deforestation, biodiversity", + "Population - Demographics, fertility, migration, urbanization", + "Poverty - Extreme poverty, inequality, economic development", + "Education - Literacy, school enrollment, educational attainment", + "Technology - Internet access, technology adoption", + "Food - Hunger, agricultural production, food supply" + ], + "zh": [ + "健康 - COVID-19疫苗接种、疾病负担、预期寿命、死亡原因", + "能源 - 能源结构、可再生能源、化石燃料、碳排放", + "环境 - 气候变化、空气污染、森林砍伐、生物多样性", + "人口 - 人口统计、生育率、移民、城市化", + "贫困 - 极端贫困、不平等、经济发展", + "教育 - 识字率、入学率、教育程度", + "技术 - 互联网接入、技术采用", + "食品 - 饥饿、农业生产、食品供应" + ] + }, + "authority_level": "research", + "has_api": true, + "file_path": "academic/multidisciplinary/owid.json" + }, { "id": "cern-open-data", "name": { @@ -1580,13 +1703,13 @@ "api_url": "https://github.com/cernopendata/opendata.cern.ch", "country": null, "domains": [ - "Particle Physics", - "High Energy Physics", - "Nuclear Physics", - "Experimental Physics", - "Computational Physics", - "Data Science", - "Machine Learning" + "particle-physics", + "high-energy-physics", + "nuclear-physics", + "experimental-physics", + "computational-physics", + "data-science", + "machine-learning" ], "geographic_scope": "global", "update_frequency": "irregular", @@ -1665,25 +1788,25 @@ "api_url": "https://wiki.crystallography.net/RESTful_API/", "country": null, "domains": [ - "Crystallography", - "Materials Science", - "Chemistry", - "Physics", - "Mineralogy" + "crystallography", + "materials-science", + "chemistry", + "physics", + "mineralogy" ], "geographic_scope": "global", "update_frequency": "daily", "tags": [ "crystallography", - "crystal structures", - "materials science", + "crystal-structures", + "materials-science", "chemistry", "physics", "mineralogy", - "open access", - "CIF", - "atomic structures", - "research data" + "open-access", + "cif", + "atomic-structures", + "research-data" ], "data_content": { "en": [ @@ -1730,21 +1853,21 @@ "api_url": null, "country": null, "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" + "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": "regional", "update_frequency": "irregular", @@ -1825,29 +1948,29 @@ "api_url": null, "country": null, "domains": [ - "Political Science", - "Democracy Studies", - "Public Opinion", - "Governance", - "Political Values", - "Electoral Studies", - "Social Science" + "political-science", + "democracy-studies", + "public-opinion", + "governance", + "political-values", + "electoral-studies", + "social-science" ], "geographic_scope": "regional", "update_frequency": "irregular", "tags": [ - "political science", + "political-science", "democracy", "survey", - "public opinion", - "Asia", + "public-opinion", + "asia", "governance", - "electoral studies", - "political values", - "comparative politics", - "social science", - "Taiwan", - "academia sinica" + "electoral-studies", + "political-values", + "comparative-politics", + "social-science", + "taiwan", + "academia-sinica" ], "data_content": { "en": [ @@ -1890,4092 +2013,36363 @@ "file_path": "academic/social/asian-barometer.json" }, { - "id": "china-ndrc-computing", + "id": "china-csdc", "name": { - "en": "NDRC East-to-West Computing Resources Project", - "zh": "国家发展改革委东数西算工程" + "en": "China Securities Depository and Clearing Corporation", + "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": "China's central securities depository providing investor account statistics, settlement data, and securities registration services.", + "zh": "中国中央证券存管机构,提供投资者账户统计、清算结算数据和证券登记服务。" }, - "website": "https://www.ndrc.gov.cn/", - "data_url": "https://www.ndrc.gov.cn/xxgk/zcfb/tz/202312/t20231229_1363000.html", + "website": "https://www.chinaclear.cn", + "data_url": "https://www.chinaclear.cn/zdjs/tjyb/center_tjbg.shtml", "api_url": null, - "authority_level": "government", - "country": "CN", - "geographic_scope": "national", + "data_content": { + "en": [ + "Investor account statistics", + "Securities settlement data", + "Market capitalization reports", + "Bond custody data", + "Monthly statistical bulletins" + ], + "zh": [ + "投资者账户统计", + "证券结算数据", + "市值报告", + "债券托管数据", + "月度统计公报" + ] + }, + "authority_level": "other", + "update_frequency": "monthly", "domains": [ - "technology", - "infrastructure", - "economics", - "energy" + "finance" ], - "update_frequency": "irregular", "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" + "securities", + "clearing", + "settlement", + "investor", + "china" ], + "country": "CN", + "geographic_scope": "national", + "has_api": false, + "file_path": "china/china-csdc.json" + }, + { + "id": "china-nea", + "name": { + "en": "National Energy Administration of China", + "zh": "国家能源局" + }, + "description": { + "en": "China's National Energy Administration publishes energy production, consumption, and renewable energy statistics.", + "zh": "中国国家能源局发布能源生产、消费和可再生能源统计数据。" + }, + "website": "https://www.nea.gov.cn", + "data_url": "https://www.nea.gov.cn/sjzz/", + "api_url": null, "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" + "Electricity generation", + "energy consumption", + "renewable energy capacity", + "power grid statistics", + "oil and gas production" ], "zh": [ - "8大国家算力枢纽节点:京津冀、长三角、粤港澳大湾区、成渝、内蒙古、贵州、甘肃、宁夏枢纽节点覆盖", - "10个国家数据中心集群:算力规模超146万标准机架(截至2024年3月)", - "算力基础设施统计:数据中心上架率、绿电使用比例、枢纽间网络时延等关键指标", - "工程进展报告:投资规模、新建数据中心项目、枢纽节点地区建设进度", - "政策文件:关于深入实施东数西算工程加快构建全国一体化算力网的实施意见(2023年)", - "算力资源调度:跨区域算力调度机制、东西部算力协同数据", - "绿色算力指标:数据中心PUE值、可再生能源使用率、碳排放数据", - "网络性能数据:枢纽间网络时延(目标20毫秒)、带宽容量、网络传输费用" + "发电量、能源消费、可再生能源装机、电网统计、油气生产" ] }, + "authority_level": "government", + "update_frequency": "monthly", + "domains": [ + "energy" + ], + "tags": [ + "energy", + "electricity", + "renewable", + "power", + "china" + ], + "country": "CN", + "geographic_scope": "national", "has_api": false, - "file_path": "china/economy/macro/china-ndrc-computing.json" + "file_path": "china/china-nea.json" }, { - "id": "china-ndrc", + "id": "china-sac", "name": { - "en": "National Development and Reform Commission", - "zh": "国家发展和改革委员会", - "native": "国家发展和改革委员会" + "en": "Securities Association of China", + "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": "China's self-regulatory organization for the securities industry, publishing broker rankings, industry statistics, and member data.", + "zh": "中国证券行业自律组织,发布券商排名、行业统计和会员数据。" }, - "website": "https://www.ndrc.gov.cn", - "data_url": "https://www.ndrc.gov.cn/fgsj/", + "website": "https://www.sac.net.cn", + "data_url": "https://www.sac.net.cn/hysj/", "api_url": null, - "country": "CN", - "domains": [ - "economics", - "development", - "investment", - "prices" + "data_content": { + "en": [ + "Securities broker rankings", + "Industry revenue statistics", + "Member firm data", + "Practitioner registration", + "Securities market overview" + ], + "zh": [ + "券商排名", + "行业营收统计", + "会员公司数据", + "从业人员注册", + "证券市场概览" + ] + }, + "authority_level": "other", + "update_frequency": "quarterly", + "domains": [ + "finance" ], - "geographic_scope": "national", - "update_frequency": "monthly", "tags": [ + "securities", + "broker", "china", - "ndrc", - "macroeconomic", - "development", - "investment", - "prices", - "cpi", - "ppi", - "planning" + "sac", + "ranking" ], + "country": "CN", + "geographic_scope": "national", + "has_api": false, + "file_path": "china/china-sac.json" + }, + { + "id": "cninfo", + "name": { + "en": "CNINFO (Shenzhen Stock Exchange Information)", + "zh": "巨潮资讯网" + }, + "description": { + "en": "CSRC-designated information disclosure platform for listed companies on Shenzhen and Shanghai exchanges, providing financial reports, announcements, and market data.", + "zh": "证监会指定信息披露平台,提供深沪上市公司财务报告、公告和市场数据。" + }, + "website": "https://www.cninfo.com.cn", + "data_url": "https://www.cninfo.com.cn/new/commonUrl?url=disclosure/list/search", + "api_url": "https://www.cninfo.com.cn/new/hisAnnouncement/query", "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" + "Listed company financial reports", + "Regulatory announcements", + "IPO prospectuses", + "Bond information", + "Market statistics" ], "zh": [ - "固定资产投资 - 全国及省级按行业、地区分类的投资统计数据", - "价格监测 - 居民消费价格指数(CPI)、工业生产者出厂价格指数(PPI)及商品价格", - "经济发展规划 - 五年经济发展规划及国家战略", - "产业结构调整 - 产业政策数据和结构优化统计", - "区域发展 - 各省份经济发展指标及区域协调发展数据", - "节能降耗 - 能源消耗统计及能效提升数据", - "重大基础设施项目 - 重点基础设施项目投资与建设数据" + "上市公司财务报告", + "监管公告", + "IPO招股说明书", + "债券信息", + "市场统计" ] }, "authority_level": "government", - "has_api": false, - "file_path": "china/economy/macro/ndrc.json" + "update_frequency": "daily", + "domains": [ + "finance" + ], + "tags": [ + "cninfo", + "disclosure", + "listed-company", + "financial-report", + "china" + ], + "country": "CN", + "geographic_scope": "national", + "has_api": true, + "file_path": "china/cninfo.json" }, { - "id": "china-customs", + "id": "china-beike-research", "name": { - "en": "General Administration of Customs of China", - "zh": "中华人民共和国海关总署", - "native": "中华人民共和国海关总署" + "en": "Beike Research Institute", + "zh": "贝壳研究院" }, "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": "Beike Research Institute (贝壳研究院) is the research arm of KE Holdings Inc. (Beike / Lianjia 链家), one of China's largest housing transaction and services platforms. Leveraging Beike's nationwide network of brokerages and transaction records, the institute publishes widely cited second-hand housing price indices, rental market reports, city housing market monitors, and consumer housing demand research. Coverage includes new home sales, second-hand transactions, and rental listings across 100+ Chinese cities.", + "zh": "贝壳研究院是贝壳找房(链家)旗下的研究机构。贝壳找房是中国最大的居住服务平台之一。依托贝壳全国经纪门店网络和交易数据,研究院发布广泛引用的二手房价格指数、租赁市场报告、城市房地产市场监测报告及购房者需求研究。覆盖100多个中国城市的新房销售、二手房交易和租赁市场数据。" }, - "website": "http://www.customs.gov.cn", - "data_url": "http://www.customs.gov.cn", + "website": "https://research.ke.com", + "data_url": "https://research.ke.com", "api_url": null, + "authority_level": "market", "country": "CN", + "geographic_scope": "national", "domains": [ - "trade", - "economics", - "international_commerce" + "real-estate", + "economics" ], - "geographic_scope": "national", "update_frequency": "monthly", "tags": [ - "china", - "customs", - "foreign-trade", - "import", - "export", - "trade-statistics", - "hs-code", - "merchandise-trade" + "real-estate", + "贝壳研究院", + "beike", + "二手房", + "second-hand-housing", + "rental-market", + "租赁", + "price-index", + "housing-demand" ], "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" + "Beike Second-hand Housing Price Index - Monthly second-hand housing price index across major Chinese cities", + "Rental Market Reports - Rental price trends, vacancy rates and tenant behavior analysis", + "New Home Sales Data - Monthly new home sales volume and price data from Beike platform", + "City Real Estate Monitors - City-level housing market monitoring reports", + "Housing Demand Research - Consumer housing purchase intention and demand surveys", + "Agency Industry Reports - Real estate brokerage industry data and research" ], "zh": [ - "进出口总额 - 总贸易额、按月、季度和年度分类的进出口数据", - "按国家/地区分类的贸易 - 与全球主要贸易伙伴的双边贸易统计", - "按商品分类的贸易 - 按HS编码(2位、4位、6位、8位)分类的进出口数据", - "按海关关区分类的贸易 - 主要海关(上海、深圳、北京等)的区域贸易统计", - "按企业类型分类的贸易 - 国有企业、外商投资企业和民营企业的贸易", - "贸易差额 - 月度和年度贸易顺差/逆差数据", - "加工贸易 - 来料加工和进料加工", - "商品价格和数量 - 主要进出口商品的单价和数量", - "特殊贸易区 - 自由贸易区、保税区和特殊海关监管区域" + "贝壳二手房价格指数 - 覆盖主要城市的月度二手房价格指数", + "租赁市场报告 - 租金价格走势、空置率及租客行为分析", + "新房销售数据 - 贝壳平台月度新房销售量和价格数据", + "城市房地产监测 - 城市层级的房地产市场监测报告", + "购房需求研究 - 消费者购房意向和需求调研", + "经纪行业报告 - 房地产经纪行业数据与研究" ] }, - "authority_level": "government", "has_api": false, - "file_path": "china/economy/trade/customs.json" + "file_path": "china/construction/china-beike-research.json" }, { - "id": "china-mofcom", + "id": "china-caupd", "name": { - "en": "Ministry of Commerce of China", - "zh": "中华人民共和国商务部", - "native": "中华人民共和国商务部" + "en": "China Academy of Urban Planning and Design", + "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 China Academy of Urban Planning and Design (CAUPD), established in 1954 and operating under the Ministry of Natural Resources, is China's foremost national-level research institute for urban and rural planning. CAUPD plays a central role in formulating China's urban planning standards, national spatial planning strategies, and major city and regional development plans. The academy has led planning work for hundreds of Chinese cities, key national development zones, and major infrastructure corridors. CAUPD publishes authoritative urban development research including annual urban-rural development reports, housing market analysis, transportation planning studies, and regional spatial planning guidelines. Its data and expertise directly inform the National Five-Year Plans, city master plans, and national policies on urbanization, land use, and sustainable urban development.", + "zh": "中国城市规划设计研究院(中规院)成立于1954年,隶属于自然资源部,是中国最权威的国家级城乡规划研究机构。中规院在制定中国城乡规划标准、国土空间规划战略和重大城市及区域发展规划方面发挥核心作用,主导了数百个城市、国家重点开发区和重大基础设施廊道的规划工作。院所发布权威城市发展研究成果,包括年度城乡发展报告、住房市场分析、交通规划研究和区域国土空间规划指南,其数据和专业知识直接支撑国家五年规划、城市总体规划及城镇化、土地利用和可持续城市发展相关国家政策的制定。" }, - "website": "http://www.mofcom.gov.cn", - "data_url": "https://data.mofcom.gov.cn", + "website": "https://www.caupd.com/", + "data_url": "https://www.caupd.com/", "api_url": null, + "authority_level": "research", "country": "CN", + "geographic_scope": "national", "domains": [ - "trade", - "investment", - "commerce", - "economics" + "urban-development", + "land-use", + "transportation", + "demographics" ], - "geographic_scope": "national", - "update_frequency": "monthly", + "update_frequency": "annual", "tags": [ - "china", - "commerce", - "fdi", - "odi", - "foreign-investment", - "retail", - "ecommerce", - "services-trade" + "城市规划", + "urban-planning", + "城乡规划", + "urban-rural-planning", + "国土空间规划", + "national-spatial-planning", + "城镇化", + "urbanization", + "住房", + "housing", + "交通规划", + "transportation-planning", + "区域规划", + "regional-planning", + "城市发展", + "urban-development", + "城市群", + "city-cluster", + "中规院", + "caupd", + "城市总体规划", + "city-master-plan", + "土地利用", + "land-use", + "可持续城市", + "sustainable-urban" ], "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" + "China Urban-Rural Development Annual Report: comprehensive statistics on urbanization rate, urban construction land expansion, population migration, and city infrastructure investment", + "National spatial planning research: analysis of national territorial spatial planning frameworks, land use optimization, and ecological red line delineation", + "Housing market research: housing supply and demand statistics, affordability indices, and rental market analysis for major Chinese cities", + "Urban transportation planning studies: data on urban rail transit development, road network density, traffic congestion indices, and public transit ridership", + "City cluster development reports: planning data and demographic-economic analysis for Beijing-Tianjin-Hebei, Yangtze River Delta, Pearl River Delta, and Chengdu-Chongqing city clusters", + "Urban renewal and brownfield data: statistics on old city renovation projects, urban village redevelopment, and heritage preservation", + "Municipal infrastructure capacity analysis: water supply, wastewater treatment, solid waste management, and utility coverage in Chinese cities", + "Rural settlement planning: data on rural land consolidation, village relocation, and rural infrastructure improvement programs", + "Smart city and digital urban management research: data on city brain systems, digital twin pilots, and urban data platform deployment" ], "zh": [ - "外商直接投资(FDI) - 按国家、行业和地区分类的FDI流入;外商投资企业数量", - "对外直接投资(ODI) - 按目的国、行业和投资方式分类的中国对外FDI", - "零售销售 - 社会消费品零售总额、网上零售额和按类别分类的零售", - "电子商务 - 网络购物交易、跨境电商和数字商务统计", - "服务贸易 - 按类别(运输、旅游、金融服务等)和国家分类的服务贸易", - "双边经济合作 - 经贸协定、合作区和双边贸易额", - "国内商业 - 批发零售业、商品市场和流通业统计", - "对外贸易政策 - 贸易救济措施、反倾销案件和进出口许可", - "区域发展 - 区域经济发展数据和对外开放政策" + "中国城乡发展年度报告:城镇化率、城市建设用地扩张、人口迁移和城市基础设施投资综合统计", + "国土空间规划研究:国家国土空间规划框架、土地利用优化和生态保护红线划定分析", + "住房市场研究:主要城市住房供需统计、可负担性指数和租赁市场分析", + "城市交通规划研究:城市轨道交通建设、路网密度、交通拥堵指数和公共交通客运量数据", + "城市群发展报告:京津冀、长三角、珠三角和成渝城市群规划数据和人口经济分析", + "城市更新和棕地数据:老旧城区改造项目、城中村改造和历史文化保护统计", + "市政基础设施能力分析:中国城市供水、污水处理、固体废弃物管理和公用事业覆盖情况", + "乡村定居点规划:农村土地整治、村庄搬迁和农村基础设施改善项目数据", + "智慧城市和数字城市管理研究:城市大脑系统、数字孪生试点和城市数据平台部署数据" ] }, - "authority_level": "government", "has_api": false, - "file_path": "china/economy/trade/mofcom.json" + "file_path": "china/construction/china-caupd.json" }, { - "id": "cscse", + "id": "china-ccia", "name": { - "en": "Chinese Service Center for Scholarly Exchange", - "zh": "教育部留学服务中心" + "en": "China Construction Industry Association", + "zh": "中国建筑业协会" }, "description": { - "en": "CSCSE is a directly affiliated institution under the Ministry of Education of China, primarily engaged in services related to studying abroad, returning from overseas studies, and international educational exchanges. It provides comprehensive services including overseas academic credential evaluation, international cooperation programs, and study abroad consulting.", - "zh": "教育部留学服务中心是教育部直属事业单位,主要从事出国留学、留学回国和来华留学以及教育国际交流与合作的有关服务。提供国(境)外学历学位认证、国际合作项目、留学咨询等综合性服务。" + "en": "The China Construction Industry Association (CCIA) is the national industry organization representing China's construction and contracting enterprises. As the world's largest construction market, China's building sector contributes roughly 7% of GDP and employs tens of millions of workers. CCIA publishes the Annual Statistical Report on China's Construction Industry, which provides comprehensive data on total output value, number of enterprises, workforce, contract value, housing construction area, and safety incidents. It also releases rankings of China's top construction enterprises, construction technology innovation data, and industry development reports. CCIA data is essential for tracking infrastructure investment execution, real estate development activity, and the competitiveness of Chinese construction firms in domestic and overseas markets.", + "zh": "中国建筑业协会(中建协)是代表中国建筑和承包企业的全国性行业组织。中国是全球最大的建筑市场,建筑业约占GDP的7%,吸纳数千万就业人员。中建协发布《建筑业统计年报》,提供建筑业总产值、企业数量、从业人数、合同额、房屋建筑面积及安全生产事故等综合数据。协会同时发布中国建筑业综合实力百强企业排名、建筑技术创新数据及行业发展报告。中建协数据对追踪基础设施投资执行情况、房地产开发活动以及中国建筑企业在国内外市场竞争力具有重要参考价值。" }, - "website": "https://portal.cscse.edu.cn/", - "data_url": "https://zwfw.cscse.edu.cn", + "website": "https://www.zgjzy.org.cn", + "data_url": "http://www.zgjzy.org.cn/newsList/11/1.html", "api_url": null, - "authority_level": "government", + "authority_level": "other", "country": "CN", + "geographic_scope": "national", "domains": [ - "education", - "international-exchange", - "credential-verification" + "economics", + "industry", + "infrastructure", + "statistics" ], - "geographic_scope": "national", - "update_frequency": "daily", + "update_frequency": "annual", "tags": [ - "留学服务", - "学历认证", - "credential-verification", - "overseas-education", - "study-abroad", - "留学回国", - "国际教育", - "international-education", - "CSCSE", - "教育部", - "Ministry of Education" + "中国建筑业", + "china-construction-industry", + "中建协", + "ccia", + "建筑业统计年报", + "construction-statistical-report", + "建筑业总产值", + "construction-output-value", + "建筑企业", + "construction-enterprises", + "百强建筑企业", + "top-100-contractors", + "房屋建筑面积", + "building-construction-area", + "基础设施投资", + "infrastructure-investment", + "工程承包", + "engineering-contracting", + "建筑业就业", + "construction-employment", + "安全生产", + "safety-production", + "海外工程", + "overseas-construction" ], "data_content": { "en": [ - "Overseas academic credential and degree verification for international students", - "Database of recognized foreign universities and institutions", - "International cooperation program information (e.g., CSCSE-SQA programs)", - "Study abroad service records and consultation data", - "Returning scholar services and employment information", - "Credential verification dishonest behavior records" + "Annual construction industry statistics: total output value, number of enterprises, workforce size, and contract value by province", + "Enterprise rankings: China's top 100 construction enterprises by revenue, including state-owned and private contractors", + "Housing construction area: floor space under construction, completed, and newly started by building type", + "Overseas contracting: Chinese construction companies' overseas project contract value and completion by region", + "Safety statistics: construction site accidents, fatalities, and safety compliance metrics", + "Technology and innovation: adoption of BIM, green building, and prefabrication in China's construction sector", + "Workforce data: employment, wages, and migrant worker statistics in the construction industry", + "Industry development reports: analysis of construction market trends, policy impact, and enterprise competitiveness" ], "zh": [ - "国(境)外学历学位认证服务数据", - "认证院校数据库(覆盖全球各国高等教育机构)", - "国际合作项目信息(如中英SQA项目等)", - "留学服务记录和咨询数据", - "留学回国人员服务与就业信息", - "学历认证失信行为公示记录" + "建筑业年度统计:按省份分类的总产值、企业数量、从业人数及合同额", + "企业排名:按营业收入排列的中国建筑业综合实力百强企业,含国有和民营承包商", + "房屋建筑面积:按建筑类型分类的在建、竣工及新开工面积", + "海外承包工程:中国建筑企业按地区分类的海外工程合同额和完成额", + "安全生产统计:建筑工地事故、死亡人数及安全合规指标", + "技术与创新:BIM、绿色建筑和装配式建筑在中国建筑业的应用情况", + "从业人员数据:建筑业就业人数、工资及农民工统计", + "行业发展报告:建筑市场趋势、政策影响及企业竞争力分析" ] }, "has_api": false, - "file_path": "china/education/cscse.json" + "file_path": "china/construction/china-ccia.json" }, { - "id": "cdgdc", + "id": "china-cih-index", "name": { - "en": "China Academic Degrees & Graduate Education Development Center", - "zh": "教育部学位与研究生教育发展中心" + "en": "China Index Academy (CIH Cloud)", + "zh": "中指研究院(中指云)" }, "description": { - "en": "The China Academic Degrees & Graduate Education Development Center (CDGDC) is a public institution directly under the Ministry of Education of China. It is responsible for degree and discipline evaluation, quality monitoring of graduate education, thesis sampling inspection, and professional degree evaluation. The center provides comprehensive information services for China's degree and graduate education system.", - "zh": "教育部学位与研究生教育发展中心是教育部直属事业单位,负责学位与学科评估、研究生教育质量监测、学位论文抽检、专业学位评估等工作。中心为中国学位与研究生教育体系提供全面的信息服务和质量评估。" + "en": "China Index Academy (CIH, 中指研究院) is one of China's leading independent real estate research institutions. Its 'CIH Cloud' (中指云) platform publishes the widely referenced China Real Estate Index System (CREIS), including the 100-City Price Index, land auction (招拍挂) transaction data, top developer sales rankings (TOP100 房企销售榜), and monthly / annual real estate market monitoring reports covering residential, commercial, and land markets across Chinese cities.", + "zh": "中指研究院(CIH)是中国领先的独立房地产研究机构之一。其旗下的中指云平台发布广泛引用的中国房地产指数系统(CREIS),包括百城价格指数、土地招拍挂交易数据、房企销售TOP100排行榜,以及覆盖中国各城市住宅、商业和土地市场的月度/年度房地产市场监测报告。" }, - "website": "https://www.chinadegrees.cn/", - "data_url": "https://www.chinadegrees.cn/", + "website": "https://www.cih-index.com", + "data_url": "https://www.cih-index.com", "api_url": null, - "authority_level": "government", + "authority_level": "research", "country": "CN", "geographic_scope": "national", "domains": [ - "education", - "academic-degrees", - "graduate-education" + "real-estate", + "economics" ], - "update_frequency": "irregular", + "update_frequency": "monthly", "tags": [ - "学位", - "研究生教育", - "academic degrees", - "graduate education", - "学科评估", - "discipline evaluation", - "论文抽检", - "thesis inspection", - "教育质量", - "education quality", - "专业学位", - "professional degree", - "博士", - "硕士", - "PhD", - "master", - "学位认证", - "degree certification" + "real-estate", + "房地产", + "中指研究院", + "CREIS", + "百城价格指数", + "land-market", + "土地招拍挂", + "房企排名", + "TOP100", + "price-index" ], "data_content": { "en": [ - "Discipline evaluation results and rankings", - "Degree authorization information", - "Graduate thesis sampling inspection results", - "Professional degree evaluation data", - "Graduate education quality monitoring data", - "Academic degree certification services", - "Graduate student party building data", - "Journal and publication information" + "100-City Price Index - Monthly new and second-hand housing price index covering 100 Chinese cities", + "CREIS Land Market Data - Land auction transaction data including premium rates, supply, and takeup", + "TOP100 Developer Sales Rankings - Monthly and annual sales rankings of Chinese real estate developers", + "Real Estate Market Monitoring Reports - Monthly and annual market monitoring covering residential and commercial markets", + "City Research Reports - In-depth market research reports for major Chinese cities", + "Developer Financial & Operating Data - Quarterly operating and financial metrics for major listed and unlisted developers" ], "zh": [ - "学科评估结果与排名", - "学位授权点信息", - "学位论文抽检结果", - "专业学位评估数据", - "研究生教育质量监测数据", - "学位认证服务", - "研究生党建数据", - "期刊与出版物信息" + "百城价格指数 - 覆盖中国100个城市的月度新房和二手房价格指数", + "CREIS土地市场数据 - 土地招拍挂交易数据,包括溢价率、供应量和去化率", + "TOP100房企销售排行榜 - 中国房地产开发商月度和年度销售排名", + "房地产市场监测报告 - 覆盖住宅和商业市场的月度和年度市场监测", + "城市研究报告 - 中国主要城市的深度市场研究报告", + "房企财务与经营数据 - 主要上市及非上市房企的季度经营和财务指标" ] }, "has_api": false, - "file_path": "china/education/higher_education/cdgdc.json" + "file_path": "china/construction/china-cih-index.json" }, { - "id": "china-gaokao-chsi", + "id": "china-construction-standards", "name": { - "en": "China Postgraduate Admissions Information Network", - "zh": "中国研究生招生信息网" + "en": "China Engineering Construction Standardization Association", + "zh": "中国工程建设标准化协会", + "native": "中国工程建设标准化协会" }, "description": { - "en": "China Postgraduate Admissions Information Network (CHSI Graduate Admissions) is the official platform designated by the Ministry of Education for postgraduate entrance examination online registration and admission adjustment. Operated by the Student Service and Development Center of the Ministry of Education, it provides authoritative services including online registration, adjustment system, institution inquiry, program directory, admission policy releases, and examination score queries for national master's and doctoral degree programs.", - "zh": "中国研究生招生信息网是教育部指定的研究生入学考试网上报名及调剂的唯一官方网站。由教育部学生服务与素质发展中心主办,提供全国硕士、博士研究生招生网上报名、调剂服务系统、院校信息查询、专业目录查询、招生政策发布、考试成绩查询等权威服务。" + "en": "The China Engineering Construction Standardization Association (CECS) is responsible for developing and managing engineering construction standards in China. It provides access to national and industry construction standards, technical specifications, and standard revision information.", + "zh": "中国工程建设标准化协会负责制定和管理中国工程建设标准。提供国家和行业建设标准、技术规范和标准修订信息。" }, - "website": "https://yz.chsi.com.cn/", - "data_url": "https://yz.chsi.com.cn/sch/", + "website": "https://www.cecs.org.cn", + "data_url": "https://www.cecs.org.cn/biaozhun/", "api_url": null, - "authority_level": "government", "country": "CN", - "geographic_scope": "national", "domains": [ - "education", - "postgraduate-admissions", - "higher-education" + "construction", + "standards", + "engineering" ], - "update_frequency": "real-time", - "tags": [ - "研招网", - "postgraduate admissions", - "考研", - "graduate entrance exam", - "硕士招生", - "master's admissions", - "博士招生", - "doctoral admissions", - "网上报名", - "online registration", - "调剂系统", - "adjustment system", - "院校查询", - "institution search", - "专业目录", - "program directory", - "成绩查询", - "score inquiry", - "教育部", - "Ministry of Education", - "学信网", - "CHSI", - "研究生入学考试", - "postgraduate entrance examination", - "推免服务", - "exemption recommendation" + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "china", + "construction-standards", + "engineering", + "building-codes", + "technical-specifications" ], "data_content": { "en": [ - "Postgraduate Entrance Exam Registration - online registration system for national master's and doctoral entrance examinations", - "Admission Adjustment System - adjustment intention collection and adjustment service system for postgraduate admissions", - "Institution Information Database - detailed information on recruiting institutions, including contact info, admission policies, and enrollment plans", - "Program Directory - comprehensive catalog of master's and doctoral programs by institution and discipline", - "Admission Policies - releases of Ministry of Education policies, management regulations, and institutional admission guidelines", - "Exam Score Queries - initial exam score inquiries and recheck applications", - "Exemption Recommendation Services - recommendation and admission services for exempt students (推免生)", - "Information Disclosure Platform - admission information disclosure including admission lists and enrollment statistics", - "Consultation Services - online Q&A platform for admissions policies and procedures" + "National Construction Standards - Mandatory and recommended national standards for construction", + "Industry Standards - Sector-specific construction and engineering standards", + "Technical Specifications - Detailed technical guidelines for construction processes", + "Standard Revisions - Updates and revisions to existing construction standards" ], "zh": [ - "研究生入学考试报名 - 全国硕士、博士研究生入学考试网上报名系统", - "调剂服务系统 - 研究生招生调剂意向采集和调剂服务系统", - "招生单位信息库 - 各招生单位详细信息,包括联系方式、招生政策、招生计划等", - "专业目录查询 - 按招生单位和学科门类的硕士、博士专业目录", - "招生政策发布 - 教育部政策文件、招生管理规定、各单位招生简章等", - "考试成绩查询 - 初试成绩查询及成绩复核申请", - "推免服务 - 推荐免试研究生推荐和接收服务", - "信息公开平台 - 招生信息公开,包括录取名单、招生统计等", - "在线咨询服务 - 招生政策和流程的在线问答平台" + "国家建设标准 - 建设工程强制性和推荐性国家标准", + "行业标准 - 建筑和工程行业专项标准", + "技术规范 - 施工工艺详细技术指南", + "标准修订 - 现有建设标准的更新和修订" ] }, + "authority_level": "government", "has_api": false, - "file_path": "china/education/higher_education/china-gaokao-chsi.json" + "file_path": "china/construction/china-construction-standards.json" }, { - "id": "china-moe-higher-education", + "id": "china-creprice", "name": { - "en": "Ministry of Education of China - Higher Education Statistics", - "zh": "中华人民共和国教育部高等教育统计" + "en": "China Real Estate Price Information Network", + "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": "China Real Estate Price Information Network (中国房价行情, creprice.cn) is a real estate price data platform operated by Soufun/Fang.com Holdings, widely used by Chinese financial institutions for housing collateral valuation and address standardization. The platform publishes monthly residential and rental price data at the district, community, and compound level across more than 300 Chinese cities, as well as price trend analysis and market monitoring reports.", + "zh": "中国房价行情(creprice.cn)是由搜房/房天下集团运营的房地产价格数据平台,广泛用于中国金融机构的住房抵押估值和地址标准化。该平台发布覆盖300多个中国城市的月度住宅和租赁价格数据,精细到区、小区和楼盘层级,并提供价格走势分析和市场监测报告。" }, - "website": "http://www.moe.gov.cn/", - "data_url": "http://www.moe.gov.cn/jyb_sjzl/sjzl_fztjgb/", + "website": "http://www.creprice.cn", + "data_url": "http://www.creprice.cn", "api_url": null, - "authority_level": "government", + "authority_level": "market", "country": "CN", + "geographic_scope": "national", "domains": [ - "education", - "higher_education", - "statistics" + "real-estate" ], - "geographic_scope": "national", - "update_frequency": "annual", + "update_frequency": "monthly", "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" + "real-estate", + "房价行情", + "residential-price", + "rental-price", + "房价指数", + "housing-valuation", + "搜房", + "price-index" ], "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)" + "City Housing Price Rankings - Monthly residential price rankings across 300+ Chinese cities", + "Community-Level Price Data - Detailed price data at community (xiaoqu) and compound level", + "Rental Price Data - Monthly rental price data with city and district breakdowns", + "Price Trend Analysis - Year-on-year and month-on-month price movement analysis", + "Housing Market Monitoring Reports - Market monitoring reports focused on price dynamics" ], "zh": [ - "高等教育招生与在校生数据(按本科、硕士、博士层次)", - "毕业生统计(按学位类型和学科分类)", - "高校机构数据(院校数量、办学规模)", - "师资队伍统计(教师数量、学历结构、生师比)", - "基础设施数据(校园面积、建筑面积、设备价值)", - "教育质量指标(巩固率、毕业率)", - "民办/公办院校对比数据", - "高等职业教育统计", - "特殊教育招生数据", - "高等教育发展历史趋势(2005年至今年度数据)" + "城市房价排行榜 - 覆盖300多个中国城市的月度住宅价格排名", + "小区层级价格数据 - 精细到小区和楼盘层级的价格数据", + "租金价格数据 - 月度租金价格数据,含城市和区级别细分", + "价格走势分析 - 同比和环比的价格变动分析", + "房地产市场监测报告 - 以价格动态为核心的市场监测报告" ] }, "has_api": false, - "file_path": "china/education/higher_education/china-moe-higher-education.json" + "file_path": "china/construction/china-creprice.json" }, { - "id": "moe-china", + "id": "china-cric", "name": { - "en": "Ministry of Education of the People's Republic of China", - "zh": "中华人民共和国教育部" + "en": "China Real Estate Information Corporation (CRIC)", + "zh": "克而瑞研究中心(CRIC)" }, "description": { - "en": "The Ministry of Education of the People's Republic of China (MOE) is the government department responsible for comprehensive education management nationwide. It formulates education policies, publishes education statistics, supervises educational institutions at all levels, and provides authoritative data on education development including enrollment, teacher staffing, infrastructure, and educational expenditure across China.", - "zh": "中华人民共和国教育部是主管全国教育事业的国务院组成部门。负责制定教育政策、发布教育统计数据、监督管理各级各类教育机构,提供包括学生入学、师资配备、基础设施建设、教育经费等方面的权威教育发展数据。" + "en": "China Real Estate Information Corporation (CRIC, 克而瑞), a subsidiary of E-House (China) Enterprise Holdings Limited, is one of China's most cited commercial real estate research providers. CRIC publishes monthly top developer sales rankings (房企销售榜), developer financing monitors (房企融资监测), debt-maturity analyses for listed and unlisted developers, land market data, and city-level housing market reports. Data sources include CRIC's proprietary transaction database covering 300+ Chinese cities.", + "zh": "克而瑞(CRIC)是易居(中国)企业控股有限公司旗下机构,是中国被引用最多的商业房地产研究机构之一。克而瑞发布月度房企销售榜、房企融资监测、上市及非上市房企债务到期分析、土地市场数据和城市层级的房地产市场报告。数据来源包括克而瑞自有的、覆盖300多个中国城市的交易数据库。" }, - "website": "http://www.moe.gov.cn/", - "data_url": "http://www.moe.gov.cn/jyb_xxgk/xxgk/neirong/tongji/", + "website": "https://www.cric.com", + "data_url": "https://www.cric.com/newhouse/", "api_url": null, - "authority_level": "government", + "authority_level": "market", "country": "CN", + "geographic_scope": "national", "domains": [ - "education", - "education-statistics", - "education-policy", - "higher-education", - "basic-education" + "real-estate", + "finance" ], - "geographic_scope": "national", - "update_frequency": "annual", + "update_frequency": "monthly", "tags": [ - "教育部", - "ministry-of-education", - "教育统计", - "education-statistics", - "教育事业发展", - "education-development", - "学校统计", - "school-statistics", - "学生数据", - "student-data", - "教师数据", - "teacher-data", - "教育经费", - "education-expenditure", - "高等教育", - "higher-education", - "基础教育", - "basic-education", - "职业教育", - "vocational-education", - "学前教育", - "preschool-education", - "教育政策", - "education-policy", - "教育法规", - "education-regulations" + "real-estate", + "房地产", + "克而瑞", + "CRIC", + "房企销售榜", + "developer-ranking", + "房企融资", + "debt-maturity", + "land-market" ], "data_content": { "en": [ - "National education development statistics bulletin (annual comprehensive education data)", - "Education statistics data (enrollment, graduates, school count, teacher staffing across all levels)", - "China Education Monitoring and Evaluation Statistical Indicator System", - "School (institution) code management data", - "National education expenditure statistics (annual education funding execution data)", - "Annual data on students studying abroad and international students in China", - "Education policy documents and regulations", - "Administrative licensing information", - "Financial budgets and final accounts", - "Government procurement information", - "Personnel work information", - "Education information disclosure annual reports", - "Ministry of Education bulletins and briefings" + "Developer Sales Rankings - Monthly TOP200 Chinese real estate developer sales rankings", + "Developer Financing Monitor - Monthly tracking of developer bond issuance and financing activities", + "Debt Maturity Analysis - Debt maturity and liquidity risk analysis for major Chinese developers", + "Land Market Reports - Monthly land auction data across 300+ Chinese cities", + "City Housing Market Reports - City-level new home sales, inventory, and takeup cycle analysis", + "Industry Benchmark Reports - Annual China real estate industry benchmark and forecasting reports" ], "zh": [ - "全国教育事业发展统计公报(年度综合教育数据)", - "教育统计数据(各级各类学校招生、毕业生、学校数量、教师配备等)", - "中国教育监测与评价统计指标体系", - "学校(机构)代码管理数据", - "全国教育经费执行情况统计公告(年度教育经费投入数据)", - "年度出国留学、来华留学数据", - "教育政策文件与法规", - "行政许可信息", - "财政预算、决算信息", - "政府采购信息", - "人事工作信息", - "教育信息公开年度报告", - "教育部公报、简报" + "房企销售排行榜 - 月度中国房地产开发商TOP200销售排名", + "房企融资监测 - 房企债券发行和融资活动月度跟踪", + "债务到期分析 - 主要中国房企的债务到期及流动性风险分析", + "土地市场报告 - 覆盖300多个中国城市的月度土地招拍挂数据", + "城市房地产市场报告 - 城市层级的新房销售、库存和去化周期分析", + "行业研究报告 - 中国房地产行业年度基准与预测报告" ] }, "has_api": false, - "file_path": "china/education/moe-china.json" + "file_path": "china/construction/china-cric.json" }, { - "id": "moe-gaokao", + "id": "china-cscec", "name": { - "en": "Sunshine Gaokao Platform", - "zh": "阳光高考信息平台" + "en": "China State Construction Engineering Corporation", + "zh": "中国建筑集团有限公司" }, "description": { - "en": "The Sunshine Gaokao Information Platform is the official platform designated by China's Ministry of Education for the 'Sunshine Project' in higher education admissions. Launched on May 10, 2005, it is operated by the Ministry of Education's Student Service and Quality Development Center. The platform provides comprehensive services including admissions announcements, university information, online consultation, enrollment plans, Gaokao updates, and volunteer application guidance. In 2024, it introduced the 'Sunshine Volunteer' information service system, offering data-driven services such as major recommendations, career assessments, and employment prospects based on big data analysis.", - "zh": "阳光高考信息平台是教育部高校招生阳光工程指定信息发布平台,由教育部学生服务与素质发展中心主办。平台于2005年5月10日正式开通,集招生公示、院校信息、在线咨询、招生计划、高考动态、志愿参考等内容于一体。2024年,平台开通\"阳光志愿\"信息服务系统,基于招生、就业、调查、测评等大数据,结合深度专业和职业解读,提供志愿推荐、专业介绍、心理测评、就业去向及前景查询等服务。" + "en": "China State Construction Engineering Corporation (CSCEC) is the world's largest construction conglomerate and a central state-owned enterprise under SASAC. It is the primary executor of China's major infrastructure and construction projects, including highways, railways, bridges, urban development, and real estate. CSCEC publishes annual reports, ESG and sustainability reports, project completion statistics, housing delivery data, and financial disclosures, offering key indicators on China's construction industry scale, technological advancement, and green building adoption.", + "zh": "中国建筑集团有限公司(中国建筑)是全球最大的投资建设集团,国务院国资委直属中央企业。主要承担国家重大基础设施及建设项目,涵盖公路、铁路、桥梁、城镇化开发及房地产。中国建筑发布年度报告、ESG与可持续发展报告、项目竣工统计、住房交付数据及财务披露,为中国建筑行业规模、技术进步和绿色建筑发展提供核心指标。" }, - "website": "https://gaokao.chsi.com.cn/", - "data_url": "https://gaokao.chsi.com.cn/", + "website": "https://www.cscec.com", + "data_url": "https://www.cscec.com", "api_url": null, - "authority_level": "government", + "authority_level": "commercial", "country": "CN", "geographic_scope": "national", + "update_frequency": "annual", "domains": [ - "education", - "higher-education", - "admissions" + "construction", + "infrastructure", + "real-estate", + "urban-development" ], - "update_frequency": "daily", "tags": [ - "阳光高考", - "Sunshine Gaokao", - "高考", - "Gaokao", - "college entrance examination", - "大学招生", - "university admissions", - "志愿填报", - "volunteer application", - "阳光志愿", - "Sunshine Volunteer", - "招生计划", - "enrollment plan", - "院校信息", - "university information", - "专业介绍", - "major introduction", - "就业前景", - "employment prospects", - "教育部", - "Ministry of Education", - "学信网", - "CHSI", - "高校招生", - "higher education enrollment", - "招生章程", - "admission regulations" + "china", + "cscec", + "中国建筑", + "construction", + "建筑工程", + "infrastructure", + "基础设施", + "real-estate", + "房地产", + "state-owned-enterprise", + "央企", + "green-building", + "绿色建筑", + "annual-report", + "工程建设" ], "data_content": { "en": [ - "University Admissions Information - comprehensive enrollment plans, admission scores, and admission regulations for Chinese universities", - "Major and Specialty Database - detailed introductions to university majors, curriculum, and career prospects", - "Gaokao Policies and Updates - latest national and provincial Gaokao policies, examination schedules, and reform updates", - "Sunshine Volunteer Service - AI-powered volunteer application recommendations based on scores, preferences, and employment data", - "Online Consultation Services - direct Q&A with university admissions offices and education authorities", - "Admissions Announcements - official public notices of special admissions, self-enrollment, and admission results", - "Employment and Career Data - employment rates, salary trends, and career paths for different majors and universities", - "Psychological Assessment Tools - career interest tests and aptitude evaluations for major selection", - "Provincial Gaokao Information - region-specific examination requirements, score lines, and admission policies" + "Annual Reports - Revenue, profit, new contract signings, and project completion statistics by business segment", + "ESG & Sustainability Reports - Carbon emissions, energy consumption, green building certifications, and safety indicators", + "Housing Delivery Data - Residential units completed and delivered, housing area by province", + "Major Project Statistics - Key infrastructure projects undertaken including airports, stadiums, and urban complexes", + "Financial Disclosures - Audited financial statements, capital expenditure, and debt structure data" ], "zh": [ - "高校招生信息 - 全国高校招生计划、录取分数线、招生章程等综合信息", - "专业与学科数据库 - 大学专业详细介绍、课程设置、就业前景等信息", - "高考政策与动态 - 最新国家及各省高考政策、考试安排、改革动态", - "阳光志愿服务 - 基于分数、偏好和就业数据的智能志愿填报推荐系统", - "在线咨询服务 - 与高校招生办和教育主管部门的直接问答平台", - "招生公示信息 - 特殊类型招生、自主招生、录取结果等官方公示", - "就业与职业数据 - 不同专业和高校的就业率、薪资趋势、职业发展路径", - "心理测评工具 - 职业兴趣测试、能力评估等专业选择辅助工具", - "各省高考信息 - 分省考试要求、分数线、录取政策等区域性信息" + "年度报告 - 按业务板块分类的营收、利润、新签合同及竣工统计", + "ESG与可持续发展报告 - 碳排放、能源消耗、绿色建筑认证及安全指标", + "住房交付数据 - 各省住宅竣工和交付套数及建筑面积", + "重大项目统计 - 机场、体育场馆、城市综合体等重点基础设施项目", + "财务信息披露 - 经审计财务报表、资本支出及债务结构数据" ] }, "has_api": false, - "file_path": "china/education/moe-gaokao.json" + "file_path": "china/construction/china-cscec.json" }, { - "id": "china-nfra", + "id": "china-fangjia", "name": { - "en": "National Financial Regulatory Administration", - "zh": "国家金融监督管理总局", - "native": "国家金融监督管理总局" + "en": "Fangjia.com - China Housing Price Network", + "zh": "房价网(fangjia.com)" }, "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": "Fangjia.com (房价网) is a specialized Chinese housing price data platform that compiles residential transaction and listing data across major Chinese cities. The platform is widely adopted by financial institutions for address standardization of housing collateral and publishes monthly housing price indices at the city, district, and community level. Fangjia claims over 90% address-standardization coverage, making it a reference dataset for mortgage valuation and housing risk analysis.", + "zh": "房价网(fangjia.com)是专业的中国房价数据平台,汇总中国主要城市的住宅成交和挂牌数据。该平台被金融机构广泛用于住房抵押物的地址标准化,并发布城市、区县和小区层级的月度房价指数。房价网宣称地址治理率高达90%,是抵押估值和住房风险分析的参考数据集。" }, - "website": "https://www.nfra.gov.cn", - "data_url": "https://www.nfra.gov.cn/cn/view/pages/tongjishuju/tongjishuju.html", + "website": "https://www.fangjia.com", + "data_url": "https://www.fangjia.com", "api_url": null, + "authority_level": "market", "country": "CN", + "geographic_scope": "national", "domains": [ - "finance", - "banking", - "insurance", - "regulation" + "real-estate", + "finance" ], - "geographic_scope": "national", "update_frequency": "monthly", "tags": [ - "china", - "banking-regulation", - "insurance-regulation", - "nfra", - "cbirc", - "financial-supervision", - "banking-statistics", - "insurance-statistics", - "regulatory-compliance", - "financial-inclusion" + "real-estate", + "房价网", + "housing-price", + "address-standardization", + "mortgage-valuation", + "price-index", + "小区房价" ], "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" + "City Housing Price Index - Monthly housing price index for major Chinese cities", + "District Housing Price - District-level monthly housing price data", + "Community Housing Price - Community (xiaoqu) level housing price data for valuation", + "Address Standardization Data - Normalized address and community identifier dataset used by financial institutions", + "Housing Transaction References - Reference transaction and listing records used for mortgage valuation" ], "zh": [ - "银行业资产负债 - 月度和季度银行业金融机构总资产和总负债", - "保险业统计 - 月度各地区原保险保费收入、人身险和财产险公司经营情况", - "银行业监管指标 - 商业银行资本充足率、资产质量、流动性和盈利能力指标", - "普惠型小微企业贷款 - 针对小微企业的普惠金融贷款统计数据", - "银行业机构分类分析 - 按大型商业银行、股份制银行、农村银行等机构类型分析", - "保险业经营情况 - 保险公司运营表现、理赔和投资数据", - "普惠金融 - 各地区金融服务可及性和渗透率数据", - "监管合规 - 银行业和保险业合规指标和监管数据" + "城市房价指数 - 中国主要城市的月度房价指数", + "区县房价 - 区县层级的月度房价数据", + "小区房价 - 用于估值的小区层级房价数据", + "地址标准化数据 - 被金融机构使用的地址和小区标识化数据集", + "成交参考记录 - 用于抵押估值的参考成交和挂牌记录" ] }, - "authority_level": "government", "has_api": false, - "file_path": "china/finance/banking/nfra.json" + "file_path": "china/construction/china-fangjia.json" }, { - "id": "china-pbc", + "id": "china-gd-housing", "name": { - "en": "People's Bank of China", - "zh": "中国人民银行", - "native": "中国人民银行" + "en": "Guangdong Provincial Department of Housing and Urban-Rural Development", + "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": "The Guangdong Provincial Department of Housing and Urban-Rural Development is the provincial government authority responsible for housing policies, urban-rural construction management, real estate market regulation, and building industry oversight in Guangdong Province, China's most populous province and largest provincial economy. It publishes provincial housing market data, construction industry statistics, affordable housing program progress, and urban development policies covering all 21 prefecture-level cities including Guangzhou, Shenzhen, Dongguan, and Foshan.", + "zh": "广东省住房和城乡建设厅是广东省住房政策、城乡建设管理、房地产市场监管和建筑行业监管的省级政府部门。广东省是中国人口最多、经济总量最大的省份,该厅发布全省住房市场数据、建筑行业统计、保障性住房建设进展和城市发展政策,覆盖广州、深圳、东莞、佛山等21个地级市。" }, - "website": "http://www.pbc.gov.cn", - "data_url": "http://www.pbc.gov.cn/diaochatongjisi/116219/index.html", + "website": "https://zfcxjst.gd.gov.cn", + "data_url": "https://zfcxjst.gd.gov.cn/xxgk/", "api_url": null, + "authority_level": "government", "country": "CN", "domains": [ - "finance", - "economics", - "monetary_policy" + "housing", + "construction", + "urban-planning", + "real-estate" ], - "geographic_scope": "national", + "geographic_scope": "subnational", "update_frequency": "monthly", "tags": [ - "china", - "central-bank", - "monetary-policy", - "money-supply", - "interest-rates", - "forex", - "banking", - "financial-stability" + "guangdong", + "housing", + "construction", + "urban-rural-development" ], "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" + "Provincial Housing Market Data - Real estate market statistics across Guangdong's 21 prefecture-level cities", + "Construction Industry Statistics - Provincial construction output value, enterprise data, and workforce statistics", + "Affordable Housing Programs - Provincial public rental housing, talent housing, and subsidized housing construction data", + "Urban-Rural Development Policies - Provincial housing purchase policies, market regulation measures", + "Building Quality Supervision - Construction project quality inspection and safety supervision data", + "Property Management - Residential property management regulations and industry data" ], "zh": [ - "货币供应量 - M0、M1、M2货币总量和基础货币统计", - "利率 - 基准贷款/存款利率、同业拆借利率(SHIBOR)和债券收益率", - "汇率 - 人民币对主要货币汇率和人民币汇率指数", - "外汇储备 - 月度外汇储备和黄金储备", - "信贷与贷款 - 社会融资总量、按部门分类的人民币贷款、实体经济信贷", - "国际收支 - 经常账户、资本账户和国际投资头寸", - "银行业统计 - 金融机构存款、贷款、资产和负债", - "金融市场 - 银行间市场、债券市场和外汇市场数据", - "货币政策操作 - 公开市场操作、存款准备金率和政策利率" + "全省住房市场数据 - 广东省21个地级市房地产市场统计", + "建筑行业统计 - 全省建筑业总产值、企业数据和从业人员统计", + "保障性住房建设 - 全省公共租赁住房、人才住房和共有产权住房建设数据", + "城乡发展政策 - 全省住房限购政策和市场调控措施", + "建筑质量监督 - 建设工程质量检查和安全监督数据", + "物业管理 - 住宅物业管理法规和行业数据" ] }, - "authority_level": "government", "has_api": false, - "file_path": "china/finance/banking/pbc.json" + "file_path": "china/construction/china-gd-housing.json" }, { - "id": "china-csrc", + "id": "china-mohurd", "name": { - "en": "China Securities Regulatory Commission", - "zh": "中国证券监督管理委员会", - "native": "中国证券监督管理委员会" + "en": "Ministry of Housing and Urban-Rural Development", + "zh": "住房和城乡建设部", + "native": "住房和城乡建设部" }, "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": "The Ministry of Housing and Urban-Rural Development (MOHURD) is China's primary regulatory authority for the construction industry, housing, and urban-rural development. It provides data on construction industry regulations, building quality standards, green building certification, building energy efficiency standards, housing market policies, and urban planning.", + "zh": "住房和城乡建设部是中国建筑行业、住房和城乡发展的主要监管部门。提供建筑行业法规、建筑工程质量标准、绿色建筑认证政策、建筑节能标准、住房市场政策和城市规划等数据。" }, - "website": "http://www.csrc.gov.cn", - "data_url": "https://www.csrc.gov.cn/csrc/c100103/common_list.shtml", + "website": "https://www.mohurd.gov.cn", + "data_url": "https://www.mohurd.gov.cn/gongkai/zhengce/", "api_url": null, "country": "CN", "domains": [ - "finance", - "securities", - "capital_markets" + "construction", + "housing", + "urban-planning", + "building-standards" ], "geographic_scope": "national", - "update_frequency": "monthly", + "update_frequency": "weekly", "tags": [ "china", - "securities", - "stock-market", - "ipo", - "listed-companies", - "capital-markets", - "regulation", - "csrc" + "mohurd", + "construction", + "housing", + "building-standards", + "green-building", + "urban-planning", + "policy", + "regulation" ], "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" + "Construction Industry Regulations - National construction industry policies and management regulations", + "Building Quality Standards - Engineering quality supervision and inspection standards", + "Green Building Certification - Green building evaluation standards and certification policies", + "Building Energy Efficiency - Building energy conservation standards and implementation guidelines", + "Housing Market Policies - Housing purchase regulations, provident fund policies, and market monitoring", + "Urban Planning - City development planning and land use regulations", + "Construction Permits - Qualification management and market access policies", + "Building Materials Standards - Building material quality standards and testing requirements", + "BIM Policies - Building Information Modeling implementation guidelines and standards" ], "zh": [ - "股票市场统计 - 市值、交易量、股票指数和按交易所分类的成交额", - "首次公开发行(IPO) - IPO审批、发行数据、募资金额和上市统计", - "上市公司 - 上市公司数量、财务披露、公司治理和退市数据", - "债券市场 - 公司债券、政府债券、发行和交易量", - "期货市场 - 期货交易量、持仓量、商品和金融期货统计", - "基金行业 - 公募基金、ETF、私募基金、基金净值和资金流向", - "证券公司 - 经纪业务统计、承销数据、资产管理和财务表现", - "投资者统计 - 投资者账户数量、投资者结构和交易行为", - "监管行动 - 执法案件、处罚、检查和合规统计" + "建筑行业法规 - 全国建筑行业政策和管理条例", + "建筑工程质量标准 - 工程质量监督和检验标准", + "绿色建筑认证 - 绿色建筑评价标准和认证政策", + "建筑节能标准 - 建筑节能标准和实施指南", + "住房市场政策 - 限购政策、公积金政策和市场监测", + "城市规划 - 城市发展规划和土地使用法规", + "建筑施工许可 - 资质管理和市场准入政策", + "建筑材料标准 - 建筑材料质量标准和检测要求", + "BIM相关政策 - 建筑信息模型实施指南和标准" ] }, "authority_level": "government", "has_api": false, - "file_path": "china/finance/securities/csrc.json" + "file_path": "china/construction/china-mohurd.json" }, { - "id": "hkex", + "id": "china-shenzhen-housing", "name": { - "en": "Hong Kong Exchanges and Clearing Limited (HKEX)", - "zh": "香港交易及结算所有限公司(港交所)", - "native": "香港交易及结算所有限公司" + "en": "Shenzhen Municipal Housing and Construction Bureau", + "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": "The Shenzhen Municipal Housing and Construction Bureau is the local government authority responsible for housing administration, real estate market regulation, construction industry management, and affordable housing programs in Shenzhen. It publishes housing transaction data, new housing supply statistics, commercial housing sales figures, construction permits, affordable housing progress, and real estate market monitoring reports for one of China's most dynamic property markets.", + "zh": "深圳市住房和建设局是深圳市负责住房管理、房地产市场监管、建筑行业管理和保障性住房建设的地方政府部门。发布住房交易数据、新建住房供应统计、商品房销售数据、建设许可证、保障性住房建设进展以及房地产市场监测报告,是中国最活跃房地产市场之一的权威数据来源。" }, - "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, + "website": "https://zjj.sz.gov.cn", + "data_url": "https://zjj.sz.gov.cn/xxgk/", + "api_url": null, + "authority_level": "government", + "country": "CN", "domains": [ - "finance", - "securities", - "derivatives", - "capital_markets" + "housing", + "real-estate", + "construction" ], - "geographic_scope": "regional", - "update_frequency": "real-time", + "geographic_scope": "subnational", + "update_frequency": "monthly", "tags": [ - "hong-kong", - "港交所", - "stock-exchange", - "securities", - "derivatives", - "listed-companies", - "market-data", - "hkex", - "capital-markets", - "stock-connect", - "ipo", - "prospectus", - "招股书", - "上市公司" + "shenzhen", + "housing", + "real-estate", + "construction" ], "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" + "Commercial Housing Sales - Monthly new housing transaction volume and prices in Shenzhen", + "Affordable Housing Programs - Public rental housing, talent housing, and subsidized housing construction progress", + "Real Estate Market Monitoring - Market trend analysis and regulatory measures", + "Construction Permits - Building construction permits and project approvals", + "Housing Supply Statistics - New housing supply and inventory data", + "Property Registration - Real estate registration and transfer records" ], "zh": [ - "证券市场数据 - 股票、权证、房地产投资信托基金、债券、ETF和结构性产品的实时和历史数据", - "衍生品市场数据 - 指数、商品、货币和个股的期货和期权", - "上市公司信息 - 通过HKEXnews发布的公告、财务报告、招股书、IPO配售结果和监管披露", - "市场指数 - 恒生指数、国企指数、恒生科技指数、香港交易所科技100指数及其他基准指数", - "交易统计 - 日成交额、市值、交易量和市场活动报告", - "IPO和新上市 - 新上市申请、进度报告和上市文件", - "持股披露 - 中央结算系统持股数据、互联互通持股和权益披露", - "清算结算数据 - 交易结算信息和风险管理数据", - "市场通讯 - 通告、监管公告和交易所通知" + "商品房销售数据 - 深圳市每月新建住房成交量和成交价格", + "保障性住房建设 - 公共租赁住房、人才住房和共有产权住房建设进度", + "房地产市场监测 - 市场趋势分析和调控措施", + "建设许可 - 建筑施工许可和项目审批数据", + "住房供应统计 - 新增住房供应量和库存数据", + "房产登记 - 不动产登记和交易过户记录" ] }, - "authority_level": "commercial", - "has_api": true, - "file_path": "china/finance/securities/hkex.json" + "has_api": false, + "file_path": "china/construction/china-shenzhen-housing.json" }, { - "id": "ceic-china-urbanization", + "id": "china-urban-planning", "name": { - "en": "CEIC Data - China Urbanization Rate", - "zh": "CEIC数据库 - 中国城镇化率" + "en": "Chinese Society for Urban Studies", + "zh": "中国城市规划学会" }, "description": { - "en": "CEIC provides comprehensive historical urbanization rate data for China, covering both usual residence and household registration statistics from 1949 to 2025. The database includes national-level urbanization rates as well as provincial and prefecture-level breakdowns, sourced from the National Bureau of Statistics of China. CEIC is a leading economic data platform serving economists, analysts, and researchers worldwide.", - "zh": "CEIC提供中国全面的历史城镇化率数据,涵盖1949年至2025年的常住人口和户籍人口统计数据。数据库包括国家级城镇化率以及省级和地级市的详细数据,数据来源于国家统计局。CEIC是服务全球经济学家、分析师和研究人员的领先经济数据平台。" + "en": "The Chinese Society for Urban Studies (CSUS), also known as the Urban Planning Society of China, is the national academic and professional organization for urban planning research and practice in China. Founded in 1956 and under the Ministry of Natural Resources, CSUS publishes research papers, planning standards, and urban development reports. The society's journal Urban Planning Forum and its annual conference proceedings are key references for China's urban development policies, spatial planning methodologies, housing statistics, and smart city development. CSUS data and publications inform national urban planning strategies, land use policies, and city cluster development plans.", + "zh": "中国城市规划学会是中国城市规划研究与实践领域的全国性学术团体,成立于1956年,主管单位为自然资源部。学会出版学术论文、规划标准和城市发展报告,旗下《城市规划》学术期刊及年会论文集是了解中国城市发展政策、空间规划方法、住房统计和智慧城市发展的重要参考资料,为国家城市规划战略、土地利用政策和城市群发展规划提供研究支撑。" }, - "website": "https://www.ceicdata.com", - "data_url": "https://www.ceicdata.com/zh-hans/china/population-urbanization-rate", - "api_url": "https://info.ceicdata.com/api-and-data-feed-solution", - "authority_level": "commercial", + "website": "https://www.planning.org.cn", + "data_url": "https://www.planning.org.cn/paper", + "api_url": null, "country": "CN", "domains": [ + "urban-development", + "land-use", "demographics", - "economics", - "social", - "urbanization" + "governance" ], "geographic_scope": "national", - "update_frequency": "annual", + "update_frequency": "irregular", "tags": [ "china", + "urban-planning", + "城市规划", + "中国城市规划学会", "urbanization", - "城镇化率", - "population", - "人口统计", - "demographics", - "social-development", - "社会发展", - "常住人口", - "户籍人口", - "usual-residence", - "household-registration", - "provincial-data", - "省级数据", - "nbs", - "国家统计局", - "ceic", - "economic-data", - "经济数据" + "城镇化", + "land-use", + "土地利用", + "housing", + "住房", + "smart-city", + "智慧城市", + "spatial-planning", + "国土空间规划", + "city-cluster", + "城市群" ], "data_content": { "en": [ - "National Urbanization Rate (Usual Residence) - Annual data from 1982 to 2025, measuring the percentage of population living in urban areas based on usual residence", - "National Urbanization Rate (Household Registration) - Annual data from 1949 to 2023, measuring the percentage of population with urban household registration (hukou)", - "Provincial Urbanization Rates - Provincial-level urbanization statistics covering all provinces and autonomous regions in China", - "Prefecture-level City Urbanization Data - Detailed urbanization rates for major cities and prefecture-level administrative divisions", - "Historical Time Series - Long-term urbanization trends showing China's urban transformation from 21.1% (1982) to 67.9% (2025)", - "Dual Metrics Comparison - Comparison between usual residence and household registration urbanization rates, highlighting the urban-rural divide" + "Urban Planning Research Papers - Peer-reviewed research on Chinese urban development and planning", + "National Urban Development Reports - Annual and special reports on China's urbanization progress", + "Planning Standards and Guidelines - Technical standards for urban and rural planning practice", + "City Case Studies - Detailed spatial planning studies for cities across China", + "Smart City Research - Data and analysis on China's smart city development initiatives", + "Urban Housing Studies - Research on housing policy, affordability, and market dynamics", + "Annual Conference Proceedings - Research outputs from China's leading urban planning symposium" ], "zh": [ - "全国城镇化率(常住人口) - 1982年至2025年的年度数据,衡量基于常住地的城镇人口占总人口的百分比", - "全国城镇化率(户籍人口) - 1949年至2023年的年度数据,衡量拥有城镇户籍人口占总人口的百分比", - "省级城镇化率 - 涵盖中国所有省份和自治区的省级城镇化统计数据", - "地级市城镇化数据 - 主要城市和地级行政区划的详细城镇化率数据", - "历史时间序列 - 展示中国城镇化进程的长期趋势,从21.1%(1982年)到67.9%(2025年)", - "双重指标对比 - 常住人口与户籍人口城镇化率的对比,反映城乡二元结构特征" + "城市规划学术论文 - 中国城市发展与规划经同行评审的研究成果", + "国家城市发展报告 - 中国城镇化进程年度及专题报告", + "规划标准与指南 - 城乡规划实践技术标准", + "城市案例研究 - 全国各地城市空间规划详细研究", + "智慧城市研究 - 中国智慧城市建设数据与分析", + "城市住房研究 - 住房政策、可负担性和市场动态研究", + "年会论文集 - 中国城市规划领域年度学术会议研究成果" ] }, - "has_api": true, - "file_path": "china/national/ceic-china-urbanization.json" + "authority_level": "research", + "has_api": false, + "file_path": "china/construction/china-urban-planning.json" }, { - "id": "cnki-population-census", + "id": "china-agri", "name": { - "en": "CNKI China Population Census Database", - "zh": "中国人口普查数据库" + "en": "China Agricultural and Rural Information Network", + "zh": "中国农业农村信息网" }, "description": { - "en": "A comprehensive database based on official census materials from Chinese government statistical departments since 1953. It serves as both a full-text database and census data analysis system, publishing census materials in original full-text and Excel formats. The database contains 196 types of materials (411 volumes), 56,838 census indicators, and 7,651,466 statistical data points covering demographics, education, employment, migration, housing, and social security.", - "zh": "基于1953年以来中国政府统计部门历次人口普查资料的综合数据库,既是普查资料全文数据库也是普查数据分析系统。以原版全文和Excel数据两种形式出版中国政府统计部门历次人口普查资料,目前共计196种、411册,包含人口普查条目56,838个、统计数据7,651,466笔,涵盖人口统计、教育程度、就业职业、迁移流动、住房情况和社会保障等领域。" + "en": "The China Agricultural and Rural Information Network (AGRI, agri.cn) is the official information platform operated by the Agricultural Information Center of the Ministry of Agriculture and Rural Affairs of China. Launched in 1995, AGRI is the most comprehensive national portal for agricultural information, rural economic statistics, crop production data, agricultural price monitoring, and rural policy. The platform aggregates data from the Ministry's departmental systems covering crop planting, livestock and aquaculture production, agricultural machinery, agricultural inputs (fertilizers and pesticides), rural household income, and food security indicators. AGRI's price monitoring system tracks wholesale and retail prices for hundreds of agricultural commodities across major markets nationwide. It is the authoritative primary source for China's agricultural statistical releases and is used by agricultural producers, commodity traders, policy analysts, international agricultural organizations, and food security researchers.", + "zh": "中国农业农村信息网(agri.cn)是由农业农村部农业信息中心运营的官方信息平台,于1995年上线,是覆盖农业信息、农村经济统计、农作物生产数据、农业价格监测和农村政策的最全面国家级门户。平台汇聚来自农业农村部各司局系统的数据,涵盖农作物种植面积、畜牧水产养殖、农业机械化、农业投入品(化肥和农药)、农村居民收入和粮食安全指标。农业农村信息网的价格监测体系追踪全国主要市场数百种农产品批发和零售价格,是中国农业统计数据发布的权威一手来源,被农业生产者、大宗商品交易商、政策分析师、国际农业组织和粮食安全研究人员广泛使用。" }, - "website": "https://www.cnki.net/", - "data_url": "https://data.cnki.net/npcd", + "website": "https://www.agri.cn/", + "data_url": "https://www.agri.cn/", "api_url": null, - "authority_level": "commercial", + "authority_level": "government", "country": "CN", + "geographic_scope": "national", "domains": [ - "demographics", - "social", - "education", - "employment", - "housing" + "agriculture", + "statistics", + "economics", + "food-security" ], - "geographic_scope": "national", - "update_frequency": "irregular", + "update_frequency": "daily", "tags": [ - "china", - "census", - "人口普查", - "demographics", - "人口统计", - "population", - "cnki", - "中国知网", - "statistical-yearbook", - "统计年鉴", - "government-data", - "政府数据", - "migration", - "迁移流动", - "housing", - "住房", - "employment", - "就业", - "education", - "受教育程度" + "农业", + "agriculture", + "农村经济", + "rural-economy", + "农产品价格", + "agricultural-commodity-prices", + "粮食安全", + "food-security", + "农作物", + "crop-production", + "畜牧业", + "livestock", + "水产养殖", + "aquaculture", + "农业机械化", + "agricultural-mechanization", + "化肥", + "fertilizer", + "农村居民收入", + "rural-household-income", + "农业农村部", + "ministry-of-agriculture-and-rural-affairs", + "mara", + "农业信息中心", + "agricultural-information" ], "data_content": { "en": [ - "Original Census Reports - Full-text publications of official census reports from 1953 to present (196 types, 411 volumes)", - "Census Statistical Data - Structured Excel data with 56,838 census indicators and 7,651,466 data points", - "Demographic Statistics - Gender, age, ethnicity, population distribution by province and administrative region", - "Education Statistics - Educational attainment levels, literacy rates, school enrollment data", - "Employment and Occupation - Labor force statistics, industry classification, occupational distribution", - "Migration and Mobility - Population migration patterns, urban-rural mobility, floating population statistics", - "Social Security - Social insurance coverage, pension participation, healthcare coverage", - "Marriage and Fertility - Marriage statistics, birth rates, family planning data, mortality rates", - "Housing Conditions - Housing stock, living space, housing ownership, residential conditions", - "Academic Research Papers - Scholarly articles analyzing census data and demographic trends" + "Crop production statistics: planting area, yield, and output data for major grain crops (rice, wheat, corn, soybeans) and cash crops by province and season", + "Agricultural commodity price monitoring: daily and weekly wholesale and retail price indices for hundreds of agricultural products across national, provincial, and county-level market networks", + "Livestock and aquaculture production: quarterly data on pig, poultry, cattle, and sheep inventories, as well as fishery catch and aquaculture output", + "Agricultural input statistics: annual data on chemical fertilizer production, consumption, and application rates by crop type and region", + "Rural household income and expenditure surveys: per capita disposable income, consumption patterns, and poverty incidence for rural Chinese households", + "Agricultural machinery data: statistics on tractors, harvesters, and other farm machinery ownership and mechanization coverage rates", + "Food security indicators: grain reserve levels, self-sufficiency ratios for major staple crops, and caloric supply data", + "Rural land and land reform data: contracted rural land area, land transfer rates, and land registration statistics", + "Agricultural trade statistics: China's imports and exports of major agricultural commodities including soybeans, pork, corn, and cotton" ], "zh": [ - "原版普查公报 - 1953年至今历次人口普查官方报告全文(196种、411册)", - "普查统计数据 - 结构化Excel数据,包含56,838个普查指标和7,651,466笔数据", - "人口统计 - 性别、年龄、民族、按省级行政区划的人口分布", - "教育统计 - 受教育程度、识字率、在校学生数据", - "就业与职业 - 劳动力统计、行业分类、职业分布", - "迁移流动 - 人口迁移模式、城乡流动、流动人口统计", - "社会保障 - 社会保险覆盖、养老金参保、医疗保险覆盖", - "婚姻生育 - 婚姻统计、出生率、计划生育数据、死亡率", - "住房情况 - 住房存量、居住面积、住房所有权、居住条件", - "学术论文 - 分析人口普查数据和人口趋势的学术研究文章" + "农作物生产统计:主要粮食作物(水稻、小麦、玉米、大豆)和经济作物的分省季度播种面积、产量和产出数据", + "农产品价格监测:全国省市县三级市场数百种农产品日度和周度批发及零售价格指数", + "畜牧水产生产:生猪、禽类、牛羊存栏量季度数据,以及渔业捕捞产量和水产养殖产出", + "农业投入品统计:按作物类型和地区分类的化学肥料生产、消费和施用量年度数据", + "农村居民收入和支出调查:农村居民人均可支配收入、消费结构和贫困发生率", + "农业机械数据:拖拉机、收割机等农用机械拥有量和机械化作业覆盖率统计", + "粮食安全指标:粮食储备水平、主要口粮自给率和热量供给数据", + "农村土地和土地改革数据:农村承包地面积、土地流转率和土地确权登记统计", + "农业贸易统计:中国大豆、猪肉、玉米、棉花等主要农产品进出口数据" ] }, "has_api": false, - "file_path": "china/national/cnki-population-census.json" + "file_path": "china/economy/agriculture/china-agri.json" }, { - "id": "china-nbs", + "id": "china-catas", "name": { - "en": "National Bureau of Statistics of China", - "zh": "国家统计局", - "native": "国家统计局" + "en": "Chinese Academy of Tropical Agricultural Sciences", + "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": "The Chinese Academy of Tropical Agricultural Sciences (CATAS) is China's only national-level research institution dedicated to tropical and subtropical agriculture. Founded in 1954 and headquartered in Danzhou, Hainan Province, CATAS operates research centers and experiment stations across Hainan, Yunnan, Guangdong, Guangxi, and Fujian. The academy focuses on natural rubber, tropical fruits, spice crops, tropical cash crops, and livestock production systems suited to China's tropical zones. CATAS publishes research findings on rubber tree genetics, coconut, palm oil, pepper, tea, tropical vegetables, and integrated pest management. It maintains germplasm banks for tropical crop varieties and provides data on tropical agricultural resources, yields, and crop improvement programs. CATAS plays a central role in China's agricultural development strategy for Hainan Free Trade Port and tropical regions.", + "zh": "中国热带农业科学院是中国唯一的国家级热带农业综合性科研机构,1954年成立,总部设在海南省儋州市,并在海南、云南、广东、广西、福建等地设有研究中心和试验站。该院重点研究天然橡胶、热带水果、香料作物、热带经济作物和适合中国热区的畜牧生产系统,发布橡胶树遗传育种、椰子、棕榈油、胡椒、茶叶、热带蔬菜和病虫害综合防控等领域的研究成果,保存热带作物种质资源库,并提供热带农业资源、产量及作物改良计划相关数据。热科院在中国海南自由贸易港和热带地区农业发展战略中居核心地位。" }, - "website": "http://www.stats.gov.cn", - "data_url": "https://www.stats.gov.cn/sj/", - "api_url": "http://data.stats.gov.cn/api.htm", + "website": "https://www.catas.cn", + "data_url": "https://www.catas.cn", + "api_url": null, + "authority_level": "research", "country": "CN", + "geographic_scope": "national", "domains": [ - "economics", - "social", - "demographics", - "industry", "agriculture", - "services" + "science", + "environment" ], - "geographic_scope": "national", - "update_frequency": "monthly", + "update_frequency": "irregular", "tags": [ - "china", - "statistics", - "national-accounts", - "gdp", - "population", - "census", - "official", - "government" + "中国热带农业科学院", + "catas", + "chinese-academy-of-tropical-agricultural-sciences", + "热带农业", + "tropical-agriculture", + "天然橡胶", + "natural-rubber", + "橡胶树", + "rubber-tree", + "热带作物", + "tropical-crops", + "椰子", + "coconut", + "棕榈油", + "palm-oil", + "胡椒", + "pepper", + "香料作物", + "spice-crops", + "热带水果", + "tropical-fruits", + "种质资源", + "germplasm-resources", + "海南", + "hainan", + "热区农业", + "tropical-zone-agriculture", + "作物改良", + "crop-improvement" ], "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" + "Natural rubber production data: annual planting area, yield per hectare, total output, and quality grading statistics for rubber trees in China's tropical regions", + "Tropical crop germplasm resources: catalog and genetic data for preserved accessions of rubber, coconut, palm, pepper, spice, and tropical fruit varieties", + "Tropical agricultural research publications: peer-reviewed findings on crop genetics, pest resistance, soil management, and cultivation techniques for tropical crops", + "Crop disease and pest monitoring: surveillance data on major diseases and pests affecting rubber, tropical fruits, and cash crops in China's tropical zones", + "Hainan agricultural development data: statistics and assessments on tropical agriculture development in Hainan Free Trade Port zone", + "Tropical livestock data: research on animal husbandry systems adapted to tropical climates including cattle, goats, and poultry breeds", + "Agrometeorological data: climate suitability assessments and agroclimatic monitoring for tropical agricultural regions of China" ], "zh": [ - "国民经济核算 - GDP、GNI、按部门和地区分类的国民收入和支出账户", - "人口统计 - 人口普查数据、人口指标、出生/死亡率和人口迁移统计", - "工业生产 - 按行业分类的工业增加值、工业生产指数和制造业统计", - "固定资产投资 - 按行业、地区和所有制类型分类的投资统计", - "消费与零售 - 社会消费品零售总额、消费价格指数(CPI)和居民消费", - "就业与工资 - 劳动力统计、按部门分类的就业、工资水平和失业率", - "农业与农村经济 - 农业产值、粮食产量、畜牧业和农村居民收入", - "对外贸易 - 进出口总额、贸易差额、按商品和国家分类的贸易数据", - "区域统计 - 省级和市级经济社会指标" + "天然橡胶生产数据:中国热区橡胶树年度种植面积、单产、总产量及质量分级统计", + "热带作物种质资源:橡胶、椰子、棕榈、胡椒、香料和热带水果品种保存目录及遗传数据", + "热带农业研究出版物:热带作物遗传育种、抗病性、土壤管理和栽培技术同行评审研究成果", + "作物病虫害监测:中国热区橡胶、热带水果和经济作物主要病虫害监测数据", + "海南农业发展数据:海南自由贸易港热带农业发展统计与评估", + "热带畜牧数据:适应热带气候的牛、羊、家禽品种畜牧系统研究", + "农业气象数据:中国热带农业区气候适宜性评估和农业气候监测" ] }, - "authority_level": "government", - "has_api": true, - "file_path": "china/national/nbs.json" + "has_api": false, + "file_path": "china/economy/agriculture/china-catas.json" }, { - "id": "china-caict", + "id": "china-cfeed", "name": { - "en": "China Academy of Information and Communications Technology", - "zh": "中国信息通信研究院" + "en": "China Feed Industry Association", + "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": "The China Feed Industry Association (CFIA) is the national industry organization representing China's animal feed manufacturing, feed additive, and veterinary pharmaceutical sectors, supervised by the Ministry of Agriculture and Rural Affairs. China is the world's second-largest feed producer, with annual output exceeding 300 million tonnes. CFIA publishes monthly production statistics on compound feed, concentrated feed, and premix feed by animal type (poultry, swine, aquaculture, ruminants), as well as feed price indices and raw material (corn, soybean meal, fishmeal) supply-demand balances. Its data is essential for tracking livestock sector dynamics, agricultural input costs, food security assessments, and commodity market analysis in the world's largest producer of pork and farmed fish.", + "zh": "中国饲料工业协会(中国饲料协会)是代表中国配合饲料生产、饲料添加剂和兽药行业的全国性行业组织,主管单位为农业农村部。中国是全球第二大饲料生产国,年产量超过3亿吨。协会发布按动物类别(家禽、猪、水产、反刍动物)分类的配合饲料、浓缩饲料和预混合饲料月度产量统计,以及饲料价格指数和原料(玉米、豆粕、鱼粉)供需平衡数据。这些数据是追踪畜牧业动态、农业投入成本、粮食安全评估,以及分析全球最大猪肉和养殖鱼类生产国大宗商品市场的重要依据。" }, - "website": "http://www.caict.ac.cn/", - "data_url": "http://www.caict.ac.cn/kxyj/qwfb/", + "website": "https://www.chinafeed.org.cn", + "data_url": "https://www.chinafeed.org.cn/hyfx/", "api_url": null, - "authority_level": "research", + "authority_level": "other", "country": "CN", "geographic_scope": "national", "domains": [ - "technology", - "telecommunications", - "digital-economy", - "cloud-computing", - "artificial-intelligence" + "agriculture", + "economics", + "industry", + "food-security" ], - "update_frequency": "irregular", + "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" + "中国饲料工业协会", + "cfia", + "china-feed-industry-association", + "饲料产量", + "feed-production", + "配合饲料", + "compound-feed", + "浓缩饲料", + "concentrated-feed", + "预混合饲料", + "premix-feed", + "饲料价格", + "feed-prices", + "豆粕", + "soybean-meal", + "玉米", + "corn", + "鱼粉", + "fishmeal", + "猪饲料", + "swine-feed", + "禽类饲料", + "poultry-feed", + "水产饲料", + "aquaculture-feed", + "饲料添加剂", + "feed-additives", + "畜牧业", + "livestock-industry", + "农业投入", + "agricultural-inputs", + "粮食安全", + "food-security" ], "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" + "Monthly feed production by type: output volumes of compound feed, concentrated feed, and premix feed broken down by animal category (poultry, swine, aquaculture, ruminants, other)", + "Feed price indices: monthly price trends for major feed products and key raw materials including corn, soybean meal, wheat bran, rapeseed meal, and fishmeal", + "Raw material supply-demand balance: monthly assessment of corn and soybean meal availability, import dependency, and price drivers", + "Industry enterprise data: annual statistics on number of licensed feed enterprises, production capacity, employment, and output by province", + "Feed additive production: annual output of amino acids (lysine, methionine, threonine), vitamins, enzymes, and other feed additives by type", + "Aquaculture feed statistics: production volumes segmented by fish species and shrimp/shellfish categories, tracking China's dominant role in global aquaculture", + "Monthly production situation reports: narrative analysis of feed industry performance, raw material market conditions, and policy impacts", + "Annual China feed industry report: comprehensive review of sector development, capacity changes, technological advances, and regulatory environment" ], "zh": [ - "云计算白皮书 - 年度云计算技术趋势、市场发展和行业应用综合报告", - "算力发展指数 - 中国各省市算力基础设施发展评估", - "ICT产业研究报告 - 电信、互联网和科技行业趋势分析", - "数字经济蓝皮书 - 数字化转型、数据治理和新型基础设施研究", - "先进计算报告 - 高性能计算、AI算力和边缘计算研究", - "技术白皮书 - 5G、物联网、区块链、大数据等新兴技术研究", - "行业标准与基准 - ICT领域技术标准和最佳实践" + "月度饲料分类产量:按动物类别(家禽、猪、水产、反刍动物、其他)细分的配合饲料、浓缩饲料和预混合饲料产量", + "饲料价格指数:主要饲料产品及玉米、豆粕、麦麸、菜粕、鱼粉等主要原料月度价格走势", + "原料供需平衡:玉米和豆粕月度供应量、进口依存度及价格驱动因素评估", + "行业企业数据:按省份分类的持证饲料企业数量、生产能力、从业人员及产量年度统计", + "饲料添加剂产量:氨基酸(赖氨酸、蛋氨酸、苏氨酸)、维生素、酶制剂等各类添加剂年度产量", + "水产饲料统计:按鱼类品种和虾贝类别细分的产量,追踪中国在全球水产养殖中的主导地位", + "月度生产形势报告:饲料行业运行、原料市场行情及政策影响的叙述性分析", + "中国饲料工业年度报告:行业发展、产能变化、技术进步和监管环境综合述评" ] }, "has_api": false, - "file_path": "china/research/china-caict.json" + "file_path": "china/economy/agriculture/china-cfeed.json" }, { - "id": "china-miit-rare-earth", + "id": "china-cofco", "name": { - "en": "MIIT Rare Earth Office - Rare Earth Industry Regulation and Production Quotas", - "zh": "工业和信息化部稀土办公室 - 稀土行业规范与生产配额" + "en": "COFCO Corporation", + "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": "COFCO Corporation (中粮集团) is a central state-owned enterprise directly under the State Council and China's largest agri-food conglomerate, ranking among the world's top four global grain traders alongside ADM, Bunge, and Cargill. Established in 1949 and restructured multiple times, COFCO operates integrated supply chains covering grain, oilseeds, sugar, cotton, meat, dairy, wine, and processed food products. The group encompasses key listed subsidiaries including COFCO Sugar, COFCO Capital, China Foods, and Mengniu Dairy, and operates the strategic Dalian Commodity Exchange warehouse network. COFCO publishes annual reports, operational statistics on grain trading volumes, agricultural product processing output, international trade flows, and commodity procurement data. The group's disclosures provide authoritative insights into China's agricultural supply chain, food security strategy, international commodity markets, and rural revitalization initiatives.", + "zh": "中粮集团有限公司是国务院直属的中央国有企业,中国最大的农业食品企业,与ADM、邦吉、嘉吉并称全球四大粮商。成立于1949年,历经多次重组改革。中粮集团业务覆盖粮食、油料、食糖、棉花、肉类、乳制品、酒类和加工食品的全产业链整合供应链。集团包括中粮糖业、中粮资本、中国食品、蒙牛乳业等重点上市子公司,并运营大连商品交易所战略性仓储网络。中粮集团发布年度报告、粮食贸易量、农产品加工产量、国际贸易流量和大宗商品采购数据等运营统计,为了解中国农业供应链、粮食安全战略、国际大宗商品市场及乡村振兴举措提供权威参考。" }, - "website": "https://www.miit.gov.cn/", - "data_url": "https://www.miit.gov.cn/jgsj/ycls/xt/index.html", + "website": "https://www.cofco.com", + "data_url": "https://www.cofco.com", "api_url": null, "authority_level": "government", "country": "CN", + "geographic_scope": "global", "domains": [ - "resources", - "mineral", - "industry" + "agriculture", + "food-security", + "economics", + "trade" ], - "geographic_scope": "national", - "update_frequency": "irregular", + "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" + "cofco", + "中粮集团", + "粮油贸易", + "grain-trading", + "食品加工", + "food-processing", + "粮食安全", + "food-security", + "大宗农产品", + "agricultural-commodities", + "食用油", + "edible-oil", + "白糖", + "sugar", + "棉花", + "cotton", + "央企", + "central-soe", + "四大粮商", + "abcd-traders" ], "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" + "Annual reports - consolidated financial statements, revenue, profit, and operating highlights across COFCO's agricultural business lines", + "Grain trading volumes - procurement and distribution data for wheat, corn, rice, soybeans, and other grains", + "Oilseed processing output - soybean crushing volumes, edible oil production, and protein meal output", + "Sugar and cotton operations - national sugar refining capacity, cotton procurement volumes, and inventory data via listed subsidiary COFCO Sugar", + "Meat and dairy data - pork, beef, and dairy processing output through subsidiaries including COFCO Meat and Mengniu Dairy", + "International trade flows - global procurement, bulk commodity shipments, and overseas trading operations", + "Listed subsidiary disclosures - financial and operational data from China Foods, COFCO Sugar, COFCO Capital, and Mengniu Dairy", + "Rural revitalization and poverty alleviation - agricultural sourcing programs in rural areas and smallholder procurement data", + "Food safety and traceability - quality control and traceability data for COFCO-branded food products" ], "zh": [ - "稀土生产配额分配(开采和冶炼分离总量调控)", - "《稀土管理条例》及政策解读", - "行业规范条件和标准", - "稀土产品追溯信息", - "行业工作动态和调研报告", - "稀土进出口管理政策", - "企业合规及许可信息" + "年度报告 - 中粮集团各农业业务板块的合并财务报表、营业收入、利润及运营要点", + "粮食贸易量 - 小麦、玉米、水稻、大豆等粮食品种的采购和分销数据", + "油料加工产量 - 大豆压榨量、食用油产量及蛋白粕产量", + "食糖和棉花业务 - 通过上市子公司中粮糖业披露的全国食糖加工能力、棉花采购量及库存数据", + "肉类与乳品数据 - 通过中粮肉食和蒙牛乳业等子公司发布的猪肉、牛肉和乳制品加工产量", + "国际贸易流量 - 全球采购、大宗商品海运及海外贸易运营数据", + "上市子公司披露 - 中国食品、中粮糖业、中粮资本和蒙牛乳业的财务和运营数据", + "乡村振兴和扶贫 - 乡村地区农产品采购项目和小农户收购数据", + "食品安全与溯源 - 中粮品牌食品的质量控制和溯源数据" ] }, "has_api": false, - "file_path": "china/resources/mineral/china-miit-rare-earth.json" + "file_path": "china/economy/agriculture/china-cofco.json" }, { - "id": "china-mnr-minerals", + "id": "china-moa", "name": { - "en": "Ministry of Natural Resources - Mineral Resources Data", - "zh": "自然资源部矿产资源数据" + "en": "Ministry of Agriculture and Rural Affairs of China - Agricultural Statistics", + "zh": "中华人民共和国农业农村部农业统计" }, "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": "Official agricultural statistics and rural economy data published by China's Ministry of Agriculture and Rural Affairs (MARA), covering crop production, livestock and aquaculture, agricultural inputs, rural household income, and agricultural mechanization. Includes annual China Agricultural Development Reports and statistical yearbooks on agriculture and rural development.", + "zh": "中华人民共和国农业农村部发布的官方农业统计和农村经济数据,涵盖农作物产量、畜牧水产、农业投入品、农村居民收入及农业机械化水平。包括年度《中国农业发展报告》和农业农村统计年报。" }, - "website": "https://www.mnr.gov.cn/", - "data_url": "https://www.mnr.gov.cn/sj/sjfw/kc_19263/", + "website": "https://www.moa.gov.cn/", + "data_url": "https://www.moa.gov.cn/nybgb/", "api_url": null, "authority_level": "government", "country": "CN", - "geographic_scope": "national", "domains": [ - "resources", - "minerals", + "agriculture", "economics", - "environment" + "statistics" ], + "geographic_scope": "national", "update_frequency": "annual", "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" + "农业农村部", + "农业统计", + "agriculture-statistics", + "ministry-of-agriculture-and-rural-affairs", + "mara", + "粮食产量", + "grain-production", + "农业发展报告", + "agricultural-development-report", + "农村经济", + "rural-economy", + "农作物", + "crops", + "畜牧业", + "livestock", + "水产品", + "aquaculture", + "农民收入", + "farmer-income", + "化肥", + "fertilizer", + "农药", + "pesticides", + "农业机械化", + "agricultural-mechanization", + "耕地面积", + "arable-land", + "农业生产", + "agricultural-production", + "乡村振兴", + "rural-revitalization", + "农业年报", + "agricultural-yearbook" ], "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" + "Annual crop production data - grain, cotton, oilseeds, vegetables, fruits by province", + "Livestock statistics - pigs, cattle, sheep, poultry breeding and slaughter data", + "Aquaculture and fishery production statistics", + "Agricultural input usage - fertilizers, pesticides, seeds, agricultural film", + "Agricultural mechanization - tractor and machinery ownership and usage", + "Rural household income and expenditure statistics", + "Arable land and cultivated area by crop type", + "Agricultural disaster and crop loss statistics", + "Rural labor force and agricultural employment data", + "Agricultural product prices and market monitoring", + "China Agricultural Development Report (annual)", + "Agricultural and Rural Statistics Annual Report" ], "zh": [ - "中国矿产资源报告:年度综合报告,涵盖全国矿产资源现状、找矿成果、发展趋势", - "稀土储量数据:中国稀土储量4400万吨稀土氧化物(REO),占全球储量48.89%", - "稀土开采配额:年度稀土开采和冶炼分离总量控制指标(2024年开采指标27万吨REO,冶炼分离指标25.5万吨)", - "地理分布数据:轻稀土资源分布(内蒙古占75.22%),重稀土资源分布(广东占重稀土资源32.34%)", - "矿业权管理:稀土、钨、锡、锑、钼、钴、锂等战略性矿产的矿业权出让登记信息", - "法规政策:《稀土管理条例》实施(2024年10月1日起施行)", - "全球矿产信息:全球地质矿产信息系统访问", - "地质资料数据:全国地质资料馆及网络订单服务平台" + "年度农作物产量数据 - 粮食、棉花、油料、蔬菜、水果分省统计", + "畜牧业统计 - 生猪、牛、羊、禽类存栏和出栏数据", + "水产养殖和捕捞产量统计", + "农业投入品使用 - 化肥、农药、种子、农膜", + "农业机械化 - 拖拉机和农机拥有量及使用情况", + "农村居民收入与支出统计", + "耕地面积和分作物播种面积", + "农业灾害和农作物损失统计", + "农村劳动力和农业就业数据", + "农产品价格和市场监测", + "年度《中国农业发展报告》", + "农业农村统计年报" ] }, "has_api": false, - "file_path": "china/resources/mineral/china-mnr-minerals.json" + "file_path": "china/economy/agriculture/china-moa.json" }, { - "id": "china-national-data-bureau", + "id": "china-natesc", "name": { - "en": "National Data Administration of China", - "zh": "国家数据局" + "en": "National Agro-Tech Extension and Service Center", + "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 National Agro-Tech Extension and Service Center (NATESC) is a national public institution under China's Ministry of Agriculture and Rural Affairs (MARA), responsible for organizing and guiding agricultural technology extension, crop disease and pest monitoring, seed quality testing, and soil fertility assessment across China. Established in 1994, NATESC coordinates the national agricultural extension network linking central, provincial, and county-level stations, managing information systems on crop growth monitoring, pest and disease surveillance, fertilizer usage, and agricultural inputs. It publishes annual crop pest early-warning bulletins, soil fertility surveys, agricultural technology adoption statistics, and farm input data that support agricultural production planning and food security policy formulation.", + "zh": "全国农业技术推广服务中心(全国农技推广中心)是农业农村部下属全国性公益性机构,负责组织和指导全国农业技术推广、农作物病虫害监测、种子质量检测和土壤肥力评估工作。中心成立于1994年,协调贯通县、省、部三级农业技术推广网络,管理作物生长监测、病虫害监测、化肥施用和农业投入品等信息系统。中心发布年度作物病虫害早期预警公告、土壤肥力调查报告、农业技术应用统计和农资数据,支撑农业生产计划和粮食安全政策制定。" }, - "website": "https://www.nda.gov.cn/", - "data_url": "https://sjdj.nda.gov.cn/", + "website": "https://www.natesc.org.cn", + "data_url": "https://www.natesc.org.cn", "api_url": null, "authority_level": "government", "country": "CN", + "geographic_scope": "national", "domains": [ - "digital_economy", - "data_governance", - "digital_infrastructure" + "agriculture", + "technology", + "environment", + "social" ], - "geographic_scope": "national", "update_frequency": "irregular", "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" + "全国农业技术推广服务中心", + "全国农技推广", + "natesc", + "national-agro-tech-extension-and-service-center", + "农业技术推广", + "agricultural-technology-extension", + "病虫害监测", + "pest-and-disease-monitoring", + "农作物病虫害", + "crop-pests-and-diseases", + "土壤肥力", + "soil-fertility", + "化肥", + "fertilizer", + "种子质量", + "seed-quality", + "农业投入品", + "agricultural-inputs", + "粮食安全", + "food-security", + "农技推广网络", + "agro-tech-extension-network", + "作物生长监测", + "crop-growth-monitoring", + "农业部", + "mara", + "农业农村部" ], "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" + "Crop pest and disease monitoring: national surveillance data on major crop pests (locusts, aphids, etc.) and diseases across China's farming regions", + "Early-warning bulletins: seasonal and annual early-warning reports on crop pest outbreaks and disease epidemics", + "Soil fertility surveys: periodic national soil nutrient status assessments and fertilizer recommendation data", + "Fertilizer usage statistics: annual data on fertilizer application rates, types, and trends across China's agricultural regions", + "Seed quality testing reports: inspection results for crop seed varieties on germination rates, purity, and moisture content", + "Agricultural technology adoption statistics: data on diffusion of new crop varieties, farming techniques, and mechanization", + "Crop growth monitoring bulletins: periodic crop condition assessments and yield forecast data during growing seasons" ], "zh": [ - "公共数据资源登记和管理信息", - "数据要素市场政策法规", - "数字中国建设进展和报告", - "数据基础设施发展规划和标准", - "数据治理框架和最佳实践", - "数字经济发展统计和案例研究", - "数据流通和交易平台信息", - "国家数据标准化技术指南" + "农作物病虫害监测:中国农业区主要作物病虫害(蝗虫、蚜虫等)全国监测数据", + "早期预警公告:作物病虫害暴发和疫情的季节性和年度早期预警报告", + "土壤肥力调查:定期全国土壤养分状况评估和化肥施用建议数据", + "化肥施用统计:中国各农业区化肥施用量、种类和趋势年度数据", + "种子质量检测报告:作物种子品种发芽率、纯度和水分含量检测结果", + "农业技术应用统计:新品种、农业技术和机械化推广应用数据", + "作物生长监测公告:生长季节定期作物长势评估和产量预报数据" ] }, "has_api": false, - "file_path": "china/technology/digital_economy/china-national-data-bureau.json" + "file_path": "china/economy/agriculture/china-natesc.json" }, { - "id": "china-cnipa-patents", + "id": "china-nfsra", "name": { - "en": "China National Intellectual Property Administration - Patent Statistics", - "zh": "国家知识产权局专利统计" + "en": "National Food and Strategic Reserves Administration of China", + "zh": "国家粮食和物资储备局" }, "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": "The National Food and Strategic Reserves Administration (NFSRA) is the central government body responsible for overseeing China's national food security, grain storage, and strategic material reserves. Established under the National Development and Reform Commission in 2018 through institutional reform, NFSRA manages the world's largest grain reserves, oversees grain quality and food safety supervision, regulates the grain market, and manages emergency material reserves for disaster response. NFSRA publishes data on national grain production procurement, storage capacity and warehouse inventory levels, grain market price monitoring, food quality inspection results, and strategic reserve stock rotation. Its data is critical for understanding China's food security strategy, domestic grain market dynamics, and national emergency preparedness.", + "zh": "国家粮食和物资储备局是负责全国粮食安全、粮食储存和物资储备的中央政府机构,2018年通过机构改革在国家发展和改革委员会框架下组建。国家粮食和物资储备局管理着全球最大规模的粮食储备,监管粮食质量和食品安全,调控粮食市场,并管理用于灾害应急的国家物资储备。局方发布粮食收购情况、仓储能力和库存水平、粮食市场价格监测、粮食质量检测结果及战略储备轮换数据,是了解中国粮食安全战略、国内粮食市场动态和应急保障体系的重要数据来源。" }, - "website": "https://www.cnipa.gov.cn/", - "data_url": "https://www.cnipa.gov.cn/col/col61/index.html", + "website": "https://lswz.gov.cn/", + "data_url": "https://lswz.gov.cn/html/xwzx/sjfb/index.html", "api_url": null, "authority_level": "government", "country": "CN", "geographic_scope": "national", "domains": [ - "technology", - "intellectual_property", - "innovation" + "economics", + "agriculture", + "governance", + "statistics" ], "update_frequency": "monthly", "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" + "国家粮食和物资储备局", + "nfsra", + "粮食储备", + "grain-reserves", + "粮食安全", + "food-security", + "粮食收购", + "grain-procurement", + "库存水平", + "inventory-levels", + "粮食价格", + "grain-prices", + "物资储备", + "strategic-material-reserves", + "粮食质量", + "grain-quality", + "国家战略储备", + "national-strategic-reserves", + "粮食市场", + "grain-market", + "仓储能力", + "storage-capacity", + "应急储备", + "emergency-reserves", + "粮食流通", + "grain-circulation" ], "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" + "Grain procurement statistics: annual and seasonal data on government grain purchases by variety (rice, wheat, corn, soybeans) across provinces", + "National grain reserve inventory: warehouse inventory levels for state grain reserves, including reserve turnover and rotation records", + "Storage capacity data: total and available grain warehouse capacity by region, including data on modern storage facility construction progress", + "Grain market price monitoring: weekly and monthly price indices for major grain varieties at key wholesale markets and production areas", + "Grain quality inspection: annual national grain quality survey results, covering protein content, moisture, impurity rates, and safety indicators", + "Strategic material reserves: stock levels and rotation plans for emergency material reserves including pharmaceuticals, energy materials, and industrial supplies", + "Grain and oil processing: statistical data on grain and oil processing enterprises, output volumes, and capacity utilization", + "Loss reduction and storage technology: data on grain loss rates, storage technology adoption, and post-harvest loss prevention programs", + "Emergency reserve deployment: records of strategic reserve releases and deployments during price spikes or disaster events", + "Grain security assessment: annual reports on China's food security status, self-sufficiency rates, and import dependency indicators" ], "zh": [ - "三种专利类型(发明、实用新型、外观设计)的申请量、授权量和有效量统计", - "国内外专利统计,按地区、国别详细分类", - "按申请人(专利权人)类型统计(企业、高校、科研院所、个人)", - "按IPC国际专利分类(部、大类)的技术领域统计", - "PCT国际专利申请受理统计", - "16个重点产业专利统计及专利密集型产业数据", - "审查注册登记统计月报(包括专利授权、有效专利数据)", - "知识产权统计年报(1985年以来历史数据)", - "分省市的国内专利申请、授权和有效量统计", - "中国申请人在境外专利申请和授权统计", - "专利代理和法律状态统计", - "数字经济、绿色低碳等领域专利专题分析报告" + "粮食收购统计:分省分品种(水稻、小麦、玉米、大豆)年度和季节性政策性粮食收购数据", + "国家粮食储备库存:国家粮食储备仓库库存水平,包括储备周转和轮换记录", + "仓储能力数据:分地区粮食仓库总容量和可用容量,包括现代化仓储设施建设进展", + "粮食市场价格监测:主要粮食品种在主要批发市场和产地的周报和月报价格指数", + "粮食质量检测:全国粮食质量调查年度结果,涵盖蛋白质含量、水分、杂质率及安全指标", + "物资储备:应急物资储备(含药品、能源材料、工业用品)库存水平和轮换计划", + "粮油加工:粮油加工企业统计数据、产量及产能利用率", + "节粮减损与仓储技术:粮食损耗率、仓储技术推广及产后损耗防控项目数据", + "应急储备动用:价格异常波动或灾害事件期间战略储备动用和投放记录", + "粮食安全评估:中国粮食安全状况、自给率及进口依赖度指标年度报告" ] }, "has_api": false, - "file_path": "china/technology/intellectual_property/china-cnipa-patents.json" + "file_path": "china/economy/agriculture/china-nfsra.json" }, { - "id": "china-most-infrastructure", + "id": "china-sinograin", "name": { - "en": "National Platform for Research Infrastructure and Large-scale Scientific Instruments", - "zh": "重大科研基础设施和大型科研仪器国家网络管理平台" + "en": "Sinograin - China Grain Reserves Corporation", + "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": "Sinograin (China Grain Reserves Corporation, 中储粮) is the central state-owned enterprise directly under the State Council responsible for managing China's national strategic grain reserves. Established in 2003, Sinograin oversees the storage, rotation, and distribution of grain and edible oil reserves across more than 900 storage facilities and affiliated enterprises nationwide. As the world's largest grain reserve manager, Sinograin plays a pivotal role in China's food security strategy, price stabilization, and emergency supply response. The company publishes annual reports, grain reserve operation data, rotation and procurement announcements, and food security-related disclosures that serve as authoritative indicators of China's strategic food stockpile levels and grain supply chain management.", + "zh": "中国储备粮管理集团有限公司(中储粮集团)是国务院直属的中央国有企业,负责管理国家战略粮食储备。成立于2003年,中储粮负责全国900余个储备库及下属企业的粮食和食用油储备的储存、轮换和动用工作。作为全球最大的粮食储备管理机构,中储粮在中国粮食安全战略、价格调控和应急供应响应中发挥关键作用。公司发布年度报告、粮食储备运营数据、轮换和收购公告及粮食安全相关信息,是中国战略粮食储备规模和粮食供应链管理的权威数据来源。" }, - "website": "https://www.escience.org.cn/nsti", - "data_url": "https://nrii.org.cn/", + "website": "https://www.sinograin.com.cn", + "data_url": "https://www.sinograin.com.cn", "api_url": null, "authority_level": "government", "country": "CN", + "geographic_scope": "national", "domains": [ - "research-infrastructure", - "scientific-instruments", - "technology", - "science" + "agriculture", + "food-security", + "economics" ], - "geographic_scope": "national", - "update_frequency": "daily", + "update_frequency": "annual", "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" + "中储粮", + "sinograin", + "粮食储备", + "grain-reserves", + "国家战略储备", + "strategic-reserves", + "粮食安全", + "food-security", + "食用油储备", + "edible-oil-reserves", + "粮食轮换", + "grain-rotation", + "央企", + "central-soe", + "粮食供应链", + "grain-supply-chain" ], "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" + "Annual reports - financial performance, grain reserve volumes, and operational overview of Sinograin and its subsidiaries", + "Grain reserve inventory data - stored volumes of rice, wheat, corn, and soybeans at national reserve facilities", + "Grain procurement announcements - minimum purchase price policies, procurement volumes, and regional acquisition plans", + "Grain rotation records - regular reserve rotation schedules, auction results, and grain quality monitoring", + "Edible oil reserves - stored volumes of soybean oil, rapeseed oil, palm oil, and other strategic edible oils", + "Logistics and storage network - capacity data for over 900 state-owned grain storage facilities nationwide", + "Emergency reserve deployment - activation records and grain release data during food security emergencies", + "Corporate governance disclosures - management structure, subsidiary profiles, and compliance reports", + "Grain price stabilization operations - market intervention records and policy-driven procurement activities" ], "zh": [ - "重大科研基础设施:极端条件模拟类(全超导托卡马克核聚变实验装置EAST等)、遥感观测类、环境模拟类、精密测量类、生物医学类、核技术类、核物理类(北京正负电子对撞机、中国散裂中子源等)、望远镜类(中国天眼FAST等)、光源类(上海同步辐射光源、合肥国家同步辐射装置等)", - "大型科研仪器:分析仪器(质谱仪、色谱仪、光谱仪、电子显微镜等)、工艺试验仪器、物理性能测试仪器、计量仪器、电子测量仪器、医学科研仪器、计算机及配套设备、特种检测仪器、地球探测仪器、激光器、海洋仪器、大气探测仪器、核仪器、天文仪器", - "设施信息:仪器名称、型号规格、所在地区、所属单位、学科领域、技术参数、开放状态", - "服务功能:设备查询检索、在线预约、使用安排、技术支持、评价考核数据", - "覆盖范围:中央级高等学校和科研院所、中国科学院各研究所、国家重点实验室" + "年度报告 - 中储粮集团及下属企业的财务业绩、粮食储备规模及运营概况", + "粮食储备库存数据 - 全国储备库水稻、小麦、玉米和大豆的储存量", + "粮食收购公告 - 最低收购价政策、收购数量及分地区收购计划", + "粮食轮换记录 - 定期轮换计划、竞价销售结果和粮食质量监测", + "食用油储备 - 大豆油、菜籽油、棕榈油等战略性食用油的储备数量", + "物流和储存网络 - 全国900余家国有粮食仓储设施的容量数据", + "应急储备动用 - 粮食安全应急状态下的启动记录和粮食出库数据", + "公司治理披露 - 管理架构、下属企业情况及合规报告", + "粮食价格调控操作 - 市场干预记录及政策性收购活动" ] }, "has_api": false, - "file_path": "china/technology/sci_resources/china-most-infrastructure.json" + "file_path": "china/economy/agriculture/china-sinograin.json" }, { - "id": "china-most-rnd", + "id": "china-bof", "name": { - "en": "National Key R&D Program of China - Industrial Software and 16 Key Special Projects", - "zh": "国家重点研发计划 - 工业软件专项及16个重点专项" + "en": "Bureau of Fisheries, Ministry of Agriculture and Rural Affairs", + "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": "The Bureau of Fisheries (BOF) under China's Ministry of Agriculture and Rural Affairs (MARA) is the central government authority responsible for managing and supervising fishery production, aquaculture, fishing vessel administration, and fishery law enforcement across China. China is the world's largest fishery producer, accounting for approximately one-third of global fish production, and BOF publishes the authoritative China Fishery Statistical Yearbook with comprehensive data on aquaculture output, marine and inland capture fisheries, fish species production, fishery employment, fishing vessel registrations, and aquatic product trade. BOF data is essential for understanding China's food security related to protein supply, coastal and rural livelihoods, and the management of China's vast marine and freshwater fishery resources.", + "zh": "农业农村部渔业渔政管理局是负责全国渔业生产、水产养殖、渔船管理和渔政执法的中央政府机构。中国是全球最大的渔业生产国,约占全球水产品总产量的三分之一。渔业渔政管理局发布权威的《中国渔业统计年鉴》,提供养殖产量、海洋和内陆捕捞渔业、主要鱼类产量、渔业从业人员、渔船登记和水产品贸易等全面数据。渔业局数据是了解中国蛋白质供应安全、沿海和农村生计以及海洋和淡水渔业资源管理的重要依据。" }, - "website": "https://service.most.gov.cn/", - "data_url": "https://service.most.gov.cn/", + "website": "https://yyj.moa.gov.cn", + "data_url": "https://yyj.moa.gov.cn", "api_url": null, "authority_level": "government", "country": "CN", "geographic_scope": "national", "domains": [ - "technology", - "research", - "innovation", - "manufacturing", - "software" + "agriculture", + "food-security", + "environment" ], "update_frequency": "annual", "tags": [ - "国家重点研发计划", - "National Key R&D Program", - "工业软件", - "Industrial Software", - "智能机器人", - "Intelligent Robots", - "高性能制造", - "Advanced Manufacturing", - "新能源汽车", - "New Energy Vehicles", - "科技项目", - "R&D Projects", - "科研资助", - "Research Funding", - "科技部", - "MOST", - "工信部", - "MIIT", - "增材制造", - "Additive Manufacturing", - "先进计算", - "Advanced Computing", - "区块链", - "Blockchain", - "稀土材料", - "Rare Earth Materials", - "科学仪器", - "Scientific Instruments", - "信息光子", - "Information Photonics" + "渔业", + "fishery", + "水产养殖", + "aquaculture", + "捕捞渔业", + "capture-fisheries", + "水产品产量", + "fish-production", + "渔船管理", + "fishing-vessel", + "渔业统计年鉴", + "fishery-yearbook", + "海洋渔业", + "marine-fishery", + "内陆渔业", + "inland-fishery", + "bof", + "mara" ], "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" + "China Fishery Statistical Yearbook - comprehensive annual data on national fishery output, aquaculture, and capture production", + "Aquaculture production statistics - total output by species category including fish, shrimp, crab, shellfish, and algae", + "Marine capture fisheries - offshore and coastal catch data by sea area and major commercial species", + "Inland fishery data - freshwater lake, river, and reservoir fishery production statistics", + "Fishing vessel registry - number of registered fishing vessels by type, size, and coastal province", + "Fishery employment - workforce engaged in aquaculture, capture fishing, and fishery processing", + "Aquatic product trade - imports and exports of fish, seafood, and processed aquatic products", + "Aquaculture area - total area of aquaculture ponds, cages, and coastal farming facilities", + "Fishery policy announcements - fishing moratorium periods, quota allocations, and stock conservation measures" ], "zh": [ - "16个重点专项的项目申报指南,包括:工业软件、智能机器人、增材制造与激光制造、新能源汽车、基础科研条件与重大科学仪器设备研发、区块链、信息光子技术、多模态网络与通信、微纳电子技术、先进计算与新兴软件、稀土新材料、新型显示与战略性电子材料、先进结构与复合材料、高端功能与智能材料、高性能制造技术与重大装备、智能传感器", - "年度项目申报通知和申报要求", - "项目立项和资助信息", - "研究进展报告和里程碑成果", - "技术就绪度(TRL)评估", - "申报模板和支撑文件", - "专家评审指南", - "项目管理政策和流程" + "中国渔业统计年鉴 - 全国渔业产量、养殖和捕捞生产的综合年度数据", + "水产养殖产量统计 - 按鱼、虾、蟹、贝、藻类等分类的总产量", + "海洋捕捞渔业 - 按海区和主要经济鱼类分类的近海和沿海捕捞数据", + "内陆渔业数据 - 淡水湖泊、河流和水库的渔业产量统计", + "渔船登记 - 按类型、大小和沿海省份分类的注册渔船数量", + "渔业从业人员 - 从事水产养殖、捕捞和水产品加工的劳动力数据", + "水产品贸易 - 鱼类、海鲜和水产品加工品的进出口数据", + "养殖面积 - 养殖池塘、网箱和沿海养殖设施的总面积", + "渔业政策公告 - 伏季休渔期、捕捞配额分配和渔业资源养护措施" ] }, "has_api": false, - "file_path": "china/technology/sci_resources/china-most-rnd.json" + "file_path": "china/economy/agriculture/fishery/china-bof.json" }, { - "id": "china-sac-standards", + "id": "china-passenger-car-association", "name": { - "en": "Standardization Administration of China (SAC)", - "zh": "国家标准化管理委员会" + "en": "China Passenger Car Association", + "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个行业标准,覆盖工业、农业、服务业等各个领域。" + "en": "The China Passenger Car Association (CPCA) is China's leading automotive industry data provider, publishing monthly retail and wholesale sales data for passenger vehicles. CPCA is the primary source for new energy vehicle (NEV) market data in China, providing brand-level sales rankings, market share analysis, and industry trend reports.", + "zh": "全国乘用车市场信息联席会(乘联会)是中国领先的汽车行业数据发布机构,每月发布乘用车零售和批发销量数据。乘联会是中国新能源汽车市场数据的核心来源,提供品牌销量排名、市场份额分析及行业趋势报告。" }, - "website": "https://www.sac.gov.cn/", - "data_url": "https://std.samr.gov.cn/", + "website": "https://www.cpcaauto.com", + "data_url": "https://www.cpcaauto.com/newslist.php?types=csjd", "api_url": null, - "authority_level": "government", + "authority_level": "research", "country": "CN", "domains": [ - "technology", - "standards", - "quality-management", - "manufacturing", - "services", - "agriculture" + "automotive", + "new-energy-vehicles", + "transportation" ], "geographic_scope": "national", - "update_frequency": "irregular", + "update_frequency": "monthly", "tags": [ - "国家标准", - "national standards", - "GB", - "GB/T", - "强制性标准", - "mandatory standards", - "推荐性标准", - "recommended standards", - "行业标准", - "industry standards", - "地方标准", - "local standards", - "标准化", - "standardization", - "质量管理", - "quality management", - "技术规范", - "technical specifications", - "SAC", - "SAMR", - "市场监管总局" + "cpca", + "乘联会", + "乘用车", + "passenger-car", + "汽车销量", + "新能源汽车", + "nev", + "电动车", + "ev", + "汽车市场", + "销量排名", + "market-share", + "auto-sales" ], "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" + "Monthly Retail Sales - Passenger vehicle retail sales data by brand, segment, and powertrain type", + "Wholesale Sales Data - Factory wholesale delivery volumes for passenger car manufacturers", + "NEV Market Data - New energy vehicle sales, market penetration rates, and technology mix (BEV/PHEV)", + "Export Statistics - Chinese passenger car export volumes by brand and destination", + "Market Analysis Reports - Industry trend analysis, market forecasts, and policy impact assessments" ], "zh": [ - "强制性国家标准(GB): 2,147项现行有效标准,涵盖安全、卫生、环境保护等领域", - "推荐性国家标准(GB/T): 46,553项现行有效标准,覆盖各行业领域", - "指导性技术文件(GB/Z): 706项现行有效文件", - "行业标准: 87,293项标准,涵盖76个行业(包括安全生产AQ、包装BB、船舶CB、测绘CH、城镇建设CJ等)", - "地方标准: 62,164项标准,来自各省市自治区", - "国家标准制修订计划和公告", - "技术委员会信息和专家数据库", - "国家标准全文公开(非采标标准可在线阅读和下载)", - "国际国外标准对比分析", - "标准复审和修订信息" + "月度零售销量 - 按品牌、细分市场及动力类型的乘用车零售销量数据", + "批发销量数据 - 乘用车厂商批发交付量", + "新能源汽车数据 - 新能源车销量、市场渗透率及技术结构(纯电/插混)", + "出口统计 - 中国乘用车按品牌和目的地的出口量", + "市场分析报告 - 行业趋势分析、市场预测及政策影响评估" ] }, "has_api": false, - "file_path": "china/technology/standards/china-sac-standards.json" + "file_path": "china/economy/automotive/china-passenger-car-association.json" }, { - "id": "china-miit", + "id": "china-acfic", "name": { - "en": "Ministry of Industry and Information Technology of the People's Republic of China", - "zh": "中华人民共和国工业和信息化部" + "en": "All-China Federation of Industry and Commerce", + "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 All-China Federation of Industry and Commerce (ACFIC), also known as the China Chamber of Commerce, is the national organization representing non-public economic entities — primarily private enterprises and self-employed businesses — in China. Founded in 1953, ACFIC serves as a bridge between the government and China's vast private sector, which accounts for over 60% of GDP, 70% of technological innovation, 80% of urban employment, and 90% of new businesses. ACFIC publishes influential research reports on China's private economy development, annual surveys of private enterprise business conditions, the prestigious China Top 500 Private Enterprises ranking, and policy research on private sector competitiveness, innovation capacity, and domestic market dynamics. Its data and rankings are among the most authoritative sources for understanding China's private business sector.", + "zh": "中华全国工商业联合会(全国工商联)是代表非公有制经济主体——以民营企业和个体工商户为主——的全国性组织,又称中国工商业联合会。全国工商联成立于1953年,是政府与中国庞大民营经济之间的纽带。民营经济贡献了超过60%的GDP、70%的技术创新、80%的城镇就业和90%的新增企业。全国工商联发布具有重要影响力的中国民营经济发展研究报告、民营企业经营状况年度调查、中国民营企业500强榜单,以及民营经济竞争力、创新能力和国内市场动态政策研究,是了解中国民营经济的最权威数据来源之一。" }, - "website": "https://www.miit.gov.cn/", - "data_url": "https://www.miit.gov.cn/gxsj/index.html", + "website": "https://www.acfic.org.cn/", + "data_url": "https://www.acfic.org.cn/myjjsj/", "api_url": null, - "authority_level": "government", + "authority_level": "other", "country": "CN", "geographic_scope": "national", "domains": [ + "economics", "industry", - "telecommunications", - "technology", - "manufacturing", - "electronics" + "statistics", + "governance" ], - "update_frequency": "monthly", + "update_frequency": "annual", "tags": [ - "工业", - "信息化", - "industry", - "telecommunications", - "通信", - "制造业", - "manufacturing", - "电子信息", - "electronics", - "软件业", - "software", - "互联网", - "internet", - "装备工业", - "equipment", - "汽车", - "automotive", - "原材料", - "raw materials", - "消费品", - "consumer goods", - "工信部", - "MIIT", - "中国制造", - "Made in China" + "全国工商联", + "acfic", + "中华全国工商业联合会", + "all-china-federation-of-industry-and-commerce", + "民营经济", + "private-economy", + "民营企业500强", + "china-top-500-private-enterprises", + "非公有制经济", + "non-public-economy", + "民营企业", + "private-enterprises", + "商业环境", + "business-environment", + "民营经济调查", + "private-enterprise-survey", + "中小企业", + "smes", + "个体工商户", + "self-employed-businesses", + "民营经济发展", + "private-economy-development", + "企业竞争力", + "enterprise-competitiveness", + "产业投资", + "industrial-investment" ], "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" + "China Top 500 Private Enterprises ranking: annual list of the 500 largest private companies in China by revenue, with financial performance data", + "Private enterprise business survey: annual nationwide survey of tens of thousands of private enterprises covering business confidence, financing conditions, operating costs, and employment expectations", + "Private economy development report: comprehensive annual analysis of the contribution, structure, and development trends of China's non-public economy", + "Private enterprise financing data: SME loan availability, credit conditions, financing costs, and alternative financing channel usage", + "Innovation and R&D investment: private enterprise R&D spending, patent applications, and technology adoption statistics", + "Employment and labor: private sector employment volumes, wage levels, and labor market conditions across industries", + "Industry structure of private economy: breakdown of private enterprise activity by sector, region, and enterprise scale", + "Private enterprise operating costs: data on land costs, labor costs, tax burdens, and regulatory compliance costs facing private businesses", + "Policy response tracking: surveys on private business response to government policies including tax cuts, financial support, and regulatory reforms", + "Cross-regional competitiveness: provincial and city-level rankings of private economy development based on output, growth, and business environment indicators" ], "zh": [ - "原材料工业:钢铁、有色金属、石化化工、建材、稀土等行业统计数据", - "装备工业:机械、汽车、民用船舶、民用航空工业等行业数据", - "消费品工业:轻工、纺织、食品、家电等行业统计数据", - "通信业:基础电信业统计数据及运行分析", - "电子信息制造业:电子信息制造业统计数据及运行分析", - "软件业:软件和信息技术服务业统计数据和运行分析", - "互联网:互联网和相关服务业统计数据和运行分析", - "工业政策:政策文件、法规公告、行业标准", - "行政服务:电信业务许可、车辆生产准入、监管审批等" + "中国民营企业500强:按营业收入排列的500强民营企业年度榜单及财务绩效数据", + "民营企业经营状况年度调查:覆盖数万家民营企业的全国年度调查,涵盖经营信心、融资状况、运营成本及用工预期", + "民营经济发展报告:中国非公有制经济贡献、结构和发展趋势的综合年度分析", + "民营企业融资数据:中小企业贷款可得性、信贷条件、融资成本及替代融资渠道使用情况", + "创新与研发投入:民营企业研发支出、专利申请及技术采用统计数据", + "就业与劳动力:分行业民营部门就业规模、工资水平及劳动力市场状况", + "民营经济行业结构:按领域、地区和企业规模分类的民营经济活动分布", + "民营企业运营成本:民营企业面临的土地成本、人工成本、税负及监管合规成本数据", + "政策响应追踪:民营企业对减税降费、金融支持和监管改革等政府政策响应情况调查", + "跨区域竞争力:基于产出、增长和营商环境指标的省市民营经济发展水平排名" ] }, "has_api": false, - "file_path": "china/technology/telecommunications/china-miit.json" + "file_path": "china/economy/china-acfic.json" }, { - "id": "india-dgcis", + "id": "china-alibaba-auction", "name": { - "en": "Directorate General of Commercial Intelligence and Statistics", - "zh": "印度商业情报与统计总局" + "en": "Alibaba Judicial Auction Platform", + "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": "Alibaba Judicial Auction (sf.taobao.com) is the largest online judicial auction platform in China, designated by the Supreme People's Court as an authorized network judicial auction platform. It hosts court-ordered auctions of seized assets including residential and commercial real estate, vehicles, land use rights, equity stakes, machinery, and other properties. The platform provides detailed property information, auction schedules, reserve prices, assessment reports, and real-time bidding. It covers auctions from courts at all levels across all provinces, making it the most comprehensive source for judicial auction market data in China.", + "zh": "阿里拍卖·司法(sf.taobao.com)是中国最大的网络司法拍卖平台,经最高人民法院指定为网络司法拍卖平台。平台承载法院裁定的查封资产拍卖,包括住宅和商业房产、车辆、土地使用权、股权、机械设备等。提供详细的标的物信息、拍卖时间、起拍价、评估报告和实时竞价。覆盖全国各省各级法院拍卖,是中国司法拍卖市场数据最全面的来源。" }, - "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/", + "website": "https://sf.taobao.com", + "data_url": "https://sf.taobao.com", "api_url": null, - "country": "IN", + "authority_level": "commercial", + "country": "CN", "domains": [ - "International Trade", - "Foreign Trade Statistics", - "Inland Trade", - "Customs Statistics", - "Export Statistics", - "Import Statistics", - "Shipping Statistics", - "Coastal Trade", - "Inter-State Trade", - "Excise Revenue" + "judicial-auction", + "real-estate", + "asset-disposal" ], "geographic_scope": "national", - "update_frequency": "monthly", + "update_frequency": "daily", "tags": [ - "india", - "trade-statistics", - "foreign-trade", - "export-import", - "customs-data", - "government-statistics", - "economic-data", - "hs-classification", - "trade-policy", - "shipping-statistics", - "inland-trade", - "south-asia" + "judicial-auction", + "real-estate", + "property", + "alibaba", + "court-auction" ], "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" + "Court-ordered auction listings for real estate, vehicles, land, equity, and other seized assets", + "Property details, assessment reports, reserve prices, and real-time bidding data", + "Auction results and transaction records from courts across all provinces", + "Market statistics on judicial auction volumes, categories, and price trends" ], "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" + "file_path": "china/economy/china-alibaba-auction.json" }, { - "id": "boj-statistics", + "id": "china-caac", "name": { - "en": "Bank of Japan Statistics", - "zh": "日本银行统计数据", - "native": "日本銀行統計" + "en": "Civil Aviation Administration of China", + "zh": "中国民用航空局", + "native": "中国民用航空局" }, "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 Civil Aviation Administration of China (CAAC) is the government body responsible for civil aviation regulation and oversight in China. It publishes comprehensive civil aviation statistics including passenger and freight traffic, airline operations, airport throughput, flight safety records, and industry development data.", + "zh": "中国民用航空局(CAAC)是负责中国民用航空监管和管理的政府机构。发布全面的民航统计数据,包括旅客和货邮运输量、航空公司运营、机场吞吐量、飞行安全记录和行业发展数据。" }, - "website": "https://www.boj.or.jp/en/", - "data_url": "https://www.boj.or.jp/en/statistics/index.htm", + "website": "https://www.caac.gov.cn", + "data_url": "https://www.caac.gov.cn/XXGK/XXGK/TJSJ/index.html", "api_url": null, - "country": "JP", + "country": "CN", + "authority_level": "government", "domains": [ - "Monetary Policy", - "Financial Markets", - "Banking", - "Flow of Funds", - "Economic Surveys", - "Prices", - "Balance of Payments", - "Public Finance", - "Payment Systems" + "transportation", + "aviation", + "statistics", + "economics" ], "geographic_scope": "national", - "update_frequency": "daily", + "update_frequency": "monthly", "tags": [ - "Japan", - "central-bank", - "monetary-policy", - "financial-markets", - "banking", - "flow-of-funds", - "TANKAN", - "prices", - "balance-of-payments", - "economic-statistics", - "time-series", - "official-statistics" + "china", + "civil-aviation", + "caac", + "民航", + "航空统计", + "passenger-traffic", + "freight-traffic", + "airport", + "airline", + "aviation-safety", + "government" ], "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" + "Passenger Traffic - Total civil aviation passenger volume, load factor, and passenger kilometers", + "Freight and Mail Traffic - Air cargo and mail transport volumes and ton-kilometers", + "Airport Throughput - Passenger, cargo, and aircraft movements at major airports", + "Airline Operations - Fleet size, routes, flight frequency, and on-time performance", + "Flight Safety - Accident and incident statistics, safety inspection records", + "Civil Aviation Industry Statistics - Revenue, investment, and employment in the sector", + "International Routes - Cross-border passenger and cargo traffic by country", + "General Aviation - Non-commercial aviation operations and fleet data", + "Annual Civil Aviation Development Statistics Bulletin - comprehensive yearly report" ], "zh": [ - "货币基数和日本银行交易", - "货币存量和货币调查", - "存贷款利率", - "金融市场(拆借市场、外汇、证券)", - "支付结算统计", - "存贷款市场", - "金融机构账户和资产负债表", - "资金流动账户", - "TANKAN(企业短期经济观测调查)", - "价格指数(CPI、PPI、CGPI)", - "公共财政统计", - "国际收支和国际投资头寸", - "国际清算银行/金融稳定委员会相关统计", - "流通货币", - "历史时间序列数据" + "旅客运输 - 民航旅客总运输量、客座率和旅客周转量", + "货邮运输 - 航空货物和邮件运输量及货邮周转量", + "机场吞吐量 - 主要机场旅客、货物和飞机起降量", + "航空公司运营 - 机队规模、航线、航班频次和正点率", + "飞行安全 - 事故和事件统计、安全检查记录", + "民航行业统计 - 行业营收、投资和就业情况", + "国际航线 - 按国家分类的跨境旅客和货运交通", + "通用航空 - 非商业性航空运营和机队数据", + "民航发展统计公报 - 综合年度报告" ] }, - "authority_level": "government", "has_api": false, - "file_path": "countries/asia/japan/boj-statistics.json" + "file_path": "china/economy/china-caac.json" }, { - "id": "korea-bok", + "id": "china-cada", "name": { - "en": "Bank of Korea", - "zh": "韩国银行", - "native": "한국은행" + "en": "China Automobile Dealers Association", + "zh": "中国汽车流通协会" }, "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 China Automobile Dealers Association (CADA) is the national trade organization representing China's automobile dealerships, used-car dealers, and automotive retail sector, supervised by the Ministry of Commerce. China is the world's largest auto market, with annual retail sales exceeding 25 million vehicles. CADA operates a comprehensive statistical system tracking monthly new-vehicle retail sales by brand, segment, and region through its network of over 10,000 dealer members. The association publishes the CADA Dealer Confidence Index (DCI) and the China Used Car Market Report, providing authoritative demand-side data that complements supply-side data from the China Association of Automobile Manufacturers (CAAM). CADA also monitors dealer profitability, inventory levels, financing penetration rates, and consumer satisfaction, making it essential for automotive industry analysis, investment research, and consumer trend studies.", + "zh": "中国汽车流通协会(中汽协流通)是代表中国整车经销商、二手车经销商和汽车零售行业的全国性行业组织,主管单位为商务部。中国是全球最大的汽车市场,年零售销量超过2500万辆。协会通过10000余家经销商会员网络,构建了完整的统计体系,按品牌、细分市场和地区追踪月度新车零售销量。协会发布经销商信心指数(DCI)和中国二手车市场报告,提供权威的需求侧数据,与中国汽车工业协会(中汽协)的供给侧数据形成互补。协会还监测经销商盈利能力、库存系数、金融服务渗透率和消费者满意度,是汽车行业分析、投资研究和消费趋势研究的重要数据来源。" }, - "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", + "website": "http://www.cada.cn", + "data_url": "http://data.cada.cn/main/overview.do", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", "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" + "economics", + "industry", + "trade", + "consumer" ], - "geographic_scope": "national", - "update_frequency": "daily", + "update_frequency": "monthly", "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" + "中国汽车流通协会", + "cada", + "china-automobile-dealers-association", + "汽车零售", + "automobile-retail-sales", + "新车销量", + "new-vehicle-sales", + "二手车", + "used-car-market", + "经销商信心指数", + "dealer-confidence-index", + "dci", + "库存系数", + "dealer-inventory", + "汽车金融", + "auto-financing", + "消费者满意度", + "consumer-satisfaction", + "乘用车", + "passenger-vehicles", + "商用车", + "commercial-vehicles", + "新能源汽车", + "new-energy-vehicles", + "nev", + "品牌销量", + "brand-sales", + "汽车市场", + "auto-market", + "经销商盈利", + "dealer-profitability" ], "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" + "Monthly new vehicle retail sales: passenger car and commercial vehicle retail volumes by brand, model segment (sedan, SUV, MPV), and province/city", + "CADA Dealer Confidence Index (DCI): monthly survey-based sentiment indicator covering dealer expectations for sales, inventory, and profitability across vehicle segments", + "Used car market statistics: monthly transaction volumes, average transaction prices, and regional distribution of used vehicle sales in China", + "Dealer inventory index: monthly days-of-supply and stock-to-sales ratio by brand and dealership tier, indicating supply-demand balance in the retail channel", + "Auto financing penetration: monthly share of vehicle purchases financed, average loan-to-value ratios, and financing product mix by brand tier", + "Consumer satisfaction survey: annual JD Power-style satisfaction rankings for dealership sales, service quality, and after-sales experience by brand", + "Dealership financial health: quarterly survey of dealer profitability, revenue per unit, and profit margin by brand authorization tier", + "New energy vehicle retail tracking: monthly battery electric vehicle (BEV) and plug-in hybrid (PHEV) retail sales with charging infrastructure data", + "Annual China auto dealer blue book: comprehensive review of retail market trends, dealer network changes, and outlook for the coming year" ], "zh": [ - "货币和流动性总量 - M1、M2、Lf(月度)", - "利率 - 政策利率、市场利率、债券收益率(月度)", - "国际收支 - 经常账户、资本账户、金融账户(月度)", - "国民账户 - GDP、GNI、支出组成(季度)", - "生产者价格指数(PPI)- 国内和进出口价格(月度)", - "进出口价格指数(月度)", - "企业景气调查指数(BSI)和经济情绪指数(ESI)(月度)", - "消费者调查指数(CSI)- 通胀预期、消费者信心(月度)", - "资金流量 - 机构部门账户(季度)", - "家庭信贷 - 对家庭的贷款和其他信贷(季度)", - "存款类金融机构产业贷款(季度)", - "财务报表分析 - 企业部门财务数据(季度)", - "国际投资头寸(IIP)- 对外资产和负债(季度)", - "官方外汇储备(月度)", - "投入产出表 - 产业间交易(年度)", - "地区经济统计和指标" + "月度新车零售销量:按品牌、车型细分(轿车、SUV、MPV)和省市分类的乘用车和商用车零售量", + "经销商信心指数(DCI):月度调查型情绪指标,涵盖各细分市场销量预期、库存及盈利能力", + "二手车市场统计:中国二手车月度交易量、平均成交价格和区域分布", + "库存系数:按品牌和经销商层级的月度库存销售天数和库存销售比,反映零售渠道供需平衡状况", + "汽车金融渗透率:月度融资购车占比、平均贷款价值比和按品牌层级的金融产品结构", + "消费者满意度调查:各品牌经销商销售、服务质量和售后体验的年度JD Power式满意度排名", + "经销商财务健康状况:按品牌授权层级的经销商盈利能力、单车收益和利润率季度调查", + "新能源汽车零售追踪:纯电动汽车(BEV)和插电混合动力汽车(PHEV)月度零售量及充电基础设施数据", + "中国汽车流通蓝皮书:年度零售市场趋势、经销商网络变化及下一年度展望综合述评" ] }, - "authority_level": "government", - "has_api": true, - "file_path": "countries/asia/korea/korea-bok.json" + "has_api": false, + "file_path": "china/economy/china-cada.json" }, { - "id": "uk-boe", + "id": "china-gpai", "name": { - "en": "Bank of England Statistical Interactive Database", - "zh": "英格兰银行统计数据库" + "en": "China Public Auction Network", + "zh": "公拍网" }, "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": "The China Public Auction Network (gpai.net) is a comprehensive online auction platform for judicial auctions, public resource transactions, and government asset disposals. Designated by the Supreme People's Court as an authorized network judicial auction platform, it handles court-ordered property auctions alongside public resource trading including state-owned asset transfers, bankruptcy asset disposals, and government procurement auctions. The platform serves as both a judicial auction channel and a public resource transaction hub, particularly active in eastern China regions.", + "zh": "公拍网(gpai.net)是综合性网络拍卖平台,涵盖司法拍卖、公共资源交易和政府资产处置。经最高人民法院指定为网络司法拍卖平台,承载法院裁定的财产拍卖,同时处理国有资产转让、破产资产处置和政府采购拍卖等公共资源交易。平台兼具司法拍卖渠道和公共资源交易枢纽功能,在华东地区尤为活跃。" }, - "website": "https://www.bankofengland.co.uk", - "data_url": "https://www.bankofengland.co.uk/boeapps/database/", + "website": "https://www.gpai.net", + "data_url": "https://www.gpai.net/sf/", "api_url": null, - "country": "GB", + "authority_level": "commercial", + "country": "CN", "domains": [ - "Monetary Policy", - "Financial Markets", - "Banking", - "Interest Rates", - "Exchange Rates", - "Credit", - "Financial Stability", - "Payment Systems", - "Regulatory Capital" + "judicial-auction", + "real-estate", + "public-resource-trading" ], "geographic_scope": "national", "update_frequency": "daily", "tags": [ - "central-bank", - "monetary-policy", - "financial-stability", - "interest-rates", - "exchange-rates", - "banking", - "UK", - "United Kingdom", - "England", - "regulatory-data", - "financial-markets", - "payment-systems" + "judicial-auction", + "public-auction", + "real-estate", + "state-asset", + "property" ], "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" + "Judicial auction listings for court-ordered property disposals", + "Public resource transaction records including state-owned asset transfers", + "Bankruptcy asset disposal and government procurement auction data", + "Auction results, bidding statistics, and property valuation records" ], "zh": [ - "货币与信贷数据(贷款、存款、货币总量)", - "利率(基准利率、报价利率、有效利率)", - "汇率(每日即期汇率、英镑指数)", - "收益率曲线(政府债券、LIBOR、OIS)", - "金融市场(资本发行、衍生品、外部业务)", - "银行业监管资本", - "抵押贷款机构统计", - "支付清算统计(CHAPS、RTGS)", - "英国国际储备", - "纸币和黄金统计", - "消费信贷(含学生贷款)", - "住房净值提取", - "期权隐含概率密度函数", - "信用合作社统计", - "保险汇总数据" + "法院裁定的司法拍卖标的信息", + "国有资产转让等公共资源交易记录", + "破产资产处置和政府采购拍卖数据", + "拍卖结果、竞价统计和资产评估记录" ] }, - "authority_level": "government", "has_api": false, - "file_path": "countries/europe/uk/bank-of-england.json" + "file_path": "china/economy/china-gpai.json" }, { - "id": "uk-data-gov", + "id": "china-jd-auction", "name": { - "en": "Data.gov.uk", - "zh": "英国政府开放数据平台" + "en": "JD.com Judicial Auction Platform", + "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 和其他政府网站上的数据集,涵盖商业、犯罪、国防、教育、环境、健康、政府支出、交通等多个领域。该平台由政府数字服务部门建设和运营,通过使公共部门数据对公民、研究人员、企业和开发者开放,支持透明度、创新和基于证据的政策制定。" + "en": "JD.com Judicial Auction (auction.jd.com) is one of China's major online judicial auction platforms, designated by the Supreme People's Court as an authorized network judicial auction platform. It hosts court-ordered auctions of seized assets including real estate, vehicles, land use rights, and equity stakes. The platform leverages JD.com's e-commerce infrastructure to provide property listings, auction schedules, bidding services, and transaction records. It serves as a significant supplementary channel to Alibaba's judicial auction platform for court-ordered asset dispositions.", + "zh": "京东拍卖·司法(auction.jd.com)是中国主要的网络司法拍卖平台之一,经最高人民法院指定为网络司法拍卖平台。平台承载法院裁定的查封资产拍卖,包括房产、车辆、土地使用权和股权等。依托京东电商基础设施,提供标的物展示、拍卖安排、竞价服务和成交记录。是阿里司法拍卖之外法院资产处置的重要补充渠道。" }, - "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", + "website": "https://auction.jd.com", + "data_url": "https://auction.jd.com/sifa.html", + "api_url": null, + "authority_level": "commercial", + "country": "CN", "domains": [ - "Business and economy", - "Crime and justice", - "Defence", - "Education", - "Environment", - "Government", - "Government spending", - "Health", - "Mapping", - "Society", - "Towns and cities", - "Transport", - "Digital service performance" + "judicial-auction", + "real-estate", + "asset-disposal" ], "geographic_scope": "national", "update_frequency": "daily", "tags": [ - "united-kingdom", - "government", - "open-data", - "transparency", - "public-sector", - "local-authorities", - "multi-domain", - "comprehensive", - "ogl" + "judicial-auction", + "real-estate", + "property", + "jd", + "court-auction" ], "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)" + "Court-ordered auction listings for real estate, vehicles, land use rights, and equity", + "Property information, auction schedules, reserve prices, and bidding records", + "Transaction results and auction statistics by region and asset category" ], "zh": [ - "商业和经济数据(小企业、工业、进出口、贸易)", - "犯罪和司法数据(法院、警察、监狱、罪犯、边境、移民)", - "国防数据(武装部队、健康与安全、搜索和救援)", - "教育数据(学生、培训、资格、国家课程)", - "环境数据(天气、洪水、河流、空气质量、地质、农业)", - "政府数据(员工人数和薪酬、地方议员、部门业务计划)", - "政府支出数据(政府部门超过 25,000 英镑的所有付款)", - "健康数据(吸烟、毒品、酒精、药物性能、医院)", - "地图数据(地址、边界、土地所有权、航空照片、海床、地形)", - "社会数据(就业、福利、家庭财务、贫困、人口)", - "城镇数据(住房、城市规划、休闲、废物、能源消耗)", - "交通数据(机场、道路、货运、电动汽车、停车、公交、人行道)", - "数字服务性能数据(成本、使用情况、完成率、数字采用率、满意度)", - "政府参考数据(跨政府部门共享的可信数据)" + "法院裁定的房产、车辆、土地使用权、股权等拍卖信息", + "标的物信息、拍卖安排、起拍价和竞价记录", + "按地区和资产类别分类的成交结果和拍卖统计" ] }, - "authority_level": "government", - "has_api": true, - "file_path": "countries/europe/uk/uk-data-gov.json" + "has_api": false, + "file_path": "china/economy/china-jd-auction.json" }, { - "id": "aafc", + "id": "china-mct", "name": { - "en": "Agriculture and Agri-Food Canada", - "zh": "加拿大农业与农业食品部", - "native": "Agriculture et Agroalimentaire Canada" + "en": "Ministry of Culture and Tourism of China", + "zh": "中华人民共和国文化和旅游部", + "native": "中华人民共和国文化和旅游部" }, "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": "The Ministry of Culture and Tourism publishes statistics on domestic and international tourism, cultural industry development, and online travel market regulation in China.", + "zh": "文化和旅游部发布国内外旅游统计、文化产业发展和在线旅游市场监管数据。" }, - "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", + "website": "https://www.mct.gov.cn", + "data_url": "https://www.mct.gov.cn/zwgk/tjsj/", + "country": "CN", "domains": [ - "Agriculture", - "Crop Production", - "Land Use", - "Geospatial Data", - "Environmental Monitoring", - "Agricultural Economics", - "Food Security", - "Agricultural Research", - "Market Information" + "tourism", + "culture", + "economics" ], - "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" + "tourism-statistics", + "cultural-industry", + "inbound-tourism", + "outbound-tourism" ], + "authority_level": "government", + "update_frequency": "annual", + "geographic_scope": "national", "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" + "Tourism Statistics - Domestic and international tourist arrivals, revenue, and expenditure", + "Cultural Industry - Cultural enterprise statistics, revenue, and employment", + "Online Travel - Online travel market regulation and platform data", + "Heritage Sites - Cultural heritage and scenic area visitor statistics" ], "zh": [ - "年度作物清单 - 基于卫星影像生成的加拿大各地作物类型年度数字地图(2009年至今)", - "土地利用时间序列 - 2000-2021年历史土地利用分类数据", - "农业环境空间数据 (AESD) - 来自农业普查的农场级变量和农业生产活动空间分布", - "农业生产统计 - 主要作物的产量、单产和种植面积数据", - "市场信息 - 商品价格、贸易数据和市场分析", - "气候和天气数据 - 农业气候指数和生长季节信息", - "土壤质量数据 - 土壤分类、有机碳含量和农业土壤健康指标", - "农业项目数据 - 资金项目、业务风险管理和支持服务信息", - "研究出版物 - 农业创新的科学研究和技术报告", - "地理边界 - 农业普查区域和生态区" + "旅游统计 - 国内外游客人次、收入和支出", + "文化产业 - 文化企业统计、营收和就业", + "在线旅游 - 在线旅游市场监管和平台数据", + "文化遗产 - 文化遗产和景区游客统计" ] }, - "authority_level": "government", - "has_api": true, - "file_path": "countries/north-america/canada/aafc.json" + "api_url": null, + "has_api": false, + "file_path": "china/economy/china-mct.json" }, { - "id": "canada-boc", + "id": "china-miit-sme", "name": { - "en": "Bank of Canada", - "zh": "加拿大银行", - "native": "Banque du Canada" + "en": "China Center for Promotion of SME Development (MIIT)", + "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 China Center for Promotion of SME Development, directly subordinate to the Ministry of Industry and Information Technology (MIIT), is the central government body responsible for supporting small and medium-sized enterprise (SME) development in China. Established to implement national SME policies, the Center conducts research and analysis on SME development trends, tracks SME operational data, manages SME-related public service platforms, and provides policy advisory, financing support, innovation promotion, and international cooperation services. The Center publishes regular SME development index reports, manages China's national SME information and public service platform, compiles SME statistical data, and coordinates specialized SME programs such as the 'Specialized, Refined, Differentiated, and Innovative' (专精特新) enterprise certification. Its data is critical for understanding the health of China's SME sector which accounts for over 50% of tax revenue, 60% of GDP, 70% of innovation, 80% of employment, and 90% of enterprises nationwide.", + "zh": "中国中小企业发展促进中心是工业和信息化部直属事业单位,是负责支持中国中小企业发展的中央政府机构。中心成立的目的是落实国家中小企业政策,开展中小企业发展趋势研究分析,跟踪中小企业经营数据,管理中小企业相关公共服务平台,并提供政策咨询、融资支持、创新促进及国际合作服务。中心定期发布中小企业发展指数报告,管理中国中小企业信息网及公共服务平台,编制中小企业统计数据,并协调“专精特新”企业认定等专项中小企业计划。其数据对了解占全国50%以上税收、60%以上GDP、70%以上创新、80%以上就业和90%以上企业数量的中小企业部门健康状况至关重要。" }, - "website": "https://www.bankofcanada.ca", - "data_url": "https://www.bankofcanada.ca/rates/", - "api_url": "https://www.bankofcanada.ca/valet/docs", - "country": "CA", + "website": "https://www.chinasme.org.cn/", + "data_url": "https://www.chinasme.org.cn/html/mcms/daohang/tongzhigonggao/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", "domains": [ - "monetary_policy", - "exchange_rates", - "interest_rates", - "inflation", - "banking", - "financial_markets", - "economic_indicators" + "economics", + "business", + "governance", + "statistics" ], - "geographic_scope": "national", - "update_frequency": "daily", + "update_frequency": "monthly", "tags": [ - "canada", - "central-bank", - "monetary-policy", - "exchange-rates", - "interest-rates", - "inflation", - "financial-markets", - "banking-statistics", - "open-data", - "api", - "bilingual" + "中国中小企业发展促进中心", + "china-sme-development-center", + "工业和信息化部", + "miit", + "中小企业", + "sme", + "small-and-medium-enterprises", + "专精特新", + "specialized-refined-differentiated-innovative", + "中小企业发展指数", + "sme-development-index", + "中小企业政策", + "sme-policy", + "中小企业融资", + "sme-financing", + "企业创新", + "enterprise-innovation", + "公共服务平台", + "public-service-platform", + "企业服务", + "enterprise-services", + "中小企业统计", + "sme-statistics", + "小微企业", + "micro-and-small-enterprises", + "创业创新", + "entrepreneurship-and-innovation", + "制造业中小企业", + "manufacturing-smes" ], "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" + "SME development index: quarterly composite index tracking SME operating conditions across sectors including market demand, profitability, costs, financing, and confidence", + "SME statistical data: aggregated statistics on SME count, employment, revenue, value added, by industry and region", + "Specialized and sophisticated SMEs ('Little Giants') database: certified lists of 'Specialized, Refined, Differentiated, and Innovative' (专精特新) enterprises at national and provincial levels", + "SME policy documents: national and local policy announcements on SME taxation, financing, innovation, digital transformation", + "Financing service data: SME credit and loan statistics, guarantee data, direct financing trends", + "SME public service platform data: resources from the national SME information network covering training, consulting, technology transfer", + "Sectoral analysis reports: industry-specific SME development trends in manufacturing, services, and emerging industries", + "International cooperation projects: SME cooperation programs with EU, ASEAN, Japan, Korea, and Belt and Road countries", + "Enterprise service center directory: nationwide network of SME service organizations and their capabilities", + "Conference and exhibition data: China International SME Expo and related event information" ], "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" + "has_api": false, + "file_path": "china/economy/china-miit-sme.json" }, { - "id": "canada-cihi", + "id": "china-cansi", "name": { - "en": "Canadian Institute for Health Information", - "zh": "加拿大健康信息研究所", - "native": "Institut canadien d'information sur la santé" + "en": "China Association of the National Shipbuilding Industry", + "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收集、分析并报告加拿大各地的健康数据和医疗系统绩效,包括医院护理、药品、医学影像、急诊科、持续护理和人口健康指标。该组织维护涵盖患者结局、等待时间、医疗支出、医疗人力统计和临床质量指标的综合数据库。" + "en": "The China Association of the National Shipbuilding Industry (CANSI) is the national industry organization representing China's shipbuilding sector. China is the world's largest shipbuilding nation by output, consistently accounting for over 50% of global new ship orders (by compensated gross tonnage). CANSI publishes monthly and annual statistics on vessel completions, new orders, and the orderbook backlog across all major vessel types including bulk carriers, tankers, container ships, LNG carriers, and naval vessels. The association also releases data on steel consumption by shipbuilders, employment in the sector, and shipyard-level performance. CANSI data is the primary reference for global shipping market participants, port operators, financial analysts, and trade economists tracking China's maritime industrial capacity.", + "zh": "中国船舶工业行业协会(中船协)是代表中国船舶工业的全国性行业组织。中国是全球最大的造船国,按修正总吨计新接订单长期占全球50%以上。中船协发布散货船、油船、集装箱船、LNG船及军船等各类船型的月度和年度完工量、新接订单量及手持订单统计数据,同时发布造船业钢材消耗量、行业从业人员规模及船厂经营情况数据。中船协数据是全球航运市场参与者、港口运营商、金融分析师和贸易经济学家追踪中国船舶工业产能的主要数据来源。" }, - "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", + "website": "https://www.cansi.org.cn/", + "data_url": "https://www.cansi.org.cn/cms/document/show/43.html", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", "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" + "industry", + "trade", + "economics", + "infrastructure" ], - "geographic_scope": "national", - "update_frequency": "quarterly", + "update_frequency": "monthly", "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" + "中国船舶工业行业协会", + "cansi", + "china-shipbuilding", + "造船", + "船舶工业", + "shipbuilding-industry", + "新船订单", + "new-ship-orders", + "手持订单", + "orderbook", + "完工量", + "vessel-completions", + "散货船", + "bulk-carrier", + "油船", + "tanker", + "集装箱船", + "container-ship", + "LNG船", + "lng-carrier", + "cgt", + "修正总吨", + "compensated-gross-tonnage", + "全球造船市场", + "global-shipbuilding-market", + "航运", + "shipping", + "造船产能", + "shipbuilding-capacity", + "船厂", + "shipyard" ], "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" + "Monthly shipbuilding completions: total vessel output by tonnage (DWT, CGT) and number of ships, broken down by vessel type", + "New orders received: monthly new shipbuilding contracts by vessel type, tonnage, and value", + "Orderbook backlog: total outstanding orders at Chinese shipyards by vessel type and delivery schedule", + "Market share data: China's share of global shipbuilding output versus South Korea, Japan, and other major shipbuilding nations", + "Vessel type breakdown: detailed statistics for bulk carriers, crude/product tankers, container ships, LNG carriers, and other specialized vessels", + "Steel consumption: steel plate and section consumption by major shipyards, linking shipbuilding to steel industry demand", + "Industry employment: total workforce in China's shipbuilding and ship repair sector", + "Annual industry report: comprehensive overview of China's shipbuilding industry performance, technology, and market outlook", + "Export data: vessels built in China for foreign buyers and export value" ], "zh": [ - "医院护理和患者结局 - 出院数据、再入院率、死亡率", - "等待时间 - 外科手术、诊断影像、急诊就诊", - "医疗支出 - 国家、省级和地区按类别划分的医疗支出", - "药品处方 - 药物使用、成本、配药模式", - "医学影像 - CT扫描、MRI、超声、X光使用和等待时间", - "急诊就诊 - 患者数量、分诊级别、停留时间", - "持续护理 - 长期护理、家庭护理服务、复杂持续护理", - "心理健康和成瘾 - 住院治疗、社区服务、治疗结果", - "医疗人力 - 按专业和地区划分的医生、护士、医疗专业人员", - "临床质量指标 - 患者安全、有效性、护理适当性", - "家庭护理报告 - 服务、客户、评估(interRAI)", - "患者体验调查 - 满意度、护理质量、可及性", - "国际医疗系统比较 - 英联邦基金基准测试", - "COVID-19健康数据 - 住院治疗、ICU入院、检测", - "健康的社会决定因素 - 收入、教育、住房对健康的影响", - "慢性病监测 - 糖尿病、癌症、心血管疾病患病率" + "月度造船完工量:按载重吨(DWT)、修正总吨(CGT)和艘数统计的船舶总产量,并按船型细分", + "新接订单:按船型、吨位和金额统计的月度新增造船合同", + "手持订单:按船型和交付计划统计的中国各船厂未完工订单合计", + "市场份额:中国造船产量在全球的占比及与韩国、日本等主要造船国的对比", + "船型细分:散货船、原油/成品油船、集装箱船、LNG船及其他特种船详细统计", + "钢材消耗:主要船厂船用钢板和型钢消耗量,体现造船业对钢铁行业的拉动", + "行业就业:中国造船和船舶修理业从业人员总规模", + "年度行业报告:中国船舶工业经营状况、技术进展和市场展望综合报告", + "出口数据:中国为境外买家建造的船舶及出口金额" ] }, - "authority_level": "government", - "has_api": true, - "file_path": "countries/north-america/canada/canada-cihi.json" + "has_api": false, + "file_path": "china/economy/industry_associations/china-cansi.json" }, { - "id": "canada-cer", + "id": "china-cantonfair", "name": { - "en": "Canada Energy Regulator", - "zh": "加拿大能源监管局", - "native": "Régie de l'énergie du Canada" + "en": "China Import and Export Fair (Canton Fair)", + "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 China Import and Export Fair, commonly known as the Canton Fair, is the oldest, largest, and most comprehensive international trade fair in China. Hosted biannually in spring and autumn in Guangzhou since 1957, it is jointly organized by the Ministry of Commerce of China (MOFCOM) and the Guangdong Provincial People's Government, and implemented by the China Foreign Trade Centre. The Canton Fair publishes authoritative trade data covering exhibitor enterprise counts, overseas buyer visits by country, on-site transaction turnover by product category and region, new product and green product showcases, cross-border e-commerce statistics, and trade trend analyses. As a key barometer of China's foreign trade, its statistics are widely referenced by economists, policy researchers, and exporters to gauge global demand, supply chain shifts, and the competitiveness of Chinese manufacturing across 16 major product categories including electronics, machinery, textiles, household products, and food.", + "zh": "中国进出口商品交易会(简称广交会)是中国规模最大、历史最悠久、商品种类最全、到会采购商最多的综合性国际贸易盛会。广交会自1957年起每年春秋两季在广州举办,由商务部和广东省人民政府联合主办,中国对外贸易中心承办。广交会发布权威的贸易数据,涵盖参展企业数量、境外采购商到会国别分布、按商品类别和地区统计的现场成交额、新产品和绿色产品展示、跨境电商专区数据,以及贸易趋势分析。作为中国外贸的晴雨表,其统计数据被经济学家、政策研究者和出口商广泛引用,用于观察全球需求、供应链变化以及中国制造业在电子电器、机械、纺织服装、家居用品、食品等16大类商品上的竞争力。" }, - "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", + "website": "https://www.cantonfair.org.cn", + "data_url": "https://www.cantonfair.org.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", "domains": [ - "Energy Infrastructure", - "Pipeline Regulation", - "Electricity Transmission", - "Oil and Gas", - "Renewable Energy", - "Energy Safety", - "Energy Markets", - "Energy Trade" + "economics", + "trade", + "foreign-trade" ], - "geographic_scope": "national", - "update_frequency": "monthly", + "update_frequency": "irregular", "tags": [ - "energy", - "canada", - "pipeline", - "natural-gas", - "crude-oil", - "electricity", - "renewable-energy", - "energy-regulation", - "infrastructure", - "energy-trade", - "open-data", - "government" + "canton-fair", + "广交会", + "中国进出口商品交易会", + "外贸", + "进出口", + "foreign-trade", + "import-export", + "trade-fair", + "mofcom", + "guangzhou", + "exhibition", + "overseas-buyers", + "trade-statistics", + "成交额" ], "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" + "Biannual exhibitor counts and participating enterprise statistics", + "Overseas buyer attendance by country and region", + "On-site transaction turnover by product category", + "Export trade data for 16 major product categories", + "Cross-border e-commerce pilot zone statistics", + "Green and new product showcase data", + "Foreign trade trend analyses and enterprise surveys" ], "zh": [ - "管道吞吐量和容量 - 石油/液体管道的季度数据(月度)和天然气管道数据(每日)", - "管道概况 - 管道使用、安全、环境、收费和财务的关键数据", - "原油数据 - 炼油厂运营、铁路原油运输、估计产量", - "天然气数据 - 可销售产量、进出口价格和数量", - "电力数据 - 国际输电线路数据、按来源和目的地分类的进出口", - "可再生能源来源 - 风能、太阳能、水电和其他可再生能源数据", - "能源进出口 - 成品油历史出口量", - "监管文件 - 通过REGDOCS系统提供的申请、决定和听证会记录", - "设施数据 - 受监管的管道、输电线路和海上项目信息", - "安全和环境绩效 - 事故报告和合规数据" + "春秋两届参展商数量及参展企业统计", + "按国家和地区分布的境外采购商到会数据", + "按商品类别的现场成交额统计", + "16大类商品的出口贸易数据", + "跨境电商专区统计数据", + "绿色产品和新产品展示数据", + "外贸趋势分析与企业调查报告" ] }, - "authority_level": "government", - "has_api": true, - "file_path": "countries/north-america/canada/canada-energy-regulator.json" + "has_api": false, + "file_path": "china/economy/industry_associations/china-cantonfair.json" }, { - "id": "canada-statcan", + "id": "china-caq", "name": { - "en": "Statistics Canada", - "zh": "加拿大统计局", - "native": "Statistique Canada" + "en": "China Association for Quality", + "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": "The China Association for Quality (CAQ) is the national professional organization for quality management in China, founded in 1979. Operating under the State Administration for Market Regulation (SAMR), CAQ promotes quality improvement across Chinese industries through research, training, certification, and awards programs. CAQ publishes China's authoritative quality statistics including the China Quality Report, enterprise quality benchmark data, and consumer satisfaction indices. The association administers the China Quality Award (中国质量奖), the nation's highest quality honor modeled on the Baldrige Award framework. CAQ also manages China's official user satisfaction surveys covering major product and service categories, providing data essential for understanding quality trends, product recalls, and corporate quality performance across Chinese manufacturing and service industries.", + "zh": "中国质量协会(CAQ)是全国性质量管理专业组织,成立于1979年,隶属国家市场监督管理总局。协会通过研究、培训、认证和奖励项目推动中国各行业质量提升,发布中国权威质量统计数据,包括中国质量报告、企业质量标杆数据及消费者满意度指数。协会负责管理中国质量奖(全国最高质量荣誉,参照波多里奇奖框架设立),并组织开展主要产品和服务类别的中国用户满意度官方调查,为了解中国制造业和服务业质量趋势、产品召回及企业质量绩效提供重要数据支撑。" }, - "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", + "website": "https://www.caq.org.cn/", + "data_url": "https://www.caq.org.cn/html/zltj", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", "domains": [ - "economics", - "demographics", - "health", - "labour", - "education", - "environment", - "agriculture", - "business", - "housing", - "justice", - "culture", - "trade" + "economy", + "governance", + "social" ], - "geographic_scope": "national", - "update_frequency": "irregular", + "update_frequency": "annual", "tags": [ - "canada", - "national-statistics", - "census", - "labour-market", - "demographics", - "economic-indicators", - "health-statistics", - "open-data", - "bilingual" + "质量管理", + "quality-management", + "消费者满意度", + "consumer-satisfaction", + "产品质量", + "product-quality", + "质量奖", + "quality-award", + "中国质量报告", + "china-quality-report", + "用户满意度", + "user-satisfaction", + "质量标准", + "quality-standards", + "质量认证", + "quality-certification", + "企业质量", + "enterprise-quality", + "产品召回", + "product-recall" ], "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" + "China Quality Report: annual comprehensive assessment of quality conditions across industries and regions", + "Consumer satisfaction index: national survey results by product category (electronics, automobiles, household goods, etc.)", + "Enterprise quality benchmarks: performance data for China Quality Award applicants and winners", + "Quality training statistics: certification exam pass rates and professional qualification data", + "Product complaint and recall data: quality incident reports from member organizations", + "Quality cost surveys: industry-level data on internal and external quality failure costs", + "Service quality index: satisfaction scores for financial, telecoms, logistics, and healthcare services" ], "zh": [ - "人口普查 - 人口统计、住房、家庭", - "劳动力调查 - 就业、失业率", - "消费者价格指数和通货膨胀数据", - "GDP和经济账户", - "国际贸易统计", - "健康调查和生命统计", - "企业绩效和创新数据", - "农业统计和农业普查", - "移民和族裔多样性数据", - "收入、养老金和财富统计", - "犯罪和司法统计", - "环境和能源数据" + "中国质量报告:各行业及地区质量状况年度综合评估", + "消费者满意度指数:各品类(电子产品、汽车、家居用品等)全国调查结果", + "企业质量标杆:中国质量奖申请单位及获奖单位绩效数据", + "质量培训统计:认证考试通过率及专业资格数据", + "产品投诉及召回数据:成员单位质量事件报告", + "质量成本调查:各行业内外部质量损失成本数据", + "服务质量指数:金融、电信、物流及医疗服务满意度评分" ] }, - "authority_level": "government", - "has_api": true, - "file_path": "countries/north-america/canada/statcan.json" + "has_api": false, + "file_path": "china/economy/industry_associations/china-caq.json" }, { - "id": "mx-banxico", + "id": "china-cbea", "name": { - "en": "Bank of Mexico Economic Information System", - "zh": "墨西哥银行经济信息系统", - "native": "Sistema de Información Económica - Banco de México" + "en": "China Beverage Association", + "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": "The China Beverage Association (CBA) is the national industry organization representing China's beverage industry, covering carbonated drinks, bottled water, fruit and vegetable juices, tea beverages, dairy-based drinks, sports and energy drinks, and plant protein beverages. Established in 1981 under the guidance of the Ministry of Industry and Information Technology, the association publishes authoritative annual statistics on China's beverage production volume, market size, major product category breakdown, enterprise revenue and profitability, import and export data, and industry concentration ratios. CBA's Annual Report on China's Beverage Industry is the primary reference for tracking the world's second-largest beverage market, consumer health trends driving product reformulation, and competitive landscape among domestic and international brands. The association also publishes safety standards, quality benchmarks, and industry technical guidelines.", + "zh": "中国饮料工业协会(中饮协)是代表中国饮料行业的全国性行业组织,涵盖碳酸饮料、瓶装水、果蔬汁、茶饮料、乳饮料、运动功能饮料和植物蛋白饮料等品类。协会于1981年在工业和信息化部指导下成立,发布中国饮料产量、市场规模、主要产品品类构成、企业收入与盈利情况、进出口数据及行业集中度等权威年度统计。《中国饮料行业年度报告》是追踪全球第二大饮料市场、消费者健康趋势推动产品配方革新以及国内外品牌竞争格局的主要参考依据。协会同时发布安全标准、质量基准和行业技术指南。" }, - "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", + "website": "https://www.chinabeverage.org", + "data_url": "https://www.chinabeverage.org", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", "domains": [ - "monetary_policy", - "financial_markets", - "banking", - "payment_systems", - "exchange_rates", - "inflation", - "balance_of_payments", - "public_finance", - "production", - "labor_market" + "food-safety", + "economics", + "consumer-goods" ], - "geographic_scope": "national", - "update_frequency": "daily", + "update_frequency": "annual", "tags": [ - "central_bank", - "monetary_policy", - "exchange_rates", - "interest_rates", - "inflation", - "financial_statistics", - "banking", - "payment_systems", - "balance_of_payments", - "Mexico", - "Latin_America", - "time_series", - "API" + "cbea", + "中国饮料工业协会", + "饮料行业", + "碳酸饮料", + "瓶装水", + "茶饮料", + "果汁", + "beverage-industry", + "food-beverage", + "consumer-goods", + "bottled-water", + "energy-drinks", + "market-statistics", + "food-safety", + "饮料产量" ], "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" + "Annual beverage production volume by product category (carbonated, water, juice, tea, dairy, sports/energy)", + "Total industry market size and revenue data", + "Enterprise profitability and top company rankings", + "Import and export statistics for beverage products", + "Industry concentration ratios and market share analysis", + "Consumer health trend impacts on product reformulation", + "Beverage product quality and safety standards" ], "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" + "has_api": false, + "file_path": "china/economy/industry_associations/china-cbea.json" }, { - "id": "mexico-coneval", + "id": "china-cbmf", "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 Building Materials Federation", + "zh": "中国建筑材料联合会" }, "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": "The China Building Materials Federation (CBMF) is the national industry organization representing China's building materials manufacturing sector. China is the world's largest producer and consumer of construction materials, including cement, flat glass, ceramics, stone products, waterproofing materials, insulation materials, and composite panels. The building materials industry is a foundational input for China's massive infrastructure and real estate development, and its production data closely tracks fixed asset investment cycles. CBMF publishes monthly and annual statistics on cement production, plate glass output, ceramic tile and sanitary ware manufacturing, stone processing, and other building material categories. The association also releases industry development reports, energy consumption data, export statistics, and policy analysis relevant to China's construction and green building transition. CBMF data is essential for construction industry supply chain analysis, commodity market research, and tracking China's urbanization and infrastructure build-out.", + "zh": "中国建筑材料联合会(中国建材联合会)是代表中国建筑材料制造行业的全国性行业组织。中国是全球最大的建筑材料生产国和消费国,产品涵盖水泥、平板玻璃、陶瓷、石材、防水材料、绝热材料和复合板材等。建材行业是中国大规模基础设施和房地产开发建设的基础投入,其产量数据与固定资产投资周期紧密相关。联合会发布水泥、平板玻璃、陶瓷砖和卫生洁具、石材加工等各建材品类的月度和年度统计数据,同时发布行业发展报告、能源消耗数据、出口统计及与中国建筑业绿色转型相关的政策分析。联合会数据对建筑行业供应链分析、大宗商品市场研究和追踪中国城镇化与基础设施建设进程具有重要价值。" }, - "website": "https://www.coneval.org.mx", - "data_url": "https://www.coneval.org.mx", + "website": "https://www.cbmf.org/", + "data_url": "https://www.cbmf.org/yxjc/", "api_url": null, - "country": "MX", + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", "domains": [ - "poverty", - "social-development", - "inequality", - "social-policy", - "welfare", - "food-security", - "education", - "health", - "housing", - "social-services", - "income" + "industry", + "economics", + "infrastructure", + "environment" ], - "geographic_scope": "national", - "update_frequency": "irregular", + "update_frequency": "monthly", "tags": [ - "mexico", - "poverty", - "social-development", - "inequality", - "multidimensional-poverty", - "social-policy", - "government-data", - "official-statistics", - "open-data", - "latin-america" + "中国建筑材料联合会", + "cbmf", + "china-building-materials", + "建筑材料", + "building-materials", + "水泥", + "cement", + "平板玻璃", + "flat-glass", + "陶瓷", + "ceramics", + "陶瓷砖", + "ceramic-tile", + "卫生洁具", + "sanitary-ware", + "石材", + "stone-products", + "防水材料", + "waterproofing", + "建材产量", + "building-materials-production", + "建材出口", + "building-materials-exports", + "绿色建材", + "green-building-materials", + "建筑业", + "construction-industry", + "房地产材料", + "real-estate-materials", + "基础设施建设", + "infrastructure-construction" ], "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" + "Cement production: monthly and annual cement output by province and major enterprise group, including clinker and finished cement", + "Flat glass: monthly production of float glass, processed glass, and specialty glass by thickness and product category", + "Ceramic tile and sanitary ware: output statistics for floor tiles, wall tiles, polished tiles, and bathroom fixtures", + "Stone products: production of granite, marble, and engineered stone slabs by major producing region", + "Waterproofing and insulation: production data for waterproofing membranes, thermal insulation boards, and related products", + "Composite panels: output of fiber cement boards, calcium silicate boards, and gypsum board", + "Export statistics: monthly export volume and value for cement, glass, ceramics, and stone products by destination", + "Energy consumption: industry energy intensity data supporting green building materials and carbon reduction policy analysis", + "Enterprise performance: production, revenue, and profit data for major listed and unlisted building materials companies", + "Industry development report: annual overview of China's building materials sector covering production, trade, technology, and policy" ], "zh": [ - "多维贫困测量(收入贫困、社会剥夺)", - "国家、州和市级贫困率", - "社会发展指标(教育、健康、住房、基本服务、食品安全、社会保障)", - "收入不平等和基尼系数统计", - "社会项目评估和影响评估", - "社会凝聚力指标", - "弱势人口统计(极端贫困、儿童、原住民)", - "按地理区域划分的社会差距指标", - "贫困和社会发展随时间的趋势", - "贫困测量的方法论和技术文档" + "水泥产量:按省份和主要企业集团统计的月度和年度水泥产量,包含熟料和成品水泥", + "平板玻璃:按厚度和产品类别统计的浮法玻璃、深加工玻璃和特种玻璃月度产量", + "陶瓷砖和卫生洁具:地砖、墙砖、抛光砖及卫浴洁具产量统计", + "石材制品:主要产区花岗岩、大理石和工程石板材产量", + "防水与绝热材料:防水卷材、保温板及相关产品产量", + "复合板材:纤维水泥板、硅钙板和石膏板产量", + "出口统计:水泥、玻璃、陶瓷和石材按目的地统计的月度出口量和出口额", + "能耗数据:行业能耗强度数据,支撑绿色建材和碳减排政策分析", + "企业经营数据:主要上市和非上市建材企业的产量、营收和利润", + "行业发展报告:涵盖产量、贸易、技术和政策的中国建材行业年度综合报告" ] }, - "authority_level": "government", "has_api": false, - "file_path": "countries/north-america/mexico/coneval.json" + "file_path": "china/economy/industry_associations/china-cbmf.json" }, { - "id": "usa-census-bureau", + "id": "china-ccfa", "name": { - "en": "United States Census Bureau", - "zh": "美国人口普查局" + "en": "China Chemical Fiber Industry Association", + "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": "The China Chemical Fiber Industry Association (CCFA) is the national industry organization representing China's chemical fiber sector. China is by far the world's largest producer of chemical fibers, accounting for approximately 70% of global output. Chemical fibers—including polyester, nylon, acrylic, spandex, viscose, and lyocell—are foundational inputs for textiles, apparel, automotive interiors, construction composites, and industrial applications. CCFA publishes monthly and annual production statistics for all major fiber categories, as well as data on capacity additions, enterprise performance, import/export volumes, and fiber price trends. The association also releases industry development reports, technology roadmaps, and data on emerging sustainable fibers. CCFA data is essential for textile supply chain analysis, fashion industry forecasting, raw material pricing, and trade policy research.", + "zh": "中国化学纤维工业协会(中国化纤协会)是代表中国化学纤维行业的全国性行业组织。中国是全球最大的化学纤维生产国,产量约占全球总产量的70%。化学纤维涵盖涤纶、锦纶、腈纶、氨纶、粘胶纤维和莱赛尔纤维等,是纺织服装、汽车内饰、建筑复合材料和工业用材的基础原料。协会发布各主要纤维品种的月度和年度产量统计,以及产能扩张、企业经营、进出口量和纤维价格走势数据,同时发布行业发展报告、技术路线图和新兴可持续纤维数据。中国化纤协会的数据对纺织供应链分析、时尚行业预测、原料定价研究和贸易政策研究具有重要价值。" }, - "website": "https://www.census.gov", - "data_url": "https://www.census.gov", - "api_url": "https://www.census.gov/data/developers.html", - "country": "US", + "website": "https://www.ccfa.com.cn/", + "data_url": "https://www.ccfa.com.cn/19/index.html", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", "domains": [ - "demographics", + "industry", "economics", - "housing", - "business", - "trade", - "government", - "geography", - "population", - "income", - "employment", - "education", - "health" + "trade" ], - "geographic_scope": "national", - "update_frequency": "irregular", + "update_frequency": "monthly", "tags": [ - "united-states", - "national-statistics", - "census", - "demographics", - "economic-indicators", - "housing-data", - "population-data", - "geospatial", - "open-data", - "government-data", - "api-available" + "中国化学纤维工业协会", + "ccfa", + "china-chemical-fiber", + "化学纤维", + "chemical-fiber", + "涤纶", + "polyester", + "锦纶", + "nylon", + "腈纶", + "acrylic", + "氨纶", + "spandex", + "粘胶纤维", + "viscose", + "莱赛尔", + "lyocell", + "纤维产量", + "fiber-production", + "化纤工业", + "chemical-fiber-industry", + "纺织原料", + "textile-raw-materials", + "化纤进出口", + "fiber-trade", + "化纤价格", + "fiber-prices", + "可持续纤维", + "sustainable-fibers", + "纺织供应链", + "textile-supply-chain" ], "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" + "Monthly fiber production: output statistics for all major chemical fiber categories (polyester filament and staple, nylon, acrylic, spandex, viscose/modal/lyocell, and others)", + "Annual capacity data: total installed capacity by fiber type and major production enterprise", + "Price indices: monthly price trends for key chemical fiber products and their upstream raw materials (PTA, MEG, caprolactam, acrylonitrile)", + "Import and export volumes: monthly trade data for chemical fiber products by type and destination country", + "Enterprise performance: production, revenue, profit, and export data for major chemical fiber companies", + "Industry investment: annual fixed asset investment in chemical fiber sector and new capacity additions", + "Fiber flow trend report: annual report on fashion and color trends driving demand for specific fiber types", + "Sustainability data: production statistics for bio-based, recycled, and functional high-performance fibers", + "Industry development report: annual overview of China's chemical fiber industry performance and outlook" ], "zh": [ - "十年一次人口普查 - 每10年完整人口统计 (1790年至今)", - "美国社区调查(ACS) - 年度人口统计、住房、经济数据", - "经济普查 - 每5年一次全面的商业和经济数据", - "人口估计计划 - 年度人口估计", - "当前人口调查(CPS) - 月度就业和劳动力统计", - "美国住房调查 - 住房特征和成本", - "商业动态和统计", - "国际贸易数据", - "政府财政统计", - "地图边界文件和地理数据", - "收入、贫困和财富统计", - "教育程度和入学数据", - "健康保险覆盖统计", - "迁移和流动性数据" + "月度纤维产量:涤纶长丝和短纤、锦纶、腈纶、氨纶、粘胶/莫代尔/莱赛尔等各主要化纤品种产量统计", + "年度产能数据:按纤维品种和主要生产企业统计的在产产能", + "价格指数:主要化纤产品及上游原料(PTA、MEG、己内酰胺、丙烯腈)月度价格走势", + "进出口量:按品种和目的地国家统计的化纤产品月度贸易数据", + "企业经营数据:主要化纤企业的产量、营收、利润和出口数据", + "行业投资:化纤行业年度固定资产投资及新增产能", + "中国纤维流行趋势报告:驱动特定纤维品种需求的年度时尚与色彩趋势报告", + "可持续发展数据:生物基、再生和功能性高性能纤维的产量统计", + "行业发展报告:中国化纤工业年度运行情况及展望" ] }, - "authority_level": "government", - "has_api": true, - "file_path": "countries/north-america/usa/census-bureau.json" + "has_api": false, + "file_path": "china/economy/industry_associations/china-ccfa.json" }, { - "id": "usa-eia", + "id": "china-cheaa", "name": { - "en": "U.S. Energy Information Administration", - "zh": "美国能源信息署" + "en": "China Household Electrical Appliances Association", + "zh": "中国家用电器协会" }, "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": "The China Household Electrical Appliances Association (CHEAA) is the national industry organization representing China's home appliance manufacturing sector. China is the world's largest producer and exporter of household electrical appliances, manufacturing over 60% of global appliance output including air conditioners, refrigerators, washing machines, televisions, kitchen appliances, and small household devices. CHEAA publishes monthly and annual production and sales statistics for all major appliance categories, export data by product and destination market, energy efficiency compliance data, and enterprise performance metrics. The association produces the authoritative annual China Household Appliance Industry Development Report and conducts joint research on smart home and IoT appliance trends. CHEAA data is the primary reference for global consumer electronics supply chain analysis, trade policy research, and retail market forecasting.", + "zh": "中国家用电器协会(家电协会)是代表中国家电制造行业的全国性行业组织。中国是全球最大的家用电器生产和出口国,生产的空调、冰箱、洗衣机、电视机、厨房电器和小家电占全球产量60%以上。家电协会发布各主要家电品类的月度和年度产销统计数据、按产品和目的地市场分类的出口数据、节能合规数据及企业经营指标,出版权威的年度《中国家用电器行业发展报告》,并开展智能家居和物联网家电趋势联合研究。家电协会数据是全球消费电子供应链分析、贸易政策研究和零售市场预测的主要参考来源。" }, - "website": "https://www.eia.gov", - "data_url": "https://www.eia.gov", - "api_url": "https://www.eia.gov/opendata/documentation.php", - "country": "US", + "website": "https://www.cheaa.org/", + "data_url": "https://www.cheaa.org/channels/116.html", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", "domains": [ - "energy", - "petroleum", - "natural gas", - "coal", - "electricity", - "nuclear energy", - "renewable energy", - "environment", + "industry", "economics", - "markets" + "trade", + "technology" ], - "geographic_scope": "national", - "update_frequency": "daily", + "update_frequency": "monthly", "tags": [ - "energy", - "petroleum", - "natural-gas", - "coal", - "electricity", - "renewable-energy", - "nuclear-energy", - "united-states", - "government", - "official-statistics", - "time-series", - "api", - "open-data" + "中国家用电器协会", + "cheaa", + "china-home-appliances", + "家用电器", + "household-appliances", + "空调", + "air-conditioner", + "冰箱", + "refrigerator", + "洗衣机", + "washing-machine", + "电视机", + "television", + "tv", + "小家电", + "small-appliances", + "家电产量", + "appliance-production", + "家电出口", + "appliance-exports", + "家电销售", + "appliance-sales", + "节能家电", + "energy-efficient-appliances", + "智能家居", + "smart-home", + "家电行业", + "appliance-industry", + "消费电子", + "consumer-electronics", + "家电供应链", + "appliance-supply-chain" ], "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" + "Monthly production statistics: output for all major appliance categories including air conditioners, refrigerators, washing machines, televisions, and range hoods", + "Domestic sales data: monthly retail sales volume and value for major appliance categories in China", + "Export statistics: monthly export volume and value by appliance type and destination country/region", + "Energy efficiency data: production share of high-efficiency (energy-star equivalent) appliances by category", + "Enterprise performance: production, revenue, and profit data for major listed and unlisted appliance manufacturers", + "Small appliance data: production and sales statistics for cooking appliances, floor care, personal care, and seasonal products", + "Smart home data: production and shipment statistics for connected/IoT-enabled appliance categories", + "Annual industry development report: comprehensive review of China's household appliance industry covering production, trade, technology, and company rankings", + "Market analysis: domestic market penetration rates, urban vs. rural appliance ownership, and replacement demand trends" ], "zh": [ - "石油及其他液体 - 原油、汽油、取暖油、柴油、丙烷、生物燃料、天然气液体", - "天然气 - 勘探、储量、储存、生产、价格、进出口", - "电力 - 销售、收入、价格、发电厂、发电量、燃料使用、需求、排放", - "煤炭 - 储量、生产、价格、就业、分销、库存、进出口", - "核能与铀 - 铀燃料、核反应堆、发电、乏燃料", - "可再生与替代燃料 - 水电、太阳能、风能、地热、生物质、乙醇", - "总能源 - 综合汇总、比较、分析、预测", - "消费与效率 - 住宅、商业、工业、交通部门的能源使用", - "分析与预测 - 短期能源展望(STEO)、年度能源展望(AEO)、国际能源展望(IEO)", - "能源市场与金融 - 原油市场、批发电力市场", - "能源中断 - 能源供应中断的监测和分析", - "国际能源数据 - 全球能源统计和国家概况", - "二氧化碳排放 - 能源消费产生的二氧化碳排放", - "州能源数据系统(SEDS) - 州级能源生产、消费、价格" + "月度产量统计:空调、冰箱、洗衣机、电视机、吸油烟机等主要家电品类产量", + "国内销售数据:主要家电品类月度零售量和零售额", + "出口统计:按家电品类和目的地国家/地区统计的月度出口量和出口额", + "节能数据:各品类高能效家电(相当于能源之星级别)在产品中的占比", + "企业经营数据:主要上市和非上市家电制造商的产量、营收和利润", + "小家电数据:烹饪电器、地面清洁、个人护理和季节性产品的产销统计", + "智能家居数据:联网/物联网家电品类的产量和出货统计", + "年度行业发展报告:涵盖产量、贸易、技术和企业排名的中国家电行业综合报告", + "市场分析:国内市场普及率、城乡家电拥有量及更新换代需求趋势" ] }, - "authority_level": "government", - "has_api": true, - "file_path": "countries/north-america/usa/eia.json" + "has_api": false, + "file_path": "china/economy/industry_associations/china-cheaa.json" }, { - "id": "noaa-cdo", + "id": "china-cnea", "name": { - "en": "NOAA Climate Data Online (CDO)", - "zh": "NOAA气候数据在线系统" + "en": "China Nuclear Energy Association", + "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 China Nuclear Energy Association (CNEA) is the national industry organization representing China's nuclear energy sector, covering nuclear power generation, nuclear fuel cycle, radiation technology, and nuclear equipment manufacturing. China operates the world's largest nuclear power expansion program and is the dominant force in global nuclear construction. CNEA publishes annual reports, monthly operating statistics, and industry development data on nuclear power installed capacity, electricity generation, reactor construction progress, fuel consumption, safety performance, and workforce figures. It also tracks China's nuclear equipment exports, international cooperation, and the development of advanced reactor technologies including Generation III and IV designs. CNEA data is indispensable for energy analysts, investors, and policymakers tracking China's low-carbon energy transition and global nuclear industry trends.", + "zh": "中国核能行业协会(CNEA)是代表中国核能行业的全国性行业组织,涵盖核电发电、核燃料循环、辐射技术和核设备制造等领域。中国拥有全球最大规模的核电扩张计划,是全球核电建设的主导力量。中国核能行业协会发布核电装机容量、发电量、反应堆建设进度、燃料消耗、安全业绩及从业人员等年度报告、月度运行统计和行业发展数据,同时追踪中国核设备出口、国际合作及三代、四代反应堆技术研发进展。协会数据是能源分析师、投资者和政策制定者追踪中国低碳能源转型及全球核能行业趋势的重要参考。" }, - "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, + "website": "https://www.china-nea.cn/", + "data_url": "https://www.china-nea.cn/", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", "domains": [ - "climate", - "meteorology", - "environmental_science", - "atmospheric_science" + "energy", + "industry", + "economics" ], - "geographic_scope": "global", - "update_frequency": "daily", + "update_frequency": "monthly", "tags": [ - "climate", - "weather", - "temperature", - "precipitation", - "meteorology", - "NOAA", - "NCEI", - "NCDC", - "historical climate data", - "weather stations", - "climate normals", - "atmospheric data", - "environmental data", - "time series", - "global coverage" + "核能", + "nuclear-energy", + "核电", + "nuclear-power", + "核电站", + "nuclear-power-plant", + "装机容量", + "installed-capacity", + "发电量", + "electricity-generation", + "反应堆", + "reactor", + "核燃料", + "nuclear-fuel", + "铀", + "uranium", + "cnea", + "核安全", + "nuclear-safety", + "碳中和", + "carbon-neutrality", + "清洁能源", + "clean-energy", + "华龙一号", + "hualong-one", + "核设备", + "nuclear-equipment" ], "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" + "Nuclear power installed capacity: operational, under-construction, and planned reactor units with MW capacity by plant", + "Monthly electricity generation: nuclear power output (TWh) and share of national power mix", + "Reactor construction progress: new unit groundbreaking, grid connection milestones, and construction timelines", + "Nuclear fuel cycle data: uranium ore production, enrichment capacity, and fuel fabrication volumes", + "Safety performance indicators: unplanned shutdowns, radiation exposure, and WANO performance index", + "Annual nuclear energy development report: comprehensive sector overview including investment, employment, and technology progress", + "Nuclear equipment manufacturing: domestic content ratios, key component production, and export statistics", + "Advanced reactor development: status of Gen III+ (Hualong One, CAP1400) and Gen IV (HTR, CFETR) programs" ], "zh": [ - "全球历史气候网络日值数据(GHCN-Daily) - 来自全球陆地观测站的日气候摘要", - "全球日摘要(GSOD) - 来自全球站点的日天气要素", - "地方气候数据(LCD) - 来自美国机场和一级站的小时、日和月摘要", - "标准值 - 温度、降水和其他变量的30年气候标准值", - "降水 - 来自全球站点的日和小时降水数据", - "温度 - 日最高、最低和平均温度", - "风 - 风速和风向测量值", - "度日 - 用于能源分析的采暖和制冷度日", - "积雪 - 降雪量和雪深测量值", - "天气类型 - 天气现象包括雾、雨、雪、冰雹、雷暴和龙卷风发生情况", - "站点元数据 - 站点位置、海拔和历史信息" + "核电装机容量:按电站统计的在役、在建及规划机组数量及MW容量", + "月度发电量:核电发电量(TWh)及占全国电力结构的比例", + "反应堆建设进度:新机组开工、并网里程碑及建设时间进度", + "核燃料循环数据:铀矿石产量、浓缩能力和燃料组件制造量", + "安全业绩指标:非计划停机次数、辐射剂量和WANO性能指数", + "核能年度发展报告:包括投资、从业人员和技术进展的行业综合概述", + "核设备制造:国产化率、关键部件产量和出口统计", + "先进堆型研发:三代及三代+(华龙一号、CAP1400)和四代堆(高温气冷堆、聚变堆)项目进展" ] }, - "authority_level": "government", - "has_api": true, - "file_path": "countries/north-america/usa/noaa-cdo.json" + "has_api": false, + "file_path": "china/economy/industry_associations/china-cnea.json" }, { - "id": "us-bea", + "id": "china-cppia", "name": { - "en": "Bureau of Economic Analysis", - "zh": "美国经济分析局" + "en": "China Plastics Processing Industry Association", + "zh": "中国塑料加工工业协会" }, "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. The agency serves government and business decision makers, researchers, and the public to help them understand the performance of the U.S. economy.", - "zh": "美国经济分析局(BEA)是美国商务部下属机构,负责编制包括GDP、个人收入、企业利润、国际贸易与投资、区域经济数据在内的关键经济统计数据。BEA的数据全面反映了美国经济及其与全球经济的互动情况。该机构为政府和企业决策者、研究人员以及公众提供服务,帮助他们了解美国经济的运行状况。" + "en": "The China Plastics Processing Industry Association (CPPIA) is the national industry organization representing China's plastics processing sector. It covers manufacturers of plastic products, packaging materials, pipes, films, profiles, and engineering plastics. CPPIA publishes authoritative industry statistics, operational reports, market analysis, and technical standards covering the full plastics processing value chain including production output, consumption, imports/exports, and enterprise performance.", + "zh": "中国塑料加工工业协会(CPPIA)是代表中国塑料加工行业的全国性行业组织,成员涵盖塑料制品、包装材料、管材、薄膜、型材、工程塑料等制造企业。协会发布权威的行业统计数据、运行报告、市场分析和技术标准,内容涵盖塑料加工全产业链,包括产量、消费量、进出口及企业经营状况。" }, - "website": "https://www.bea.gov", - "data_url": "https://www.bea.gov/data", - "api_url": "https://apps.bea.gov/API/signup/", - "country": "US", + "website": "http://www.cppia.com.cn", + "data_url": "http://www.cppia.com.cn", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", "domains": [ - "Economics", - "GDP", - "National Accounts", - "International Trade", - "Foreign Direct Investment", - "Personal Income", - "Consumer Spending", - "Corporate Profits", - "Regional Economics", - "Industry Economics", - "Input-Output Tables", - "Fixed Assets" + "manufacturing", + "industry", + "plastics", + "materials" ], - "geographic_scope": "national", - "update_frequency": "monthly", + "update_frequency": "annual", "tags": [ - "economics", - "经济统计", - "gdp", - "国内生产总值", - "national-accounts", - "国民账户", - "united-states", - "美国", - "trade", - "贸易", - "investment", - "投资", - "official-statistics", - "官方统计", - "government", - "政府", - "time-series", - "时间序列", - "macroeconomics", - "宏观经济", - "regional-data", - "区域数据", - "industry-data", - "行业数据", - "personal-income", - "个人收入", - "bea", - "经济分析局" + "塑料", + "plastics", + "塑料加工", + "plastics-processing", + "塑料制品", + "plastic-products", + "包装材料", + "packaging-materials", + "工程塑料", + "engineering-plastics", + "行业统计", + "industry-statistics", + "产量", + "production-output", + "进出口", + "imports-exports", + "cppia", + "中国塑料" ], "data_content": { "en": [ - "Gross Domestic Product (GDP) - Real GDP estimates released quarterly, covering national, regional, and industry-level data", - "National Income and Product Accounts (NIPAs) - Comprehensive income, spending, and saving statistics", - "Personal Income and Outlays - Monthly data on income, consumption, and saving by region", - "International Trade in Goods and Services - Monthly trade statistics covering 237 countries and areas", - "International Transactions - Quarterly balance of payments data (ITA)", - "Foreign Direct Investment - U.S. direct investment abroad and foreign investment in the U.S.", - "International Investment Position (IIP) - Cross-border investment positions", - "Multinational Enterprises (MNE) - Activities and operations of multinational companies", - "Regional Economic Accounts - State, county, and metropolitan area economic data", - "GDP by Industry - Value added by industry with underlying details", - "Input-Output Tables - Industry interrelationships and economic flows", - "Fixed Assets - Investment in structures, equipment, and intellectual property products", - "Consumer Spending - Personal consumption expenditures by product and region", - "Corporate Profits - Quarterly corporate profit data", - "Price Indexes - GDP deflators and PCE price indexes", - "Research and Development - R&D satellite account tracking innovation investment", - "Distribution of Personal Income - Nowcast and forecast data" + "Annual plastics processing industry operational statistics: total output, production volume by product category", + "Plastics consumption data: domestic demand breakdown by end-use sector (packaging, construction, automotive, agriculture)", + "Import and export statistics: plastic raw materials and finished products trade volume and value", + "Enterprise performance: revenue, profit margin, employment data across plastics processing sub-sectors", + "Market price indices: key plastic resin and product prices (PE, PP, PVC, PET)", + "Industry concentration and enterprise scale distribution data", + "Technical standards and quality certifications for plastics products", + "Annual China Plastics Industry Development Report: comprehensive industry trend analysis" ], "zh": [ - "国内生产总值(GDP)- 季度发布的实际GDP估算,涵盖国家、地区和行业层面数据", - "国民收入和产品账户(NIPAs)- 综合性收入、支出和储蓄统计", - "个人收入和支出 - 按地区分类的月度收入、消费和储蓄数据", - "商品和服务国际贸易 - 涵盖237个国家和地区的月度贸易统计", - "国际交易 - 季度国际收支数据(ITA)", - "外国直接投资 - 美国对外直接投资和外国对美投资", - "国际投资头寸(IIP)- 跨境投资头寸数据", - "跨国企业(MNE)- 跨国公司的活动和运营数据", - "区域经济账户 - 州、县和都市区经济数据", - "按行业划分的GDP - 按行业增加值及基础明细", - "投入产出表 - 行业间关系和经济流动", - "固定资产 - 结构、设备和知识产权产品投资", - "消费支出 - 按产品和地区分类的个人消费支出", - "企业利润 - 季度企业利润数据", - "价格指数 - GDP平减指数和PCE价格指数", - "研究与开发 - 跟踪创新投资的研发卫星账户", - "个人收入分配 - 即时预测和预测数据" + "塑料加工行业年度运行统计:总产量及按产品类别的生产量", + "塑料消费数据:按终端用途(包装、建筑、汽车、农业)分类的国内需求", + "进出口统计:塑料原料及制品的贸易量和贸易额", + "企业经营数据:塑料加工各细分行业的收入、利润率、就业情况", + "市场价格指数:主要塑料树脂和制品价格(PE、PP、PVC、PET)", + "行业集中度及企业规模分布数据", + "塑料制品技术标准与质量认证", + "中国塑料工业发展年度报告:全面的行业趋势分析" ] }, - "authority_level": "government", - "has_api": true, - "file_path": "countries/north-america/usa/us-bea.json" + "has_api": false, + "file_path": "china/economy/industry_associations/china-cppia.json" }, { - "id": "us-bls", + "id": "china-cria", "name": { - "en": "Bureau of Labor Statistics", - "zh": "美国劳工统计局" + "en": "China Rubber Industry Association", + "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还为美国劳工部提供统计资源服务,并开展就业、劳动经济学和价格水平方面的研究。" + "en": "The China Rubber Industry Association (CRIA) is the national industry organization representing China's rubber manufacturing sector. China is the world's largest consumer and producer of rubber products, including tires, industrial rubber goods, rubber belts, hoses, seals, and latex products. As the backbone of the automotive, construction, and industrial machinery supply chains, China's rubber industry data is critical for global commodity market analysis. CRIA publishes monthly and annual production statistics for all major rubber product categories, tire production and export data, natural and synthetic rubber consumption, enterprise performance metrics, and industry development reports. The association also maintains a dedicated statistical platform providing detailed industry data accessible to members and researchers.", + "zh": "中国橡胶工业协会(中橡协)是代表中国橡胶制造行业的全国性行业组织。中国是全球最大的橡胶产品消费和生产国,产品涵盖轮胎、工业橡胶制品、橡胶输送带、胶管、密封件和乳胶制品。作为汽车、建筑和工业机械供应链的重要支撑,中国橡胶工业数据对全球大宗商品市场分析具有关键价值。中橡协发布各主要橡胶产品类别的月度和年度产量统计、轮胎产量和出口数据、天然橡胶和合成橡胶消耗量、企业经营指标及行业发展报告,并维护统计平台,向会员和研究人员提供详细行业数据。" }, - "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": "https://www.cria.org.cn/", + "data_url": "https://www.cria.org.cn/c/id/1760910256413655041", + "api_url": null, + "authority_level": "other", + "country": "CN", "geographic_scope": "national", "domains": [ - "Employment", - "Unemployment", - "Labor Force", - "Wages", - "Earnings", - "Prices", - "Inflation", - "Consumer Expenditures", - "Productivity", - "Workplace Safety", - "Occupational Statistics", - "Industry Statistics" + "industry", + "economics", + "trade" ], "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", - "美国劳工", - "就业数据", - "失业率", - "通货膨胀", - "消费者物价指数", - "生产者物价指数", - "工资统计", - "劳动力市场" + "中国橡胶工业协会", + "cria", + "china-rubber-industry", + "橡胶工业", + "rubber-industry", + "轮胎", + "tire", + "tyre", + "橡胶产量", + "rubber-production", + "天然橡胶", + "natural-rubber", + "合成橡胶", + "synthetic-rubber", + "橡胶消耗", + "rubber-consumption", + "轮胎出口", + "tire-exports", + "工业橡胶", + "industrial-rubber", + "橡胶带", + "rubber-belt", + "胶管", + "rubber-hose", + "乳胶", + "latex", + "汽车配套", + "automotive-supply-chain", + "橡胶价格", + "rubber-prices" ], "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" + "Tire production: monthly and annual output of all tire categories including passenger car tires, truck and bus tires, motorcycle tires, agricultural tires, and specialty tires", + "Tire exports: monthly export volume and value by product type and destination country", + "Natural rubber consumption: domestic consumption of natural rubber by end-use sector", + "Synthetic rubber data: production and consumption of major synthetic rubber types (SBR, BR, NBR, EPDM, CR, etc.)", + "Rubber product production: output of industrial rubber goods, conveyor belts, hoses, seals, and latex products", + "Enterprise performance: revenue, profit, and production data for major rubber manufacturing enterprises", + "Industry investment: fixed asset investment in rubber sector and capacity changes", + "Raw material price data: price trends for natural rubber, carbon black, and key synthetic rubber monomers", + "Annual industry report: comprehensive overview of China's rubber industry development, technology trends, and market outlook" ], "zh": [ - "就业 - 非农就业总人数、企业和家庭调查数据、职位空缺和劳动力流动", - "失业 - 按人口群体分类的失业率、失业持续时间、失业保险申请", - "消费者物价指数(CPI)- 衡量消费者支付商品和服务价格的变化、通货膨胀跟踪", - "生产者物价指数(PPI)- 衡量国内生产者销售价格的平均变化", - "工资和收入 - 平均时薪和周薪、就业成本指数、实际收入", - "生产力 - 劳动生产率、多要素生产率、按行业和部门分类的单位劳动成本", - "职业就业和工资 - 超过800种职业的就业和工资估算", - "就业预测 - 职业就业、行业产出和劳动力的10年预测", - "职位空缺和劳动力流动调查(JOLTS)- 职位空缺、雇用和离职数据", - "消费者支出调查 - 家庭支出模式、收入和人口特征", - "工作场所伤害和疾病 - 职业安全与健康统计、伤害和疾病率", - "国际劳动力比较 - 劳动力、就业、失业和生产率的跨国比较", - "大规模裁员和工厂关闭 - 大规模就业削减和企业关闭", - "时间使用调查 - 美国人如何在日常活动中分配时间", - "进出口价格指数 - 国际贸易商品和服务的价格变化", - "企业就业动态 - 就业创造和破坏、企业新生和死亡" + "轮胎产量:乘用车轮胎、卡客车轮胎、摩托车轮胎、农用轮胎及特种轮胎的月度和年度产量", + "轮胎出口:按产品类别和目的地国家统计的月度出口量和出口额", + "天然橡胶消耗:按下游行业分类的国内天然橡胶消耗量", + "合成橡胶数据:SBR、BR、NBR、EPDM、CR等主要合成橡胶品种产量与消耗量", + "橡胶制品产量:工业橡胶制品、输送带、胶管、密封件和乳胶制品产量", + "企业经营数据:主要橡胶制造企业的营收、利润和产量数据", + "行业投资:橡胶行业固定资产投资及产能变化", + "原料价格数据:天然橡胶、炭黑和主要合成橡胶单体价格走势", + "年度行业报告:中国橡胶行业发展、技术趋势和市场展望综合报告" ] }, - "has_api": true, - "file_path": "countries/north-america/usa/us-bls.json" + "has_api": false, + "file_path": "china/economy/industry_associations/china-cria.json" }, { - "id": "us-cdc", + "id": "china-ctic", "name": { - "en": "CDC Data & Statistics", - "zh": "美国疾控中心数据与统计" + "en": "China Textile Information Center", + "zh": "中国纺织信息中心" }, "description": { - "en": "The Centers for Disease Control and Prevention (CDC) is the nation's leading public health institute. CDC provides comprehensive public health data through multiple platforms: data.cdc.gov (open data portal with datasets across health topics), CDC WONDER (Wide-ranging Online Data for Epidemiologic Research with ad-hoc query system), and NCHS (National Center for Health Statistics - the nation's official source for health statistics). The data covers vital statistics, disease surveillance, environmental health, vaccine safety, cancer registries, and over 180 health topics. CDC data supports research, policy development, and public health practice across infectious diseases, chronic diseases, injuries, environmental health, and health equity.", - "zh": "美国疾病控制与预防中心(CDC)是美国领先的公共卫生机构。CDC通过多个平台提供全面的公共卫生数据:data.cdc.gov(涵盖各健康主题的开放数据门户)、CDC WONDER(流行病学研究广泛在线数据,具有即席查询系统)和NCHS(国家健康统计中心-美国官方健康统计来源)。数据涵盖生命统计、疾病监测、环境健康、疫苗安全、癌症登记和超过180个健康主题。CDC数据支持传染病、慢性病、伤害、环境健康和健康公平等领域的研究、政策制定和公共卫生实践。" + "en": "The China Textile Information Center (CTIC) is a public institution under the China National Textile and Apparel Council, responsible for textile industry information services, trend research, and standard testing. It publishes textile market data, fashion trend reports, and industry statistics.", + "zh": "中国纺织信息中心是中国纺织工业联合会下属事业单位,负责纺织行业信息服务、趋势研究和标准检测。发布纺织市场数据、时尚趋势报告和行业统计。" }, - "website": "https://www.cdc.gov/", - "data_url": "https://data.cdc.gov/", - "api_url": "https://dev.socrata.com/foundry/data.cdc.gov", - "country": "US", + "data_content": { + "en": [ + "textile market statistics", + "fashion trend reports", + "industry production data", + "trade statistics", + "standard testing results" + ], + "zh": [ + "纺织市场统计", + "时尚趋势报告", + "行业生产数据", + "贸易统计", + "标准检测结果" + ] + }, + "country": "CN", + "authority_level": "other", + "geographic_scope": "national", + "website": "https://www.ctic.org.cn", + "data_url": "https://www.ctic.org.cn", "domains": [ - "Public Health", - "Health Statistics", - "Infectious Diseases", - "Chronic Diseases", - "Vital Statistics", - "Mortality", - "Natality", - "Environmental Health", - "Cancer", - "Tuberculosis", - "Sexually Transmitted Diseases", - "Vaccine Safety", - "Population Health", - "Health Equity", - "Disease Surveillance", - "Epidemiology", - "Healthcare Access", - "Nutrition" + "manufacturing", + "trade" + ], + "tags": [ + "textile", + "fashion", + "manufacturing", + "trade", + "industry-data" ], + "update_frequency": "irregular", + "has_api": false, + "file_path": "china/economy/industry_associations/china-ctic.json" + }, + { + "id": "china-furniture-association", + "name": { + "en": "China National Furniture Association", + "zh": "中国家具协会" + }, + "description": { + "en": "The China National Furniture Association (CNFA) is the national industry organization representing China's furniture manufacturing sector, covering residential furniture, office furniture, kitchen furniture, outdoor furniture, and related components. CNFA publishes industry statistics, market reports, trade data, and standards covering production output, domestic market sales, export performance, material consumption, and enterprise operations in China's furniture industry.", + "zh": "中国家具协会(CNFA)是代表中国家具制造业的全国性行业组织,涵盖住宅家具、办公家具、厨房家具、户外家具及相关零部件。协会发布行业统计数据、市场报告、贸易数据和标准,内容涵盖中国家具行业的产量、国内市场销售、出口表现、原材料消费及企业运营情况。" + }, + "website": "https://www.cnfa.com.cn", + "data_url": "https://www.cnfa.com.cn", + "api_url": null, + "authority_level": "market", + "country": "CN", "geographic_scope": "national", - "update_frequency": "weekly", + "domains": [ + "manufacturing", + "industry", + "consumer-goods", + "trade" + ], + "update_frequency": "annual", "tags": [ - "cdc", - "疾控中心", - "public-health", - "公共卫生", - "health-statistics", - "健康统计", - "mortality", - "死亡率", - "natality", - "出生率", - "infectious-diseases", - "传染病", - "chronic-diseases", - "慢性病", - "vital-statistics", - "生命统计", - "epidemiology", - "流行病学", - "disease-surveillance", - "疾病监测", - "cancer", - "癌症", - "tuberculosis", - "结核病", - "std", - "性病", - "vaccine-safety", - "疫苗安全", - "environmental-health", - "环境健康", - "population-health", - "人口健康", - "health-equity", - "健康公平", - "cdc-wonder", - "nchs", - "births", - "出生", - "deaths", - "死亡", - "covid-19", - "新冠", - "vaccination", - "疫苗接种", - "healthcare", - "医疗保健", - "nutrition", - "营养" - ], - "data_content": { - "en": [ - "Vital Statistics - Birth and death certificates, infant mortality, fetal deaths, maternal health indicators", - "Mortality Data - Underlying and multiple causes of death, compressed mortality files by age, race, geography", - "Natality Data - Birth statistics, maternal characteristics, infant health, birth trends and demographics", - "Cancer Surveillance - Incidence, mortality, survival rates from SEER and NPCR cancer registries", - "Infectious Disease Surveillance - COVID-19, tuberculosis, sexually transmitted diseases, HIV/AIDS, national notifiable conditions", - "Chronic Disease Data - Heart disease, diabetes, obesity, asthma prevalence and risk factors", - "Vaccine Safety - Vaccine Adverse Event Reporting System (VAERS), immunization coverage data", - "Environmental Health - Air quality (PM2.5), temperature, heat waves, climate-related health impacts", - "National Health Surveys - NHIS (health interview), NHANES (nutrition examination), NSFG (family growth)", - "Healthcare Statistics - Healthcare utilization, access to care, insurance coverage, ambulatory care visits", - "Population Estimates - Bridged-race and single-race populations, demographic projections through 2060", - "NNDSS Data - National Notifiable Diseases Surveillance System with weekly and annual reporting", - "Injury & Violence - Motor vehicle crashes, traumatic brain injury, firearm injuries, overdose deaths", - "Behavioral Risk Factors - Smoking, tobacco use, physical activity, nutrition behaviors", - "Geographic Health Data - State, county, metropolitan area health statistics and health disparities" - ], - "zh": [ - "生命统计 - 出生和死亡证明、婴儿死亡率、胎儿死亡、孕产妇健康指标", - "死亡率数据 - 按年龄、种族、地理位置分类的基础和多重死因、压缩死亡率档案", - "出生统计数据 - 出生统计、孕产妇特征、婴儿健康、出生趋势和人口统计", - "癌症监测 - 来自SEER和NPCR癌症登记处的发病率、死亡率、存活率", - "传染病监测 - COVID-19、结核病、性传播疾病、HIV/艾滋病、国家应报告疾病", - "慢性病数据 - 心脏病、糖尿病、肥胖、哮喘患病率和风险因素", - "疫苗安全 - 疫苗不良事件报告系统(VAERS)、免疫接种覆盖率数据", - "环境健康 - 空气质量(PM2.5)、温度、热浪、气候相关健康影响", - "国家健康调查 - NHIS(健康访谈)、NHANES(营养检查)、NSFG(家庭成长)", - "医疗保健统计 - 医疗保健利用、就医机会、保险覆盖、门诊就诊", - "人口估计 - 桥接种族和单一种族人口、到2060年的人口预测", - "NNDSS数据 - 国家应报告疾病监测系统,包含每周和年度报告", - "伤害与暴力 - 机动车事故、创伤性脑损伤、枪支伤害、过量死亡", - "行为风险因素 - 吸烟、烟草使用、体育活动、营养行为", - "地理健康数据 - 州、县、都市区健康统计和健康差异" + "家具", + "furniture", + "家具制造", + "furniture-manufacturing", + "住宅家具", + "residential-furniture", + "办公家具", + "office-furniture", + "厨房家具", + "kitchen-furniture", + "家具出口", + "furniture-export", + "行业统计", + "industry-statistics", + "cnfa", + "中国家具" + ], + "data_content": { + "en": [ + "Annual furniture industry economic operation report: total output value, revenue and profit", + "Production statistics: furniture output by category (residential, office, kitchen, outdoor furniture)", + "Export performance: furniture export volume and value by product type, destination country, and province", + "Import data: imported furniture products volume, value, and source countries", + "Domestic market sales: retail sales of furniture by channel and region", + "Enterprise data: number of manufacturers, employment, fixed asset investment by scale", + "Material consumption: wood, metal, fabric, and other raw material usage statistics", + "Furniture quality standards and certification data" + ], + "zh": [ + "家具行业经济运行年度报告:总产值、收入及利润", + "生产统计:按类别(住宅、办公、厨房、户外家具)的家具产量", + "出口表现:按产品类型、目的地国家和省份的家具出口量和出口额", + "进口数据:进口家具产品的数量、金额及来源国", + "国内市场销售:按渠道和地区的家具零售销售数据", + "企业数据:按规模分类的制造商数量、就业人数、固定资产投资", + "原材料消耗:木材、金属、布料及其他原材料用量统计", + "家具质量标准和认证数据" ] }, - "authority_level": "government", - "has_api": true, - "file_path": "countries/north-america/usa/us-cdc.json" + "has_api": false, + "file_path": "china/economy/industry_associations/china-furniture-association.json" }, { - "id": "us-data-gov", + "id": "china-gas-association", "name": { - "en": "Data.gov", - "zh": "美国政府开放数据平台" + "en": "China Gas Association", + "zh": "中国燃气协会" }, "description": { - "en": "Data.gov is the U.S. government's open data portal, providing access to over 300,000 datasets from federal, state, and local government agencies. It serves as the central repository for publicly available government data across agriculture, climate, consumer safety, education, energy, finance, health, public safety, and many other domains. The platform supports transparency, innovation, and data-driven decision making by making government data accessible to researchers, developers, entrepreneurs, and the public.", - "zh": "Data.gov 是美国政府的开放数据门户网站,提供来自联邦、州和地方政府机构的超过 30 万个数据集的访问。它是公开政府数据的中央存储库,涵盖农业、气候、消费者安全、教育、能源、金融、健康、公共安全等多个领域。该平台通过使政府数据对研究人员、开发者、企业家和公众开放,支持透明度、创新和数据驱动的决策。" + "en": "The China Gas Association (CGA) is the national industry organization representing China's gas sector, including natural gas, liquefied petroleum gas (LPG), and liquefied natural gas (LNG) distribution enterprises. It publishes industry statistics, market reports, safety data, and policy research covering gas consumption, urban gas infrastructure, pipeline networks, gas supply enterprises, and end-user distribution across China. Its data are key references for energy planning, market analysis, and regulatory policy in the gas sector.", + "zh": "中国燃气协会是代表中国燃气行业的全国性行业组织,成员涵盖天然气、液化石油气(LPG)和液化天然气(LNG)配送企业。协会发布行业统计、市场报告、安全数据和政策研究,内容涉及全国燃气消费量、城市燃气基础设施、管道网络、燃气供应企业和终端用户配送情况,是燃气行业能源规划、市场分析和监管政策的重要数据参考。" }, - "website": "https://www.gsa.gov", - "data_url": "https://catalog.data.gov/dataset", + "website": "https://www.chinagas.org.cn", + "data_url": "https://www.chinagas.org.cn", "api_url": null, - "country": "US", + "authority_level": "other", + "country": "CN", "domains": [ - "Agriculture", - "Business", - "Climate", - "Consumer", - "Education", - "Energy", - "Finance", - "Health", - "Transportation", - "Public Safety", - "Science & Research", - "Environment", - "Manufacturing", - "Ocean", - "Local Government", - "Maritime", - "Ecosystems" + "energy", + "industry", + "infrastructure" ], "geographic_scope": "national", - "update_frequency": "daily", + "update_frequency": "annual", "tags": [ - "united-states", - "government", - "open-data", - "federal", - "transparency", - "public-data", - "multi-domain", - "comprehensive" + "燃气", + "natural-gas", + "gas-industry", + "天然气", + "液化石油气", + "lpg", + "lng", + "液化天然气", + "城市燃气", + "urban-gas", + "管道燃气", + "pipeline-gas", + "燃气消费", + "gas-consumption", + "能源", + "energy", + "燃气安全", + "gas-safety", + "燃气企业", + "gas-enterprises", + "中国燃气协会", + "cga" ], "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" + "Annual China Gas Industry Development Report: comprehensive industry statistics and trend analysis", + "Urban gas supply: number of gas users, pipeline network length, coverage rates by city and province", + "Gas consumption data: total consumption by end-use sector (residential, commercial, industrial, power generation)", + "LNG and LPG market: import volumes, spot prices, storage capacity statistics", + "Gas enterprise data: number of licensed operators, business scale, market concentration", + "Gas safety statistics: accident reports, inspection outcomes, safety compliance rates", + "Infrastructure investment: new pipeline construction, gas station development data", + "Policy and standards: industry standards, regulatory compliance updates" ], "zh": [ - "所有联邦政府机构的数据集", - "农业数据(作物生产、畜牧业、食品安全)", - "气候和天气数据", - "教育统计(学校、入学率、表现)", - "能源生产和消费数据", - "健康和医疗数据(疾病监测、医疗保险/医疗补助)", - "交通基础设施和安全数据", - "经济和金融指标", - "环境监测数据(空气质量、水质)", - "公共安全和犯罪统计", - "科学研究数据", - "地理空间和地图数据", - "人口普查和人口统计数据", - "州和地方政府数据集" + "中国燃气行业发展年度报告:全面的行业统计数据与趋势分析", + "城市燃气供应:分城市和省份的燃气用户数量、管道长度、覆盖率", + "燃气消费数据:按终端用途(居民、商业、工业、发电)分类的总消费量", + "LNG和LPG市场:进口量、现货价格、储气能力统计", + "燃气企业数据:持证运营商数量、经营规模、市场集中度", + "燃气安全统计:事故报告、检查结果、安全合规率", + "基础设施投资:新建管道、加气站发展数据", + "政策与标准:行业标准、监管合规动态" ] }, - "authority_level": "government", "has_api": false, - "file_path": "countries/north-america/usa/us-data-gov.json" + "file_path": "china/economy/industry_associations/china-gas-association.json" }, { - "id": "usgs-earthexplorer", + "id": "china-light-industry-council", "name": { - "en": "USGS EarthExplorer", - "zh": "美国地质调查局地球探索者" + "en": "China National Light Industry Council", + "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 China National Light Industry Council (CNLIC) is the national federation representing China's light industry sector, encompassing food processing, beverages, household appliances, leather goods, paper, ceramics, clocks, bicycles, sewing machines, and other consumer goods manufacturing industries. CNLIC publishes authoritative industry statistics, development reports, economic analyses, and policy recommendations covering production, sales, exports, and enterprise operations across China's light industry.", + "zh": "中国轻工业联合会是代表中国轻工行业的全国性联合组织,涵盖食品加工、饮料、家用电器、皮革制品、造纸、陶瓷、钟表、自行车、缝纫机等消费品制造行业。联合会发布权威的行业统计数据、发展报告、经济分析和政策建议,内容涵盖中国轻工业的生产、销售、出口及企业运营情况。" }, - "website": "https://www.usgs.gov", - "data_url": "https://earthexplorer.usgs.gov/", - "api_url": "https://m2m.cr.usgs.gov/", - "country": null, + "website": "http://www.cnlic.org.cn", + "data_url": "http://www.cnlic.org.cn", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", "domains": [ - "earth-observation", - "remote-sensing", - "geospatial", - "environmental-monitoring", - "land-cover" + "manufacturing", + "industry", + "consumer-goods", + "trade" ], - "geographic_scope": "global", - "update_frequency": "daily", + "update_frequency": "annual", "tags": [ - "satellite-imagery", - "remote-sensing", - "landsat", - "sentinel", - "earth-observation", - "geospatial", - "dem", - "elevation", - "aerial-photography", - "land-cover", - "environmental-monitoring", - "usgs", - "eros", - "disaster-response", - "climate-data" + "轻工业", + "light-industry", + "消费品", + "consumer-goods", + "食品加工", + "food-processing", + "家用电器", + "household-appliances", + "皮革", + "leather", + "造纸", + "paper", + "陶瓷", + "ceramics", + "行业统计", + "industry-statistics", + "cnlic", + "中国轻工" ], "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" + "Annual light industry economic operation report: total output value, revenue and profit by sub-sector", + "Production statistics: output data for major light industry product categories (food, beverages, appliances, leather, paper)", + "Export data: light industry products trade volume and value broken down by product type and destination", + "Enterprise data: number of enterprises, employment, investment in fixed assets across light industry sectors", + "Market concentration and leading enterprise performance analysis", + "Import substitution and export competitiveness analysis for key light industry products", + "Light industry development plans and policy research reports", + "Industry standards and quality data for consumer products" ], "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" + "has_api": false, + "file_path": "china/economy/industry_associations/china-light-industry-council.json" }, { - "id": "australia-abs", + "id": "china-tea-marketing-association", "name": { - "en": "Australian Bureau of Statistics", - "zh": "澳大利亚统计局" + "en": "China Tea Marketing Association", + "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": "The China Tea Marketing Association (CTMA), also known as 中国茶叶流通协会 or 中茶协, is the national industry organization representing China's tea production, processing, and marketing sector. As the world's largest tea producer and exporter, China's tea industry statistics published by CTMA are key references for agricultural economics, commodity trade, and consumer market analysis. CTMA provides authoritative data on tea production, market prices, trade volumes, quality standards, and enterprise operations across China's major tea-producing regions.", + "zh": "中国茶叶流通协会(CTMA,又称中茶协)是代表中国茶叶生产、加工和流通行业的全国性行业组织。作为全球最大的茶叶生产国和出口国,中国茶叶流通协会发布的行业统计数据是农业经济、大宗商品贸易和消费市场分析的重要参考依据。协会提供权威的茶叶产量、市场价格、贸易量、质量标准及企业运营数据,覆盖中国各大茶叶产区。" }, - "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", + "website": "https://www.ctma.com.cn", + "data_url": "https://www.ctma.com.cn", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", "domains": [ - "demographics", - "economics", - "health", - "environment", - "population", - "housing", - "employment", - "business", - "trade", "agriculture", - "education", - "innovation", - "government-finance" + "food-beverage", + "trade", + "industry" ], - "geographic_scope": "national", - "update_frequency": "irregular", + "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" + "茶叶", + "tea", + "茶叶市场", + "tea-market", + "茶叶产量", + "tea-production", + "茶叶出口", + "tea-export", + "茶叶价格", + "tea-price", + "绿茶", + "green-tea", + "红茶", + "black-tea", + "普洱茶", + "pu-erh-tea", + "茶产业", + "tea-industry", + "ctma", + "中茶协", + "中国茶叶流通" ], "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" + "Annual tea production statistics: total output by tea type (green tea, black tea, oolong, white tea, pu-erh) and by province", + "Tea market price indices: wholesale and retail prices for major tea varieties by producing region", + "Export data: tea export volume and value broken down by type, destination country, and province", + "Import statistics: imported tea product volume, value, and source countries", + "Domestic consumption data: per capita tea consumption, retail channel distribution, urban vs rural", + "Tea enterprise performance: revenue, employment, and market share of major tea companies", + "Tea quality and safety standards: pesticide residue testing, grading standards, certification data", + "Annual China Tea Industry Development Report: comprehensive production, trade, and market trend analysis" ], "zh": [ - "人口和住房普查 - 每5年一次的全面人口统计", - "国民账户和经济指标 - GDP、通货膨胀、贸易", - "劳动力统计 - 就业、失业、工资", - "人口估计和预测", - "健康调查和统计 - 澳大利亚健康调查", - "农业统计 - 包括基于卫星的灌溉用水估算", - "商业统计和动态", - "教育和培训数据", - "环境统计 - 能源、水资源、保护", - "研发支出", - "政府财政统计", - "社会统计 - 福祉、家庭、社区", - "住房和建筑数据", - "区域和地理数据及边界文件" + "茶叶年度产量统计:按茶类(绿茶、红茶、乌龙茶、白茶、普洱茶)和省份的总产量", + "茶叶市场价格指数:各主产区主要茶叶品种批发和零售价格", + "出口数据:按茶类、目的地国家和省份分类的茶叶出口量和出口额", + "进口统计:进口茶叶产品的数量、金额及来源国", + "国内消费数据:人均茶叶消费量、零售渠道分布、城乡对比", + "茶叶企业经营:主要茶企收入、就业和市场份额", + "茶叶质量和安全标准:农药残留检测、等级标准、认证数据", + "中国茶叶产业发展年度报告:全面的生产、贸易和市场趋势分析" ] }, - "authority_level": "government", - "has_api": true, - "file_path": "countries/oceania/australia/abs.json" + "has_api": false, + "file_path": "china/economy/industry_associations/china-tea-marketing-association.json" }, { - "id": "aus-aihw", + "id": "china-acftu", "name": { - "en": "Australian Institute of Health and Welfare", - "zh": "澳大利亚健康与福利研究所" + "en": "All-China Federation of Trade Unions", + "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 All-China Federation of Trade Unions (ACFTU) is the sole national trade union federation in China, representing over 300 million union members across all industries and sectors. As the world's largest trade union organization, ACFTU publishes annual reports, survey data, and statistical information on labor relations, workers' rights, collective bargaining, wage levels, occupational safety, and union membership across China's workforce.", + "zh": "中华全国总工会(全总)是中国唯一的全国性工会联合组织,代表全国各行各业逾3亿工会会员。作为全球规模最大的工会组织,全总发布有关劳动关系、工人权益、集体协商、工资水平、劳动安全及全国工会会员情况的年度报告、调查数据和统计资料。" }, - "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", + "website": "https://www.acftu.org", + "data_url": "https://www.acftu.org", + "api_url": null, + "authority_level": "government", + "country": "CN", "domains": [ - "Health", - "Welfare", - "Hospitals", - "Mental health", - "Aged care", - "Disability", - "Child protection", - "Homelessness", - "Housing", - "Indigenous health", - "Alcohol and drugs", - "Disease and injury", - "Mortality" + "labor", + "social", + "employment", + "economics" ], "geographic_scope": "national", - "update_frequency": "irregular", + "update_frequency": "annual", "tags": [ - "health", - "welfare", - "hospitals", - "Australia", - "government", - "mental-health", - "aged-care", - "disability", - "indigenous-health", - "child-protection", - "public-health", - "social-services" + "工会", + "trade-union", + "labor", + "劳动关系", + "labor-relations", + "工资", + "wages", + "集体协商", + "collective-bargaining", + "劳动安全", + "occupational-safety", + "工会会员", + "union-membership", + "职工", + "workers", + "全总", + "acftu", + "china-labor" ], "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" + "Union membership statistics: total union members by province, industry, and enterprise type", + "Labor relations: collective contract coverage rates, labor dispute arbitration data", + "Wage and income: average wages by industry, minimum wage standards across regions", + "Occupational safety: workplace accident statistics, occupational disease data", + "Workers' rights: labor inspection outcomes, rights protection cases", + "Trade union organization: number of primary-level trade unions, union establishment rates", + "Annual survey on workers' living conditions and job satisfaction", + "Reports on new forms of employment and platform economy workers" ], "zh": [ - "医院活动和绩效数据", - "疾病患病率和死亡率统计", - "心理健康服务和成果", - "老年护理服务和质量指标", - "残疾支持服务", - "儿童保护统计", - "无家可归和住房援助数据", - "原住民健康和福祉指标", - "酒精、烟草和其他药物统计", - "健康和福利支出", - "慢性病监测", - "自杀和自我伤害数据", - "家庭、家庭暴力和性暴力统计", - "围产期健康数据", - "癌症发病率和生存率" + "工会会员统计:按省份、行业和企业类型分类的工会会员总数", + "劳动关系:集体合同覆盖率、劳动争议仲裁数据", + "工资与收入:各行业平均工资、各地区最低工资标准", + "劳动安全:工作场所事故统计、职业病数据", + "工人权益:劳动监察成果、权益保障案例", + "工会组织建设:基层工会数量、工会组建率", + "职工生活状况与工作满意度年度调查", + "新就业形态和平台经济从业者相关报告" ] }, - "authority_level": "government", - "has_api": true, - "file_path": "countries/oceania/australia/aihw.json" + "has_api": false, + "file_path": "china/economy/labor/china-acftu.json" }, { - "id": "bureau-of-meteorology", + "id": "china-mohrss", "name": { - "en": "Bureau of Meteorology", - "zh": "澳大利亚气象局" + "en": "Ministry of Human Resources and Social Security of China - Employment and Social Security 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 employment, labor market, and social security statistics from China's Ministry of Human Resources and Social Security (MOHRSS). Covers national employment and unemployment data, labor force surveys, social insurance (pension, medical, unemployment, work injury, maternity), vocational training, civil servant management, labor dispute resolution, and wage statistics. Publishes quarterly statistical bulletins, annual human resources and social security development reports, and specialized survey results.", + "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", - "country": "AU", + "website": "https://www.mohrss.gov.cn/", + "data_url": "https://www.mohrss.gov.cn/SYrlzyhshbzb/zwgk/szrs/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", "domains": [ - "weather", - "climate", - "water", - "oceans", - "space weather", - "atmosphere", - "meteorology", - "hydrology", - "oceanography" + "employment", + "social-security", + "economics" ], - "geographic_scope": "national", - "update_frequency": "real-time", + "update_frequency": "quarterly", "tags": [ - "weather", - "climate", - "meteorology", - "australia", - "forecasts", - "warnings", - "rainfall", - "temperature", - "water", - "oceans", - "space-weather", - "satellite", - "radar", - "government", - "oceania" + "就业", + "employment", + "失业率", + "unemployment-rate", + "社会保障", + "social-security", + "养老保险", + "pension-insurance", + "医疗保险", + "medical-insurance", + "工伤保险", + "work-injury-insurance", + "失业保险", + "unemployment-insurance", + "劳动力市场", + "labor-market", + "职业培训", + "vocational-training", + "工资", + "wage", + "salary", + "劳动争议", + "labor-dispute", + "公务员", + "civil-servant", + "人力资源", + "human-resources", + "人社部", + "mohrss" ], "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" + "National urban employment and registered unemployment statistics", + "Urban labor force survey unemployment rate (monthly/quarterly)", + "Social insurance coverage data: pension, medical, unemployment, work injury, and maternity insurance participants", + "Social insurance fund revenues, expenditures, and accumulated balances", + "Vocational skills training and certification statistics", + "Labor dispute arbitration and mediation case statistics", + "Average wage statistics by sector and region", + "Minimum wage standards by province and city", + "Civil servant recruitment and management statistics", + "Migrant worker employment monitoring survey results", + "Human resources service industry development statistics", + "Annual Human Resources and Social Security Development Statistical Bulletin" ], "zh": [ - "天气预报和警报", - "降雨量和温度观测", - "雷达和卫星图像", - "气候数据和分析", - "水文信息和河流水位", - "海洋观测和预报", - "空间气象警报", - "恶劣天气警报", - "长期预报和展望", - "历史气候记录", - "热带气旋信息", - "火灾天气警报", - "洪水警报和信息", - "紫外线指数和防晒时间", - "海洋和沿海预报" + "全国城镇就业和登记失业统计数据", + "城镇调查失业率(月度/季度)", + "社会保险参保人数:养老、医疗、失业、工伤、生育保险", + "社会保险基金收入、支出和累计结余", + "职业技能培训和职业资格认证统计", + "劳动争议仲裁和调解案件统计", + "分行业分地区平均工资统计", + "各省市最低工资标准", + "公务员录用和管理统计", + "农民工就业监测调查结果", + "人力资源服务业发展统计", + "年度人力资源和社会保障事业发展统计公报" ] }, - "authority_level": "government", - "has_api": true, - "file_path": "countries/oceania/australia/bureau-of-meteorology.json" + "has_api": false, + "file_path": "china/economy/labor/china-mohrss.json" }, { - "id": "brazil-bcb", + "id": "china-shenzhen-hrss", "name": { - "en": "Central Bank of Brazil", - "zh": "巴西中央银行", - "native": "Banco Central do Brasil" + "en": "Shenzhen Municipal Human Resources and Social Security Bureau", + "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 Shenzhen Municipal Human Resources and Social Security Bureau is the city government agency responsible for employment, labor market regulation, social insurance, and talent policies in Shenzhen. As China's leading technology hub, Shenzhen's labor market data provides key insights into high-tech talent demand, salary trends, and employment dynamics. The bureau publishes labor market wage guidance prices, employment statistics, social insurance participation data, work injury compensation standards, and talent introduction policies. Its data is particularly valuable for understanding employment patterns in China's innovation economy and the Greater Bay Area labor market.", + "zh": "深圳市人力资源和社会保障局是负责深圳市就业、劳动力市场管理、社会保险和人才政策的市级政府部门。深圳作为中国领先的科技创新中心,其劳动力市场数据为了解高科技人才需求、薪资趋势和就业动态提供了重要洞察。该局发布劳动力市场工资指导价位、就业统计数据、社会保险参保数据、工伤赔偿标准和人才引进政策等信息,其数据对了解中国创新经济就业模式和粤港澳大湾区劳动力市场具有重要参考价值。" }, - "website": "https://www.bcb.gov.br", - "data_url": "https://dadosabertos.bcb.gov.br", - "api_url": "https://dadosabertos.bcb.gov.br/dataset", - "country": "BR", + "website": "https://hrss.sz.gov.cn", + "data_url": "https://hrss.sz.gov.cn/xxgk/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", "domains": [ - "Monetary Policy", - "Financial Statistics", - "Banking", - "Payment Systems", - "Exchange Rates", - "Interest Rates", - "Credit Data", - "Balance of Payments", - "Financial Stability", - "Currency and Coins" + "employment", + "social-security", + "labor" ], - "geographic_scope": "national", - "update_frequency": "daily", + "update_frequency": "quarterly", "tags": [ - "central-bank", - "brazil", - "monetary-policy", - "financial-statistics", - "exchange-rates", - "interest-rates", - "credit-data", - "payment-systems", - "banking", - "south-america", - "open-data", - "api" + "深圳人力资源", + "shenzhen-human-resources", + "深圳就业", + "shenzhen-employment", + "深圳社保", + "shenzhen-social-security", + "工资指导价", + "wage-guidance", + "劳动力市场", + "labor-market", + "人才引进", + "talent-introduction", + "社会保险", + "social-insurance", + "最低工资", + "minimum-wage", + "深圳薪资", + "shenzhen-salary", + "粤港澳大湾区", + "greater-bay-area" ], "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" + "Wage guidance: annual labor market wage guidance prices by occupation, industry, and education level", + "Employment statistics: employment and unemployment statistics, job market supply and demand data", + "Social insurance: participation numbers and contribution rates for pension, medical, unemployment, work injury, and maternity insurance", + "Talent policies: talent introduction quotas, high-level talent recognition data, and overseas returnee employment statistics", + "Labor relations: labor dispute arbitration case statistics, collective contract coverage data", + "Vocational training: skills training program enrollment, certification pass rates, and vocational qualification data", + "Minimum wage standards: annual minimum wage adjustments and compliance data" ], "zh": [ - "SELIC利率 - 日利率和累计利率", - "汇率 - 美元、欧元等货币(每日PTAX汇率)", - "信贷统计 - SCR.data信贷业务数据", - "支付统计 - Pix、信用卡、支付方式", - "货币总量 - M1、M2、M3、货币基数", - "金融机构数据 - IFData资产负债表和指标", - "国家金融系统 - 机构信息和监管规定", - "联合购买数据 - 汽车、房地产等商品", - "储蓄账户 - 利率和余额", - "时间序列 - SGS系统包含超过25,000个经济和金融序列", - "国际收支 - 外部部门统计", - "外汇储备 - 国际储备数据", - "通胀指标 - CPI和通胀预期", - "开放金融数据 - 金融机构开放数据" + "工资指导:按职业、行业和学历分类的年度劳动力市场工资指导价位", + "就业统计:就业和失业统计数据、人才市场供求信息", + "社会保险:养老、医疗、失业、工伤和生育保险参保人数及缴费比例", + "人才政策:人才引进配额、高层次人才认定数据和海归就业统计", + "劳动关系:劳动争议仲裁案件统计、集体合同覆盖数据", + "职业培训:技能培训项目招生、认证通过率和职业资格数据", + "最低工资标准:年度最低工资调整及执行数据" ] }, - "authority_level": "government", - "has_api": true, - "file_path": "countries/south-america/brazil/brazil-bcb.json" + "has_api": false, + "file_path": "china/economy/labor/china-shenzhen-hrss.json" }, { - "id": "brazil-cecafe", + "id": "china-cei", "name": { - "en": "Brazilian Coffee Exporters Council", - "zh": "巴西咖啡出口商协会" + "en": "China Economic Information Service", + "zh": "中国经济信息社" }, "description": { - "en": "CECAFE (Conselho dos Exportadores de Café do Brasil) is the Brazilian Coffee Exporters Council, serving as a national and international reference forum for discussing topics that add value to the export sector and Brazilian coffee. The council publishes comprehensive monthly statistical reports on Brazilian coffee exports, including detailed breakdowns by coffee type (Arabica, Robusta/Conilon, Soluble, Roasted), destination countries, export volumes, foreign exchange revenues, and average prices. CECAFE reports are widely used as authoritative sources for Brazil's coffee export performance and market trends.", - "zh": "CECAFE(巴西咖啡出口商协会)是巴西咖啡出口商理事会,是讨论为出口部门和巴西咖啡增值的主题的国家和国际参考论坛。该协会发布巴西咖啡出口的全面月度统计报告,包括按咖啡类型(阿拉比卡、罗布斯塔/科尼隆、速溶、烘焙)、目的地国家、出口量、外汇收入和平均价格的详细分类。CECAFE报告被广泛用作巴西咖啡出口表现和市场趋势的权威来源。" + "en": "The China Economic Information Service (CEI) is a subsidiary of Xinhua News Agency, China's official state news agency, providing authoritative economic data, analysis, and information services. Founded in 1988, CEI operates as a central information hub for macroeconomic indicators, industry statistics, commodity prices, and financial market data. CEI publishes the Xinhua Finance indices, commodity price indices for key bulk materials (crude oil, natural gas, coal, steel, agricultural products), and real estate price monitoring data. The service compiles China's New Economy Index (NEI) and regularly produces economic forecasts, industry analysis reports, and regional economic assessments. CEI data is widely used by government policy analysts, financial institutions, researchers, and international organizations monitoring China's economic performance.", + "zh": "中国经济信息社(CEI)是中国官方通讯社新华社旗下子机构,提供权威经济数据、分析及信息服务。CEI成立于1988年,是宏观经济指标、行业统计、大宗商品价格及金融市场数据的核心信息枢纽,发布新华财经指数及主要大宗商品(原油、天然气、煤炭、钢铁、农产品)价格指数,并提供房地产价格监测数据。该机构编制中国新经济指数(NEI),定期发布经济预测报告、行业分析及区域经济评估。CEI数据广泛应用于政府政策分析、金融机构、科研机构及监测中国经济表现的国际组织。" }, - "website": "https://www.cecafe.com.br/", - "data_url": "https://www.cecafe.com.br/publicacoes/relatorio-de-exportacoes/", + "website": "https://www.cei.cn/", + "data_url": "https://www.cei.cn/category/", "api_url": null, - "country": "BR", + "authority_level": "commercial", + "country": "CN", "geographic_scope": "national", "domains": [ - "trade", - "agriculture", - "commodities", - "exports" + "economics", + "finance", + "energy", + "agriculture" ], - "update_frequency": "monthly", + "update_frequency": "daily", "tags": [ - "brazil", - "巴西", - "coffee", - "咖啡", - "coffee-exports", - "咖啡出口", - "export-statistics", - "出口统计", - "trade-data", - "贸易数据", - "commodities", - "大宗商品", - "agriculture", - "农业", - "arabica", - "阿拉比卡", - "robusta", - "罗布斯塔", - "monthly-reports", - "月度报告", - "CECAFE", - "south-america", - "南美洲", - "industry-association", - "行业协会" + "宏观经济", + "macroeconomics", + "大宗商品价格", + "commodity-prices", + "新华财经", + "xinhua-finance", + "新经济指数", + "new-economy-index", + "经济预测", + "economic-forecast", + "行业分析", + "industry-analysis", + "钢铁价格", + "steel-prices", + "煤炭价格", + "coal-prices", + "农产品", + "agricultural-products", + "房地产", + "real-estate", + "经济信息", + "economic-information", + "新华社", + "xinhua" ], "data_content": { "en": [ - "Monthly Coffee Export Statistics - total export volumes in 60kg bags by month and cumulative annual totals", - "Coffee Type Breakdown - detailed statistics for Arabica, Robusta/Conilon, Soluble coffee, and Roasted coffee", - "Export Destinations - country-by-country breakdown of Brazilian coffee exports", - "Foreign Exchange Revenue - total revenue and average prices per bag in US dollars", - "Specialty Coffee Exports - statistics on differentiated and specialty coffee categories", - "Port and Logistics Data - export data by Brazilian ports", - "Year-over-Year Comparisons - comparative analysis with previous year's export performance", - "Market Analysis - trends and insights on Brazilian coffee export market" + "Xinhua commodity price indices: daily and weekly prices for crude oil, coal, steel, copper, agricultural products", + "China New Economy Index (NEI): monthly composite index tracking digital economy transition", + "Real estate market data: residential and commercial property price trends by city and region", + "Macroeconomic forecasting: quarterly GDP growth projections and economic indicator forecasts", + "Industry economic analysis: sector-level performance data for manufacturing, services, and agriculture", + "Import and export price indices: trade-weighted price changes for major commodities", + "Regional economic assessments: provincial economic performance comparisons and investment climate reports" ], "zh": [ - "月度咖啡出口统计 - 按月和累计年度总计的60公斤袋出口总量", - "咖啡类型分类 - 阿拉比卡、罗布斯塔/科尼隆、速溶咖啡和烘焙咖啡的详细统计", - "出口目的地 - 巴西咖啡出口的逐国分类", - "外汇收入 - 以美元计的总收入和每袋平均价格", - "特色咖啡出口 - 差异化和特色咖啡类别的统计数据", - "港口和物流数据 - 按巴西港口的出口数据", - "同比比较 - 与上一年出口表现的比较分析", - "市场分析 - 巴西咖啡出口市场的趋势和见解" + "新华大宗商品价格指数:原油、煤炭、钢铁、铜、农产品日度及周度价格", + "中国新经济指数(NEI):跟踪数字经济转型的月度综合指数", + "房地产市场数据:各城市及地区住宅和商业地产价格趋势", + "宏观经济预测:季度GDP增长预测及经济指标展望", + "行业经济分析:制造业、服务业及农业各行业绩效数据", + "进出口价格指数:主要大宗商品贸易加权价格变动", + "区域经济评估:省级经济绩效比较及投资环境报告" ] }, - "authority_level": "market", "has_api": false, - "file_path": "countries/south-america/brazil-cecafe.json" + "file_path": "china/economy/macro/china-cei.json" }, { - "id": "brazil-conab", + "id": "china-drcnet", "name": { - "en": "National Supply Company (CONAB)", - "zh": "巴西国家商品供应公司" + "en": "DRCNET - Development Research Center Network", + "zh": "国研网" }, "description": { - "en": "CONAB (Companhia Nacional de Abastecimento) is a Brazilian government public enterprise under the Ministry of Agrarian Development and Family Farming. Established in 1990, CONAB is responsible for food supply management, agricultural support, and market information across Brazil. The organization publishes authoritative quarterly bulletins on Brazilian coffee production (Boletim de Acompanhamento da Safra de Café), providing detailed forecasts and analysis of coffee harvests including production volumes, planted area, productivity estimates, and breakdowns by coffee type (Arabica and Robusta/Conilon). CONAB also provides data on grains, storage facilities, agricultural pricing, and public food programs.", - "zh": "CONAB(巴西国家商品供应公司)是隶属于巴西农业发展和家庭农业部的政府公共企业。CONAB成立于1990年,负责巴西的粮食供应管理、农业支持和市场信息。该机构发布权威的巴西咖啡产量季度公报(Boletim de Acompanhamento da Safra de Café),提供咖啡收成的详细预测和分析,包括产量、种植面积、生产力估算以及按咖啡类型(阿拉比卡和罗布斯塔/科尼隆)的分类。CONAB还提供粮食、仓储设施、农产品定价和公共食品计划的数据。" + "en": "DRCNET (Development Research Center Network, 国研网) is an authoritative economic research and data service platform operated by the Development Research Center of the State Council (DRC), China's premier government economic policy research institution. Launched in 1998, DRCNET provides comprehensive coverage of China's macroeconomic policy research, statistical databases, industry analyses, regional economic studies, and international comparative data. The platform hosts an extensive repository of DRC research reports, policy briefs, and analytical products that directly inform State Council decision-making. Subscribers include government agencies, financial institutions, universities, and multinational corporations who rely on DRCNET for authoritative Chinese economic policy intelligence, industry statistics, legal and regulatory databases, and cross-country comparison data.", + "zh": "国研网(DRCNET)是由国务院发展研究中心(DRC,中国首屈一指的政府经济政策研究机构)运营的权威经济研究和数据服务平台,创办于1998年。国研网全面覆盖中国宏观经济政策研究、统计数据库、行业分析、区域经济研究和国际比较数据,是国务院发展研究中心研究报告、政策简报和分析产品的庞大资料库,直接服务国务院决策。订阅用户包括政府机构、金融机构、高校和跨国公司,依赖国研网获取权威的中国经济政策情报、行业统计、法律法规数据库和跨国比较数据。" }, - "website": "https://www.gov.br/conab/pt-br", - "data_url": "https://www.gov.br/conab/pt-br/atuacao/informacoes-agropecuarias/safras/safra-de-cafe", + "website": "https://www.drcnet.com.cn", + "data_url": "https://www.drcnet.com.cn", "api_url": null, - "authority_level": "government", - "country": "BR", + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", "domains": [ - "agriculture", - "commodities", - "food-supply", - "trade" + "macroeconomics", + "economic-policy", + "industry-analysis", + "regional-development", + "policy-research", + "statistics" ], - "geographic_scope": "national", - "update_frequency": "quarterly", + "update_frequency": "daily", "tags": [ - "brazil", - "巴西", - "coffee", - "咖啡", - "coffee-production", - "咖啡产量", - "crop-forecasts", - "作物预测", - "agriculture", - "农业", - "commodities", - "大宗商品", - "arabica", - "阿拉比卡", - "robusta", - "罗布斯塔", - "conilon", - "科尼隆", - "harvest", - "收成", - "grains", - "粮食", - "food-supply", - "粮食供应", - "agricultural-statistics", - "农业统计", - "quarterly-reports", - "季度报告", - "CONAB", - "south-america", - "南美洲", - "government-data", - "政府数据", - "production-estimates", - "产量估算", - "inventory", - "库存", - "exports", - "出口" + "国研网", + "drcnet", + "development-research-center-network", + "国务院发展研究中心", + "drc", + "development-research-center", + "宏观经济", + "macroeconomics", + "经济政策", + "economic-policy", + "行业分析", + "industry-analysis", + "区域经济", + "regional-economy", + "政策研究", + "policy-research", + "智库", + "think-tank", + "统计数据", + "statistical-data" ], "data_content": { "en": [ - "Coffee Harvest Bulletins - quarterly monitoring reports (Boletim de Acompanhamento da Safra de Café) published four times per year (February, May, September, January)", - "Coffee Production Forecasts - detailed estimates of total production in 60kg bags for current harvest year", - "Coffee Type Breakdown - separate production data for Arabica and Robusta/Conilon varieties", - "Planted Area and Productivity - statistics on coffee cultivation area and yield per hectare by state", - "Geographic Distribution - coffee production data by Brazilian states and major producing regions", - "Year-over-Year Comparisons - analysis comparing current harvest forecasts with previous years", - "Grain Production Data - harvest forecasts and monitoring for major grains and oilseeds", - "Agricultural Pricing Information - minimum guaranteed prices and public program reference prices", - "Storage and Warehouse Data - information on certified storage facilities across Brazil", - "Family Farming Programs - data on public food acquisition programs (PAA) supporting small farmers" + "DRC research reports: full-text repository of policy research reports, working papers, and analytical briefs produced by DRC's research institutes covering economic forecasting, industrial policy, and institutional reform", + "Macroeconomic databases: time-series data on GDP, fixed asset investment, consumption, trade, inflation, and fiscal-monetary indicators at national and provincial levels", + "Industry statistics: vertical industry databases covering automotive, energy, finance, real estate, telecom, agriculture, and manufacturing with production, sales, and pricing data", + "Regional economic data: province-level and city-level economic indicators, industrial structure analyses, and regional comparison reports", + "Legal and regulatory database: Chinese laws, regulations, and policy documents organized by topic with full-text search and historical versions", + "Industry research reports: analyst-produced deep-dive reports on key industries, competitive landscapes, and market trends", + "International comparative data: cross-country economic indicators for benchmarking China against OECD countries and emerging markets" ], "zh": [ - "咖啡收成公报 - 每年发布四次的季度监测报告(Boletim de Acompanhamento da Safra de Café)(2月、5月、9月、1月)", - "咖啡产量预测 - 以60公斤袋为单位的当前收成年度总产量详细估算", - "咖啡类型分类 - 阿拉比卡和罗布斯塔/科尼隆品种的单独产量数据", - "种植面积和生产力 - 按州分类的咖啡种植面积和每公顷产量统计", - "地理分布 - 按巴西各州和主要产区的咖啡产量数据", - "同比比较 - 将当前收成预测与往年进行比较分析", - "粮食产量数据 - 主要粮食和油料作物的收成预测和监测", - "农产品定价信息 - 最低保证价格和公共计划参考价格", - "仓储和仓库数据 - 巴西各地认证仓储设施的信息", - "家庭农业计划 - 支持小农户的公共食品采购计划(PAA)数据" + "国研报告:国务院发展研究中心各研究所出品的政策研究报告、工作论文和分析简报全文库,涵盖经济预测、产业政策和体制改革", + "宏观经济数据库:国家和省级GDP、固定资产投资、消费、贸易、通胀、财政货币指标的时间序列数据", + "行业统计:汽车、能源、金融、房地产、电信、农业、制造业等纵向行业数据库,含生产、销售、价格数据", + "区域经济数据:省级和市级经济指标、产业结构分析和区域比较报告", + "法律法规数据库:按主题组织的中国法律、法规和政策文件全文检索,含历史版本", + "行业研究报告:分析师对重点行业、竞争格局和市场趋势的深度研究报告", + "国际比较数据:对标OECD国家和新兴市场的跨国经济指标" ] }, "has_api": false, - "file_path": "countries/south-america/brazil-conab.json" + "file_path": "china/economy/macro/china-drcnet.json" }, { - "id": "brazil-ibge", + "id": "china-iprcc", "name": { - "en": "Brazilian Institute of Geography and Statistics", - "zh": "巴西地理统计局" + "en": "International Poverty Reduction Center in China", + "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 International Poverty Reduction Center in China (IPRCC) is an international organization jointly initiated, funded and established by the Government of the People's Republic of China and the United Nations Development Programme (UNDP) along with other international organizations. Established in 2005 and housed under the State Council Leading Group Office of Poverty Alleviation and Development, IPRCC conducts research and knowledge exchange on poverty reduction theory, policy innovation, and South-South cooperation. IPRCC publishes authoritative poverty reduction reports, rural development research, and case studies documenting China's poverty alleviation experience—widely referenced by multilateral development agencies, policy researchers, and governments seeking to replicate China's anti-poverty successes. The center also maintains databases on international poverty indicators, training programs, and bilateral poverty reduction cooperation projects across Asia, Africa and Latin America.", + "zh": "中国国际减贫中心(IPRCC)是中华人民共和国政府与联合国开发计划署等国际组织共同发起、资助并组建的国际机构,成立于2005年,挂靠国务院扶贫开发领导小组办公室。中心以创新扶贫理论、促进政策转换、增强国际互动、推动南南合作为宗旨,开展减贫研究和知识交流,发布权威减贫报告、乡村发展研究和中国扶贫经验案例,被多边发展机构、政策研究者和致力于复制中国反贫困经验的各国政府广泛引用。中心还维护国际贫困指标、培训项目和亚非拉各国双边减贫合作项目的数据库。" }, - "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", + "website": "https://www.iprcc.org.cn", + "data_url": "https://www.iprcc.org.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", "domains": [ - "demographics", - "economics", - "geography", - "cartography", - "environment", - "population", - "census", - "labor", - "trade", - "agriculture", - "industry", - "social" + "poverty-reduction", + "rural-development", + "development", + "international-cooperation", + "social-policy" ], - "geographic_scope": "national", "update_frequency": "irregular", "tags": [ - "brazil", - "巴西", - "national-statistics", - "国家统计", - "census", - "人口普查", - "demographics", - "人口统计", - "economic-indicators", - "经济指标", - "geographic-data", - "地理数据", - "cartography", - "制图", - "population-data", - "人口数据", - "labor-statistics", - "劳动统计", - "trade-data", + "中国国际减贫中心", + "iprcc", + "international-poverty-reduction-center", + "减贫", + "poverty-reduction", + "扶贫", + "poverty-alleviation", + "脱贫", + "poverty-eradication", + "乡村振兴", + "rural-revitalization", + "南南合作", + "south-south-cooperation", + "国务院扶贫办", + "leading-group-on-poverty-alleviation", + "减贫案例", + "poverty-case-studies", + "undp" + ], + "data_content": { + "en": [ + "Poverty reduction reports: flagship publications documenting China's poverty alleviation progress, methodology, and lessons learned since reform and opening-up", + "Rural development case studies: detailed village-level and county-level case studies of successful poverty reduction programs across China's provinces", + "South-South cooperation project data: records of IPRCC training programs, bilateral technical cooperation, and knowledge exchange with Asian, African, and Latin American countries", + "International poverty indicators: comparative statistics on multidimensional poverty, rural income, and human development across developing countries", + "Policy research papers: analytical papers on targeted poverty alleviation (精准扶贫), industrial poverty alleviation, relocation-based poverty alleviation, and post-2020 rural revitalization strategy", + "Training program records: participant data and curriculum materials for international poverty reduction training seminars hosted by IPRCC", + "Conference proceedings: output from the annual Global Poverty Reduction and Development Forum and related international events" + ], + "zh": [ + "减贫报告:记录改革开放以来中国扶贫进程、方法论和经验教训的旗舰出版物", + "乡村发展案例:中国各省成功扶贫项目的村级和县级详细案例研究", + "南南合作项目数据:IPRCC培训项目、双边技术合作及与亚非拉国家知识交流记录", + "国际贫困指标:发展中国家多维贫困、农村收入和人类发展的比较统计", + "政策研究论文:精准扶贫、产业扶贫、易地搬迁扶贫及2020年后乡村振兴战略的分析论文", + "培训项目记录:IPRCC主办的国际减贫培训研讨会参与者数据和课程材料", + "会议成果:年度全球减贫与发展论坛及相关国际活动的成果输出" + ] + }, + "has_api": false, + "file_path": "china/economy/macro/china-iprcc.json" + }, + { + "id": "china-ndrc-computing", + "name": { + "en": "NDRC East-to-West Computing Resources Project", + "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个国家数据中心集群,统筹推进通用算力、智能算力、超级算力协同建设,构建全国一体化算力网络体系,优化东中西部算力资源配置。" + }, + "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", + "geographic_scope": "national", + "domains": [ + "technology", + "infrastructure", + "economics", + "energy" + ], + "update_frequency": "irregular", + "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" + ], + "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": "china-sasac", + "name": { + "en": "State-owned Assets Supervision and Administration Commission of the State Council", + "zh": "国务院国有资产监督管理委员会" + }, + "description": { + "en": "The State-owned Assets Supervision and Administration Commission (SASAC) is the central government body responsible for managing and supervising China's central state-owned enterprises (central SOEs). Established in 2003, SASAC oversees approximately 98 central SOEs across strategic sectors including energy, telecommunications, transportation, aviation, aerospace, finance, and heavy industry. SASAC publishes quarterly and annual operational performance reports for central SOEs, covering total assets, revenue, profit, tax contributions, employee numbers, and investment in fixed assets. These publications are the authoritative source for understanding the scale and performance of China's state-owned economy, which accounts for a major share of national economic output. SASAC also releases data on SOE reform progress, mixed-ownership reform pilots, and state capital allocation statistics.", + "zh": "国务院国有资产监督管理委员会(国资委)是负责管理和监督中央国有企业的国家政府机构,于2003年正式组建。国资委监管约98家中央企业,涵盖能源、电信、交通、航空、航天、金融、重工业等战略性领域。国资委定期发布中央企业运营绩效季报和年报,内容包括资产总量、营业收入、利润总额、税收贡献、用工人数及固定资产投资等数据,是了解中国国有经济规模和绩效的权威数据来源。国有经济在全国经济总量中占有重要比重。国资委还发布国企改革进展、混合所有制改革试点情况及国有资本布局优化统计数据。" + }, + "website": "https://www.sasac.gov.cn/", + "data_url": "https://www.sasac.gov.cn/n2588030/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "economics", + "industry", + "governance", + "statistics" + ], + "update_frequency": "quarterly", + "tags": [ + "国资委", + "sasac", + "央企", + "central-soes", + "国有企业", + "state-owned-enterprises", + "央企运营数据", + "central-enterprise-performance", + "国有资产", + "state-owned-assets", + "企业利润", + "enterprise-profit", + "混合所有制", + "mixed-ownership-reform", + "国企改革", + "soe-reform", + "国有资本", + "state-capital", + "央企收入", + "central-enterprise-revenue", + "资产总量", + "total-assets", + "经济统计", + "economic-statistics" + ], + "data_content": { + "en": [ + "Central SOE operational performance: quarterly and annual total assets, operating revenue, total profit, and tax contributions of central enterprises as a group", + "Enterprise-level data: individual performance indicators for major central SOEs including SINOPEC, CNPC, SGCC, and other key groups", + "Employment statistics: total workforce of central SOEs, new recruitment, and labor productivity metrics", + "Fixed asset investment: annual capital expenditure and investment data across central SOE sectors", + "Mixed-ownership reform: progress reports on pilot programs introducing private capital into state-owned enterprises", + "State capital allocation: data on strategic restructuring of central SOE portfolios, mergers, and asset disposals", + "SOE reform progress: annual reports on reform implementation under the State-owned Enterprise Reform Deepening Action Plan", + "Industry breakdown: performance data disaggregated by sector including energy, telecommunications, manufacturing, and services", + "Financial indicators: return on equity, asset-liability ratios, and other financial health metrics for central SOEs", + "Innovation investment: R&D expenditure and technology investment statistics for central SOEs" + ], + "zh": [ + "央企运营绩效:中央企业整体季度和年度资产总量、营业收入、利润总额及税收贡献", + "企业个体数据:中石化、中石油、国家电网等主要央企的单项绩效指标", + "用工统计:央企职工总数、新增招录及劳动生产率指标", + "固定资产投资:央企各领域年度资本支出和投资数据", + "混合所有制改革:引入民间资本的国企改革试点进展报告", + "国有资本布局:中央企业战略性重组、合并及资产处置相关数据", + "国企改革进展:国有企业改革深化提升行动年度报告", + "行业分类数据:能源、电信、制造业、服务业等各领域绩效分类统计", + "财务指标:央企净资产收益率、资产负债率及其他财务健康指标", + "创新投入:央企研发投入和科技投资统计数据" + ] + }, + "has_api": false, + "file_path": "china/economy/macro/china-sasac.json" + }, + { + "id": "china-shenzhen-drc", + "name": { + "en": "Shenzhen Municipal Development and Reform Commission", + "zh": "深圳市发展和改革委员会" + }, + "description": { + "en": "The Shenzhen Municipal Development and Reform Commission is the local government authority responsible for economic and social development planning, macroeconomic regulation, price monitoring, and investment project management in Shenzhen. It publishes economic development plans, price monitoring data, major project approvals, industrial policy documents, and socioeconomic development reports for one of China's leading innovation hubs and special economic zones.", + "zh": "深圳市发展和改革委员会是深圳市负责经济和社会发展规划、宏观经济调控、价格监测和投资项目管理的地方政府部门。发布经济发展规划、价格监测数据、重大项目审批、产业政策文件和社会经济发展报告,是中国领先的创新中心和经济特区的权威数据来源。" + }, + "website": "http://fgw.sz.gov.cn", + "data_url": "http://fgw.sz.gov.cn/zwgk/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "economics", + "development-planning", + "price-monitoring" + ], + "geographic_scope": "subnational", + "update_frequency": "monthly", + "tags": [ + "shenzhen", + "development", + "reform", + "economics", + "planning" + ], + "data_content": { + "en": [ + "Economic Development Plans - Five-year plans and annual economic development targets for Shenzhen", + "Price Monitoring Data - Consumer price index monitoring and commodity price data", + "Investment Project Approvals - Major fixed asset investment project review and approval records", + "Industrial Policies - Strategic emerging industry development policies and support measures", + "Socioeconomic Development Reports - Annual national economic and social development statistical bulletins", + "Energy and Resource Management - Energy consumption targets and resource allocation plans" + ], + "zh": [ + "经济发展规划 - 深圳市五年规划和年度经济发展目标", + "价格监测数据 - 居民消费价格指数监测和商品价格数据", + "投资项目审批 - 重大固定资产投资项目审核和审批记录", + "产业政策 - 战略性新兴产业发展政策和扶持措施", + "社会经济发展报告 - 年度国民经济和社会发展统计公报", + "能源资源管理 - 能源消费目标和资源配置计划" + ] + }, + "has_api": false, + "file_path": "china/economy/macro/china-shenzhen-drc.json" + }, + { + "id": "china-sic", + "name": { + "en": "State Information Center of China", + "zh": "国家信息中心" + }, + "description": { + "en": "The State Information Center (SIC) of China is a government think tank directly under the National Development and Reform Commission (NDRC). Established in 1987, SIC plays a central role in macroeconomic monitoring, forecasting, and policy research for the Chinese government. It publishes authoritative economic analysis including the China Macroeconomic Outlook reports, the China Big Data Index on Economic Conditions, monthly economic situation analyses, and the Sharing Economy Development Report. SIC operates the National Comprehensive Information Platform for Economic Decision-Making and contributes to the government's five-year planning process. Its data and analysis are widely cited by Chinese policymakers, central government agencies, and international researchers studying China's economy.", + "zh": "国家信息中心是国家发展和改革委员会直属的政府智库,成立于1987年,在宏观经济监测、预测和政策研究方面发挥核心作用。国家信息中心发布权威经济分析报告,包括《中国宏观经济形势分析与预测》、中国经济景气监测及大数据指数、月度经济形势分析和《中国分享经济发展报告》。信息中心运营国家经济决策综合信息平台,并参与政府五年规划的编制工作,其数据和分析被中国政策制定者、中央政府各部门及国际经济研究机构广泛引用。" + }, + "website": "https://www.sic.gov.cn/", + "data_url": "https://www.sic.gov.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "economics", + "statistics", + "research" + ], + "update_frequency": "monthly", + "tags": [ + "宏观经济", + "macroeconomics", + "经济预测", + "economic-forecast", + "景气监测", + "economic-monitoring", + "经济形势分析", + "economic-situation-analysis", + "大数据指数", + "big-data-index", + "分享经济", + "sharing-economy", + "政策研究", + "policy-research", + "五年规划", + "five-year-plan", + "国家信息中心", + "sic", + "ndrc", + "发改委", + "经济决策", + "economic-decision-making", + "GDP预测", + "gdp-forecast" + ], + "data_content": { + "en": [ + "China Macroeconomic Outlook: semi-annual forecast reports on GDP growth, inflation, investment, and consumption trends", + "Monthly economic situation analysis: near-real-time monitoring of key economic indicators including industrial output, retail sales, and fixed-asset investment", + "China Big Data Economic Conditions Index: data-driven composite index tracking economic sentiment from online and administrative data", + "Sharing Economy Development Report: annual statistics on platform economy scale, participants, and transaction volumes across ride-hailing, housing, finance, and knowledge sharing sectors", + "Price monitoring data: producer price index (PPI), consumer price index (CPI), and commodity price trend analysis", + "Regional economic analysis: comparative economic performance assessments across China's provinces and major city clusters", + "Five-year plan monitoring: progress tracking and evaluation data on national development targets and key indicator achievement", + "Energy and resource consumption forecasts: projections for coal, oil, gas, and electricity demand under different economic scenarios", + "Poverty alleviation and rural development statistics: rural income growth, poverty headcount reduction, and regional development gap data" + ], + "zh": [ + "中国宏观经济展望:GDP增长、通货膨胀、投资和消费趋势半年度预测报告", + "月度经济形势分析:工业产出、零售额和固定资产投资等关键经济指标的近实时监测", + "中国大数据经济景气指数:基于网络和行政数据的经济景气复合追踪指数", + "分享经济发展报告:网约车、住宿、金融、知识共享等领域平台经济规模、参与人数和交易额年度统计", + "价格监测数据:生产者价格指数(PPI)、消费者价格指数(CPI)及大宗商品价格趋势分析", + "区域经济分析:全国各省份及主要城市群经济表现比较评估", + "五年规划监测:国家发展目标和关键指标完成情况的进展跟踪与评估数据", + "能源资源消耗预测:不同经济情景下煤炭、石油、天然气和电力需求预测", + "脱贫攻坚和农村发展统计:农村居民收入增长、贫困人口减少及区域发展差距数据" + ] + }, + "has_api": false, + "file_path": "china/economy/macro/china-sic.json" + }, + { + "id": "china-ndrc", + "name": { + "en": "National Development and Reform Commission", + "zh": "国家发展和改革委员会", + "native": "国家发展和改革委员会" + }, + "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和商品价格)、产业结构调整、区域发展、节能降耗和重大基础设施项目数据。" + }, + "website": "https://www.ndrc.gov.cn", + "data_url": "https://www.ndrc.gov.cn/fgsj/", + "api_url": null, + "country": "CN", + "domains": [ + "economics", + "development", + "investment", + "prices" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "china", + "ndrc", + "macroeconomic", + "development", + "investment", + "prices", + "cpi", + "ppi", + "planning" + ], + "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": "china-cgcc", + "name": { + "en": "China General Chamber of Commerce", + "zh": "中国商业联合会" + }, + "description": { + "en": "The China General Chamber of Commerce (CGCC), also known as the China Commercial Federation, is the national industry organization representing China's commercial and retail sector, supervised by the Ministry of Commerce. China is the world's second-largest retail market, with total retail sales of consumer goods exceeding 47 trillion yuan annually, and is rapidly approaching the United States as the world's largest consumer market. CGCC represents department stores, supermarkets, specialty retailers, wholesale markets, and modern logistics operators, covering both traditional brick-and-mortar and integrated online-offline retail formats. The chamber publishes the China Retail Industry Prosperity Index (中国零售业景气指数), which provides monthly survey-based sentiment data on sales performance, inventory levels, employment trends, and business confidence across the retail sector. CGCC also releases annual retail industry development reports, consumer spending trend analysis, and data on the transformation of China's commercial districts and shopping center ecosystems. Its research on the integration of online and offline retail (新零售 / New Retail) is widely cited in studies of China's consumer economy and digital commerce evolution.", + "zh": "中国商业联合会(中国商联)是代表中国商业零售行业的全国性行业组织,主管单位为商务部。中国是全球第二大零售市场,社会消费品零售总额年超47万亿元,正快速向全球最大消费市场迈进。商联会员涵盖百货商场、超市、专卖店、批发市场和现代物流运营商,覆盖传统实体和线上线下融合零售业态。商联发布中国零售业景气指数,基于月度调查提供零售行业销售业绩、库存水平、从业人员趋势和企业信心等情绪数据,同时发布零售行业年度发展报告、消费趋势分析,以及商业街区和购物中心生态系统演变数据。商联关于线上线下融合(新零售)的研究,在中国消费经济和数字商业演进研究领域被广泛引用。" + }, + "website": "https://www.cgcc.org.cn/", + "data_url": "https://www.cgcc.org.cn/hyfz/zglsyfzzs/", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "economics", + "consumer", + "industry", + "trade" + ], + "update_frequency": "monthly", + "tags": [ + "中国商业联合会", + "cgcc", + "china-general-chamber-of-commerce", + "china-commercial-federation", + "零售业", + "retail-industry", + "中国零售业景气指数", + "china-retail-industry-prosperity-index", + "社会消费品零售总额", + "total-retail-sales-of-consumer-goods", + "消费市场", + "consumer-market", + "百货商场", + "department-stores", + "超市", + "supermarkets", + "购物中心", + "shopping-centers", + "新零售", + "new-retail", + "线上线下融合", + "online-offline-integration", + "批发市场", + "wholesale-markets", + "商业地产", + "commercial-real-estate", + "消费升级", + "consumption-upgrade", + "商业景气", + "commercial-prosperity" + ], + "data_content": { + "en": [ + "China Retail Industry Prosperity Index: monthly survey-based composite indicator measuring sales performance, order volumes, inventory levels, employment conditions, and forward-looking business confidence across retail sub-sectors", + "Annual retail market report: comprehensive overview of China's commercial and retail sector performance, consumer spending patterns, channel shift dynamics, and competitive landscape", + "Department store and shopping center data: operating metrics including footfall, tenant mix, vacancy rates, and average transaction values for China's major commercial real estate formats", + "Supermarket and hypermarket statistics: sales volumes, SKU turnover, fresh food penetration, and supply chain efficiency for grocery retail chains", + "Wholesale market monitoring: commodity prices, transaction volumes, and operational data from China's major agricultural and industrial wholesale market hubs", + "Online-offline integration (New Retail): tracking the hybridization of physical and digital retail formats, including click-and-collect adoption, live commerce penetration, and private label growth", + "Consumer spending trend analysis: purchasing power changes, discretionary vs. essential spending ratios, regional consumption disparities, and emerging consumer segments", + "Commercial district health index: foot traffic, vacancy, new opening, and closure data for major commercial street zones and city-center retail districts across China" + ], + "zh": [ + "中国零售业景气指数:月度综合调查指标,衡量零售各子行业的销售业绩、订单量、库存水平、就业状况和前瞻性经营信心", + "零售市场年度报告:中国商业零售行业运行全面述评,涵盖消费支出格局、渠道转移动态和竞争格局", + "百货商场和购物中心数据:客流量、租户结构、空置率和主要商业地产业态的平均交易价值等经营指标", + "超市和大型卖场统计:连锁超市的销售量、SKU周转率、生鲜渗透率和供应链效率", + "批发市场监测:中国主要农业和工业批发市场的商品价格、成交量和运营数据", + "线上线下融合(新零售):实体与数字零售业态融合追踪,包括到店自提、直播电商渗透率和自有品牌增长", + "消费趋势分析:购买力变化、可选与必选消费占比、区域消费差异及新兴消费群体", + "商业街区健康指数:中国主要商业街区和城市核心商业区的客流量、空置率、新开业和关闭数据" + ] + }, + "has_api": false, + "file_path": "china/economy/market/china-cgcc.json" + }, + { + "id": "china-gsxt", + "name": { + "en": "National Enterprise Credit Information Publicity System", + "zh": "国家企业信用信息公示系统" + }, + "description": { + "en": "The National Enterprise Credit Information Publicity System (GSXT) is the official government platform operated by the State Administration for Market Regulation (SAMR) of China. It is the authoritative public database for enterprise registration information, credit records, and regulatory compliance data for all enterprises registered in China. The system discloses enterprise basic registration data, annual report filings, administrative penalties, court judgments, business license information, equity structure, and credit ratings. It covers all types of enterprises, individual business entities, and other market entities registered across all provinces and cities in China.", + "zh": "国家企业信用信息公示系统(GSXT)是国家市场监督管理总局运营的官方政府平台,是中国境内所有注册企业的工商登记信息、信用记录和监管合规数据的权威公共数据库。系统公示企业基本注册数据、年报信息、行政处罚、法院判决、营业执照信息、股权结构及信用评级,覆盖全国各省市注册的企业、个体工商户及其他市场主体。" + }, + "data_content": { + "en": [ + "enterprise registration and basic information", + "annual report filings", + "administrative penalty records", + "court judgment and enforcement records", + "business license and qualification data", + "equity structure and shareholder information", + "enterprise credit ratings and black lists", + "operating status and change history", + "branch and subsidiary information", + "market entity credit compliance data" + ], + "zh": [ + "企业注册与基本信息", + "年报信息", + "行政处罚记录", + "法院判决与执行记录", + "营业执照与资质数据", + "股权结构与股东信息", + "企业信用评级与黑名单", + "经营状态与变更历史", + "分支机构与子公司信息", + "市场主体信用合规数据" + ] + }, + "country": "CN", + "authority_level": "government", + "geographic_scope": "national", + "website": "https://www.gsxt.gov.cn", + "data_url": "https://www.gsxt.gov.cn", + "api_url": null, + "domains": [ + "economy", + "governance" + ], + "tags": [ + "enterprise-credit", + "business-registration", + "market-supervision", + "corporate-data", + "credit-system", + "企业信用", + "工商登记", + "市场监管", + "信用信息", + "营业执照", + "股权", + "年报", + "行政处罚", + "samr", + "市场监管总局", + "国家企业信用" + ], + "update_frequency": "daily", + "has_api": false, + "file_path": "china/economy/market/china-gsxt.json" + }, + { + "id": "china-iresearch", + "name": { + "en": "iResearch Consulting Group", + "zh": "艾瑞咨询" + }, + "description": { + "en": "iResearch Consulting Group is China's leading internet and technology market research firm. It provides authoritative data, industry reports, and market sizing on China's digital economy, internet industries, e-commerce, fintech, digital advertising, and consumer behavior. iResearch is widely cited by government agencies, investors, and corporations as a primary source for China's digital market intelligence.", + "zh": "艾瑞咨询是中国领先的互联网与科技市场研究机构,提供中国数字经济、互联网行业、电商、金融科技、数字广告及消费者行为的权威数据、行业报告和市场规模分析,被政府机构、投资者和企业广泛引用。" + }, + "website": "https://www.iresearch.com.cn", + "data_url": "https://www.iresearch.com.cn/report.shtml", + "api_url": null, + "country": "CN", + "domains": [ + "market-research", + "digital-economy", + "internet", + "consumer" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "china", + "艾瑞咨询", + "iresearch", + "market-research", + "market-size", + "互联网", + "internet", + "e-commerce", + "电商", + "fintech", + "金融科技", + "digital-advertising", + "数字广告", + "consumer-behavior", + "消费者研究", + "industry-report", + "行业报告" + ], + "data_content": { + "en": [ + "Industry Reports - In-depth research reports on China's internet, e-commerce, fintech, and digital sectors", + "Market Sizing Data - Total addressable market (TAM) estimates for major Chinese digital industries", + "User Behavior Analysis - Consumer behavior surveys and digital usage statistics", + "Digital Advertising Market - China online advertising spend and market share data", + "Quarterly Trackers - Ongoing tracking data for key metrics in mobile, social, and e-commerce" + ], + "zh": [ + "行业深度报告 - 中国互联网、电商、金融科技和数字行业的深度研究报告", + "市场规模数据 - 中国主要数字行业的市场规模测算", + "用户行为分析 - 消费者行为调研与数字化使用统计", + "数字广告市场 - 中国网络广告投入和市场份额数据", + "季度追踪 - 移动、社交和电商核心指标的持续跟踪数据" + ] + }, + "authority_level": "market", + "has_api": false, + "file_path": "china/economy/market/china-iresearch.json" + }, + { + "id": "china-samr", + "name": { + "en": "State Administration for Market Regulation", + "zh": "国家市场监督管理总局", + "native": "国家市场监督管理总局" + }, + "description": { + "en": "The State Administration for Market Regulation (SAMR) is China's primary market regulator responsible for business registration, anti-monopoly enforcement, product quality supervision, food safety, and consumer protection. It publishes statistics on enterprise registration, market supervision, quality certification, and food and drug safety across China.", + "zh": "国家市场监督管理总局是中国主要的市场监管机构,负责企业登记注册、反垄断执法、产品质量监督、食品安全和消费者保护。发布全国企业登记注册、市场监管、质量认证、食品药品安全等统计数据。" + }, + "website": "https://www.samr.gov.cn", + "data_url": "https://www.samr.gov.cn/zw/sj/sjzx/", + "api_url": null, + "country": "CN", + "domains": [ + "economics", + "industry", + "social", + "trade" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "china", + "samr", + "market-regulation", + "enterprise-registration", + "business-registration", + "quality", + "food-safety", + "anti-monopoly", + "consumer-protection", + "市场监管", + "市场监管总局", + "企业登记", + "质量统计", + "食品安全", + "工商登记" + ], + "data_content": { + "en": [ + "Enterprise Registration Statistics - Number of registered businesses by type, industry, and region", + "Market Supervision Reports - Annual reports on market order and law enforcement", + "Product Quality Statistics - Quality inspection results, certification data", + "Food Safety Annual Report - Food safety supervision and sampling statistics", + "Anti-Monopoly Enforcement - Merger reviews and monopoly case statistics", + "Consumer Complaint Statistics - Consumer rights protection and complaint resolution data", + "Special Equipment Safety - Statistics on boilers, pressure vessels, lifts, and other special equipment" + ], + "zh": [ + "企业登记注册统计 - 按类型、行业和地区分类的注册企业数量", + "市场监管报告 - 市场秩序和执法年度报告", + "产品质量统计 - 质量检验结果、认证数据", + "食品安全年报 - 食品安全监督和抽检统计", + "反垄断执法 - 经营者集中审查和垄断案件统计", + "消费者投诉统计 - 消费者权益保护和投诉处理数据", + "特种设备安全 - 锅炉、压力容器、电梯等特种设备统计" + ] + }, + "authority_level": "government", + "has_api": false, + "file_path": "china/economy/market/china-samr.json" + }, + { + "id": "china-shenzhen-prtc", + "name": { + "en": "Shenzhen Public Resource Trading Center", + "zh": "深圳市公共资源交易中心" + }, + "description": { + "en": "The Shenzhen Public Resource Trading Center is the municipal government platform for unified public resource transactions in Shenzhen. It provides centralized data on government procurement, construction project bidding, land use rights auctions, state-owned asset transfers, and pharmaceutical procurement. As a key transparency platform for one of China's largest municipal economies, it publishes real-time transaction records, bidding results, and procurement announcements across all categories of public resource trading.", + "zh": "深圳市公共资源交易中心是深圳市公共资源统一交易的市级政府平台。提供政府采购、建设工程招投标、土地使用权出让、国有资产转让和药品采购等集中交易数据。作为中国最大城市经济体之一的透明交易平台,发布各类公共资源交易的实时成交记录、中标结果和采购公告。" + }, + "website": "https://www.szggzy.com", + "data_url": "https://www.szggzy.com/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "government-procurement", + "public-resource-trading", + "real-estate" + ], + "geographic_scope": "subnational", + "update_frequency": "daily", + "tags": [ + "shenzhen", + "public-resource", + "procurement", + "bidding", + "land-auction" + ], + "data_content": { + "en": [ + "Government Procurement - Centralized government procurement bidding and results", + "Construction Project Bidding - Public construction project tender announcements and awards", + "Land Use Rights Auctions - Land parcel auction records including prices and conditions", + "State-Owned Asset Transfers - SOE asset disposal transactions and transfer records", + "Pharmaceutical Procurement - Drug and medical device centralized procurement data", + "Transaction Statistics - Aggregate trading volume and value statistics by category" + ], + "zh": [ + "政府采购 - 集中政府采购招标和中标结果", + "建设工程招投标 - 公共建设项目招标公告和中标公告", + "土地使用权出让 - 土地出让成交记录包括价格和条件", + "国有资产转让 - 国有企业资产处置和转让记录", + "药品采购 - 药品和医疗器械集中采购数据", + "交易统计 - 按类别汇总的交易数量和金额统计" + ] + }, + "has_api": false, + "file_path": "china/economy/market/china-shenzhen-prtc.json" + }, + { + "id": "china-ah-stats", + "name": { + "en": "Anhui Bureau of Statistics", + "zh": "安徽省统计局" + }, + "description": { + "en": "The Anhui Bureau of Statistics is the official statistical authority for Anhui Province, a central-eastern China province experiencing rapid economic transformation driven by emerging industries, high-tech manufacturing, and its integration into the Yangtze River Delta economic region. It publishes comprehensive socioeconomic statistics including GDP, industrial output, agricultural production, population, employment, and consumer prices for Anhui. The bureau releases the Anhui Statistical Yearbook and regular economic bulletins, serving as the authoritative data source for one of China's fastest-growing provincial economies.", + "zh": "安徽省统计局是安徽省官方统计机构,安徽是中国中东部省份,正经历以新兴产业、高新技术制造业和长三角一体化为驱动的快速经济转型。统计局发布安徽省GDP、工业产值、农业生产、人口、就业和居民消费价格指数等全面的社会经济统计数据,并出版《安徽统计年鉴》及定期经济运行情况报告,是了解中国增速最快省级经济体之一的权威数据来源。" + }, + "website": "https://tjj.ah.gov.cn", + "data_url": "https://tjj.ah.gov.cn/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "social", + "industry" + ], + "update_frequency": "monthly", + "tags": [ + "安徽统计", + "anhui-statistics", + "安徽GDP", + "anhui-gdp", + "长三角一体化", + "yangtze-river-delta-integration", + "省级统计", + "provincial-statistics", + "新兴产业", + "emerging-industries", + "高新技术", + "high-tech-manufacturing", + "工业产值", + "industrial-output", + "人口统计", + "population-statistics", + "统计年鉴", + "statistical-yearbook", + "新能源汽车", + "new-energy-vehicles" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Anhui Province", + "Industrial production: output value by industry, major products output, industrial enterprise performance including emerging industries", + "High-tech and strategic industries: new energy vehicles, semiconductor, artificial intelligence, quantum computing output data", + "Agricultural statistics: crop output, livestock, tea production — Anhui is a major agricultural province", + "Fixed asset investment: total investment, real estate development, infrastructure construction", + "Population statistics: census data, household registration, urbanization — significant labor-exporting province", + "Employment and wages: employed persons, migrant labor statistics, average wages by sector", + "Consumer prices: CPI, PPI for Anhui Province and Hefei metropolitan area", + "Foreign trade and investment: import/export, utilized foreign direct investment", + "Anhui Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:安徽省季度和年度GDP数据,按产业分类", + "工业生产:各行业工业产值、主要产品产量、工业企业经营情况,包括新兴产业", + "高新技术与战略性新兴产业:新能源汽车、半导体、人工智能、量子计算产值数据", + "农业统计:粮食产量、畜牧业、茶叶产量——安徽是重要农业大省", + "固定资产投资:全省投资总额、房地产开发、基础设施建设", + "人口统计:人口普查数据、户籍人口、城镇化率——重要劳动力输出省份", + "就业与工资:从业人员数、外出务工统计、各行业平均工资", + "消费价格:安徽省及合肥都市圈居民消费价格指数、工业品出厂价格", + "对外贸易与投资:进出口统计、实际利用外资", + "安徽统计年鉴:全省各类统计数据的综合年度汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-ah-stats.json" + }, + { + "id": "china-beijing-stats", + "name": { + "en": "Beijing Bureau of Statistics", + "zh": "北京市统计局" + }, + "description": { + "en": "The Beijing Bureau of Statistics is the official statistical authority for Beijing Municipality, China's capital and one of the world's largest metropolitan economies. It collects, processes, and publishes comprehensive socioeconomic statistics for Beijing, including GDP, industrial output, fixed asset investment, retail sales, consumer prices, population, employment, and household income. The bureau releases the Beijing Statistical Yearbook and regular monthly and quarterly economic bulletins, serving as the authoritative source for tracking the performance of China's political and cultural center.", + "zh": "北京市统计局是北京市官方统计机构,北京是中国首都,也是全球最大都市经济体之一。统计局负责收集、处理和发布北京市全面的社会经济统计数据,涵盖GDP、工业产值、固定资产投资、社会消费品零售总额、居民消费价格指数、人口、就业和居民收入等。统计局定期发布《北京统计年鉴》及月度、季度经济运行情况报告,是追踪中国政治文化中心经济社会发展的权威数据来源。" + }, + "website": "https://tjj.beijing.gov.cn/", + "data_url": "https://tjj.beijing.gov.cn/tjsj_31433/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "social", + "demographics" + ], + "update_frequency": "monthly", + "tags": [ + "北京统计", + "beijing-statistics", + "北京GDP", + "beijing-gdp", + "首都经济", + "capital-economy", + "市级统计", + "municipal-statistics", + "固定资产投资", + "fixed-asset-investment", + "居民消费", + "consumer-spending", + "人口普查", + "population-census", + "居民收入", + "household-income", + "统计年鉴", + "statistical-yearbook", + "城市化", + "urbanization", + "就业", + "employment" + ], + "data_content": { + "en": [ + "GDP and economic growth: annual and quarterly gross domestic product by industry sector for Beijing Municipality", + "Industrial output: production data for major industries including high-tech, manufacturing, and services", + "Fixed asset investment: total investment by sector, region, and ownership type", + "Retail sales and consumption: total retail sales, e-commerce data, household consumption expenditure", + "Consumer prices: CPI, PPI, and housing price indices for Beijing and its districts", + "Population statistics: census results, household registration data, migrant population, birth and death rates", + "Employment and wages: employed persons by sector, unemployment rate, average wages across industries", + "Social development: education enrollment, healthcare resources, social security coverage, cultural services", + "Beijing Statistical Yearbook: annual comprehensive compilation of all municipal statistical data" + ], + "zh": [ + "GDP与经济增长:北京市按产业分类的年度及季度地区生产总值", + "工业产值:高新技术、制造业和服务业等主要行业生产数据", + "固定资产投资:按行业、地区和所有制类型分类的投资总额", + "零售与消费:社会消费品零售总额、电商数据、居民消费支出", + "消费价格:北京市及各区的居民消费价格指数、工业品出厂价格和房价指数", + "人口统计:普查结果、户籍人口、流动人口、出生率和死亡率", + "就业与工资:各行业从业人员数、失业率、各行业平均工资", + "社会发展:教育招生情况、医疗卫生资源、社会保障覆盖率、文化服务", + "北京统计年鉴:北京市各类统计数据的综合年度汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-beijing-stats.json" + }, + { + "id": "china-chengdu-stats", + "name": { + "en": "Chengdu Bureau of Statistics", + "zh": "成都市统计局" + }, + "description": { + "en": "The Chengdu Bureau of Statistics is the official statistical authority for Chengdu, the capital of Sichuan Province and the economic hub of western China. Chengdu is one of China's four first-tier cities by influence and a major center for electronics manufacturing, aerospace, finance, and the digital economy. The bureau publishes comprehensive socioeconomic statistics covering GDP, industrial output, fixed asset investment, retail sales, foreign trade, population, and employment for Chengdu municipality. It releases the Chengdu Statistical Yearbook, monthly economic bulletins, and thematic reports on the city's development as a national center city and New Economy hub in China's western development strategy.", + "zh": "成都市统计局是成都市的官方统计机构,成都是四川省省会、中国西部地区经济中心,也是中国新一线城市之一,是电子制造、航空航天、金融和数字经济的重要基地。统计局发布成都市GDP、工业产值、固定资产投资、社会消费品零售总额、对外贸易、人口和就业等全面的社会经济统计数据,出版《成都统计年鉴》、月度经济简报及成都作为国家中心城市、新经济之都和西部大开发重要节点城市的专题报告。" + }, + "website": "http://cdstats.chengdu.gov.cn/", + "data_url": "http://cdstats.chengdu.gov.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "industry", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "成都统计", + "chengdu-statistics", + "成都GDP", + "chengdu-gdp", + "西部大开发", + "western-china-development", + "四川经济", + "sichuan-economy", + "成都统计年鉴", + "chengdu-statistical-yearbook", + "数字经济", + "digital-economy", + "新经济", + "new-economy", + "电子制造", + "electronics-manufacturing", + "航空航天", + "aerospace", + "国家中心城市", + "national-center-city", + "消费城市", + "consumer-city", + "成都新区", + "chengdu-new-area" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Chengdu municipality", + "Industrial production: output from key industries including electronics, auto parts, food processing, and aerospace", + "Digital and new economy: software revenue, digital industry output, and new economy enterprise data", + "Fixed asset investment: total investment, real estate development, infrastructure, and industrial projects", + "Retail and consumption: total retail sales, consumer price index, and e-commerce data", + "Foreign trade and investment: export/import volumes, actually utilized FDI by source country", + "Employment and wages: employed persons, urban unemployment rate, and average wages by sector", + "Population: resident population, household registration, migration, and urbanization indicators", + "Chengdu Statistical Yearbook: comprehensive annual compilation of all municipal statistics across economic and social domains", + "Monthly economic briefings: short-term economic performance indicators and trend analysis" + ], + "zh": [ + "GDP与经济增长:成都市按产业分类的季度和年度GDP数据", + "工业生产:电子、汽车零部件、食品加工和航空航天等重点产业产值", + "数字经济与新经济:软件业营业收入、数字产业产值和新经济企业数据", + "固定资产投资:全市总投资额、房地产开发、基础设施和工业项目投资", + "消费与零售:社会消费品零售总额、居民消费价格指数和电子商务数据", + "对外贸易与投资:进出口总额、按来源地统计的实际利用外商直接投资", + "就业与工资:从业人员数、城镇登记失业率和各行业平均工资", + "人口:常住人口、户籍人口、人口迁移和城镇化指标", + "成都统计年鉴:经济和社会各领域全市统计数据综合年度汇编", + "月度经济简报:短期经济运行指标和趋势分析" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-chengdu-stats.json" + }, + { + "id": "china-cq-stats", + "name": { + "en": "Chongqing Bureau of Statistics", + "zh": "重庆市统计局" + }, + "description": { + "en": "The Chongqing Bureau of Statistics is the official statistical authority for Chongqing, China's largest municipality by area and a major economic hub in the upper Yangtze River region. It publishes comprehensive socioeconomic data covering GDP, industrial output, fixed asset investment, retail sales, population, and employment for Chongqing Municipality. As one of China's four direct-controlled municipalities and a key node in the Chengdu-Chongqing Economic Circle, Chongqing's statistical data is critical for understanding western China's economic development and urbanization trends. The bureau releases monthly economic bulletins, quarterly reports, and the annual Chongqing Statistical Yearbook.", + "zh": "重庆市统计局是重庆市官方统计机构。重庆是中国面积最大的直辖市,也是长江上游地区重要的经济中心。统计局发布涵盖重庆市GDP、工业产值、固定资产投资、社会消费品零售总额、人口及就业等全面社会经济数据。作为中国四个直辖市之一及成渝地区双城经济圈的重要节点,重庆统计数据对于了解西部地区经济发展与城镇化进程具有重要价值。统计局定期发布月度经济运行情况、季度统计公报及年度《重庆统计年鉴》。" + }, + "website": "https://tjj.cq.gov.cn/", + "data_url": "https://tjj.cq.gov.cn/zwgk_233040/zfxxgkml/tjxx/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "social", + "infrastructure" + ], + "update_frequency": "monthly", + "tags": [ + "重庆统计", + "chongqing-statistics", + "重庆GDP", + "chongqing-gdp", + "成渝经济圈", + "chengdu-chongqing-economic-circle", + "省级统计", + "provincial-statistics", + "工业产值", + "industrial-output", + "固定资产投资", + "fixed-asset-investment", + "西部开发", + "western-development", + "城镇化", + "urbanization", + "统计年鉴", + "statistical-yearbook", + "直辖市", + "municipality" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Chongqing Municipality", + "Industrial production: output value by sector, major products, automobile manufacturing output (Chongqing is a major auto hub)", + "Fixed asset investment: total investment by sector, real estate development, infrastructure projects", + "Consumer prices: CPI and PPI data for Chongqing and major districts", + "Population statistics: permanent resident population, urbanization rate, migration data", + "Employment and wages: employed persons by sector, unemployment rate, average wages", + "Retail and services: total retail sales, e-commerce data, service industry growth", + "Chongqing Statistical Yearbook: comprehensive annual compilation covering all socioeconomic statistics" + ], + "zh": [ + "GDP与经济增长:重庆市季度和年度GDP数据,按产业分类", + "工业生产:各行业工业产值、主要产品产量(重庆是重要汽车制造基地)", + "固定资产投资:按行业分类的投资总额、房地产开发、基础设施项目", + "消费价格:重庆市及主要区县的居民消费价格指数和工业品出厂价格", + "人口统计:常住人口、城镇化率、人口流动数据", + "就业与工资:各行业从业人员数、失业率、平均工资水平", + "零售与服务:社会消费品零售总额、电子商务数据、服务业增长情况", + "重庆统计年鉴:涵盖所有社会经济统计的综合年度汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-cq-stats.json" + }, + { + "id": "china-fj-stats", + "name": { + "en": "Fujian Bureau of Statistics", + "zh": "福建省统计局" + }, + "description": { + "en": "The Fujian Bureau of Statistics is the official statistical authority for Fujian Province, a coastal province in southeastern China known for its strong private economy, cross-strait trade with Taiwan, and significant overseas Chinese diaspora connections. It publishes official statistics on Fujian's economic and social development, including GDP, industrial output, cross-strait trade, foreign investment, tourism, population, and household income. The bureau issues the Fujian Statistical Yearbook and regular economic analyses that reflect the province's unique economic characteristics and policy context.", + "zh": "福建省统计局是福建省官方统计机构,福建是中国东南沿海省份,以发达的民营经济、对台贸易和与海外华人的紧密联系而著称。统计局发布福建省经济社会发展的官方数据,涵盖GDP、工业产值、两岸贸易、外商投资、旅游业、人口和居民收入等。统计局出版《福建统计年鉴》和定期经济分析报告,反映该省独特的经济特征和政策环境。" + }, + "website": "https://tjj.fujian.gov.cn/", + "data_url": "https://tjj.fujian.gov.cn/xxgk/tjxx/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "trade", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "福建统计", + "fujian-statistics", + "福建GDP", + "fujian-gdp", + "省级统计", + "provincial-statistics", + "对台贸易", + "cross-strait-trade", + "民营经济", + "private-economy", + "外商投资", + "foreign-investment", + "旅游统计", + "tourism-statistics", + "人口", + "population", + "统计年鉴", + "statistical-yearbook", + "海峡西岸", + "west-taiwan-strait-economic-zone" + ], + "data_content": { + "en": [ + "GDP and economic growth: annual and quarterly gross domestic product by industry sector for Fujian Province", + "Industrial output: production data for major industries including electronics, petrochemicals, machinery, and textiles", + "Cross-strait trade: import and export data with Taiwan, cross-strait investment statistics", + "Foreign trade and investment: total imports and exports by commodity and trading partner, FDI by industry", + "Tourism statistics: visitor arrivals (domestic and overseas Chinese), tourism revenue, hotel occupancy", + "Population and migration: census results, household registration data, overseas Chinese population connection data", + "Private sector economy: statistics on private enterprises, individual businesses, and non-state-owned economy", + "Fujian Statistical Yearbook: annual comprehensive compilation of provincial economic and social statistics" + ], + "zh": [ + "GDP与经济增长:福建省按产业分类的年度及季度地区生产总值", + "工业产值:电子、石化、机械、纺织等主要行业生产数据", + "两岸贸易:对台进出口数据及两岸投资统计", + "对外贸易与投资:按商品类别和贸易伙伴分类的进出口总额、按行业分外商直接投资", + "旅游统计:国内游客及海外华人入境情况、旅游收入、酒店入住率", + "人口与迁移:普查结果、户籍数据、海外华人关联数据", + "民营经济:私营企业、个体工商户及非公有制经济统计", + "福建统计年鉴:省级经济社会统计数据的综合年度汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-fj-stats.json" + }, + { + "id": "china-fuzhou-stats", + "name": { + "en": "Fuzhou Bureau of Statistics", + "zh": "福州市统计局" + }, + "description": { + "en": "The Fuzhou Bureau of Statistics is the official statistical authority for Fuzhou, the capital of Fujian Province on China's southeastern coast. Fuzhou is a key digital economy hub, major port city, and center of cross-strait economic cooperation with Taiwan. The bureau publishes comprehensive socioeconomic data including GDP, industrial output, digital economy indicators, investment, consumption, employment, and population, and releases the Fuzhou Statistical Yearbook and regular economic bulletins.", + "zh": "福州市统计局是福州市官方统计机构,福州是福建省省会,位于中国东南沿海。福州是重要的数字经济中心、主要港口城市,也是两岸经济合作的重要枢纽。统计局发布涵盖GDP、工业产值、数字经济指标、投资、消费、就业和人口等全面的社会经济数据,出版《福州统计年鉴》及定期经济运行报告。" + }, + "website": "https://tjj.fuzhou.gov.cn", + "data_url": "https://tjj.fuzhou.gov.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "economics", + "statistics", + "industry", + "social" + ], + "geographic_scope": "subnational", + "update_frequency": "monthly", + "tags": [ + "福州统计", + "fuzhou-statistics", + "福州GDP", + "fuzhou-gdp", + "福建经济", + "fujian-economy", + "福州统计年鉴", + "fuzhou-statistical-yearbook", + "数字经济", + "digital-economy", + "海上丝绸之路", + "maritime-silk-road", + "两岸经济合作", + "cross-strait-economic-cooperation", + "自贸区", + "free-trade-zone", + "港口", + "port", + "海洋经济", + "marine-economy", + "21世纪海上丝绸之路", + "21st-century-maritime-silk-road" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Fuzhou", + "Digital economy indicators: software and information technology services, digital industry output", + "Port and trade: cargo throughput, container volumes, cross-strait trade statistics", + "Industrial production: output from electronics, machinery, and advanced manufacturing sectors", + "Fixed asset investment: total investment by industry, infrastructure, and real estate development", + "Retail and consumption: total retail sales of consumer goods, consumer price index", + "Employment and wages: employed persons by sector, urban unemployment rate, average wages", + "Population: resident population, household registration data, urbanization rate", + "Foreign investment: utilized FDI, cross-strait investment flows", + "Fuzhou Statistical Yearbook: comprehensive annual compilation of municipal statistics" + ], + "zh": [ + "GDP与经济增长:福州市按产业分类的季度和年度GDP数据", + "数字经济指标:软件和信息技术服务业、数字产业产值", + "港口与贸易:货物吞吐量、集装箱量、两岸贸易统计", + "工业生产:电子、机械和先进制造业产值", + "固定资产投资:按行业分类的总投资额、基础设施和房地产开发", + "消费与零售:社会消费品零售总额、居民消费价格指数", + "就业与工资:分行业从业人员数、城镇登记失业率、平均工资", + "人口:常住人口、户籍人口数据、城镇化率", + "外资利用:实际利用外商直接投资、两岸投资流向", + "福州统计年鉴:全市各类统计数据综合年度汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-fuzhou-stats.json" + }, + { + "id": "china-gd-stats", + "name": { + "en": "Guangdong Bureau of Statistics", + "zh": "广东省统计局" + }, + "description": { + "en": "The Guangdong Bureau of Statistics is the official statistical authority for Guangdong Province, China's most economically productive province and home to the Pearl River Delta manufacturing hub. It publishes comprehensive socioeconomic statistics including GDP, industrial output, trade, population, employment, consumer prices, and retail sales for Guangdong. The bureau also releases the Guangdong Statistical Yearbook and monthly/quarterly economic bulletins, making it a critical source for understanding China's leading provincial economy.", + "zh": "广东省统计局是广东省官方统计机构,广东是中国经济总量最大的省份,珠三角制造业中心所在地。统计局发布广东省GDP、工业产值、对外贸易、人口、就业、居民消费价格指数和社会消费品零售总额等全面的社会经济统计数据,并出版《广东统计年鉴》及月度/季度经济运行情况报告,是了解中国最大省级经济体的重要数据来源。" + }, + "website": "https://stats.gd.gov.cn/", + "data_url": "https://stats.gd.gov.cn/tjsj186/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "social", + "trade" + ], + "update_frequency": "monthly", + "tags": [ + "广东统计", + "guangdong-statistics", + "广东GDP", + "guangdong-gdp", + "珠三角", + "pearl-river-delta", + "省级统计", + "provincial-statistics", + "工业产值", + "industrial-output", + "对外贸易", + "foreign-trade", + "人口普查", + "population-census", + "居民收入", + "household-income", + "统计年鉴", + "statistical-yearbook" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Guangdong Province", + "Industrial production: output value by industry, major products output, industrial enterprise performance", + "Foreign trade: import and export value by commodity, trading partner, and prefecture-level city", + "Population statistics: census data, household registration, birth and death rates, urbanization", + "Employment and wages: employed persons, unemployment rate, average wages by sector and region", + "Consumer prices: CPI, PPI, housing price indices for Guangdong and its major cities", + "Social development: education enrollment, healthcare resources, social security coverage", + "Guangdong Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:广东省季度和年度GDP数据,按产业分类", + "工业生产:各行业工业产值、主要产品产量、工业企业经营情况", + "对外贸易:按商品类别、贸易伙伴和地级市分类的进出口数据", + "人口统计:人口普查数据、户籍人口、出生率和死亡率、城镇化率", + "就业与工资:从业人员数、失业率、各行业和地区平均工资", + "消费价格:广东省及主要城市的居民消费价格指数、工业品出厂价格、房价指数", + "社会发展:教育招生情况、医疗卫生资源、社会保障覆盖率", + "广东统计年鉴:全省各类统计数据的综合年度汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-gd-stats.json" + }, + { + "id": "china-gs-stats", + "name": { + "en": "Gansu Bureau of Statistics", + "zh": "甘肃省统计局" + }, + "description": { + "en": "The Gansu Bureau of Statistics is the official statistical authority for Gansu Province, a long, narrow province in northwestern China traversing the historical Hexi Corridor — the ancient Silk Road artery connecting China to Central Asia. Gansu is rich in mineral resources including nickel, platinum group metals, and rare earths, and is a significant producer of petrochemicals, non-ferrous metals, and wind energy. The bureau publishes comprehensive socioeconomic statistics covering GDP, mineral extraction, energy production (particularly wind and solar power), agricultural output in the Loess Plateau region, population, and poverty alleviation outcomes. It also releases the Gansu Statistical Yearbook.", + "zh": "甘肃省统计局是甘肃省官方统计机构,甘肃是中国西北部一个狭长省份,横跨历史上的河西走廊——连接中国与中亚的古丝绸之路要道。甘肃矿产资源丰富,包括镍、铂族金属和稀土,是重要的石化、有色金属和风能生产基地。统计局发布甘肃省GDP、矿产开采、能源生产(尤其是风能和太阳能)、黄土高原农业产值、人口及脱贫攻坚成效等全面社会经济统计,并出版《甘肃统计年鉴》。" + }, + "website": "https://tjj.gansu.gov.cn/", + "data_url": "https://tjj.gansu.gov.cn/tjj/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "energy", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "甘肃统计", + "gansu-statistics", + "甘肃GDP", + "gansu-gdp", + "西部大开发", + "western-china-development", + "省级统计", + "provincial-statistics", + "河西走廊", + "hexi-corridor", + "丝绸之路", + "silk-road", + "矿产资源", + "mineral-resources", + "镍", + "nickel", + "风能", + "wind-energy", + "太阳能", + "solar-energy", + "新能源", + "new-energy", + "稀土", + "rare-earth", + "脱贫攻坚", + "poverty-alleviation", + "统计年鉴", + "statistical-yearbook", + "兰州", + "lanzhou" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Gansu Province", + "Mineral extraction: nickel, platinum group metals, rare earth elements, coal, and other strategic minerals", + "Energy production: wind power generation, solar photovoltaic output, hydropower, oil and gas", + "Industrial output: petrochemicals, non-ferrous metals smelting, equipment manufacturing", + "Agricultural statistics: grain output, Chinese herbal medicine (traditional medicinal herbs), cash crops", + "Fixed asset investment: Silk Road infrastructure projects, new energy base construction", + "Population statistics: census data, household registration, birth and death rates, rural-urban migration", + "Employment and wages: employed persons, unemployment rate, average wages by sector", + "Poverty alleviation outcomes: rural income growth, poverty reduction metrics for former key poverty areas", + "Gansu Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:甘肃省季度和年度GDP数据,按产业分类", + "矿产开采:镍、铂族金属、稀土、煤炭及其他战略矿产资源", + "能源生产:风力发电量、光伏发电量、水电、石油和天然气", + "工业产值:石化、有色金属冶炼、装备制造业", + "农业统计:粮食产量、中药材(传统中草药)、经济作物", + "固定资产投资:丝绸之路基础设施项目、新能源基地建设", + "人口统计:人口普查数据、户籍人口、出生率和死亡率、农村人口城镇化", + "就业与工资:从业人员数、失业率、各行业平均工资", + "脱贫攻坚成效:农村居民收入增长、原深度贫困区减贫指标", + "甘肃统计年鉴:全省各类统计数据的综合年度汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-gs-stats.json" + }, + { + "id": "china-gx-stats", + "name": { + "en": "Guangxi Bureau of Statistics", + "zh": "广西壮族自治区统计局" + }, + "description": { + "en": "The Guangxi Bureau of Statistics is the official statistical authority for the Guangxi Zhuang Autonomous Region, a southern Chinese region bordering Vietnam with strategic importance as China's gateway to Southeast Asia. It publishes comprehensive socioeconomic data including GDP, industrial output, agricultural production, trade, tourism, and population statistics for Guangxi. The bureau releases the Guangxi Statistical Yearbook and regular economic bulletins, offering critical data for analyzing the region's role in the China-ASEAN trade relationship, the New International Land-Sea Trade Corridor (ILSTC), and its sugar cane, nonferrous metals, and tourism industries.", + "zh": "广西壮族自治区统计局是广西的官方统计机构,广西位于中国南部,与越南接壤,是中国面向东南亚的重要门户。统计局发布广西GDP、工业产值、农业生产、贸易、旅游和人口等全面的社会经济数据,并出版《广西统计年鉴》及定期经济情况报告,为分析广西在中国-东盟贸易关系、西部陆海新通道及甘蔗、有色金属和旅游产业中的地位提供重要数据支撑。" + }, + "website": "https://tjj.gxzf.gov.cn/", + "data_url": "https://tjj.gxzf.gov.cn/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "trade", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "广西统计", + "guangxi-statistics", + "广西GDP", + "guangxi-gdp", + "广西壮族自治区", + "guangxi-zhuang-autonomous-region", + "省级统计", + "provincial-statistics", + "中国-东盟", + "china-asean", + "西部陆海新通道", + "ilstc", + "甘蔗", + "sugar-cane", + "有色金属", + "nonferrous-metals", + "旅游", + "tourism", + "统计年鉴", + "statistical-yearbook", + "边境贸易", + "border-trade", + "固定资产投资", + "fixed-asset-investment", + "居民收入", + "household-income" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Guangxi Zhuang Autonomous Region", + "Industrial production: output value by industry including key sectors such as sugar processing, nonferrous metal smelting, machinery, and petrochemicals", + "Agricultural production: sugar cane output (China's largest producing region), grain, fruits, aquaculture, and forestry data", + "Trade and commerce: import and export values, China-ASEAN trade flows, border trade with Vietnam, and port throughput at Beibu Gulf ports", + "Tourism statistics: visitor arrivals, tourism revenue, cross-border tourism data, hotel occupancy rates", + "Population and demographics: census data for the Zhuang and other ethnic minorities, urbanization rate, household registration", + "Fixed-asset investment: infrastructure including the New International Land-Sea Trade Corridor projects, real estate", + "Consumer prices: CPI and PPI indices for Guangxi and major cities including Nanning, Guilin, and Liuzhou", + "Guangxi Statistical Yearbook: comprehensive annual compilation of all regional statistics" + ], + "zh": [ + "GDP与经济增长:广西壮族自治区季度和年度GDP数据,按三次产业分类", + "工业生产:各行业工业产值,涵盖制糖业、有色金属冶炼、机械制造和石油化工等重点行业", + "农业生产:甘蔗产量(全国最大甘蔗产区)、粮食、水果、水产养殖和林业数据", + "贸易与商业:进出口总额、中国-东盟贸易流量、中越边境贸易及北部湾港口吞吐量", + "旅游统计:游客人数、旅游收入、跨境旅游数据和酒店入住率", + "人口与人口结构:壮族及其他少数民族人口普查数据、城镇化率、户籍人口", + "固定资产投资:西部陆海新通道建设等基础设施投资和房地产投资", + "消费价格:广西及南宁、桂林、柳州等主要城市的居民消费价格指数和工业品出厂价格", + "广西统计年鉴:全区各类统计数据的综合年度汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-gx-stats.json" + }, + { + "id": "china-gz-stats", + "name": { + "en": "Guizhou Bureau of Statistics", + "zh": "贵州省统计局" + }, + "description": { + "en": "The Guizhou Bureau of Statistics is the official statistical authority for Guizhou Province, a mountainous province in southwestern China that has experienced remarkable transformation from one of China's poorest regions to a leading hub for big data, cloud computing, and digital economy. Guizhou is also renowned for Maotai liquor production and tourism. The bureau publishes comprehensive socioeconomic statistics covering GDP, digital economy indicators, poverty alleviation outcomes, tourism revenue, industrial output, population, and agricultural data. It also releases the Guizhou Statistical Yearbook and thematic reports on big data industry development.", + "zh": "贵州省统计局是贵州省官方统计机构,贵州是中国西南部山区省份,从中国最贫困地区之一成功转型为大数据、云计算和数字经济的重要枢纽,同时以茅台酒生产和旅游业著称。统计局发布贵州省GDP、数字经济指标、脱贫攻坚成效、旅游收入、工业产值、人口和农业数据等全面社会经济统计,并出版《贵州统计年鉴》及大数据产业发展专题报告。" + }, + "website": "https://stjj.guizhou.gov.cn/", + "data_url": "https://stjj.guizhou.gov.cn/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "social", + "technology" + ], + "update_frequency": "monthly", + "tags": [ + "贵州统计", + "guizhou-statistics", + "贵州GDP", + "guizhou-gdp", + "西部大开发", + "western-china-development", + "省级统计", + "provincial-statistics", + "大数据", + "big-data", + "数字经济", + "digital-economy", + "云计算", + "cloud-computing", + "茅台", + "maotai", + "白酒", + "baijiu", + "旅游", + "tourism", + "脱贫攻坚", + "poverty-alleviation", + "统计年鉴", + "statistical-yearbook", + "人口统计", + "population-statistics", + "贵阳", + "guiyang" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Guizhou Province", + "Digital economy indicators: big data industry revenue, cloud computing capacity, data center statistics", + "Poverty alleviation outcomes: rural income growth, poverty reduction metrics, village revitalization data", + "Tourism statistics: visitor arrivals, tourism revenue, scenic area performance by region", + "Industrial production: liquor output (Maotai), phosphate chemicals, energy production statistics", + "Agricultural statistics: crop output, tobacco production, agricultural income", + "Fixed asset investment: infrastructure investment, industrial parks, tech hub development", + "Population statistics: census data, household registration, birth and death rates, urbanization", + "Employment and wages: employed persons, unemployment rate, average wages by sector", + "Guizhou Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:贵州省季度和年度GDP数据,按产业分类", + "数字经济指标:大数据产业收入、云计算容量、数据中心统计", + "脱贫攻坚成效:农村居民收入增长、减贫指标、乡村振兴数据", + "旅游统计:游客人次、旅游收入、各地景区经营情况", + "工业生产:白酒(茅台)产量、磷化工、能源生产统计", + "农业统计:粮食产量、烟草生产、农民收入", + "固定资产投资:基础设施投资、工业园区、科技园区发展", + "人口统计:人口普查数据、户籍人口、出生率和死亡率、城镇化率", + "就业与工资:从业人员数、失业率、各行业平均工资", + "贵州统计年鉴:全省各类统计数据的综合年度汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-gz-stats.json" + }, + { + "id": "china-ha-stats", + "name": { + "en": "Henan Bureau of Statistics", + "zh": "河南省统计局" + }, + "description": { + "en": "The Henan Bureau of Statistics is the official statistical authority for Henan Province, China's most populous province and a major agricultural and industrial hub in central China. It publishes comprehensive socioeconomic statistics including GDP, industrial output, agricultural production, population, employment, and consumer prices for Henan. The bureau releases the Henan Statistical Yearbook and regular economic bulletins, making it an essential data source for understanding one of China's largest provincial economies.", + "zh": "河南省统计局是河南省官方统计机构,河南是中国人口最多的省份,也是中国中部重要的农业和工业重镇。统计局发布河南省GDP、工业产值、农业生产、人口、就业和居民消费价格指数等全面的社会经济统计数据,并出版《河南统计年鉴》及定期经济运行情况报告,是了解中国最大省级经济体之一的重要数据来源。" + }, + "website": "https://tjj.henan.gov.cn/", + "data_url": "https://tjj.henan.gov.cn/tjfw/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "social", + "agriculture" + ], + "update_frequency": "monthly", + "tags": [ + "河南统计", + "henan-statistics", + "河南GDP", + "henan-gdp", + "中原经济区", + "central-plains-economic-zone", + "省级统计", + "provincial-statistics", + "人口大省", + "most-populous-province", + "农业大省", + "agricultural-province", + "工业产值", + "industrial-output", + "人口统计", + "population-statistics", + "统计年鉴", + "statistical-yearbook", + "粮食产量", + "grain-output" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Henan Province", + "Industrial production: output value by industry, major products output, industrial enterprise performance", + "Agricultural statistics: crop output (grain, cotton, oil), livestock, agricultural income", + "Population statistics: census data, household registration, birth and death rates, urbanization — Henan is China's most populous province", + "Employment and wages: employed persons, labor export statistics, average wages by sector", + "Consumer prices: CPI, PPI for Henan Province and its prefecture-level cities", + "Fixed asset investment: total investment, real estate development, infrastructure construction", + "Retail and commerce: social consumer goods retail total, market data", + "Henan Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:河南省季度和年度GDP数据,按产业分类", + "工业生产:各行业工业产值、主要产品产量、工业企业经营情况", + "农业统计:粮食(粮棉油)产量、畜牧业、农民收入", + "人口统计:人口普查数据、户籍人口、出生率和死亡率、城镇化率——河南是全国人口最多的省份", + "就业与工资:从业人员数、劳动力转移输出统计、各行业平均工资", + "消费价格:河南省及各地级市居民消费价格指数、工业品出厂价格", + "固定资产投资:全省投资总额、房地产开发、基础设施建设", + "商贸消费:社会消费品零售总额、市场数据", + "河南统计年鉴:全省各类统计数据的综合年度汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-ha-stats.json" + }, + { + "id": "china-hb-stats", + "name": { + "en": "Hubei Bureau of Statistics", + "zh": "湖北省统计局" + }, + "description": { + "en": "The Hubei Bureau of Statistics is the official statistical authority for Hubei Province, a major industrial and agricultural province in central China and home to the Three Gorges Dam. It publishes comprehensive socioeconomic statistics including GDP, industrial output, population, employment, consumer prices, and investment data for Hubei. The bureau also releases the Hubei Statistical Yearbook and regular economic bulletins, serving as the authoritative source for understanding central China's economic dynamics.", + "zh": "湖北省统计局是湖北省官方统计机构,湖北是中国中部重要的工业和农业省份,三峡大坝所在地。统计局发布湖北省GDP、工业产值、人口、就业、居民消费价格指数和固定资产投资等全面的社会经济统计数据,并出版《湖北统计年鉴》及定期经济运行情况报告,是了解中部地区经济发展的权威数据来源。" + }, + "website": "https://tjj.hubei.gov.cn/", + "data_url": "https://tjj.hubei.gov.cn/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "social", + "industry" + ], + "update_frequency": "monthly", + "tags": [ + "湖北统计", + "hubei-statistics", + "湖北GDP", + "hubei-gdp", + "中部崛起", + "central-china", + "省级统计", + "provincial-statistics", + "工业产值", + "industrial-output", + "三峡", + "three-gorges", + "固定资产投资", + "fixed-asset-investment", + "人口统计", + "population-statistics", + "统计年鉴", + "statistical-yearbook", + "经济运行", + "economic-performance" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Hubei Province", + "Industrial production: output value by industry, major products output, industrial enterprise performance", + "Fixed asset investment: total investment, real estate development, infrastructure investment", + "Population statistics: census data, household registration, birth and death rates, urbanization", + "Employment and wages: employed persons, unemployment rate, average wages by sector", + "Consumer prices: CPI, PPI for Hubei Province and major cities", + "Agricultural statistics: crop output, livestock, agricultural income", + "Social development: education, healthcare resources, social security coverage", + "Hubei Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:湖北省季度和年度GDP数据,按产业分类", + "工业生产:各行业工业产值、主要产品产量、工业企业经营情况", + "固定资产投资:全省投资总额、房地产开发、基础设施投资", + "人口统计:人口普查数据、户籍人口、出生率和死亡率、城镇化率", + "就业与工资:从业人员数、失业率、各行业平均工资", + "消费价格:湖北省及主要城市居民消费价格指数、工业品出厂价格", + "农业统计:粮食产量、畜牧业、农民收入", + "社会发展:教育、医疗卫生资源、社会保障覆盖率", + "湖北统计年鉴:全省各类统计数据的综合年度汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-hb-stats.json" + }, + { + "id": "china-heb-stats", + "name": { + "en": "Hebei Bureau of Statistics", + "zh": "河北省统计局" + }, + "description": { + "en": "The Hebei Bureau of Statistics is the official statistical authority for Hebei Province, which surrounds Beijing and Tianjin and is a major industrial, agricultural, and steel-producing region in northern China. It publishes comprehensive socioeconomic data including GDP, industrial output, fixed-asset investment, agricultural production, population, employment, consumer prices, and retail sales for Hebei Province. The bureau releases the Hebei Statistical Yearbook and regular monthly and quarterly economic bulletins, providing essential data for understanding the economy of this strategically important province in the Beijing-Tianjin-Hebei (Jing-Jin-Ji) integrated development region.", + "zh": "河北省统计局是河北省官方统计机构,河北省环绕北京和天津,是中国北方重要的工业、农业和钢铁生产基地。统计局发布河北省GDP、工业产值、固定资产投资、农业生产、人口、就业、居民消费价格指数和社会消费品零售总额等全面的社会经济数据,并出版《河北统计年鉴》及月度/季度经济运行情况报告,是了解京津冀一体化发展区域重要省份经济情况的关键数据来源。" + }, + "website": "https://tjj.hebei.gov.cn/", + "data_url": "https://tjj.hebei.gov.cn/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "social", + "industry" + ], + "update_frequency": "monthly", + "tags": [ + "河北统计", + "hebei-statistics", + "河北GDP", + "hebei-gdp", + "京津冀", + "beijing-tianjin-hebei", + "jing-jin-ji", + "省级统计", + "provincial-statistics", + "钢铁生产", + "steel-production", + "固定资产投资", + "fixed-asset-investment", + "农业产值", + "agricultural-output", + "统计年鉴", + "statistical-yearbook", + "工业经济", + "industrial-economy", + "居民收入", + "household-income", + "城镇化", + "urbanization" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Hebei Province", + "Industrial production: output value by industry, major product volumes, enterprise performance for key sectors including steel, chemicals, and equipment manufacturing", + "Fixed-asset investment: total investment by sector, region, and ownership type, including infrastructure and real estate", + "Agricultural production: crop output, livestock, aquaculture, and agricultural income for this major farming province", + "Population statistics: census data, household registration, birth and death rates, rural-urban migration", + "Employment and wages: employed persons by sector, urban unemployment rate, average wages", + "Consumer prices: CPI and PPI indices for Hebei and its major cities including Shijiazhuang, Tangshan, and Baoding", + "Social development: education, healthcare resources, social security coverage across the province", + "Hebei Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:河北省季度和年度GDP数据,按三次产业分类", + "工业生产:各行业工业产值、主要产品产量及企业运营情况,涵盖钢铁、化工、装备制造等重点行业", + "固定资产投资:按行业、地区和所有制性质分类的投资总额,包括基础设施和房地产投资", + "农业生产:主要农作物产量、畜牧业、水产养殖及农民收入,河北是中国重要的农业大省", + "人口统计:人口普查数据、户籍人口、出生率和死亡率、城乡人口流动", + "就业与工资:按行业分类的从业人员数、城镇失业率、平均工资水平", + "消费价格:河北省及石家庄、唐山、保定等主要城市的居民消费价格指数和工业品出厂价格", + "社会发展:全省教育、医疗卫生资源和社会保障覆盖情况", + "河北统计年鉴:全省各类统计数据的综合年度汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-heb-stats.json" + }, + { + "id": "china-hi-stats", + "name": { + "en": "Hainan Bureau of Statistics", + "zh": "海南省统计局" + }, + "description": { + "en": "The Hainan Bureau of Statistics is the official statistical authority for Hainan Province, China's southernmost and smallest province by land area, located on the tropical island of Hainan. Since 2018, Hainan has been designated as China's largest free trade zone (Hainan Free Trade Port), making it a unique economic policy experiment. The bureau publishes comprehensive socioeconomic statistics covering GDP, tourism (a pillar industry), tropical agriculture, international trade, real estate, and population data. It releases the Hainan Statistical Yearbook and economic bulletins reflecting the province's rapid development as a free trade hub.", + "zh": "海南省统计局是海南省官方统计机构,海南是中国最南端、陆地面积最小的省份,位于热带岛屿。2018年以来,海南被设立为中国最大的自由贸易区(海南自由贸易港),成为独特的经济政策试验区。统计局发布海南省GDP、旅游(支柱产业)、热带农业、国际贸易、房地产和人口等全面社会经济统计数据,并出版《海南统计年鉴》及经济运行情况报告,反映该省作为自由贸易港的快速发展动态。" + }, + "website": "https://stats.hainan.gov.cn/", + "data_url": "https://stats.hainan.gov.cn/hntjj/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "trade", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "海南统计", + "hainan-statistics", + "海南GDP", + "hainan-gdp", + "省级统计", + "provincial-statistics", + "海南自由贸易港", + "hainan-free-trade-port", + "旅游统计", + "tourism-statistics", + "热带农业", + "tropical-agriculture", + "国际贸易", + "international-trade", + "三亚", + "sanya", + "海口", + "haikou", + "统计年鉴", + "statistical-yearbook", + "免税购物", + "duty-free-shopping", + "房地产", + "real-estate" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Hainan Province", + "Tourism statistics: visitor arrivals (domestic and international), tourism revenue, hotel occupancy — tourism is Hainan's pillar industry", + "Free Trade Port data: import/export volumes, duty-free retail sales, foreign investment, pilot policies statistics", + "Tropical agriculture: rubber, coconut, pepper, tropical fruit production, fishery output", + "Real estate: property development, sales area, housing prices in Haikou, Sanya, and other cities", + "Population statistics: resident population, household registration, floating population, birth and death rates", + "Consumer prices: CPI and PPI for Hainan Province and its major cities", + "Employment and wages: employed persons, service sector employment, average wages by sector", + "Fixed asset investment: infrastructure construction, industrial development zones, tourism resort investment", + "Hainan Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:海南省季度和年度GDP数据,按产业分类", + "旅游统计:国内外游客人次、旅游收入、酒店入住率——旅游是海南的支柱产业", + "自由贸易港数据:进出口量、免税零售额、外商投资、试点政策统计数据", + "热带农业:橡胶、椰子、胡椒、热带水果产量、渔业产值", + "房地产:开发面积、销售面积、海口、三亚等城市房价", + "人口统计:常住人口、户籍人口、流动人口、出生率和死亡率", + "消费价格:海南省及主要城市居民消费价格指数和工业品出厂价格", + "就业与工资:从业人员数、服务业就业情况、各行业平均工资", + "固定资产投资:基础设施建设、产业开发区、旅游度假区投资", + "海南统计年鉴:全省各类统计数据的综合年度汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-hi-stats.json" + }, + { + "id": "china-hlj-stats", + "name": { + "en": "Heilongjiang Bureau of Statistics", + "zh": "黑龙江省统计局" + }, + "description": { + "en": "The Heilongjiang Bureau of Statistics is the official statistical authority for Heilongjiang Province, China's northernmost province bordering Russia. Heilongjiang is known for its rich black soil farmland (China's key grain reserve base), the Daqing oilfield (one of China's largest petroleum bases), extensive forestry resources, and growing cross-border trade with Russia. The bureau publishes comprehensive socioeconomic statistics covering GDP, grain production, petroleum output, forestry, foreign trade, population, and employment. It also releases the Heilongjiang Statistical Yearbook and periodic economic bulletins.", + "zh": "黑龙江省统计局是黑龙江省官方统计机构,黑龙江是中国最北省份,与俄罗斯接壤,以肥沃黑土地(中国重要粮食储备基地)、大庆油田(中国最大石油基地之一)、丰富的森林资源及日益增长的对俄边境贸易著称。统计局发布黑龙江省GDP、粮食产量、石油产量、林业、进出口贸易、人口和就业等全面社会经济统计数据,并出版《黑龙江统计年鉴》和定期经济运行报告。" + }, + "website": "https://tjj.hlj.gov.cn/", + "data_url": "https://tjj.hlj.gov.cn/tjj/c106777/common_zfxxgk.shtml?tab=tjxx", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "social", + "agriculture" + ], + "update_frequency": "monthly", + "tags": [ + "黑龙江统计", + "heilongjiang-statistics", + "黑龙江GDP", + "heilongjiang-gdp", + "东北振兴", + "northeast-china-revitalization", + "省级统计", + "provincial-statistics", + "粮食生产", + "grain-production", + "黑土地", + "black-soil", + "大庆油田", + "daqing-oilfield", + "石油", + "petroleum", + "林业", + "forestry", + "对俄贸易", + "russia-trade", + "统计年鉴", + "statistical-yearbook", + "人口统计", + "population-statistics", + "哈尔滨", + "harbin" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Heilongjiang Province", + "Agricultural production: grain output, soybean and rice production, black soil farmland utilization", + "Energy production: Daqing oilfield output, natural gas production, coal mining statistics", + "Forestry statistics: timber output, forest area, forest industry performance", + "Industrial production: output value by industry, enterprise performance, major product output", + "Foreign trade: cross-border trade with Russia via Harbin and border ports", + "Population statistics: census data, household registration, birth and death rates, urbanization", + "Employment and wages: employed persons, unemployment rate, average wages by sector", + "Consumer prices: CPI and PPI for Heilongjiang Province and major cities", + "Heilongjiang Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:黑龙江省季度和年度GDP数据,按产业分类", + "农业生产:粮食产量、大豆和水稻产量、黑土地利用数据", + "能源生产:大庆油田产量、天然气产量、煤炭开采统计", + "林业统计:木材产量、森林面积、林业企业经营情况", + "工业生产:各行业工业产值、企业经营情况、主要产品产量", + "对外贸易:哈尔滨及各边境口岸对俄边境贸易数据", + "人口统计:人口普查数据、户籍人口、出生率和死亡率、城镇化率", + "就业与工资:从业人员数、失业率、各行业平均工资", + "消费价格:黑龙江省及主要城市居民消费价格指数、工业品出厂价格", + "黑龙江统计年鉴:全省各类统计数据的综合年度汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-hlj-stats.json" + }, + { + "id": "china-hn-stats", + "name": { + "en": "Hunan Bureau of Statistics", + "zh": "湖南省统计局" + }, + "description": { + "en": "The Hunan Bureau of Statistics is the official statistical authority for Hunan Province, a major agricultural and increasingly industrial province in south-central China. It publishes comprehensive socioeconomic statistics including GDP, industrial output, agricultural production, population, employment, and consumer prices for Hunan. The bureau also releases the Hunan Statistical Yearbook and monthly economic bulletins, serving as the primary data source for understanding Hunan's economic transformation and development.", + "zh": "湖南省统计局是湖南省官方统计机构,湖南是中国中南部重要的农业省份,工业化进程持续推进。统计局发布湖南省GDP、工业产值、农业生产、人口、就业和居民消费价格指数等全面的社会经济统计数据,并出版《湖南统计年鉴》及月度经济运行情况报告,是了解湖南经济转型与发展的重要数据来源。" + }, + "website": "https://tjj.hunan.gov.cn/", + "data_url": "https://tjj.hunan.gov.cn/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "social", + "agriculture" + ], + "update_frequency": "monthly", + "tags": [ + "湖南统计", + "hunan-statistics", + "湖南GDP", + "hunan-gdp", + "中南地区", + "south-central-china", + "省级统计", + "provincial-statistics", + "农业统计", + "agricultural-statistics", + "工业产值", + "industrial-output", + "人口统计", + "population-statistics", + "就业数据", + "employment-data", + "统计年鉴", + "statistical-yearbook", + "消费价格指数", + "cpi" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Hunan Province", + "Industrial production: output value by industry, major products output, industrial enterprise performance", + "Agricultural statistics: crop output, farmland usage, livestock, agricultural household income", + "Population statistics: census data, household registration, birth and death rates, urbanization", + "Employment and wages: employed persons, urban unemployment rate, average wages by sector", + "Consumer prices: CPI, PPI for Hunan Province and its prefecture-level cities", + "Fixed asset investment: total investment, real estate development, infrastructure construction", + "Retail sales: social consumer goods retail total, e-commerce data", + "Hunan Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:湖南省季度和年度GDP数据,按产业分类", + "工业生产:各行业工业产值、主要产品产量、工业企业经营情况", + "农业统计:粮食产量、耕地使用、畜牧业、农村居民收入", + "人口统计:人口普查数据、户籍人口、出生率和死亡率、城镇化率", + "就业与工资:从业人员数、城镇失业率、各行业平均工资", + "消费价格:湖南省及各地级市居民消费价格指数、工业品出厂价格", + "固定资产投资:全省投资总额、房地产开发、基础设施建设", + "社会消费:社会消费品零售总额、电子商务数据", + "湖南统计年鉴:全省各类统计数据的综合年度汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-hn-stats.json" + }, + { + "id": "china-jl-stats", + "name": { + "en": "Jilin Bureau of Statistics", + "zh": "吉林省统计局" + }, + "description": { + "en": "The Jilin Bureau of Statistics is the official statistical authority for Jilin Province, located in northeastern China. Jilin is a critical grain-producing province (China's corn belt), home to China's leading automotive manufacturer FAW Group in Changchun, and a hub for the petrochemical industry. The bureau publishes comprehensive socioeconomic statistics including GDP, grain production, automotive output, industrial performance, population, employment, and trade data. It also releases the Jilin Statistical Yearbook and periodic economic bulletins covering the province's agricultural, industrial, and service sectors.", + "zh": "吉林省统计局是吉林省官方统计机构,吉林位于中国东北,是中国重要的粮食主产区(玉米带),拥有中国最大的汽车制造商一汽集团(长春)和重要的石化工业基地。统计局发布吉林省GDP、粮食产量、汽车产量、工业运行、人口、就业和贸易等全面的社会经济统计数据,并出版《吉林统计年鉴》和定期经济运行报告,涵盖全省农业、工业和服务业发展情况。" + }, + "website": "https://tjj.jl.gov.cn/", + "data_url": "https://tjj.jl.gov.cn/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "social", + "agriculture" + ], + "update_frequency": "monthly", + "tags": [ + "吉林统计", + "jilin-statistics", + "吉林GDP", + "jilin-gdp", + "东北振兴", + "northeast-china-revitalization", + "省级统计", + "provincial-statistics", + "粮食生产", + "grain-production", + "玉米", + "corn", + "汽车制造", + "automotive-manufacturing", + "一汽", + "faw-group", + "长春", + "changchun", + "统计年鉴", + "statistical-yearbook", + "人口统计", + "population-statistics", + "经济运行", + "economic-performance" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Jilin Province", + "Agricultural production: grain output, corn production, livestock, and agricultural income data", + "Industrial production: automotive output, petrochemical industry, output value by sector", + "Fixed asset investment: total investment, real estate development, infrastructure", + "Population statistics: census data, household registration, birth and death rates, urbanization", + "Employment and wages: employed persons, unemployment rate, average wages by sector", + "Consumer prices: CPI and PPI for Jilin Province and major cities", + "Foreign trade: exports, imports, and economic cooperation with Russia and Northeast Asia", + "Social development: education, healthcare resources, social security coverage", + "Jilin Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:吉林省季度和年度GDP数据,按产业分类", + "农业生产:粮食产量、玉米产量、畜牧业及农民收入数据", + "工业生产:汽车产量、石化工业、各行业工业产值", + "固定资产投资:全省投资总额、房地产开发、基础设施投资", + "人口统计:人口普查数据、户籍人口、出生率和死亡率、城镇化率", + "就业与工资:从业人员数、失业率、各行业平均工资", + "消费价格:吉林省及主要城市居民消费价格指数、工业品出厂价格", + "对外贸易:进出口数据及与俄罗斯、东北亚经济合作情况", + "社会发展:教育、医疗卫生资源、社会保障覆盖率", + "吉林统计年鉴:全省各类统计数据的综合年度汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-jl-stats.json" + }, + { + "id": "china-js-stats", + "name": { + "en": "Jiangsu Bureau of Statistics", + "zh": "江苏省统计局" + }, + "description": { + "en": "The Jiangsu Bureau of Statistics is the official statistical agency for Jiangsu Province, China's second-largest provincial economy by GDP and a key manufacturing, technology, and export hub in the Yangtze River Delta region. It publishes authoritative statistics on Jiangsu's economic performance, including GDP, industrial output, fixed asset investment, retail consumption, foreign direct investment, rural and urban household income, and demographic indicators. The Jiangsu Statistical Yearbook and regular economic bulletins provide comprehensive coverage of one of China's wealthiest and most dynamic provinces.", + "zh": "江苏省统计局是江苏省官方统计机构,江苏是中国GDP总量第二大省份,是长三角地区重要的制造业、科技和出口基地。统计局发布江苏经济运行权威数据,涵盖GDP、工业产值、固定资产投资、社会消费品零售总额、外商直接投资、城乡居民收入及人口指标。《江苏统计年鉴》和定期经济运行公报全面展示了中国最富裕、最具活力省份之一的发展情况。" + }, + "website": "https://tj.jiangsu.gov.cn/", + "data_url": "https://tj.jiangsu.gov.cn/col/col85273/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "social", + "industry" + ], + "update_frequency": "monthly", + "tags": [ + "江苏统计", + "jiangsu-statistics", + "江苏GDP", + "jiangsu-gdp", + "长三角", + "yangtze-river-delta", + "省级统计", + "provincial-statistics", + "制造业", + "manufacturing", + "固定资产投资", + "fixed-asset-investment", + "外商投资", + "fdi", + "居民收入", + "household-income", + "统计年鉴", + "statistical-yearbook" + ], + "data_content": { + "en": [ + "GDP and value-added output: quarterly and annual gross domestic product by industry and expenditure approach for Jiangsu", + "Industrial enterprises: output value, profits, assets, and liabilities of industrial enterprises above designated size", + "Fixed asset investment: total investment, by sector, source of funding, and construction type", + "Foreign trade and investment: import/export statistics, FDI inflows by industry and country of origin", + "Retail and services: total retail sales of consumer goods, e-commerce, and services sector growth", + "Population and labor: census data, labor force participation, registered unemployment, migrant workers", + "Urban-rural income: per capita disposable income, consumption expenditure by urban and rural households", + "Jiangsu Statistical Yearbook: annual comprehensive statistical publication covering all provincial data" + ], + "zh": [ + "GDP与增加值:江苏省按产业和支出法核算的季度和年度地区生产总值", + "工业企业:规模以上工业企业的产值、利润、资产及负债情况", + "固定资产投资:按行业、资金来源和建设类型分类的总投资情况", + "对外贸易与投资:进出口统计、按行业和来源国分类的外商直接投资", + "消费与服务:社会消费品零售总额、电子商务及服务业增长", + "人口与劳动力:普查数据、劳动力参与率、登记失业率、外来务工人员", + "城乡收入:城乡居民人均可支配收入、消费支出情况", + "江苏统计年鉴:涵盖全省各类数据的综合年度统计出版物" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-js-stats.json" + }, + { + "id": "china-jx-stats", + "name": { + "en": "Jiangxi Bureau of Statistics", + "zh": "江西省统计局" + }, + "description": { + "en": "The Jiangxi Bureau of Statistics is the official statistical authority for Jiangxi Province, a landlocked province in southeastern China known for its rare earth resources, copper mining, and growing manufacturing sector. It publishes comprehensive socioeconomic data including GDP, industrial output, fixed-asset investment, agricultural production, population, employment, and consumer prices for Jiangxi Province. The bureau releases the Jiangxi Statistical Yearbook and regular economic bulletins, providing key data for tracking the province's economic transformation from a resource-based economy toward advanced manufacturing, electronics, and logistics.", + "zh": "江西省统计局是江西省官方统计机构,江西省位于中国东南内陆,以稀土资源、铜矿采掘和新兴制造业著称。统计局发布江西省GDP、工业产值、固定资产投资、农业生产、人口、就业及居民消费价格指数等全面的社会经济数据,并出版《江西统计年鉴》及定期经济情况报告,为追踪江西省从资源型经济向先进制造业、电子产业和物流业转型提供关键数据。" + }, + "website": "https://tjj.jiangxi.gov.cn/", + "data_url": "https://tjj.jiangxi.gov.cn/jxstjj/col/col40939/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "social", + "resources" + ], + "update_frequency": "monthly", + "tags": [ + "江西统计", + "jiangxi-statistics", + "江西GDP", + "jiangxi-gdp", + "省级统计", + "provincial-statistics", + "稀土", + "rare-earth", + "铜矿", + "copper-mining", + "统计年鉴", + "statistical-yearbook", + "固定资产投资", + "fixed-asset-investment", + "工业经济", + "industrial-economy", + "先进制造业", + "advanced-manufacturing", + "电子信息产业", + "electronics-industry", + "居民收入", + "household-income", + "农业产值", + "agricultural-output" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Jiangxi Province", + "Industrial production: output value by industry including key sectors such as rare earth processing, copper smelting, electronics, and automotive parts", + "Fixed-asset investment: total investment by sector and ownership type, including infrastructure, manufacturing, and real estate", + "Agricultural production: crop output, forestry, livestock, and aquaculture data for this traditional agricultural province", + "Population and demographics: census data, household registration, birth and death rates, urbanization rate", + "Employment and wages: employed persons by industry, urban unemployment rate, average wages by sector", + "Consumer prices: CPI and PPI indices for Jiangxi and major cities including Nanchang, Ganzhou, and Jingdezhen", + "Foreign trade and investment: import and export values, foreign direct investment by sector", + "Jiangxi Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:江西省季度和年度GDP数据,按三次产业分类", + "工业生产:各行业工业产值,涵盖稀土加工、铜冶炼、电子信息、汽车零部件等重点行业产量", + "固定资产投资:按行业和所有制分类的投资总额,包括基础设施、制造业和房地产投资", + "农业生产:农作物产量、林业、畜牧业和水产养殖数据,江西是传统农业大省", + "人口与人口结构:人口普查数据、户籍人口、出生率和死亡率、城镇化率", + "就业与工资:按行业分类的从业人员数、城镇失业率、各行业平均工资", + "消费价格:江西省及南昌、赣州、景德镇等主要城市的居民消费价格指数和工业品出厂价格", + "对外贸易与投资:进出口总额、按行业分类的外商直接投资", + "江西统计年鉴:全省各类统计数据的综合年度汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-jx-stats.json" + }, + { + "id": "china-ln-stats", + "name": { + "en": "Liaoning Bureau of Statistics", + "zh": "辽宁省统计局" + }, + "description": { + "en": "The Liaoning Bureau of Statistics is the official statistical authority for Liaoning Province, a major northeastern industrial base in China known for heavy industry, steel production, petrochemicals, and defense manufacturing. Key cities include Shenyang and Dalian. The bureau publishes comprehensive socioeconomic statistics covering GDP, industrial output, fixed asset investment, trade, employment, and population data for Liaoning. It also releases the Liaoning Statistical Yearbook, monthly economic bulletins, and special thematic reports on industrial and urban development.", + "zh": "辽宁省统计局是辽宁省官方统计机构,辽宁是中国重要的东北老工业基地,以重工业、钢铁、石化和国防工业著称,主要城市包括沈阳和大连。统计局发布辽宁省GDP、工业产值、固定资产投资、进出口贸易、就业和人口等全面的社会经济统计数据,并出版《辽宁统计年鉴》、每月经济运行报告及专项统计报告。" + }, + "website": "https://tjj.ln.gov.cn/", + "data_url": "https://tjj.ln.gov.cn/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "social", + "industry" + ], + "update_frequency": "monthly", + "tags": [ + "辽宁统计", + "liaoning-statistics", + "辽宁GDP", + "liaoning-gdp", + "东北振兴", + "northeast-china-revitalization", + "省级统计", + "provincial-statistics", + "重工业", + "heavy-industry", + "钢铁生产", + "steel-production", + "石化工业", + "petrochemical-industry", + "固定资产投资", + "fixed-asset-investment", + "人口统计", + "population-statistics", + "统计年鉴", + "statistical-yearbook", + "经济运行", + "economic-performance", + "沈阳", + "shenyang", + "大连", + "dalian" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Liaoning Province", + "Industrial production: output value by industry, major products output, industrial enterprise performance", + "Fixed asset investment: total investment, real estate development, infrastructure investment", + "Foreign trade: exports and imports data for Liaoning's open ports and special economic zones", + "Population statistics: census data, household registration, birth and death rates, urbanization", + "Employment and wages: employed persons, unemployment rate, average wages by sector", + "Consumer prices: CPI, PPI for Liaoning Province and major cities", + "Agricultural statistics: crop output, livestock, fishery production", + "Social development: education, healthcare resources, social security coverage", + "Liaoning Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:辽宁省季度和年度GDP数据,按产业分类", + "工业生产:各行业工业产值、主要产品产量、工业企业经营情况", + "固定资产投资:全省投资总额、房地产开发、基础设施投资", + "对外贸易:辽宁省各开放口岸和特殊经济区进出口数据", + "人口统计:人口普查数据、户籍人口、出生率和死亡率、城镇化率", + "就业与工资:从业人员数、失业率、各行业平均工资", + "消费价格:辽宁省及主要城市居民消费价格指数、工业品出厂价格", + "农业统计:粮食产量、畜牧业、渔业生产", + "社会发展:教育、医疗卫生资源、社会保障覆盖率", + "辽宁统计年鉴:全省各类统计数据的综合年度汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-ln-stats.json" + }, + { + "id": "china-nanchang-stats", + "name": { + "en": "Nanchang Bureau of Statistics", + "zh": "南昌市统计局" + }, + "description": { + "en": "The Nanchang Bureau of Statistics is the official statistical authority for Nanchang, the capital of Jiangxi Province in southeastern China. Nanchang is a major industrial and transportation hub known for its aviation, electronics, and automobile manufacturing sectors. The bureau publishes comprehensive socioeconomic data including GDP, industrial output, investment, consumption, employment, and population statistics for Nanchang Municipality, and releases the Nanchang Statistical Yearbook and periodic economic bulletins.", + "zh": "南昌市统计局是南昌市官方统计机构,南昌是江西省省会,位于中国东南部,是重要的工业和交通枢纽,以航空、电子和汽车制造业著称。统计局发布南昌市GDP、工业产值、投资、消费、就业和人口等全面的社会经济数据,出版《南昌统计年鉴》及定期经济运行情况报告。" + }, + "website": "http://tjj.nc.gov.cn", + "data_url": "http://tjj.nc.gov.cn/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "economics", + "statistics", + "industry", + "social" + ], + "geographic_scope": "subnational", + "update_frequency": "monthly", + "tags": [ + "南昌统计", + "nanchang-statistics", + "南昌GDP", + "nanchang-gdp", + "江西经济", + "jiangxi-economy", + "南昌统计年鉴", + "nanchang-statistical-yearbook", + "航空产业", + "aviation-industry", + "汽车制造", + "automobile-manufacturing", + "电子产业", + "electronics-industry", + "固定资产投资", + "fixed-asset-investment", + "城镇化", + "urbanization", + "中部崛起", + "central-china-rise" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Nanchang", + "Industrial production: output from key sectors including aviation, electronics, and automobile manufacturing", + "Fixed asset investment: total investment by industry, infrastructure, and real estate development", + "Retail and consumption: total retail sales of consumer goods, consumer price index", + "Employment and wages: employed persons, urban unemployment rate, average wages", + "Population: resident population, household registration data, urbanization rate", + "Foreign trade and investment: export/import volumes, utilized FDI", + "Nanchang Statistical Yearbook: comprehensive annual compilation of municipal statistics", + "Monthly economic bulletins: key economic indicators and trend analysis" + ], + "zh": [ + "GDP与经济增长:南昌市按产业分类的季度和年度GDP数据", + "工业生产:航空、电子和汽车制造等重点产业产值", + "固定资产投资:分行业、基础设施和房地产开发总投资额", + "消费与零售:社会消费品零售总额、居民消费价格指数", + "就业与工资:从业人员数、城镇登记失业率、平均工资", + "人口:常住人口、户籍人口数据、城镇化率", + "对外贸易与投资:进出口总额、实际利用外商直接投资", + "南昌统计年鉴:全市各类统计数据综合年度汇编", + "月度经济形势报告:主要经济指标及趋势分析" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-nanchang-stats.json" + }, + { + "id": "china-nanjing-stats", + "name": { + "en": "Nanjing Bureau of Statistics", + "zh": "南京市统计局" + }, + "description": { + "en": "The Nanjing Bureau of Statistics is the official statistical authority for Nanjing, the capital of Jiangsu Province and one of China's most historically significant cities. As a key node of the Yangtze River Delta economic cluster, Nanjing is a major center for advanced manufacturing, higher education, and digital economy. The bureau publishes comprehensive socioeconomic statistics covering GDP, industrial output, innovation indicators, employment, and population for Nanjing. It releases the Nanjing Statistical Yearbook and periodic economic bulletins, serving as the authoritative source for this rapidly growing new-economy metropolis in eastern China.", + "zh": "南京市统计局是南京市官方统计机构。南京是江苏省省会,是中国历史最悠久的城市之一,也是长三角城市群的重要节点。南京是先进制造业、高等教育和数字经济的重要中心。统计局发布南京市GDP、工业产值、创新指标、就业及人口等全面的社会经济统计数据,出版《南京统计年鉴》及定期经济运行情况报告,是了解华东地区这一快速发展新经济都市的权威数据来源。" + }, + "website": "https://tjj.nanjing.gov.cn/", + "data_url": "https://tjj.nanjing.gov.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "industry", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "南京统计", + "nanjing-statistics", + "南京GDP", + "nanjing-gdp", + "长三角", + "yangtze-river-delta", + "江苏经济", + "jiangsu-economy", + "南京统计年鉴", + "nanjing-statistical-yearbook", + "数字经济", + "digital-economy", + "集成电路", + "integrated-circuits", + "新能源汽车", + "new-energy-vehicles", + "高校城市", + "university-city", + "先进制造业", + "advanced-manufacturing" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Nanjing", + "Industrial production: output from strategic industries including integrated circuits, new energy vehicles, biomedicine, and aerospace", + "Digital economy: software and information technology services revenue, digital industry output", + "Innovation indicators: R&D expenditure, patents granted, high-tech enterprise count", + "Fixed asset investment: total investment, infrastructure, real estate development, industrial projects", + "Retail and consumption: total retail sales of consumer goods, consumer price index", + "Employment and wages: employed persons, urban unemployment rate, average wages by sector", + "Population: resident population, household registration, urbanization rate", + "Foreign trade and investment: export/import volumes, actually utilized FDI", + "Nanjing Statistical Yearbook: comprehensive annual compilation of all municipal statistics" + ], + "zh": [ + "GDP与经济增长:南京市按产业分类的季度和年度GDP数据", + "工业生产:集成电路、新能源汽车、生物医药、航空航天等战略性产业产值", + "数字经济:软件和信息技术服务业营业收入、数字产业产值", + "创新指标:研发经费支出、专利授权量、高新技术企业数量", + "固定资产投资:全市总投资额、基础设施、房地产开发、工业项目投资", + "消费与零售:社会消费品零售总额、居民消费价格指数", + "就业与工资:从业人员数、城镇登记失业率、各行业平均工资", + "人口:常住人口、户籍人口、城镇化率", + "对外贸易与投资:进出口总额、实际利用外商直接投资", + "南京统计年鉴:全市各类统计数据的综合年度汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-nanjing-stats.json" + }, + { + "id": "china-nm-stats", + "name": { + "en": "Inner Mongolia Bureau of Statistics", + "zh": "内蒙古自治区统计局" + }, + "description": { + "en": "The Inner Mongolia Bureau of Statistics is the official statistical authority for the Inner Mongolia Autonomous Region, China's third largest administrative division and a vast steppe-dominated autonomous region in northern China bordering Russia and Mongolia. Inner Mongolia is China's largest producer of coal, rare earth elements, and cashmere, and a leading region for wind and solar power generation. The bureau publishes comprehensive socioeconomic statistics covering GDP, energy and mineral production, animal husbandry, new energy capacity, population (including Mongolian ethnic minority data), and ecological conservation outcomes. It also releases the Inner Mongolia Statistical Yearbook.", + "zh": "内蒙古自治区统计局是内蒙古自治区官方统计机构,内蒙古是中国第三大行政区划,是北接俄罗斯和蒙古国的广袤草原自治区。内蒙古是全国最大的煤炭、稀土和羊绒产地,也是风能和太阳能发电的领先地区。统计局发布内蒙古GDP、能源和矿产产量、畜牧业、新能源装机容量、人口(含蒙古族少数民族数据)及生态保护成效等全面社会经济统计,并出版《内蒙古统计年鉴》。" + }, + "website": "http://tj.nmg.gov.cn", + "data_url": "http://tj.nmg.gov.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "energy", + "agriculture" + ], + "update_frequency": "monthly", + "tags": [ + "内蒙古统计", + "inner-mongolia-statistics", + "内蒙古GDP", + "inner-mongolia-gdp", + "省级统计", + "provincial-statistics", + "煤炭", + "coal", + "稀土", + "rare-earth", + "风能", + "wind-energy", + "太阳能", + "solar-energy", + "新能源", + "new-energy", + "羊绒", + "cashmere", + "畜牧业", + "animal-husbandry", + "草原", + "steppe", + "蒙古族", + "mongolian-ethnic", + "统计年鉴", + "statistical-yearbook", + "呼和浩特", + "hohhot" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Inner Mongolia", + "Coal production: annual and monthly coal output, making Inner Mongolia China's top coal-producing region", + "Rare earth industry: extraction volume, smelting output, and processing statistics for rare earth elements", + "New energy statistics: wind power installed capacity and generation, solar photovoltaic capacity and output", + "Animal husbandry: livestock population (sheep, cattle, horses), wool and cashmere production, dairy output", + "Industrial output: energy and chemical industries, metallurgy, equipment manufacturing statistics", + "Agricultural statistics: grain output, grassland area, desertification control outcomes", + "Population statistics: total population, Mongolian and other ethnic minority population data, urbanization", + "Employment and wages: employed persons, unemployment rate, average wages by sector", + "Inner Mongolia Statistical Yearbook: comprehensive annual compilation of all regional statistics" + ], + "zh": [ + "GDP与经济增长:内蒙古季度和年度GDP数据,按产业分类", + "煤炭生产:年度及月度煤炭产量,内蒙古是全国最大煤炭产区", + "稀土产业:稀土开采量、冶炼产量及加工统计", + "新能源统计:风电装机容量和发电量、光伏装机容量和发电量", + "畜牧业:牲畜存栏量(羊、牛、马)、羊毛和羊绒产量、乳品产量", + "工业产值:能源和化工、冶金、装备制造业统计", + "农业统计:粮食产量、草原面积、荒漠化治理成效", + "人口统计:全区人口、蒙古族及其他少数民族人口数据、城镇化率", + "就业与工资:从业人员数、失业率、各行业平均工资", + "内蒙古统计年鉴:全区各类统计数据的综合年度汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-nm-stats.json" + }, + { + "id": "china-nx-stats", + "name": { + "en": "Ningxia Bureau of Statistics", + "zh": "宁夏回族自治区统计局" + }, + "description": { + "en": "The Ningxia Bureau of Statistics is the official statistical authority for the Ningxia Hui Autonomous Region, China's only provincial-level administrative region for the Hui Muslim ethnic group. Located in northwestern China along the upper Yellow River, Ningxia is a key producer of coal, natural gas, and chemicals, and is also emerging as a major wine region (Helan Mountain). The bureau publishes comprehensive socioeconomic statistics covering GDP, industrial output (especially energy and chemicals), agricultural production (including wolfberry cultivation), population, employment, and consumer prices. It releases the Ningxia Statistical Yearbook and regular economic bulletins.", + "zh": "宁夏回族自治区统计局是宁夏回族自治区的官方统计机构,宁夏是中国唯一的回族省级行政区划,位于中国西北部黄河上游地区。宁夏是重要的煤炭、天然气和化工产品生产基地,同时也是新兴葡萄酒产区(贺兰山东麓)。统计局发布宁夏GDP、工业产值(尤其是能源和化工)、农业生产(包括枸杞种植)、人口、就业和居民消费价格指数等全面社会经济统计,并出版《宁夏统计年鉴》及定期经济运行情况报告。" + }, + "website": "https://tj.nx.gov.cn/", + "data_url": "https://tj.nx.gov.cn/tjsj_htr/jdsj_htr/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "energy", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "宁夏统计", + "ningxia-statistics", + "宁夏GDP", + "ningxia-gdp", + "省级统计", + "provincial-statistics", + "回族自治区", + "hui-autonomous-region", + "能源生产", + "energy-production", + "煤炭", + "coal", + "化工", + "chemicals", + "枸杞", + "wolfberry", + "贺兰山葡萄酒", + "helan-mountain-wine", + "黄河流域", + "yellow-river-basin", + "统计年鉴", + "statistical-yearbook", + "西部大开发", + "western-china-development" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Ningxia Hui Autonomous Region", + "Energy production: coal output, natural gas extraction, electricity generation, and renewable energy data", + "Industrial output: chemical industry, non-ferrous metals, equipment manufacturing, and energy sector statistics", + "Agricultural statistics: wolfberry (Ningxia is the world's largest wolfberry producer), grain output, livestock, wine grapes", + "Population and ethnic statistics: census data including Hui Muslim population, household registration, urbanization rates", + "Employment and wages: employed persons, unemployment rate, average wages by sector", + "Consumer prices: CPI and PPI for Ningxia and its prefecture-level cities (Yinchuan, Shizuishan, Wuzhong, etc.)", + "Fixed asset investment: total investment by sector, infrastructure construction, industry development zones", + "Trade and commerce: imports and exports through border ports, social consumer goods retail total", + "Ningxia Statistical Yearbook: comprehensive annual compilation of all regional statistics" + ], + "zh": [ + "GDP与经济增长:宁夏回族自治区季度和年度GDP数据,按产业分类", + "能源生产:煤炭产量、天然气开采量、发电量及新能源数据", + "工业产值:化工、有色金属、装备制造、能源行业统计数据", + "农业统计:枸杞产量(宁夏是全球最大枸杞产区)、粮食产量、畜牧业、酿酒葡萄", + "人口与民族统计:含回族人口数量的普查数据、户籍人口、城镇化率", + "就业与工资:从业人员数、失业率、各行业平均工资", + "消费价格:宁夏及各地级市(银川、石嘴山、吴忠等)居民消费价格指数和工业品出厂价格", + "固定资产投资:各行业投资总额、基础设施建设、产业开发区发展", + "贸易与商业:口岸进出口数据、社会消费品零售总额", + "宁夏统计年鉴:全区各类统计数据的综合年度汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-nx-stats.json" + }, + { + "id": "china-qh-stats", + "name": { + "en": "Qinghai Bureau of Statistics", + "zh": "青海省统计局" + }, + "description": { + "en": "The Qinghai Bureau of Statistics is the official statistical authority for Qinghai Province, China's fourth largest province by area, located on the northeastern Tibetan Plateau at an average elevation exceeding 3,000 meters. Qinghai is the source of the Yangtze, Yellow, and Mekong rivers — earning it the title of 'China's Water Tower' — and is a critical ecological conservation zone. The province is rich in lithium, potassium, and other strategic minerals, and is emerging as a leader in clean energy production. The bureau publishes comprehensive socioeconomic statistics covering GDP, lithium and potash mining, clean energy generation (solar, wind, hydro), ecological indicators, animal husbandry, and population data for this ethnically diverse plateau region. It also releases the Qinghai Statistical Yearbook.", + "zh": "青海省统计局是青海省官方统计机构,青海是中国第四大省份,位于青藏高原东北部,平均海拔超过3000米。青海是长江、黄河和澜沧江的发源地,被誉为\"中华水塔\",是重要的生态保护区。青海富含锂、钾盐等战略矿产,同时正成为清洁能源生产的领先地区。统计局发布青海省GDP、锂矿和钾盐开采、清洁能源发电(太阳能、风能、水电)、生态指标、畜牧业及这一多民族高原地区人口数据等全面社会经济统计,并出版《青海统计年鉴》。" + }, + "website": "https://tjj.qinghai.gov.cn/", + "data_url": "https://tjj.qinghai.gov.cn/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "energy", + "environment" + ], + "update_frequency": "monthly", + "tags": [ + "青海统计", + "qinghai-statistics", + "青海GDP", + "qinghai-gdp", + "省级统计", + "provincial-statistics", + "中华水塔", + "china-water-tower", + "青藏高原", + "tibetan-plateau", + "锂矿", + "lithium", + "钾盐", + "potash", + "清洁能源", + "clean-energy", + "太阳能", + "solar-energy", + "水电", + "hydropower", + "生态保护", + "ecological-conservation", + "畜牧业", + "animal-husbandry", + "长江源", + "yangtze-river-source", + "黄河源", + "yellow-river-source", + "统计年鉴", + "statistical-yearbook", + "西宁", + "xining" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Qinghai Province", + "Lithium and strategic minerals: lithium carbonate output, potash (potassium chloride) mining and export volumes", + "Clean energy generation: solar power installed capacity and output, wind power, hydropower generation statistics", + "Ecological indicators: water quality of Yangtze/Yellow/Mekong river sources, grassland coverage, wetland area", + "Animal husbandry: yak, sheep, and Tibetan antelope population data, wool and dairy production", + "Industrial output: salt lake chemical industry, non-ferrous metals processing, new materials manufacturing", + "Agricultural statistics: barley (highland barley/qingke), cold-climate vegetables, medicinal herbs", + "Population statistics: census data, Tibetan, Hui, and other ethnic minority population composition", + "Employment and wages: employed persons, unemployment rate, average wages by sector", + "Qinghai Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:青海省季度和年度GDP数据,按产业分类", + "锂矿及战略矿产:碳酸锂产量、钾盐(氯化钾)开采和出口量", + "清洁能源发电:光伏装机容量和发电量、风电、水力发电统计", + "生态指标:长江/黄河/澜沧江源头水质、草地覆盖率、湿地面积", + "畜牧业:牦牛、绵羊和藏羚羊种群数据、羊毛和乳品产量", + "工业产值:盐湖化工产业、有色金属加工、新材料制造", + "农业统计:青稞(高原大麦)、高原蔬菜、中药材", + "人口统计:人口普查数据、藏族、回族及其他少数民族人口构成", + "就业与工资:从业人员数、失业率、各行业平均工资", + "青海统计年鉴:全省各类统计数据的综合年度汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-qh-stats.json" + }, + { + "id": "china-qingdao-stats", + "name": { + "en": "Qingdao Bureau of Statistics", + "zh": "青岛市统计局" + }, + "description": { + "en": "The Qingdao Bureau of Statistics is the official statistical authority for Qingdao, a coastal metropolis in Shandong Province and one of China's most important port cities. Qingdao is a major hub for maritime trade, advanced manufacturing, marine research, and digital economy, home to major global companies including Haier and Hisense. The bureau publishes comprehensive socioeconomic statistics covering GDP, industrial output, port throughput, foreign trade, fixed asset investment, consumption, population, and employment. It releases the Qingdao Statistical Yearbook and periodic reports on the city's development as a pilot free trade zone and key node in China's maritime economy and Blue Economy strategy.", + "zh": "青岛市统计局是青岛市的官方统计机构,青岛是山东省的沿海大城市,是中国重要的港口城市之一,也是海洋贸易、先进制造业、海洋科研和数字经济的重要枢纽,海尔、海信等全球知名企业的总部均设于此。统计局发布青岛市GDP、工业产值、港口吞吐量、对外贸易、固定资产投资、消费、人口和就业等全面的社会经济统计数据,出版《青岛统计年鉴》及青岛作为自由贸易试验区、海洋经济和蓝色经济发展战略重要节点城市的定期报告。" + }, + "website": "http://qdtj.qingdao.gov.cn/", + "data_url": "http://qdtj.qingdao.gov.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "trade", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "青岛统计", + "qingdao-statistics", + "青岛GDP", + "qingdao-gdp", + "山东经济", + "shandong-economy", + "青岛统计年鉴", + "qingdao-statistical-yearbook", + "港口", + "port", + "海洋经济", + "marine-economy", + "蓝色经济", + "blue-economy", + "自由贸易区", + "free-trade-zone", + "海尔", + "haier", + "先进制造", + "advanced-manufacturing", + "对外贸易", + "foreign-trade", + "港口吞吐量", + "port-throughput" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Qingdao municipality", + "Industrial production: output from key industries including home appliances, rail transit equipment, new energy vehicles, and biomedicine", + "Port and trade statistics: cargo throughput, container volumes, and foreign trade import/export data", + "Marine economy: output value of marine industries, fisheries production, and marine science and technology indicators", + "Fixed asset investment: total investment, infrastructure, real estate development, and industrial project data", + "Retail and consumption: total retail sales of consumer goods, consumer price index, and e-commerce", + "Employment and wages: employed persons, urban unemployment rate, and average wages by sector", + "Population: resident population, household registration, and urbanization indicators", + "Qingdao Statistical Yearbook: comprehensive annual compilation covering all economic and social statistics", + "Free trade zone data: Qingdao Pilot Free Trade Zone economic performance and trade facilitation indicators" + ], + "zh": [ + "GDP与经济增长:青岛市按产业分类的季度和年度GDP数据", + "工业生产:家电、轨道交通装备、新能源汽车、生物医药等重点产业产值", + "港口与贸易统计:货物吞吐量、集装箱量和进出口贸易数据", + "海洋经济:海洋产业总产值、渔业生产量和海洋科技指标", + "固定资产投资:全市总投资、基础设施、房地产开发和工业项目数据", + "消费与零售:社会消费品零售总额、居民消费价格指数和电子商务", + "就业与工资:从业人员数、城镇登记失业率和各行业平均工资", + "人口:常住人口、户籍人口和城镇化指标", + "青岛统计年鉴:涵盖所有经济和社会统计数据的综合年度汇编", + "自由贸易区数据:中国(山东)自由贸易试验区青岛片区经济运行及贸易便利化指标" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-qingdao-stats.json" + }, + { + "id": "china-sc-stats", + "name": { + "en": "Sichuan Bureau of Statistics", + "zh": "四川省统计局" + }, + "description": { + "en": "The Sichuan Bureau of Statistics is the official statistical authority for Sichuan Province, a major western China province known for its large population, significant industrial base, and strategic importance as a gateway to southwest China. It publishes comprehensive socioeconomic statistics including GDP, industrial output, agricultural production, population, employment, and consumer prices for Sichuan. The bureau releases the Sichuan Statistical Yearbook and regular economic bulletins, making it a key data source for understanding western China's largest provincial economy.", + "zh": "四川省统计局是四川省官方统计机构,四川是西部大省,以庞大的人口规模、重要的工业基础和作为西南地区门户的战略地位而著称。统计局发布四川省GDP、工业产值、农业生产、人口、就业和居民消费价格指数等全面的社会经济统计数据,并出版《四川统计年鉴》及定期经济运行情况报告,是了解西部最大省级经济体的重要数据来源。" + }, + "website": "https://tjj.sc.gov.cn/", + "data_url": "https://tjj.sc.gov.cn/scstjj/c112124/sjcx.shtml", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "social", + "industry" + ], + "update_frequency": "monthly", + "tags": [ + "四川统计", + "sichuan-statistics", + "四川GDP", + "sichuan-gdp", + "西部大开发", + "western-china-development", + "省级统计", + "provincial-statistics", + "成都经济圈", + "chengdu-economic-circle", + "工业产值", + "industrial-output", + "农业统计", + "agricultural-statistics", + "人口统计", + "population-statistics", + "统计年鉴", + "statistical-yearbook", + "成渝地区双城经济圈", + "chengdu-chongqing-dual-city-economic-circle" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Sichuan Province", + "Industrial production: output value by industry, major products output, industrial enterprise performance including defense and aerospace industries", + "Agricultural statistics: crop output, livestock, agricultural income — Sichuan is a major grain and pork producer", + "Fixed asset investment: total investment, real estate development, infrastructure construction", + "Population statistics: census data, household registration, birth and death rates, urbanization — Sichuan is one of China's most populous provinces", + "Employment and wages: employed persons, labor migration, average wages by sector", + "Consumer prices: CPI, PPI for Sichuan Province and Chengdu metropolitan area", + "Energy and resources: natural gas production and consumption, hydropower statistics", + "Sichuan Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:四川省季度和年度GDP数据,按产业分类", + "工业生产:各行业工业产值、主要产品产量、工业企业经营情况,包括国防和航空航天产业", + "农业统计:粮食产量、畜牧业(四川是主要粮食和生猪产地)、农民收入", + "固定资产投资:全省投资总额、房地产开发、基础设施建设", + "人口统计:人口普查数据、户籍人口、出生率和死亡率、城镇化率——四川是全国人口大省之一", + "就业与工资:从业人员数、劳动力转移统计、各行业平均工资", + "消费价格:四川省及成都都市圈居民消费价格指数、工业品出厂价格", + "能源与资源:天然气生产和消费、水电统计数据", + "四川统计年鉴:全省各类统计数据的综合年度汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-sc-stats.json" + }, + { + "id": "china-sd-stats", + "name": { + "en": "Shandong Bureau of Statistics", + "zh": "山东省统计局" + }, + "description": { + "en": "The Shandong Bureau of Statistics is the official statistical authority for Shandong Province, one of China's most economically significant provinces and a leading hub for manufacturing, agriculture, and coastal trade. It publishes comprehensive socioeconomic statistics including GDP, industrial output, agricultural production, trade, and population data for Shandong. The bureau also releases the Shandong Statistical Yearbook and regular economic bulletins, serving as a critical data source for understanding one of China's top-three provincial economies.", + "zh": "山东省统计局是山东省官方统计机构,山东是中国经济总量前三的重要省份,制造业、农业和沿海贸易的重要枢纽。统计局发布山东省GDP、工业产值、农业生产、对外贸易和人口统计等全面数据,并出版《山东统计年鉴》及定期经济运行情况报告,是了解中国最重要省级经济体之一的权威数据来源。" + }, + "website": "https://tjj.shandong.gov.cn/", + "data_url": "https://tjj.shandong.gov.cn/col/col8456/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "social", + "trade" + ], + "update_frequency": "monthly", + "tags": [ + "山东统计", + "shandong-statistics", + "山东GDP", + "shandong-gdp", + "黄河流域", + "yellow-river-basin", + "省级统计", + "provincial-statistics", + "制造业", + "manufacturing", + "农业统计", + "agricultural-statistics", + "对外贸易", + "foreign-trade", + "人口统计", + "population-statistics", + "统计年鉴", + "statistical-yearbook", + "工业产值", + "industrial-output" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Shandong Province", + "Industrial production: output value by industry, major products output, industrial enterprise performance", + "Agricultural statistics: crop output, aquaculture, livestock, agricultural household income", + "Foreign trade: import and export value by commodity and trading partner", + "Population statistics: census data, household registration, birth and death rates, urbanization", + "Employment and wages: employed persons, urban unemployment rate, average wages by sector", + "Consumer prices: CPI, PPI for Shandong Province and its prefecture-level cities", + "Fixed asset investment: total investment, real estate development, infrastructure construction", + "Shandong Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:山东省季度和年度GDP数据,按产业分类", + "工业生产:各行业工业产值、主要产品产量、工业企业经营情况", + "农业统计:粮食产量、水产养殖、畜牧业、农民收入", + "对外贸易:按商品类别和贸易伙伴分类的进出口数据", + "人口统计:人口普查数据、户籍人口、出生率和死亡率、城镇化率", + "就业与工资:从业人员数、城镇失业率、各行业平均工资", + "消费价格:山东省及各地级市居民消费价格指数、工业品出厂价格", + "固定资产投资:全省投资总额、房地产开发、基础设施建设", + "山东统计年鉴:全省各类统计数据的综合年度汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-sd-stats.json" + }, + { + "id": "china-shanghai-stats", + "name": { + "en": "Shanghai Municipal Bureau of Statistics", + "zh": "上海市统计局" + }, + "description": { + "en": "The Shanghai Municipal Bureau of Statistics is the official statistical authority for Shanghai, China's largest city and premier financial and commercial hub. It publishes authoritative statistics covering Shanghai's economic performance, including GDP, industrial output, trade, financial markets, foreign investment, population, employment, and household income. As home to China's major stock exchange and a key international financial center, Shanghai's statistical data reflects global trade flows and China's economic integration with the world. The bureau releases the Shanghai Statistical Yearbook and monthly economic bulletins widely cited in research and investment analysis.", + "zh": "上海市统计局是上海市官方统计机构,上海是中国最大城市,也是中国重要的金融和商业中心。统计局发布涵盖上海经济运行的权威统计数据,包括GDP、工业产值、对外贸易、金融市场、外商投资、人口、就业和居民收入。上海是中国主要证券交易所所在地和重要的国际金融中心,其统计数据反映全球贸易动态和中国经济的对外开放程度。统计局出版《上海统计年鉴》及月度经济运行报告,广泛被学术研究和投资分析机构引用。" + }, + "website": "https://tjj.sh.gov.cn/", + "data_url": "https://tjj.sh.gov.cn/sjxx/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "finance", + "trade", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "上海统计", + "shanghai-statistics", + "上海GDP", + "shanghai-gdp", + "金融中心", + "financial-center", + "市级统计", + "municipal-statistics", + "对外贸易", + "foreign-trade", + "外商投资", + "foreign-direct-investment", + "工业产值", + "industrial-output", + "人口", + "population", + "统计年鉴", + "statistical-yearbook", + "自贸区", + "free-trade-zone", + "进出口", + "imports-exports", + "消费价格", + "consumer-prices" + ], + "data_content": { + "en": [ + "GDP and economic growth: annual and quarterly gross domestic product by industry sector for Shanghai Municipality", + "Industrial output: production data for key sectors including high-tech, automotive, semiconductor, and petrochemical industries", + "Foreign trade: import and export value by commodity category, trading partner, and Shanghai free trade zone data", + "Financial sector: banking assets, insurance premiums, securities trading volumes in Shanghai financial markets", + "Foreign investment: FDI inflows by sector and source country, foreign-funded enterprise data", + "Population and migration: census data, household registration, migrant population, birth and death rates", + "Employment and wages: employed persons by sector, registered unemployment, average wages by industry", + "Consumer prices: CPI, PPI, housing prices for Shanghai and its districts", + "Shanghai Statistical Yearbook: comprehensive annual compilation of all municipal statistics" + ], + "zh": [ + "GDP与经济增长:上海市按产业分类的年度及季度地区生产总值", + "工业产值:高新技术、汽车、半导体、石化等重点行业生产数据", + "对外贸易:按商品类别和贸易伙伴分类的进出口数据及上海自贸区贸易数据", + "金融业:银行资产、保险保费及上海金融市场证券交易量", + "外商投资:按行业和来源国分类的外商直接投资数据及外资企业数据", + "人口与迁移:普查数据、户籍人口、流动人口、出生率和死亡率", + "就业与工资:各行业从业人员数、登记失业人数、各行业平均工资", + "消费价格:上海市及各区的居民消费价格指数、工业品出厂价格、房价指数", + "上海统计年鉴:上海市各类统计数据的综合年度汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-shanghai-stats.json" + }, + { + "id": "china-shenzhen-open-data", + "name": { + "en": "Shenzhen Open Data Platform", + "zh": "深圳市政府数据开放平台" + }, + "description": { + "en": "The Shenzhen Open Data Platform is the official government open data portal of Shenzhen, providing machine-readable datasets across a wide range of domains including economy, transportation, urban management, public services, healthcare, and education. As one of China's most advanced municipal open data initiatives, the platform offers structured data downloads, API access, and data visualization tools. It covers datasets from over 40 Shenzhen government departments and public institutions, enabling data-driven research and application development. The platform is distinct from the Shenzhen Bureau of Statistics by focusing on granular, machine-readable datasets rather than aggregated statistical reports.", + "zh": "深圳市政府数据开放平台是深圳市官方政府数据开放门户,提供覆盖经济、交通、城市管理、公共服务、医疗卫生、教育等多领域的机器可读数据集。作为中国最先进的市级政府数据开放平台之一,该平台提供结构化数据下载、API接口和数据可视化工具,汇集了深圳市40余个政府部门和公共机构的数据集,支持数据驱动的研究和应用开发。该平台与深圳市统计局的区别在于侧重提供细粒度、机器可读的原始数据集,而非汇总统计报告。" + }, + "website": "https://opendata.sz.gov.cn", + "data_url": "https://opendata.sz.gov.cn/data/dataSet/toDataList", + "api_url": "https://opendata.sz.gov.cn/doc/share/api_guide.html", + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "transportation", + "urban-management", + "public-services", + "healthcare", + "education" + ], + "update_frequency": "irregular", + "tags": [ + "shenzhen-open-data", + "government-open-data", + "shenzhen-api", + "machine-readable-data", + "shenzhen-municipal-government", + "datasets", + "urban-data", + "public-data", + "greater-bay-area", + "shenzhen-transportation-data" + ], + "data_content": { + "en": [ + "Economic data: enterprise registration, business environment indicators, and economic activity datasets", + "Transportation: real-time and historical public transit, traffic flow, and parking data", + "Urban management: city infrastructure, environmental monitoring, and municipal services data", + "Public services: government service usage, public facility distribution, and community data", + "Healthcare: medical facility distribution, public health monitoring datasets", + "Education: school distribution, enrollment statistics, and educational resource data", + "Land and housing: land use, real estate transactions, and urban planning datasets", + "Environmental data: air quality, water quality, and green space monitoring data" + ], + "zh": [ + "经济数据:企业注册登记、营商环境指标及经济活动数据集", + "交通数据:公共交通实时及历史数据、交通流量及停车数据", + "城市管理:城市基础设施、环境监测及市政服务数据", + "公共服务:政务服务使用、公共设施分布及社区数据", + "医疗卫生:医疗机构分布、公共卫生监测数据集", + "教育数据:学校分布、招生统计及教育资源数据", + "土地与住房:土地利用、房地产交易及城市规划数据集", + "环境数据:空气质量、水质及绿化监测数据" + ] + }, + "has_api": true, + "file_path": "china/economy/provincial/china-shenzhen-open-data.json" + }, + { + "id": "china-shenzhen-stats", + "name": { + "en": "Shenzhen Bureau of Statistics", + "zh": "深圳市统计局" + }, + "description": { + "en": "The Shenzhen Bureau of Statistics is the official statistical authority for Shenzhen, China's leading technology and innovation hub and a major special economic zone. As one of China's fastest-growing and most economically dynamic cities, Shenzhen's statistics cover GDP, industrial output, high-tech industry performance, foreign investment, exports, fixed asset investment, retail sales, consumer prices, employment, and household income. The bureau publishes the Shenzhen Statistical Yearbook, monthly economic bulletins, and special reports on the technology and innovation economy. Shenzhen's data is particularly valuable for tracking trends in China's high-tech manufacturing, fintech, and consumer electronics sectors.", + "zh": "深圳市统计局是深圳市官方统计机构。深圳是中国领先的科技创新中心和重要的经济特区,其统计数据涵盖GDP、工业产值、高新技术产业表现、外商投资、出口贸易、固定资产投资、社会消费品零售总额、居民消费价格、就业和居民收入等方面。统计局定期发布《深圳统计年鉴》、月度经济运行情况报告及科技创新经济专题报告。深圳统计数据对追踪中国高新技术制造业、金融科技和消费电子产业趋势具有重要参考价值。" + }, + "website": "https://tjj.sz.gov.cn", + "data_url": "https://tjj.sz.gov.cn/zwgk/zfxxgkml/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "technology", + "trade", + "demographics" + ], + "update_frequency": "monthly", + "tags": [ + "深圳统计", + "shenzhen-statistics", + "深圳GDP", + "shenzhen-gdp", + "深圳经济", + "shenzhen-economy", + "高新技术产业", + "high-tech-industry", + "深圳统计年鉴", + "shenzhen-statistical-yearbook", + "经济特区", + "special-economic-zone", + "深圳制造业", + "shenzhen-manufacturing", + "粤港澳大湾区", + "greater-bay-area", + "科技创新", + "technology-innovation", + "外商投资", + "foreign-investment", + "深圳出口", + "shenzhen-exports", + "固定资产投资", + "fixed-asset-investment" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector, per capita GDP, and growth rate", + "Industrial output: monthly output of major industries including electronics, telecommunications equipment, and high-tech manufacturing", + "High-tech industry: revenue, profit, employment, and output of Shenzhen's high-tech enterprises", + "Trade data: monthly import and export statistics by commodity type and trading partner", + "Fixed asset investment: investment by sector including real estate, infrastructure, and industry", + "Retail and consumption: monthly retail sales of consumer goods and consumer price index (CPI)", + "Foreign direct investment: FDI inflow statistics by source country and industry", + "Employment and wages: employed population, registered unemployment rate, and average wage levels", + "Population: resident population, household registration data, and migration statistics", + "Shenzhen Statistical Yearbook: comprehensive annual compendium of Shenzhen's socioeconomic indicators" + ], + "zh": [ + "GDP与经济增长:按行业分类的季度和年度GDP数据、人均GDP及增长率", + "工业总产值:主要行业月度产值,包括电子、通信设备及高新技术制造业", + "高新技术产业:深圳高新技术企业的营业收入、利润、就业人数及产值", + "贸易数据:按商品类别和贸易伙伴分类的月度进出口统计", + "固定资产投资:按行业分类的投资数据,包括房地产、基础设施和工业", + "零售与消费:月度社会消费品零售总额和居民消费价格指数(CPI)", + "外商直接投资:按来源地和行业分类的FDI流入统计", + "就业与工资:从业人员数量、登记失业率及平均工资水平", + "人口:常住人口、户籍人口及流动人口统计", + "《深圳统计年鉴》:深圳市社会经济指标综合年度数据汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-shenzhen-stats.json" + }, + { + "id": "china-sn-stats", + "name": { + "en": "Shaanxi Bureau of Statistics", + "zh": "陕西省统计局" + }, + "description": { + "en": "The Shaanxi Bureau of Statistics is the official statistical authority for Shaanxi Province, a historically significant province in northwestern China and the home of ancient capitals Xi'an, the terracotta army, and the starting point of the Silk Road. Shaanxi is a major center for energy production, aerospace, military industry, and high-tech manufacturing. The bureau publishes comprehensive socioeconomic statistics covering GDP, energy output (coal, natural gas, oil), aerospace and defense industry data, tourism, population, and agricultural figures. It also releases the Shaanxi Statistical Yearbook and regular economic analysis reports.", + "zh": "陕西省统计局是陕西省官方统计机构,陕西是中国西北部历史名省,古都西安、兵马俑及丝绸之路起点所在地。陕西是重要的能源生产、航空航天、军工和高新技术制造业中心。统计局发布陕西省GDP、能源产量(煤炭、天然气、石油)、航空航天与国防工业数据、旅游、人口及农业生产等全面社会经济统计,并出版《陕西统计年鉴》及定期经济运行分析报告。" + }, + "website": "https://tjj.shaanxi.gov.cn/", + "data_url": "https://tjj.shaanxi.gov.cn/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "energy", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "陕西统计", + "shaanxi-statistics", + "陕西GDP", + "shaanxi-gdp", + "西部大开发", + "western-china-development", + "省级统计", + "provincial-statistics", + "能源生产", + "energy-production", + "煤炭", + "coal", + "天然气", + "natural-gas", + "航空航天", + "aerospace", + "西安", + "xi'an", + "丝绸之路", + "silk-road", + "统计年鉴", + "statistical-yearbook", + "人口统计", + "population-statistics", + "工业产值", + "industrial-output" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Shaanxi Province", + "Energy production: coal output, natural gas extraction, crude oil production, electricity generation statistics", + "Industrial output: aerospace and defense manufacturing, electronics, equipment manufacturing, chemical industry", + "Fixed asset investment: total investment, infrastructure projects, industrial park development", + "Population statistics: census data, household registration, birth and death rates, urbanization", + "Employment and wages: employed persons, unemployment rate, average wages by sector", + "Consumer prices: CPI, PPI for Shaanxi Province and major cities including Xi'an", + "Agricultural statistics: grain output, apple production (Shaanxi is China's top apple producer), livestock", + "Tourism statistics: visitor arrivals to Xi'an and cultural heritage sites, tourism revenue", + "Shaanxi Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:陕西省季度和年度GDP数据,按产业分类", + "能源生产:煤炭产量、天然气开采量、原油产量、发电量统计", + "工业产值:航空航天与国防制造、电子、装备制造、化工产业", + "固定资产投资:全省投资总额、基础设施项目、工业园区发展", + "人口统计:人口普查数据、户籍人口、出生率和死亡率、城镇化率", + "就业与工资:从业人员数、失业率、各行业平均工资", + "消费价格:陕西省及西安等主要城市居民消费价格指数、工业品出厂价格", + "农业统计:粮食产量、苹果产量(陕西是全国最大苹果产区)、畜牧业", + "旅游统计:西安及文化遗址游客人次、旅游收入", + "陕西统计年鉴:全省各类统计数据的综合年度汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-sn-stats.json" + }, + { + "id": "china-suzhou-stats", + "name": { + "en": "Suzhou Bureau of Statistics", + "zh": "苏州市统计局" + }, + "description": { + "en": "The Suzhou Bureau of Statistics is the official statistical authority for Suzhou, a prefecture-level city in Jiangsu Province and one of China's most economically powerful cities. Despite not being a provincial capital, Suzhou consistently ranks among China's top five cities by GDP. It is a global manufacturing powerhouse — particularly for electronics, semiconductors, and precision manufacturing — and home to the Suzhou Industrial Park (SIP), a flagship China-Singapore cooperation project. The bureau publishes comprehensive socioeconomic statistics covering GDP, industrial output, foreign investment, trade, and population for Suzhou, and releases the Suzhou Statistical Yearbook as the authoritative data source for this export-oriented economic giant.", + "zh": "苏州市统计局是苏州市官方统计机构。苏州是江苏省地级市,也是中国经济最强劲的城市之一。尽管不是省会城市,苏州的GDP长期位居全国前五。苏州是全球重要的制造业基地,尤其在电子、半导体和精密制造领域举足轻重,拥有中国-新加坡合作旗舰项目苏州工业园区(SIP)。统计局发布苏州市GDP、工业产值、外商投资、贸易及人口等全面的社会经济统计数据,出版《苏州统计年鉴》,是了解这一出口导向型经济强市的权威数据来源。" + }, + "website": "http://tjj.suzhou.gov.cn/", + "data_url": "http://tjj.suzhou.gov.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "industry", + "trade" + ], + "update_frequency": "monthly", + "tags": [ + "苏州统计", + "suzhou-statistics", + "苏州GDP", + "suzhou-gdp", + "苏州工业园区", + "suzhou-industrial-park", + "sip", + "中新合作", + "china-singapore-cooperation", + "制造业", + "manufacturing", + "电子产业", + "electronics-industry", + "半导体", + "semiconductor", + "长三角", + "yangtze-river-delta", + "苏州统计年鉴", + "suzhou-statistical-yearbook", + "外资企业", + "foreign-invested-enterprises", + "精密制造", + "precision-manufacturing" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Suzhou — one of China's highest-GDP non-capital cities", + "Industrial production: output from core industries including electronics, semiconductor, precision manufacturing, and biomedicine", + "Suzhou Industrial Park (SIP): dedicated statistics on China's flagship China-Singapore cooperation development zone", + "Foreign investment: actual utilized FDI, number of foreign-invested enterprises, investment by source country", + "Foreign trade: import/export volumes — Suzhou is one of China's top export cities", + "Fixed asset investment: total investment, industrial parks investment, infrastructure projects", + "Retail and consumption: total retail sales of consumer goods, consumer price index", + "Employment and wages: employed persons, urban unemployment rate, average wages by sector", + "Population: resident population, household registration, urbanization — significant migrant worker population", + "Suzhou Statistical Yearbook: comprehensive annual compilation of all municipal statistics" + ], + "zh": [ + "GDP与经济增长:苏州市按产业分类的季度和年度GDP数据——中国GDP最高的非省会城市之一", + "工业生产:电子、半导体、精密制造、生物医药等核心行业产值", + "苏州工业园区(SIP):中国旗舰中新合作开发区专项统计数据", + "外商投资:实际利用外商直接投资、外资企业数量、按来源国分类的投资", + "对外贸易:进出口总量——苏州是中国出口重镇之一", + "固定资产投资:全市总投资额、工业园区投资、基础设施项目", + "消费与零售:社会消费品零售总额、居民消费价格指数", + "就业与工资:从业人员数、城镇登记失业率、各行业平均工资", + "人口:常住人口、户籍人口、城镇化率——外来务工人员规模庞大", + "苏州统计年鉴:全市各类统计数据的综合年度汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-suzhou-stats.json" + }, + { + "id": "china-sx-stats", + "name": { + "en": "Shanxi Bureau of Statistics", + "zh": "山西省统计局" + }, + "description": { + "en": "The Shanxi Bureau of Statistics is the official statistical authority for Shanxi Province, China's most important coal-producing province and a major energy base. Located in northern China, Shanxi holds the largest verified coal reserves in the country and has historically supplied a substantial portion of China's national coal output. The bureau publishes comprehensive socioeconomic statistics covering GDP, coal production and mining industry data, energy output, coke and chemical industry figures, population, employment, and investment. It releases the Shanxi Statistical Yearbook and regular economic bulletins critical for energy market analysis and industrial policy research.", + "zh": "山西省统计局是山西省官方统计机构,山西是中国最重要的产煤省份和重要能源基地,位于中国北部。山西拥有全国最大的已探明煤炭储量,历史上承担了中国煤炭总产量的大部分供应。统计局发布山西省GDP、煤炭产量与采矿业数据、能源产出、焦化和化工行业数据、人口、就业和投资等全面社会经济统计,并出版《山西统计年鉴》及定期经济运行情况报告,是能源市场分析和产业政策研究的重要数据来源。" + }, + "website": "https://tjj.shanxi.gov.cn/", + "data_url": "https://tjj.shanxi.gov.cn/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "energy", + "industry" + ], + "update_frequency": "monthly", + "tags": [ + "山西统计", + "shanxi-statistics", + "山西GDP", + "shanxi-gdp", + "省级统计", + "provincial-statistics", + "煤炭", + "coal", + "能源基地", + "energy-base", + "采矿业", + "mining-industry", + "焦炭", + "coke", + "煤炭储量", + "coal-reserves", + "太原", + "taiyuan", + "工业产值", + "industrial-output", + "统计年鉴", + "statistical-yearbook", + "大宗商品", + "commodities" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Shanxi Province", + "Coal production: monthly and annual raw coal output, China's largest coal-producing province data", + "Mining industry: total coal mine output by prefecture, major mining enterprise performance, coal reserves", + "Coking and chemicals: coke production volumes, coal chemical industry output, coal-to-chemicals data", + "Energy output: electricity generation (including coal-fired power), energy consumption statistics", + "Fixed asset investment: coal mining investment, infrastructure construction, industrial diversification", + "Population statistics: census data, household registration, urbanization, rural-to-urban migration", + "Employment and wages: mining sector employment, average wages, occupational injury statistics", + "Consumer prices: CPI and PPI for Shanxi Province and its prefecture-level cities including Taiyuan", + "Shanxi Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:山西省季度和年度GDP数据,按产业分类", + "煤炭产量:月度和年度原煤产量,全国最大产煤省数据", + "采矿业:各地级市煤矿产量、大型矿业企业绩效、煤炭储量数据", + "焦化与化工:焦炭产量、煤化工行业产值、煤制化学品数据", + "能源产出:发电量(含燃煤电力)、能源消耗统计", + "固定资产投资:煤矿投资、基础设施建设、工业多元化发展", + "人口统计:普查数据、户籍人口、城镇化率、农村劳动力转移", + "就业与工资:采矿业从业人员数量、平均工资、工伤事故统计", + "消费价格:山西省及太原等各地级市居民消费价格指数和工业品出厂价格", + "山西统计年鉴:全省各类统计数据的综合年度汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-sx-stats.json" + }, + { + "id": "china-tj-stats", + "name": { + "en": "Tianjin Bureau of Statistics", + "zh": "天津市统计局" + }, + "description": { + "en": "The Tianjin Bureau of Statistics is the official statistical authority for Tianjin, one of China's four direct-controlled municipalities and a major port city in the Bohai Economic Rim. It publishes comprehensive socioeconomic data covering GDP, industrial output, foreign trade, port logistics, population, and fixed asset investment. Tianjin serves as the gateway port for Beijing and a key logistics hub in northern China, making its trade and industrial statistics especially valuable. The bureau releases monthly economic bulletins, statistical communiqués, and the annual Tianjin Statistical Yearbook, providing essential data for the Beijing-Tianjin-Hebei (Jing-Jin-Ji) regional integration analysis.", + "zh": "天津市统计局是天津市官方统计机构。天津是中国四个直辖市之一,环渤海经济圈的重要港口城市。统计局发布涵盖天津市GDP、工业产值、对外贸易、港口物流、人口及固定资产投资等全面社会经济数据。天津作为北京的出海口和华北重要物流枢纽,其贸易与工业统计数据尤具价值。统计局定期发布月度经济运行情况、统计公报及年度《天津统计年鉴》,为京津冀协同发展研究提供重要数据支撑。" + }, + "website": "https://stats.tj.gov.cn/", + "data_url": "https://stats.tj.gov.cn/tjsj_52032/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "trade", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "天津统计", + "tianjin-statistics", + "天津GDP", + "tianjin-gdp", + "京津冀", + "beijing-tianjin-hebei", + "环渤海", + "bohai-economic-rim", + "省级统计", + "provincial-statistics", + "港口物流", + "port-logistics", + "对外贸易", + "foreign-trade", + "工业产值", + "industrial-output", + "统计年鉴", + "statistical-yearbook", + "直辖市", + "municipality" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Tianjin Municipality", + "Industrial production: output value by sector, petrochemicals, aerospace, advanced manufacturing statistics", + "Foreign trade: import and export data via Tianjin Port, trading partner breakdown", + "Port logistics: Tianjin Port cargo throughput, container volume, shipping routes", + "Fixed asset investment: total investment, industrial projects, infrastructure expenditure", + "Population statistics: permanent resident population, urbanization rate, demographic structure", + "Employment and wages: employed persons by sector, unemployment rate, average wages", + "Tianjin Statistical Yearbook: comprehensive annual compilation covering all socioeconomic statistics" + ], + "zh": [ + "GDP与经济增长:天津市季度和年度GDP数据,按产业分类", + "工业生产:各行业工业产值,石油化工、航空航天、先进制造业统计", + "对外贸易:通过天津港的进出口数据,贸易伙伴分类", + "港口物流:天津港货物吞吐量、集装箱量、航运线路数据", + "固定资产投资:投资总额、工业项目、基础设施投入", + "人口统计:常住人口、城镇化率、人口结构", + "就业与工资:各行业从业人员数、失业率、平均工资水平", + "天津统计年鉴:涵盖所有社会经济统计的综合年度汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-tj-stats.json" + }, + { + "id": "china-wuhan-stats", + "name": { + "en": "Wuhan Bureau of Statistics", + "zh": "武汉市统计局" + }, + "description": { + "en": "The Wuhan Bureau of Statistics is the official statistical authority for Wuhan, the capital of Hubei Province and the largest city in Central China. Strategically located at the confluence of the Han and Yangtze Rivers, Wuhan is a major industrial, scientific, and transportation hub. The bureau publishes comprehensive socioeconomic statistics covering GDP, industrial output, high-tech industries, higher education indicators, employment, and population for Wuhan. It releases the Wuhan Statistical Yearbook and monthly economic reports, providing authoritative data on one of China's most significant inland metropolises and a key node of the Yangtze River Economic Belt.", + "zh": "武汉市统计局是武汉市官方统计机构。武汉是湖北省省会,华中地区最大城市,地处汉江与长江交汇处,是中国重要的工业、科教和交通枢纽。统计局发布武汉市GDP、工业产值、高新技术产业、高等教育指标、就业及人口等全面的社会经济统计数据,出版《武汉统计年鉴》及月度经济运行情况报告,是了解长江经济带重要节点城市——武汉的权威数据来源。" + }, + "website": "https://tjj.wuhan.gov.cn/", + "data_url": "https://tjj.wuhan.gov.cn/zfxxgk/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "industry", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "武汉统计", + "wuhan-statistics", + "武汉GDP", + "wuhan-gdp", + "华中经济", + "central-china-economy", + "长江经济带", + "yangtze-river-economic-belt", + "武汉统计年鉴", + "wuhan-statistical-yearbook", + "高新技术产业", + "high-tech-industries", + "光谷", + "optics-valley", + "汽车产业", + "automobile-industry", + "钢铁工业", + "steel-industry", + "武汉大学城", + "university-city" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Wuhan", + "Industrial production: output from major sectors including automobiles, steel, electronics, and optoelectronics (Optics Valley)", + "High-tech industries: output and investment in high-tech manufacturing, semiconductor, biopharmaceutical, and AI industries", + "Fixed asset investment: total investment, infrastructure projects, real estate development", + "Retail and consumption: total retail sales, consumer price index for Wuhan", + "Employment and wages: employed persons, urban unemployment, average wages across sectors", + "Population and education: resident population, higher education enrollment — Wuhan has one of China's largest university populations", + "Foreign trade and investment: export/import, FDI inflows from overseas enterprises", + "Fiscal revenue: general public budget revenue and expenditure for Wuhan municipality", + "Wuhan Statistical Yearbook: comprehensive annual compilation of all municipal statistics" + ], + "zh": [ + "GDP与经济增长:武汉市按产业分类的季度和年度GDP数据", + "工业生产:汽车、钢铁、电子、光电子(光谷)等主要行业产值", + "高新技术产业:高新技术制造业、半导体、生物医药、人工智能产业产值及投资", + "固定资产投资:全市总投资额、基础设施项目、房地产开发", + "消费与零售:社会消费品零售总额、武汉市居民消费价格指数", + "就业与工资:从业人员数、城镇登记失业率、各行业平均工资", + "人口与教育:常住人口、高等院校在校生数——武汉是中国在校大学生规模最大的城市之一", + "对外贸易与投资:进出口总额、外商直接投资", + "财政收入:武汉市一般公共预算收入和支出", + "武汉统计年鉴:全市各类统计数据的综合年度汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-wuhan-stats.json" + }, + { + "id": "china-xian-stats", + "name": { + "en": "Xi'an Bureau of Statistics", + "zh": "西安市统计局" + }, + "description": { + "en": "The Xi'an Bureau of Statistics is the official statistical authority for Xi'an (Shaanxi Province capital), one of China's most ancient capitals and now a rapidly modernizing city at the heart of the Belt and Road Initiative. Xi'an is a major center for aerospace, defense, high-tech manufacturing, and tourism. The bureau publishes comprehensive socioeconomic statistics covering GDP, industrial production, aerospace and defense output, tourism, employment, and population for Xi'an. It releases the Xi'an Statistical Yearbook and periodic economic reports, providing authoritative data for this growing western China hub and the core city of the Guanzhong Plain urban agglomeration.", + "zh": "西安市统计局是西安市官方统计机构。西安是陕西省省会,中国最重要的历史古都之一,也是\"一带一路\"倡议的核心城市,现已成为快速现代化的重要城市。西安是航空航天、国防、高新技术制造和旅游业的重要中心。统计局发布西安市GDP、工业生产、航空航天与国防产值、旅游业、就业及人口等全面的社会经济统计数据,出版《西安统计年鉴》及定期经济运行情况报告,是了解关中平原城市群核心城市和西部重要增长极的权威数据来源。" + }, + "website": "http://tjj.xa.gov.cn/", + "data_url": "http://tjj.xa.gov.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "industry", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "西安统计", + "xi'an-statistics", + "西安GDP", + "xian-gdp", + "关中平原城市群", + "guanzhong-urban-agglomeration", + "西部大开发", + "western-china-development", + "一带一路", + "belt-and-road-initiative", + "西安统计年鉴", + "xian-statistical-yearbook", + "航空航天", + "aerospace", + "军工产业", + "defense-industry", + "旅游经济", + "tourism-economy", + "半导体", + "semiconductor", + "高新区", + "high-tech-zone" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Xi'an", + "Industrial production: output from key sectors including aerospace, defense, electronics, and semiconductor manufacturing", + "High-tech industries: Xi'an High-tech Zone output, new energy, artificial intelligence, biopharmaceuticals", + "Tourism statistics: domestic and international tourist arrivals, tourism revenue — Xi'an is a top global heritage destination", + "Fixed asset investment: total investment, infrastructure projects including Silk Road-related corridors", + "Retail and consumption: total retail sales of consumer goods, consumer price index", + "Employment and higher education: employed persons, university enrollment — Xi'an has China's highest density of universities per capita", + "Population: resident population, household registration, urbanization rate", + "Foreign trade: export/import volumes, cross-border e-commerce, FDI", + "Xi'an Statistical Yearbook: comprehensive annual compilation of all municipal statistics" + ], + "zh": [ + "GDP与经济增长:西安市按产业分类的季度和年度GDP数据", + "工业生产:航空航天、国防、电子、半导体制造等关键行业产值", + "高新技术产业:西安高新区产值、新能源、人工智能、生物医药产业", + "旅游统计:国内外游客接待量、旅游收入——西安是全球顶级文化遗产旅游目的地", + "固定资产投资:全市总投资额、丝路相关走廊等基础设施项目", + "消费与零售:社会消费品零售总额、居民消费价格指数", + "就业与高等教育:从业人员数、高校在校生人数——西安人均高校密度居全国前列", + "人口:常住人口、户籍人口、城镇化率", + "对外贸易:进出口总量、跨境电商、外商直接投资", + "西安统计年鉴:全市各类统计数据的综合年度汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-xian-stats.json" + }, + { + "id": "china-xj-stats", + "name": { + "en": "Xinjiang Bureau of Statistics", + "zh": "新疆维吾尔自治区统计局" + }, + "description": { + "en": "The Xinjiang Bureau of Statistics is the official statistical authority for the Xinjiang Uyghur Autonomous Region, China's largest administrative division by area, located in the far northwest and bordering eight countries. Xinjiang is a critical energy hub, holding significant reserves of coal, oil, and natural gas, and is also a major producer of cotton, tomatoes, and fruits. The bureau publishes comprehensive socioeconomic statistics covering GDP, energy extraction and reserves, cotton production (Xinjiang accounts for over 85% of China's cotton output), agricultural output, fixed asset investment in infrastructure, population, and trade data related to China's Belt and Road Initiative. It also releases the Xinjiang Statistical Yearbook.", + "zh": "新疆维吾尔自治区统计局是新疆官方统计机构,新疆是中国面积最大的行政区划,位于中国最西北,与八个国家接壤。新疆是重要的能源基地,拥有丰富的煤炭、石油和天然气储量,同时也是棉花、番茄和水果的重要产区。统计局发布新疆GDP、能源开采与储量、棉花产量(新疆棉花产量占全国85%以上)、农业产值、基础设施固定资产投资、人口及\"一带一路\"相关贸易数据等全面社会经济统计,并出版《新疆统计年鉴》。" + }, + "website": "https://tjj.xinjiang.gov.cn/", + "data_url": "https://tjj.xinjiang.gov.cn/tjj/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "energy", + "agriculture" + ], + "update_frequency": "monthly", + "tags": [ + "新疆统计", + "xinjiang-statistics", + "新疆GDP", + "xinjiang-gdp", + "省级统计", + "provincial-statistics", + "棉花", + "cotton", + "石油", + "oil", + "天然气", + "natural-gas", + "煤炭", + "coal", + "能源", + "energy", + "一带一路", + "belt-and-road", + "农业统计", + "agricultural-statistics", + "新疆维吾尔", + "uyghur-autonomous-region", + "统计年鉴", + "statistical-yearbook", + "乌鲁木齐", + "urumqi" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Xinjiang", + "Energy resources: oil and natural gas extraction volumes, coal production, proven reserves data", + "Cotton production: annual cotton output (Xinjiang produces over 85% of China's total cotton supply)", + "Agricultural statistics: grain output, fruit production (grapes, Hami melon, dates), livestock data", + "Industrial output: petrochemicals, coal chemicals, non-ferrous metals, energy processing industries", + "Fixed asset investment: Belt and Road infrastructure projects, energy facility construction, connectivity projects", + "Trade statistics: border trade data with Central Asia, Russia, and neighboring countries", + "Population statistics: total population, ethnic composition, urbanization rate", + "Employment and wages: employed persons, unemployment rate, average wages by sector", + "Xinjiang Statistical Yearbook: comprehensive annual compilation of all regional statistics" + ], + "zh": [ + "GDP与经济增长:新疆季度和年度GDP数据,按产业分类", + "能源资源:石油和天然气开采量、煤炭产量、探明储量数据", + "棉花生产:年度棉花产量(新疆提供全国85%以上的棉花供应量)", + "农业统计:粮食产量、水果产量(葡萄、哈密瓜、红枣)、畜牧业数据", + "工业产值:石油化工、煤化工、有色金属、能源加工产业", + "固定资产投资:\"一带一路\"基础设施项目、能源设施建设、互联互通项目", + "贸易统计:与中亚、俄罗斯及周边国家的边境贸易数据", + "人口统计:全区人口、民族构成、城镇化率", + "就业与工资:从业人员数、失业率、各行业平均工资", + "新疆统计年鉴:全区各类统计数据的综合年度汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-xj-stats.json" + }, + { + "id": "china-xz-stats", + "name": { + "en": "Xizang (Tibet) Bureau of Statistics", + "zh": "西藏自治区统计局" + }, + "description": { + "en": "The Xizang (Tibet) Bureau of Statistics is the official statistical authority for the Xizang Autonomous Region, China's highest-altitude province-level administrative division. It publishes comprehensive socioeconomic data covering GDP, population, agriculture, animal husbandry, tourism, fixed asset investment, and social development indicators for the plateau region. The bureau releases the Xizang Statistical Yearbook, monthly economic briefings, and regular reports on key industries including traditional Tibetan medicine, yak farming, barley cultivation, and the growing tourism sector. Xizang's unique geography and demographic profile make its statistics essential for research on high-altitude economies, rural poverty alleviation, and ecological conservation on the Tibetan Plateau.", + "zh": "西藏自治区统计局是西藏自治区的官方统计机构,西藏是中国海拔最高的省级行政区划。统计局发布涵盖西藏GDP、人口、农牧业、旅游、固定资产投资及社会发展指标的全面社会经济数据。定期出版《西藏统计年鉴》、月度经济运行简报及藏医药、牦牛养殖、青稞种植、旅游业等重点产业专项报告。西藏独特的地理和人口特征使其统计数据成为研究高原经济、农村脱贫攻坚和青藏高原生态保护的重要参考依据。" + }, + "website": "https://tjj.xizang.gov.cn/", + "data_url": "https://tjj.xizang.gov.cn/xxgk/tjxx/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "agriculture", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "西藏统计", + "tibet-statistics", + "xizang-statistics", + "西藏GDP", + "tibet-gdp", + "省级统计", + "provincial-statistics", + "青藏高原", + "tibetan-plateau", + "牦牛", + "yak-farming", + "青稞", + "highland-barley", + "藏医药", + "traditional-tibetan-medicine", + "西藏旅游", + "tibet-tourism", + "高原经济", + "plateau-economy", + "统计年鉴", + "statistical-yearbook", + "脱贫攻坚", + "poverty-alleviation", + "人口统计", + "population-statistics" + ], + "data_content": { + "en": [ + "GDP and economic growth: annual and quarterly GDP data for Xizang by sector, including primary, secondary, and tertiary industries", + "Agriculture and animal husbandry: highland barley (qingke) output, yak and sheep numbers, dairy production, and crop acreage statistics", + "Population and social indicators: census data, household registration, ethnic composition, birth rates, life expectancy", + "Fixed asset investment: infrastructure investment, transportation (Qinghai-Tibet Railway impacts), urban construction", + "Tourism statistics: domestic and international visitor arrivals, tourism revenue, hotel occupancy rates", + "Employment and wages: employed persons, wage levels, rural income, poverty alleviation progress", + "Energy statistics: electricity generation and consumption, solar and clean energy development on the plateau", + "Consumer prices: CPI and PPI for Xizang Autonomous Region and Lhasa city", + "Foreign trade: export and import volumes, cross-border trade with neighboring countries", + "Xizang Statistical Yearbook: comprehensive annual compilation of all regional statistics" + ], + "zh": [ + "GDP与经济增长:西藏自治区分季度和年度GDP数据,按第一、二、三产业分类", + "农牧业生产:青稞产量、牦牛和羊存栏数、乳制品产量及农作物播种面积统计", + "人口与社会指标:人口普查数据、户籍人口、民族构成、出生率、人均寿命", + "固定资产投资:基础设施投资、交通建设(青藏铁路影响)、城市建设数据", + "旅游统计:国内外游客到访人次、旅游收入、酒店住宿率", + "就业与工资:从业人员、工资水平、农村居民收入、脱贫攻坚进展", + "能源统计:发电量和用电量、高原太阳能及清洁能源发展情况", + "消费价格:西藏自治区及拉萨市居民消费价格指数、工业品出厂价格", + "对外贸易:进出口总额、与周边国家边境贸易量", + "西藏统计年鉴:全区各类统计数据的综合年度汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-xz-stats.json" + }, + { + "id": "china-yn-stats", + "name": { + "en": "Yunnan Bureau of Statistics", + "zh": "云南省统计局" + }, + "description": { + "en": "The Yunnan Bureau of Statistics is the official statistical authority for Yunnan Province, a biodiversity hotspot and frontier province bordering Myanmar, Laos, and Vietnam. It publishes comprehensive socioeconomic data covering GDP, agricultural production, tourism, mineral resources, cross-border trade, and ethnic minority demographics. Yunnan is strategically important as a gateway to Southeast Asia under China's Belt and Road Initiative and as a major producer of non-ferrous metals, tobacco, and flowers. The bureau releases monthly economic bulletins, the Yunnan Statistical Yearbook, and thematic reports on tourism and ecological development.", + "zh": "云南省统计局是云南省官方统计机构。云南是生物多样性热点地区,与缅甸、老挝、越南接壤。统计局发布涵盖云南省GDP、农业生产、旅游业、矿产资源、跨境贸易及少数民族人口等全面社会经济数据。云南在「一带一路」框架下战略地位重要,是连接东南亚的重要门户,也是中国有色金属、烟草和鲜花的重要产区。统计局定期发布月度经济运行情况、《云南统计年鉴》及旅游与生态发展专题报告。" + }, + "website": "http://stats.yn.gov.cn", + "data_url": "http://stats.yn.gov.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "agriculture", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "云南统计", + "yunnan-statistics", + "云南GDP", + "yunnan-gdp", + "西南边境", + "southwestern-border", + "省级统计", + "provincial-statistics", + "旅游业", + "tourism", + "有色金属", + "non-ferrous-metals", + "烟草", + "tobacco", + "跨境贸易", + "cross-border-trade", + "一带一路", + "belt-and-road", + "少数民族", + "ethnic-minorities", + "生物多样性", + "biodiversity", + "统计年鉴", + "statistical-yearbook" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Yunnan Province", + "Agricultural production: crop output, tea, flowers, tropical fruits; Yunnan is China's top flower producer", + "Tourism: domestic and international visitor arrivals, tourism revenue, key scenic area data", + "Mineral resources: non-ferrous metals output (copper, tin, zinc, lead), phosphate production", + "Cross-border trade: import and export data through Yunnan's border crossings with ASEAN countries", + "Population and ethnicity: demographic data for Yunnan's 26 ethnic minority groups", + "Energy: hydropower generation data, clean energy development statistics", + "Yunnan Statistical Yearbook: comprehensive annual compilation covering all socioeconomic statistics" + ], + "zh": [ + "GDP与经济增长:云南省季度和年度GDP数据,按产业分类", + "农业生产:粮食产量、茶叶、鲜花、热带水果(云南是中国最大鲜花产区)", + "旅游业:国内外游客接待量、旅游收入、重要景区数据", + "矿产资源:有色金属产量(铜、锡、锌、铅)、磷化工生产情况", + "跨境贸易:通过云南口岸与东盟国家的进出口数据", + "人口与民族:云南省26个少数民族人口统计数据", + "能源:水电发电量数据、清洁能源发展统计", + "云南统计年鉴:涵盖所有社会经济统计的综合年度汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-yn-stats.json" + }, + { + "id": "china-zhengzhou-stats", + "name": { + "en": "Zhengzhou Bureau of Statistics", + "zh": "郑州市统计局" + }, + "description": { + "en": "The Zhengzhou Bureau of Statistics is the official statistical authority for Zhengzhou, the capital of Henan Province and the most populous province in China. Zhengzhou is a national transportation hub at the intersection of China's major rail corridors, and a rising manufacturing center home to Foxconn's largest iPhone assembly operations. The city's economic profile encompasses advanced manufacturing, logistics, modern services, and a rapidly growing digital economy. The bureau publishes comprehensive socioeconomic statistics covering GDP, industrial output, logistics volume, fixed asset investment, employment, and population for Zhengzhou municipality, along with the Zhengzhou Statistical Yearbook and monthly economic reports.", + "zh": "郑州市统计局是郑州市官方统计机构。郑州是河南省省会,河南是中国人口最多的省份。郑州地处中国主要铁路干线交汇处,是国家综合交通枢纽,也是重要的制造业中心,富士康全球最大的iPhone组装工厂坐落于此。郑州经济涵盖先进制造、物流、现代服务业和快速发展的数字经济。统计局发布涵盖GDP、工业产值、物流量、固定资产投资、就业及人口等全面的社会经济统计数据,同时出版《郑州统计年鉴》及月度经济运行报告。" + }, + "website": "https://tjj.zhengzhou.gov.cn/", + "data_url": "https://tjj.zhengzhou.gov.cn/tjsj/index.jhtml", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "industry", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "郑州统计", + "zhengzhou-statistics", + "郑州GDP", + "zhengzhou-gdp", + "河南经济", + "henan-economy", + "郑州统计年鉴", + "zhengzhou-statistical-yearbook", + "郑州制造业", + "zhengzhou-manufacturing", + "物流枢纽", + "logistics-hub", + "富士康", + "foxconn", + "iphone", + "中原城市群", + "central-plains-urban-agglomeration", + "跨境电商", + "cross-border-e-commerce", + "郑州航空港", + "zhengzhou-airport-economy-zone", + "固定资产投资", + "fixed-asset-investment" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Zhengzhou municipality", + "Industrial output: value-added production from major sectors including electronics assembly, food processing, aluminum, and automotive parts", + "Logistics and transportation: freight volumes, air cargo statistics for Xinzheng International Airport, railway cargo data", + "Cross-border e-commerce: Zhengzhou's bonded zone cross-border transaction volumes and parcel throughput", + "Fixed asset investment: infrastructure, manufacturing, and real estate investment statistics", + "Employment and wages: employed persons, urban unemployment rate, and average wage data", + "Population: resident population, household registration, and labor migration into Henan's provincial capital", + "Consumer market: retail sales, consumer price index, and e-commerce growth data", + "Fiscal data: general public budget revenue and expenditure for Zhengzhou", + "Zhengzhou Statistical Yearbook: comprehensive annual compilation of all municipal socioeconomic statistics" + ], + "zh": [ + "GDP与经济增长:按产业分类的郑州市季度和年度GDP数据", + "工业产值:电子装配、食品加工、铝业和汽车零部件等主要行业增加值", + "物流与交通:货运量、新郑国际机场航空货运统计、铁路货运数据", + "跨境电商:郑州保税区跨境交易量及快件吞吐量", + "固定资产投资:基础设施、制造业和房地产投资统计", + "就业与工资:从业人员数、城镇登记失业率及平均工资数据", + "人口:常住人口、户籍人口及流入河南省会的劳动力迁移数据", + "消费市场:社会消费品零售总额、居民消费价格指数及电商增长数据", + "财政数据:郑州市一般公共预算收入和支出", + "郑州统计年鉴:全市社会经济统计数据的综合年度汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-zhengzhou-stats.json" + }, + { + "id": "china-zj-stats", + "name": { + "en": "Zhejiang Bureau of Statistics", + "zh": "浙江省统计局" + }, + "description": { + "en": "The Zhejiang Bureau of Statistics is the official statistical authority for Zhejiang Province, one of China's most economically dynamic coastal provinces and a powerhouse of private enterprise and digital economy. It publishes comprehensive socioeconomic statistics including GDP, industrial output, trade, investment, population, employment, consumer prices, and e-commerce data for Zhejiang. The bureau releases the Zhejiang Statistical Yearbook and regular economic bulletins, serving as the authoritative data source for understanding one of China's wealthiest and most innovative provincial economies.", + "zh": "浙江省统计局是浙江省官方统计机构,浙江是中国经济最活跃的沿海省份之一,也是民营经济和数字经济的重要高地。统计局发布浙江省GDP、工业产值、对外贸易、投资、人口、就业、居民消费价格指数和电子商务等全面的社会经济统计数据,并出版《浙江统计年鉴》及定期经济运行情况报告,是了解中国最富裕、最具创新活力省级经济体的权威数据来源。" + }, + "website": "https://tjj.zj.gov.cn/", + "data_url": "https://tjj.zj.gov.cn/col/col1525563/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "social", + "industry" + ], + "update_frequency": "monthly", + "tags": [ + "浙江统计", + "zhejiang-statistics", + "浙江GDP", + "zhejiang-gdp", + "民营经济", + "private-economy", + "数字经济", + "digital-economy", + "省级统计", + "provincial-statistics", + "电子商务", + "e-commerce", + "工业产值", + "industrial-output", + "对外贸易", + "foreign-trade", + "统计年鉴", + "statistical-yearbook", + "长三角", + "yangtze-river-delta" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Zhejiang Province", + "Industrial production: output value by industry, major products output, industrial enterprise performance", + "Private economy: statistics on private enterprises, self-employed businesses, and non-public economy", + "Digital economy: e-commerce transactions, digital industry output, internet economy indicators", + "Fixed asset investment: total investment, real estate development, infrastructure construction", + "Foreign trade: import and export statistics for Zhejiang Province", + "Population statistics: census data, household registration, birth and death rates, urbanization", + "Employment and wages: employed persons, unemployment rate, average wages by sector", + "Consumer prices: CPI, PPI for Zhejiang Province and major cities including Hangzhou, Ningbo", + "Zhejiang Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:浙江省季度和年度GDP数据,按产业分类", + "工业生产:各行业工业产值、主要产品产量、工业企业经营情况", + "民营经济:民营企业、个体工商户和非公有制经济统计数据", + "数字经济:电子商务交易额、数字产业产值、互联网经济指标", + "固定资产投资:全省投资总额、房地产开发、基础设施建设", + "对外贸易:浙江省进出口统计数据", + "人口统计:人口普查数据、户籍人口、出生率和死亡率、城镇化率", + "就业与工资:从业人员数、失业率、各行业平均工资", + "消费价格:浙江省及杭州、宁波等主要城市居民消费价格指数、工业品出厂价格", + "浙江统计年鉴:全省各类统计数据的综合年度汇编" + ] + }, + "has_api": false, + "file_path": "china/economy/provincial/china-zj-stats.json" + }, + { + "id": "china-hk-censtatd", + "name": { + "en": "Hong Kong Census and Statistics Department", + "zh": "香港政府统计处" + }, + "description": { + "en": "The Census and Statistics Department (C&SD) of the Hong Kong Special Administrative Region is the principal government agency responsible for compiling and analyzing official statistics for Hong Kong. C&SD produces comprehensive statistical data on Hong Kong's economy, population, trade, labor market, prices, and social conditions. As an internationally recognized statistical office, C&SD adheres to the IMF's Special Data Dissemination Standard (SDDS) and publishes quarterly GDP estimates, monthly consumer price indices, external trade statistics, labor force surveys, and the population census conducted every ten years. Hong Kong's role as a major global financial hub and Asia's largest offshore RMB settlement center makes C&SD data critical for tracking SAR economic performance, cross-border trade flows, RMB internationalization, and the integration of Hong Kong with the Greater Bay Area (GBA). C&SD operates the online data portal HK Statistics, providing free access to over 100 statistical tables and time series datasets.", + "zh": "香港特别行政区政府统计处(统计处)是负责编制和分析香港官方统计数据的主要政府机构。统计处提供涵盖香港经济、人口、贸易、劳动力市场、物价及社会状况的全面统计数据。作为国际认可的统计机构,统计处遵循国际货币基金组织数据公布特殊标准(SDDS),发布季度本地生产总值估算、月度消费物价指数、对外贸易统计、劳动力调查及每十年一次的人口普查数据。香港作为全球主要金融中心和亚洲最大离岸人民币结算中心,统计处数据对追踪香港特区经济表现、跨境贸易流量、人民币国际化进程以及香港与粤港澳大湾区融合具有重要意义。统计处运营《香港统计数字一览》在线数据门户,免费提供100多个统计表格和时间序列数据集。" + }, + "website": "https://www.censtatd.gov.hk/", + "data_url": "https://www.censtatd.gov.hk/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "demographics", + "trade", + "statistics", + "finance" + ], + "update_frequency": "monthly", + "tags": [ + "香港政府统计处", + "census-and-statistics-department", + "c&sd", + "censtatd", + "香港", + "hong-kong", + "特别行政区", + "special-administrative-region", + "sar", + "香港GDP", + "hong-kong-gdp", + "消费物价指数", + "consumer-price-index", + "cpi", + "对外贸易", + "external-trade", + "劳动力调查", + "labor-force-survey", + "人口普查", + "census", + "离岸人民币", + "offshore-rmb", + "大湾区", + "greater-bay-area", + "gba", + "imf-sdds", + "零售销售", + "retail-sales", + "工业生产", + "industrial-production", + "房屋统计", + "housing-statistics" + ], + "data_content": { + "en": [ + "GDP and national accounts: quarterly GDP estimates, expenditure-based national accounts, and GDP by major economic activity for Hong Kong SAR", + "Consumer Price Index: monthly CPI by category (composite, category A/B/C households), inflation trends, and comparison with historical baselines", + "External trade statistics: monthly merchandise trade data including total imports, domestic exports, re-exports by commodity group and trading partner", + "Labor force survey: quarterly unemployment rate, underemployment rate, labor force participation, employment by industry, and median wage data", + "Population statistics: mid-year population estimates, demographic projections, birth and death rates, and migration data for Hong Kong", + "Retail sales: monthly retail sales value and volume by retail outlet type (food, clothing, electronics, jewelry, etc.) and year-on-year changes", + "Industrial production: quarterly index of industrial production for Hong Kong's manufacturing sector", + "Business statistics: enterprise counts, business registration trends, and establishment-based employment surveys by industry", + "Housing and construction: property prices, rental indices, number of housing units, construction output, and vacancy rates in Hong Kong", + "Social statistics: household income distribution, poverty statistics, Gini coefficient, education attainment, and social welfare expenditure data from household surveys" + ], + "zh": [ + "GDP和国民账户:香港特区季度本地生产总值估算、支出法国民账户及按主要经济活动分类的GDP", + "消费物价指数:月度综合消费物价指数及甲乙丙类住户分类指数、通胀趋势及历史基准比较", + "对外贸易统计:月度货品贸易数据,包括按商品类别和贸易伙伴分类的总进口、本地出口和转口数据", + "劳动力调查:季度失业率、就业不足率、劳动参与率、分行业就业及工资中位数", + "人口统计:年中人口估算、人口预测、出生和死亡率及香港移民数据", + "零售业销售:按零售点类别(食品、服装、电子、珠宝等)统计的月度零售销售额和销售量及同比变化", + "工业生产:香港制造业季度工业生产指数", + "商业统计:按行业统计的企业数量、商业登记趋势及就业调查", + "房屋和建造:香港楼价、租金指数、住宅单位数量、建造产值及空置率", + "社会统计:住户收入分布、贫穷统计、基尼系数、教育程度及家庭住户调查的社会福利支出数据" + ] + }, + "has_api": false, + "file_path": "china/economy/special_admin_regions/china-hk-censtatd.json" + }, + { + "id": "china-cccme", + "name": { + "en": "China Chamber of Commerce for Import and Export of Machinery and Electronic Products", + "zh": "中国机电产品进出口商会" + }, + "description": { + "en": "The China Chamber of Commerce for Import and Export of Machinery and Electronic Products (CCCME) is the largest and most influential trade association in China's foreign trade sector, representing over 12,000 member enterprises engaged in the import and export of mechanical and electrical products. Supervised by the Ministry of Commerce, CCCME covers products ranging from power equipment, industrial machinery, transport vehicles, and electronic components to consumer electronics and medical devices. China is the world's largest exporter of machinery and electronic products, which collectively account for nearly 60% of total merchandise exports. CCCME publishes authoritative monthly and annual trade statistics on export volumes and values by product category and destination market, import data, and bilateral trade analysis. The association operates trade remedy research, hosts major trade exhibitions, and serves as a key coordinator in Sino-foreign trade dispute mechanisms. CCCME's statistical reports are widely referenced by industry analysts, customs authorities, and international trade economists tracking China's manufacturing and export competitiveness.", + "zh": "中国机电产品进出口商会(机电商会)是中国对外贸易领域规模最大、影响力最强的行业组织,会员企业逾12000家,涵盖电力设备、工业机械、运输工具、电子元器件、消费电子及医疗器械等机电产品的进出口企业,主管单位为商务部。中国是全球最大的机电产品出口国,机电产品约占中国商品出口总额的近60%。商会发布各品类机电产品出口量、出口额、进口数据及双边贸易分析等权威月度和年度统计,并开展贸易救济研究、主办大型展会、参与中外贸易争端协调机制。商会统计报告被行业分析师、海关机构及追踪中国制造业和出口竞争力的国际贸易经济学家广泛引用。" + }, + "website": "https://www.cccme.org.cn/", + "data_url": "https://www.cccme.org.cn/shop/cccme-stat/index.aspx", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "trade", + "industry", + "economics", + "technology" + ], + "update_frequency": "monthly", + "tags": [ + "中国机电产品进出口商会", + "cccme", + "机电产品", + "mechanical-and-electrical-products", + "机电出口", + "machinery-exports", + "电子产品出口", + "electronics-exports", + "中国出口", + "china-exports", + "贸易统计", + "trade-statistics", + "进出口商会", + "import-export-chamber", + "电力设备", + "power-equipment", + "工业机械", + "industrial-machinery", + "消费电子", + "consumer-electronics", + "医疗器械", + "medical-devices", + "贸易救济", + "trade-remedy", + "双边贸易", + "bilateral-trade", + "贸易摩擦", + "trade-friction", + "出口竞争力", + "export-competitiveness" + ], + "data_content": { + "en": [ + "Monthly export statistics: machinery and electronic product export volumes and values by 8-digit HS code category, including power generation equipment, industrial machines, automobiles, ships, and consumer electronics", + "Import data: monthly machinery and electronic product import volumes and values, tracking China's technology acquisition and supply chain integration", + "Top exporting enterprises: rankings of leading export enterprises by product category and destination, reflecting concentration in China's manufacturing sector", + "Destination market analysis: bilateral trade flows and market share analysis for major trading partners including the US, EU, ASEAN, and emerging markets", + "Trade remedy monitoring: anti-dumping, countervailing duty, and safeguard investigations involving Chinese machinery and electronics exports in key markets", + "Annual China Machinery and Electronics Trade Report: comprehensive review of annual export performance, market share changes, product mix shifts, and policy environment", + "Exhibition and fair data: visitor and transaction statistics from major trade events including the China Import and Export Fair (Canton Fair)", + "Policy analysis: reports on trade policy developments, tariff changes, and regulatory updates affecting China's machinery and electronics trade" + ], + "zh": [ + "月度出口统计:按8位HS编码分类的机电产品出口量和出口额,包括发电设备、工业机械、汽车、船舶和消费电子", + "进口数据:月度机电产品进口量和进口额,追踪中国的技术引进和供应链整合", + "出口企业排名:按产品类别和目的地排列的主要出口企业,反映中国制造业的集中度", + "目的市场分析:与美国、欧盟、东盟及新兴市场等主要贸易伙伴的双边贸易流量和市场份额分析", + "贸易救济监测:主要市场针对中国机电产品出口的反倾销、反补贴税和保障措施调查", + "中国机电产品进出口年度报告:年度出口业绩、市场份额变化、产品结构调整和政策环境综合述评", + "展会数据:广交会等重大贸易展会的参展规模和成交统计", + "政策分析:影响中国机电产品贸易的贸易政策动态、关税变化及法规更新报告" + ] + }, + "has_api": false, + "file_path": "china/economy/trade/china-cccme.json" + }, + { + "id": "china-ccpit", + "name": { + "en": "China Council for the Promotion of International Trade", + "zh": "中国国际贸易促进委员会" + }, + "description": { + "en": "The China Council for the Promotion of International Trade (CCPIT), also known as the China Chamber of International Commerce (CCOIC), is China's primary government-affiliated body for trade promotion and international business facilitation, founded in 1952. CCPIT publishes authoritative data and research reports on China's foreign trade environment, business climate surveys among foreign-invested enterprises, trade dispute statistics, certificate of origin issuance volumes, international exhibition and trade fair data, and foreign direct investment attraction by region and industry. Its quarterly and annual surveys on the business confidence of multinational corporations operating in China are widely referenced by policymakers, investors, and economic researchers. CCPIT also publishes trade and investment legal guides, bilateral trade statistics with key partner countries, and reports on China's free trade zone policies.", + "zh": "中国国际贸易促进委员会(贸促会),又称中国国际商会,是中国主要的政府关联贸易促进和国际商务便利化机构,成立于1952年。贸促会发布权威数据和研究报告,涵盖中国外贸环境、外资企业商业环境调查、贸易争端统计、原产地证书签发量、国际展览和商品交易会数据,以及按地区和行业划分的引进外商直接投资情况。其关于在华跨国公司商业信心的季度和年度调查报告被政策制定者、投资者和经济研究人员广泛引用。贸促会还发布贸易和投资法律指南、与主要伙伴国的双边贸易统计数据,以及中国自由贸易区政策报告。" + }, + "website": "https://www.ccpit.org/", + "data_url": "https://www.ccpit.org/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "trade", + "economics", + "finance", + "governance" + ], + "update_frequency": "quarterly", + "tags": [ + "中国国际贸易促进委员会", + "ccpit", + "china-council-for-the-promotion-of-international-trade", + "贸促会", + "中国国际商会", + "ccoic", + "国际贸易", + "international-trade", + "贸易促进", + "trade-promotion", + "原产地证书", + "certificate-of-origin", + "外商直接投资", + "foreign-direct-investment", + "fdi", + "商业环境", + "business-environment", + "贸易争端", + "trade-disputes", + "商事调解", + "commercial-mediation", + "国际展览", + "international-exhibitions", + "贸易博览会", + "trade-fairs", + "跨国公司", + "multinational-corporations", + "自由贸易区", + "free-trade-zone", + "营商信心", + "business-confidence", + "双边贸易", + "bilateral-trade" + ], + "data_content": { + "en": [ + "Business climate surveys: quarterly and annual surveys on operating conditions, confidence indices, and challenges faced by foreign-invested enterprises in China", + "Certificate of origin: monthly issuance volumes of CCPIT and CCOIC certificates of origin by country and product category", + "Trade dispute statistics: arbitration and mediation cases handled, resolution outcomes, and dispute types by trading partner", + "International exhibitions: number and scale of exhibitions organized or facilitated, exhibitor and visitor statistics", + "Foreign direct investment attraction: FDI inflows by region, industry, and source country, supplementing MOFCOM data", + "Bilateral trade data: trade volumes and growth rates between China and major partner countries and economic blocs", + "Free trade zone reports: operational data and policy updates on China's FTZs, including Shanghai, Guangdong, and Hainan FTZs", + "Trade legal environment: annual reports on trade remedy cases (anti-dumping, safeguards) affecting Chinese enterprises abroad", + "Multinational enterprise surveys: investment intentions, localization trends, and policy feedback from MNCs operating in China" + ], + "zh": [ + "商业环境调查:关于外资企业在华经营状况、信心指数和挑战的季度和年度调查数据", + "原产地证书:按国家和产品类别划分的贸促会和中国国际商会原产地证书月度签发量", + "贸易争端统计:仲裁和调解案件数量、结案情况及按贸易伙伴划分的争端类型", + "国际展览:组织或参与的展览数量及规模、参展商和观众统计", + "引进外商直接投资:按地区、行业和来源国划分的外商直接投资流入情况", + "双边贸易数据:中国与主要伙伴国和经济体的贸易量及增长率", + "自由贸易区报告:中国自贸区(上海、广东、海南等)的运营数据和政策动态", + "贸易法律环境:影响海外中国企业的贸易救济案件(反倾销、保障措施)年度报告", + "跨国企业调查:在华跨国公司的投资意向、本土化趋势及政策反馈" + ] + }, + "has_api": false, + "file_path": "china/economy/trade/china-ccpit.json" + }, + { + "id": "china-cflp", + "name": { + "en": "China Federation of Logistics and Purchasing", + "zh": "中国物流与采购联合会" + }, + "description": { + "en": "The China Federation of Logistics and Purchasing (CFLP) is the national industry association representing China's logistics and supply chain sector. CFLP is internationally recognized as the publisher of the China Logistics PMI (Purchasing Managers' Index) and the China Manufacturing PMI (in conjunction with the National Bureau of Statistics), which are among the most closely watched leading economic indicators for China. The federation publishes monthly logistics PMI data, warehousing index, logistics industry revenue statistics, and annual logistics development reports. Its data is widely used by global investors, policymakers, and researchers to gauge the health of China's supply chains and manufacturing activity.", + "zh": "中国物流与采购联合会(中物联)是代表中国物流和供应链行业的全国性行业组织。中物联作为中国物流业采购经理人指数(PMI)的发布机构享誉国际,同时与国家统计局联合发布中国制造业PMI,这些指数是全球最受关注的中国经济先行指标之一。联合会发布月度物流业PMI、仓储指数、物流行业营收统计及年度物流发展报告,其数据被全球投资者、政策制定者和研究人员广泛用于评估中国供应链和制造业的运行状况。" + }, + "website": "https://www.chinawuliu.com.cn/", + "data_url": "https://www.chinawuliu.com.cn/lhhzq/", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "economics", + "industry", + "trade", + "infrastructure" + ], + "update_frequency": "monthly", + "tags": [ + "中国物流与采购联合会", + "cflp", + "中物联", + "物流PMI", + "logistics-pmi", + "采购经理人指数", + "purchasing-managers-index", + "中国制造业PMI", + "china-manufacturing-pmi", + "供应链", + "supply-chain", + "物流行业", + "logistics-industry", + "仓储指数", + "warehousing-index", + "物流成本", + "logistics-cost", + "运输", + "transportation", + "经济先行指标", + "leading-economic-indicator", + "采购", + "procurement", + "社会物流总额", + "total-social-logistics" + ], + "data_content": { + "en": [ + "China Logistics PMI: monthly composite index measuring activity across transportation, warehousing, and supply chain sectors, including sub-indices for business volume, new orders, inventory, and employment", + "China Manufacturing PMI: co-published with the National Bureau of Statistics, this flagship index tracks monthly changes in manufacturing activity through surveys of purchasing managers", + "Warehousing and storage index: monthly index tracking warehouse utilization rates, storage volumes, and throughput", + "Social logistics total volume: annual data on the total value of goods passing through China's logistics system, a key macro indicator", + "Logistics cost ratio: annual analysis of logistics costs as a percentage of GDP, used to benchmark China's supply chain efficiency", + "Freight transport data: volume and value of goods transported by road, rail, waterway, and air within China", + "Cold chain logistics statistics: annual data on the development of refrigerated transport and storage capacity", + "Annual logistics development report: comprehensive review of China's logistics sector including infrastructure, enterprises, and policy developments" + ], + "zh": [ + "中国物流业采购经理人指数(PMI):月度综合指数,涵盖运输、仓储和供应链各环节,包含业务量、新订单、库存和从业人员等分项指数", + "中国制造业PMI:与国家统计局联合发布,通过对采购经理的问卷调查追踪制造业月度活动变化的旗舰指数", + "仓储业务景气指数:月度跟踪仓库利用率、存储量和吞吐量的指数", + "社会物流总额:全国物流系统商品流转总值年度数据,是重要的宏观经济指标", + "物流费用占GDP比率:物流成本占GDP比重的年度分析,用于衡量中国供应链效率水平", + "货运量数据:公路、铁路、水运和航空运输的货物量和货物价值", + "冷链物流统计:冷藏运输和冷库容量发展情况年度数据", + "年度物流发展报告:中国物流行业基础设施、企业经营和政策发展的综合评述" + ] + }, + "has_api": false, + "file_path": "china/economy/trade/china-cflp.json" + }, + { + "id": "china-cfsmc", + "name": { + "en": "All-China Federation of Supply and Marketing Cooperatives", + "zh": "中华全国供销合作总社" + }, + "description": { + "en": "The All-China Federation of Supply and Marketing Cooperatives (ACFSMC) is a state-controlled cooperative organization directly under the State Council, operating China's largest rural distribution and procurement network. Spanning 31 provinces with over 200,000 cooperative member organizations, ACFSMC manages agricultural input supply (fertilizers, pesticides, seeds), rural consumer goods distribution, agricultural product procurement, cold chain logistics, and rural e-commerce services. It publishes annual statistical yearbooks and periodic data on agricultural materials distribution, rural consumption, cooperative enterprise financial performance, and rural market development, covering China's vast rural population across 2,800 county-level cooperative organizations.", + "zh": "中华全国供销合作总社是国务院直属的国家级联合合作组织,拥有全国最大的农村流通和购销网络。覆盖31个省份、200余万个基层合作组织,负责农业生产资料(化肥、农药、种子)供应、农村消费品流通、农产品购销、冷链物流和农村电商服务。发布年度统计年鉴和阶段性农业生产资料流通、农村消费、合作社企业财务经营和农村市场发展数据,服务覆盖全国2800余个县级供销合作社组织体系。" + }, + "website": "https://www.chinacoop.gov.cn/", + "data_url": "https://www.chinacoop.gov.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "agriculture", + "trade", + "economics" + ], + "update_frequency": "annual", + "tags": [ + "全国供销合作总社", + "acfsmc", + "供销合作社", + "supply-marketing-cooperatives", + "农业生产资料", + "agricultural-inputs", + "化肥流通", + "fertilizer-distribution", + "农村流通", + "rural-distribution", + "农产品购销", + "agricultural-procurement", + "农村电商", + "rural-e-commerce", + "合作社统计", + "cooperative-statistics", + "农村消费", + "rural-consumption", + "冷链物流", + "cold-chain-logistics", + "农资供应链", + "agricultural-supply-chain", + "县域经济", + "county-economy" + ], + "data_content": { + "en": [ + "Agricultural inputs distribution statistics: monthly and annual data on fertilizer, pesticide, seed, and farm machinery sales volume and prices through cooperative retail networks across 31 provinces", + "Rural consumer goods distribution: sales data for daily necessities, household goods, and processed food sold through county-level and township cooperative stores", + "Agricultural product procurement: annual volume and value of grain, cotton, oil crops, vegetables, fruits, and other agricultural products purchased through cooperative channels", + "Cooperative enterprise financial performance: revenue, profit, total assets, fixed asset investment, and employment figures for ACFSMC's nationwide enterprise network", + "Rural e-commerce statistics: annual online sales volume, platform usage rates, and last-mile logistics metrics for cooperative-operated e-commerce services in rural townships", + "Cooperative organizational data: number of county-level cooperatives, primary cooperative organizations, registered members, retail outlets, and warehousing capacity by province", + "Cold chain logistics capacity: refrigerated storage volume, cold-chain vehicles, and fresh agricultural product handling capacity across the cooperative distribution network", + "Rural market development indicators: market coverage rates, supply chain modernization progress, and service accessibility metrics for China's rural population" + ], + "zh": [ + "农业生产资料流通统计:31省合作社零售网络化肥、农药、种子和农机具月度及年度销售量和价格数据", + "农村消费品流通:县乡合作社门店日用品、家用商品和加工食品销售数据", + "农产品购销:合作社渠道粮食、棉花、油料、蔬菜、水果等农产品年度收购量和金额", + "合作社企业财务绩效:全国供销系统企业网络营收、利润、总资产、固定资产投资和就业数据", + "农村电商统计:合作社运营电商服务年度网络销售量、平台使用率和农村乡镇最后一公里物流指标", + "合作社组织数据:各省县级供销合作社数量、基层合作社组织、注册社员、零售网点和仓储容量", + "冷链物流能力:合作社流通网络冷库容量、冷链车辆和鲜活农产品处理能力", + "农村市场发展指标:农村人口市场覆盖率、供应链现代化进展和服务可及性指标" + ] + }, + "has_api": false, + "file_path": "china/economy/trade/china-cfsmc.json" + }, + { + "id": "china-chinca", + "name": { + "en": "China International Contractors Association", + "zh": "中国对外承包工程商会" + }, + "description": { + "en": "The China International Contractors Association (CHINCA) is the national industry organization representing Chinese enterprises engaged in international contracting, overseas investment, and project-related services. Operating under the supervision of the Ministry of Commerce, CHINCA represents over 1,500 member companies involved in infrastructure construction, engineering services, and overseas project financing across more than 180 countries. CHINCA publishes the authoritative annual Survey of China's International Contractors, which covers total overseas contracting revenue, newly signed contract value, project completions by sector (transportation, housing, energy, telecoms, industrial), geographic distribution, and enterprise rankings. The association also reports data on labor export, overseas engineering equipment value, and projects under Belt and Road Initiative (BRI) countries. CHINCA's statistics are the primary reference for tracking China's overseas construction footprint, infrastructure diplomacy, and international engineering services market share.", + "zh": "中国对外承包工程商会(CHINCA)是代表从事国际工程承包、境外投资及相关服务中国企业的全国性行业组织,在商务部指导下运作,会员企业超过1500家,业务覆盖180多个国家的基础设施建设、工程服务和境外项目融资领域。CHINCA发布权威年度《中国对外承包工程商会行业报告》,涵盖境外承包工程营业额、新签合同额、按行业(交通、房建、能源、通信、工业)分类的项目完成情况、地域分布及企业排名。商会还发布劳务输出、境外工程机械设备价值以及《一带一路》沿线国家项目数据。CHINCA统计数据是追踪中国境外建设足迹、基础设施外交及国际工程服务市场份额的主要参考来源。" + }, + "website": "https://www.chinca.org/", + "data_url": "https://www.chinca.org/CICA/info/20-1/index.html", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "trade", + "economics", + "infrastructure", + "construction" + ], + "update_frequency": "annual", + "tags": [ + "中国对外承包工程商会", + "chinca", + "china-international-contractors-association", + "对外承包工程", + "overseas-contracting", + "国际工程", + "international-engineering", + "境外投资", + "overseas-investment", + "新签合同额", + "newly-signed-contracts", + "营业额", + "contracting-revenue", + "一带一路", + "belt-and-road-initiative", + "bri", + "基础设施建设", + "infrastructure-construction", + "工程承包", + "engineering-contracting", + "劳务输出", + "labor-export", + "交通基础设施", + "transportation-infrastructure", + "能源工程", + "energy-engineering", + "企业排名", + "enterprise-ranking", + "mofcom", + "商务部" + ], + "data_content": { + "en": [ + "Annual overseas contracting revenue: total revenue earned by Chinese contractors from overseas projects, disaggregated by sector and geographic region", + "Newly signed contracts value: annual value of new international project contracts signed by Chinese companies, by country and sector", + "Project sector breakdown: overseas contract values for transportation, housing and real estate, energy and power, telecommunications, industrial, and other sectors", + "Geographic distribution: value and project count by region (Africa, Asia, Europe, Latin America, Middle East, Oceania) and top 50 destination countries", + "BRI country statistics: dedicated data on Chinese overseas contracting in Belt and Road Initiative partner countries, tracking growth trends since 2013", + "Top contractor rankings: annual list of China's top 100 international contractors by revenue and newly signed contracts, enabling trend analysis", + "Labor services: statistics on overseas labor export by Chinese companies linked to contracting projects", + "Equipment and materials export: value of engineering machinery and equipment exported as part of overseas construction projects", + "Annual industry survey report: comprehensive analysis of industry trends, challenges, policy environment, and outlook for Chinese overseas contractors" + ], + "zh": [ + "年度境外承包工程营业额:中国承包商境外项目收入总额,按行业和地理区域细分", + "新签合同额:中国企业年度新签国际项目合同总额,按国家和行业分类", + "项目行业分布:交通运输、房屋建筑、能源电力、通信、工业及其他领域的境外合同额", + "地区分布:按区域(非洲、亚洲、欧洲、拉美、中东、大洋洲)及前50目的地国统计的合同额和项目数量", + "\"一带一路\"国家统计:中国在\"一带一路\"沿线国家境外承包工程专项数据,追踪2013年以来增长趋势", + "承包商排名:按营业额和新签合同额列出的年度中国对外承包工程企业百强名单", + "劳务输出:与承包工程项目相关的中国企业境外劳务统计", + "设备材料出口:境外建设项目带动出口的工程机械设备价值", + "年度行业调查报告:中国对外承包工程行业趋势、挑战、政策环境及展望综合分析" + ] + }, + "has_api": false, + "file_path": "china/economy/trade/china-chinca.json" + }, + { + "id": "china-gacc", + "name": { + "en": "General Administration of Customs of China", + "zh": "中华人民共和国海关总署", + "native": "中华人民共和国海关总署" + }, + "description": { + "en": "The General Administration of Customs (GACC) is responsible for China's customs administration. It publishes detailed import/export statistics by HS code, country, and commodity category.", + "zh": "海关总署是中国海关管理的主管机构。发布按HS编码、国家和商品类别分类的详细进出口统计数据。" + }, + "website": "https://www.customs.gov.cn", + "data_url": "https://www.customs.gov.cn/customs/302249/zfxxgk/2799825/302274/302277/index.html", + "country": "CN", + "domains": [ + "trade", + "economics" + ], + "tags": [ + "customs", + "imports", + "exports", + "hs-code", + "trade-statistics" + ], + "authority_level": "government", + "update_frequency": "monthly", + "geographic_scope": "national", + "data_content": { + "en": [ + "Import/Export Statistics - Detailed trade data by HS code, country, and commodity category", + "Customs Revenue - National customs duty and tax collection data", + "Trade Balance - Monthly and annual trade surplus/deficit figures", + "Cross-border E-commerce - Cross-border online shopping import/export statistics" + ], + "zh": [ + "进出口统计 - 按HS编码、国家和商品类别分类的详细贸易数据", + "海关税收 - 全国海关关税和税收征收数据", + "贸易差额 - 月度和年度贸易顺差/逆差数据", + "跨境电商 - 跨境网购进出口统计" + ] + }, + "api_url": null, + "has_api": false, + "file_path": "china/economy/trade/china-gacc.json" + }, + { + "id": "china-sinosure", + "name": { + "en": "China Export & Credit Insurance Corporation", + "zh": "中国出口信用保险公司" + }, + "description": { + "en": "China Export & Credit Insurance Corporation (Sinosure) is a state-owned policy insurance company established by the Chinese government to support China's foreign trade, investment, and economic cooperation by providing export credit insurance and investment guarantee services. As China's sole provider of policy-based export credit insurance, Sinosure publishes annual reports containing authoritative data on export credit insurance coverage by country, industry, and enterprise type, as well as country risk assessments, loss and compensation data, and overseas investment insurance statistics. Sinosure's country risk classifications and export data coverage represent unique intelligence on the credit risk landscape of China's global trade partners.", + "zh": "中国出口信用保险公司(中国信保)是国家出资设立的政策性保险机构,通过提供出口信用保险和投资保证服务,支持中国的对外贸易、投资和经济合作。作为中国唯一的政策性出口信用保险机构,中国信保发布年度报告,提供按国家、行业和企业类型分类的出口信用保险承保数据,以及国家风险评级、损失赔偿数据和境外投资保险统计。中国信保的国家风险分类和出口数据覆盖情况,是了解中国全球贸易伙伴信用风险状况的独特信息来源。" + }, + "website": "https://www.sinosure.com.cn", + "data_url": "https://www.sinosure.com.cn/gywm/gsjj/xxpl/index.shtml", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "trade", + "finance", + "economics" + ], + "update_frequency": "annual", + "tags": [ + "出口信用保险", + "export-credit-insurance", + "国家风险", + "country-risk", + "出口保障", + "export-guarantee", + "境外投资", + "overseas-investment", + "贸易融资", + "trade-finance", + "短期险", + "short-term-insurance", + "中长期险", + "medium-long-term-insurance", + "债务人风险", + "buyer-risk", + "赔偿数据", + "claims-data", + "信用评级", + "credit-rating", + "对外贸易", + "foreign-trade", + "政策性保险", + "policy-insurance", + "sinosure", + "中国信保" + ], + "data_content": { + "en": [ + "Export credit insurance coverage statistics: annual premium income, total insured export value, and number of insured exporters by policy type (short-term, medium-to-long-term, overseas investment insurance) with historical comparison", + "Country risk assessments and classifications: Sinosure's proprietary country risk ratings covering 200+ countries and territories, categorized by political risk, transfer risk, and commercial risk with annual updates", + "Geographic distribution of export insurance coverage: insured export value broken down by destination country and region, highlighting coverage in Belt and Road Initiative countries, African markets, and emerging economies", + "Industry sector coverage data: export insurance penetration rates and insured value by major export sectors including machinery, electronics, textiles, chemicals, and infrastructure project financing", + "Loss and compensation data: annual claims paid, loss ratios by country and industry, recovery rates, and compensation trends indicating stress in China's export credit portfolio", + "Overseas investment insurance statistics: coverage for Chinese outbound direct investment (ODI) projects by country and industry, including infrastructure, energy, mining, and manufacturing investments", + "Enterprise type breakdown: insurance coverage distributed among large SOEs, mid-sized private exporters, SMEs, and cross-border e-commerce enterprises, with policy support metrics for each segment", + "Annual report financial data: Sinosure's own financial performance including total assets, underwriting profits, investment income, reserve levels, and solvency ratios as a policy insurance entity" + ], + "zh": [ + "出口信用保险承保统计:年度保费收入、出口保险金额和承保出口商数量,按险种(短期险、中长期险、境外投资险)分类,并附历史对比数据", + "国家风险评估与分类:中国信保对200余个国家和地区的自有国家风险评级,按政治风险、转移风险和商业风险分类,每年更新", + "出口保险承保的地区分布:按目的国和地区分类的承保出口金额,重点突出一带一路沿线国家、非洲市场和新兴经济体的覆盖情况", + "行业领域覆盖数据:机械、电子、纺织、化工和基础设施项目融资等主要出口行业的保险渗透率和承保金额", + "损失与赔偿数据:年度赔偿金额、按国家和行业的赔付率、追偿率及赔偿趋势,反映中国出口信用组合的压力状况", + "境外投资保险统计:中国对外直接投资(ODI)项目按国家和行业的承保情况,含基础设施、能源、矿业和制造业投资", + "企业类型分布:大型国有企业、中型民营出口商、中小企业及跨境电商企业的保险覆盖情况,及各细分市场的政策支持指标", + "年度报告财务数据:中国信保作为政策性保险机构的自身财务状况,包括总资产、承保利润、投资收益、准备金水平和偿付能力比率" + ] + }, + "has_api": false, + "file_path": "china/economy/trade/china-sinosure.json" + }, + { + "id": "china-customs", + "name": { + "en": "General Administration of Customs of China", + "zh": "中华人民共和国海关总署", + "native": "中华人民共和国海关总署" + }, + "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": "中华人民共和国海关总署负责中国的海关管理。发布全面的对外贸易统计数据,包括按国家/地区、商品、海关关区、贸易方式和企业类型分类的进出口数据。涵盖商品贸易金额、数量、价格和贸易差额数据。" + }, + "website": "http://www.customs.gov.cn", + "data_url": "http://www.customs.gov.cn", + "api_url": null, + "country": "CN", + "domains": [ + "trade", + "economics", + "international-commerce" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "china", + "customs", + "foreign-trade", + "import", + "export", + "trade-statistics", + "hs-code", + "merchandise-trade" + ], + "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": "china-mofcom", + "name": { + "en": "Ministry of Commerce of China", + "zh": "中华人民共和国商务部", + "native": "中华人民共和国商务部" + }, + "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)、零售销售、电子商务、服务贸易和双边经济合作数据。" + }, + "website": "https://www.mofcom.gov.cn", + "data_url": "https://data.mofcom.gov.cn", + "api_url": null, + "country": "CN", + "domains": [ + "trade", + "investment", + "commerce", + "economics" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "china", + "commerce", + "fdi", + "odi", + "foreign-investment", + "retail", + "ecommerce", + "services-trade" + ], + "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": "china-csdp", + "name": { + "en": "China School Development Planning Center", + "zh": "教育部学校规划建设发展中心" + }, + "description": { + "en": "The China School Development Planning Center (CSDP), under China's Ministry of Education, is responsible for planning, policy research, and development of China's school infrastructure. It publishes data and reports on educational facility construction, school development planning standards, campus sustainability, smart campus initiatives, and education infrastructure investment across the country.", + "zh": "教育部学校规划建设发展中心(CSDP)隶属于教育部,负责全国学校基础设施的规划、政策研究与发展工作,发布教育设施建设、学校发展规划标准、校园可持续发展、智慧校园及全国教育基础设施投资等方面的数据与报告。" + }, + "website": "https://www.csdp.edu.cn", + "data_url": "https://www.csdp.edu.cn", + "api_url": null, + "country": "CN", + "domains": [ + "education", + "infrastructure", + "government" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "china", + "education", + "school-planning", + "education-infrastructure" + ], + "data_content": { + "en": [ + "School Construction Statistics - Data on new school construction, renovation, and facility upgrades nationwide", + "Campus Planning Standards - National standards for school infrastructure and space planning", + "Smart Campus Initiative - Progress reports on digital transformation in Chinese schools", + "Education Infrastructure Investment - Annual investment data in school facilities by province", + "Sustainability Reports - Green campus construction and energy-saving benchmarks", + "Research Reports - Policy research on school development planning and quality standards" + ], + "zh": [ + "学校建设统计 - 全国新建、改建及设施升级数据", + "校园规划标准 - 学校基础设施与空间规划国家标准", + "智慧校园建设 - 中国学校数字化转型进展报告", + "教育基础设施投资 - 各省学校设施年度投资数据", + "可持续发展报告 - 绿色校园建设与节能标准", + "研究报告 - 学校发展规划与质量标准政策研究" + ] + }, + "authority_level": "government", + "has_api": false, + "file_path": "china/education/china-csdp.json" + }, + { + "id": "china-nlc", + "name": { + "en": "National Library of China", + "zh": "中国国家图书馆" + }, + "description": { + "en": "The National Library of China (NLC) is China's largest and highest-level comprehensive library, functioning as the national center for bibliographic information, document preservation, and cultural heritage. Established in 1909, it holds over 40 million items covering books, periodicals, newspapers, ancient manuscripts, digital resources, and audiovisual materials. NLC operates the National Digital Library of China (NDLC), providing open access to bibliographic metadata, historical archives, and digitized cultural relics. It also serves as the national ISSN and ISBN agency for China and publishes authoritative library statistics, cultural heritage digital resources, and reading behavior research reports that support policy, education, and humanities research.", + "zh": "中国国家图书馆是中国最大、最高级别的综合性图书馆,也是全国书目信息、文献保障和文化遗产保护的中心机构。国家图书馆建于1909年,馆藏超过4000万件,涵盖图书、期刊、报纸、古籍善本、数字资源及音像资料等。依托国家数字图书馆平台,提供书目元数据、历史档案和数字文化遗产的开放获取服务。国图还担任中国ISSN和ISBN国家中心,发布权威的图书馆统计数据、文化遗产数字资源及阅读行为研究报告,支持政策制定、教育研究和人文学科发展。" + }, + "website": "https://www.nlc.cn", + "data_url": "https://www.nlc.cn/pcab/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "education", + "culture", + "research" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "国家图书馆", + "national-library-of-china", + "nlc", + "国家数字图书馆", + "national-digital-library", + "古籍", + "ancient-manuscripts", + "书目数据", + "bibliographic-data", + "isbn", + "issn", + "文化遗产", + "cultural-heritage", + "数字资源", + "digital-resources", + "图书馆统计", + "library-statistics", + "阅读研究", + "reading-research", + "文献保障", + "document-preservation", + "开放获取", + "open-access", + "期刊", + "periodicals", + "学术数据", + "academic-data", + "china" + ], + "data_content": { + "en": [ + "National bibliographic catalog: metadata for books, periodicals, newspapers, and multimedia holdings", + "Ancient books and manuscripts: digitized rare books, classical texts, and historical documents from imperial collections", + "Cultural heritage digital resources: digitized paintings, calligraphy, rubbings, maps, and photographs", + "ISBN and ISSN registry: national book and serial publication registration records", + "Library statistics yearbook: annual data on public libraries, collections, services, and staffing nationwide", + "National reading survey: annual report on Chinese citizens' reading habits, formats, and preferences", + "Interlibrary loan data: cross-library document delivery and resource sharing statistics", + "Academic and research journals: access to Chinese core journals and scholarly databases", + "Digital archives: historical newspapers, government gazettes, and official publications", + "Open data catalog: selected datasets and bibliographic records available for public download" + ], + "zh": [ + "全国书目联合目录:图书、期刊、报纸及多媒体馆藏的元数据", + "古籍善本:数字化珍贵古籍、经典文献及皇家收藏历史文献", + "文化遗产数字资源:数字化绘画、书法、拓片、地图及历史图片", + "ISBN与ISSN注册中心:全国图书及连续出版物登记记录", + "图书馆统计年报:全国公共图书馆馆藏、服务及人员年度统计", + "全国阅读调查:中国公民阅读习惯、阅读载体及偏好年度报告", + "馆际互借数据:图书馆间文献传递及资源共享统计", + "学术期刊:中文核心期刊及学术数据库访问", + "数字档案:历史报纸、政府公报及官方出版物", + "开放数据目录:可公开下载的精选数据集及书目记录" + ] + }, + "has_api": false, + "file_path": "china/education/china-nlc.json" + }, + { + "id": "cscse", + "name": { + "en": "Chinese Service Center for Scholarly Exchange", + "zh": "教育部留学服务中心" + }, + "description": { + "en": "CSCSE is a directly affiliated institution under the Ministry of Education of China, primarily engaged in services related to studying abroad, returning from overseas studies, and international educational exchanges. It provides comprehensive services including overseas academic credential evaluation, international cooperation programs, and study abroad consulting.", + "zh": "教育部留学服务中心是教育部直属事业单位,主要从事出国留学、留学回国和来华留学以及教育国际交流与合作的有关服务。提供国(境)外学历学位认证、国际合作项目、留学咨询等综合性服务。" + }, + "website": "https://portal.cscse.edu.cn/", + "data_url": "https://zwfw.cscse.edu.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "education", + "international-exchange", + "credential-verification" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "留学服务", + "学历认证", + "credential-verification", + "overseas-education", + "study-abroad", + "留学回国", + "国际教育", + "international-education", + "cscse", + "教育部", + "ministry-of-education" + ], + "data_content": { + "en": [ + "Overseas academic credential and degree verification for international students", + "Database of recognized foreign universities and institutions", + "International cooperation program information (e.g., CSCSE-SQA programs)", + "Study abroad service records and consultation data", + "Returning scholar services and employment information", + "Credential verification dishonest behavior records" + ], + "zh": [ + "国(境)外学历学位认证服务数据", + "认证院校数据库(覆盖全球各国高等教育机构)", + "国际合作项目信息(如中英SQA项目等)", + "留学服务记录和咨询数据", + "留学回国人员服务与就业信息", + "学历认证失信行为公示记录" + ] + }, + "has_api": false, + "file_path": "china/education/cscse.json" + }, + { + "id": "cdgdc", + "name": { + "en": "China Academic Degrees & Graduate Education Development Center", + "zh": "教育部学位与研究生教育发展中心" + }, + "description": { + "en": "The China Academic Degrees & Graduate Education Development Center (CDGDC) is a public institution directly under the Ministry of Education of China. It is responsible for degree and discipline evaluation, quality monitoring of graduate education, thesis sampling inspection, and professional degree evaluation. The center provides comprehensive information services for China's degree and graduate education system.", + "zh": "教育部学位与研究生教育发展中心是教育部直属事业单位,负责学位与学科评估、研究生教育质量监测、学位论文抽检、专业学位评估等工作。中心为中国学位与研究生教育体系提供全面的信息服务和质量评估。" + }, + "website": "https://www.chinadegrees.cn/", + "data_url": "https://www.chinadegrees.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "education", + "academic-degrees", + "graduate-education" + ], + "update_frequency": "irregular", + "tags": [ + "学位", + "研究生教育", + "academic-degrees", + "graduate-education", + "学科评估", + "discipline-evaluation", + "论文抽检", + "thesis-inspection", + "教育质量", + "education-quality", + "专业学位", + "professional-degree", + "博士", + "硕士", + "phd", + "master", + "学位认证", + "degree-certification" + ], + "data_content": { + "en": [ + "Discipline evaluation results and rankings", + "Degree authorization information", + "Graduate thesis sampling inspection results", + "Professional degree evaluation data", + "Graduate education quality monitoring data", + "Academic degree certification services", + "Graduate student party building data", + "Journal and publication information" + ], + "zh": [ + "学科评估结果与排名", + "学位授权点信息", + "学位论文抽检结果", + "专业学位评估数据", + "研究生教育质量监测数据", + "学位认证服务", + "研究生党建数据", + "期刊与出版物信息" + ] + }, + "has_api": false, + "file_path": "china/education/higher_education/cdgdc.json" + }, + { + "id": "china-gaokao-chsi", + "name": { + "en": "China Postgraduate Admissions Information Network", + "zh": "中国研究生招生信息网" + }, + "description": { + "en": "China Postgraduate Admissions Information Network (CHSI Graduate Admissions) is the official platform designated by the Ministry of Education for postgraduate entrance examination online registration and admission adjustment. Operated by the Student Service and Development Center of the Ministry of Education, it provides authoritative services including online registration, adjustment system, institution inquiry, program directory, admission policy releases, and examination score queries for national master's and doctoral degree programs.", + "zh": "中国研究生招生信息网是教育部指定的研究生入学考试网上报名及调剂的唯一官方网站。由教育部学生服务与素质发展中心主办,提供全国硕士、博士研究生招生网上报名、调剂服务系统、院校信息查询、专业目录查询、招生政策发布、考试成绩查询等权威服务。" + }, + "website": "https://yz.chsi.com.cn/", + "data_url": "https://yz.chsi.com.cn/sch/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "education", + "postgraduate-admissions", + "higher-education" + ], + "update_frequency": "real-time", + "tags": [ + "研招网", + "postgraduate-admissions", + "考研", + "graduate-entrance-exam", + "硕士招生", + "master's-admissions", + "博士招生", + "doctoral-admissions", + "网上报名", + "online-registration", + "调剂系统", + "adjustment-system", + "院校查询", + "institution-search", + "专业目录", + "program-directory", + "成绩查询", + "score-inquiry", + "教育部", + "ministry-of-education", + "学信网", + "chsi", + "研究生入学考试", + "postgraduate-entrance-examination", + "推免服务", + "exemption-recommendation" + ], + "data_content": { + "en": [ + "Postgraduate Entrance Exam Registration - online registration system for national master's and doctoral entrance examinations", + "Admission Adjustment System - adjustment intention collection and adjustment service system for postgraduate admissions", + "Institution Information Database - detailed information on recruiting institutions, including contact info, admission policies, and enrollment plans", + "Program Directory - comprehensive catalog of master's and doctoral programs by institution and discipline", + "Admission Policies - releases of Ministry of Education policies, management regulations, and institutional admission guidelines", + "Exam Score Queries - initial exam score inquiries and recheck applications", + "Exemption Recommendation Services - recommendation and admission services for exempt students (推免生)", + "Information Disclosure Platform - admission information disclosure including admission lists and enrollment statistics", + "Consultation Services - online Q&A platform for admissions policies and procedures" + ], + "zh": [ + "研究生入学考试报名 - 全国硕士、博士研究生入学考试网上报名系统", + "调剂服务系统 - 研究生招生调剂意向采集和调剂服务系统", + "招生单位信息库 - 各招生单位详细信息,包括联系方式、招生政策、招生计划等", + "专业目录查询 - 按招生单位和学科门类的硕士、博士专业目录", + "招生政策发布 - 教育部政策文件、招生管理规定、各单位招生简章等", + "考试成绩查询 - 初试成绩查询及成绩复核申请", + "推免服务 - 推荐免试研究生推荐和接收服务", + "信息公开平台 - 招生信息公开,包括录取名单、招生统计等", + "在线咨询服务 - 招生政策和流程的在线问答平台" + ] + }, + "has_api": false, + "file_path": "china/education/higher_education/china-gaokao-chsi.json" + }, + { + "id": "china-moe-higher-education", + "name": { + "en": "Ministry of Education of China - Higher Education Statistics", + "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": "中华人民共和国教育部发布的年度全国高等教育事业发展统计公报,涵盖本科、研究生和职业教育的招生、毕业生、师资、基础设施和院校数据。提供中国高等教育发展的全面统计数据,包括按院校类型、学科和教育层次的详细分类。" + }, + "website": "https://www.moe.gov.cn/", + "data_url": "https://www.moe.gov.cn/jyb_sjzl/sjzl_fztjgb/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "education", + "higher-education", + "statistics" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "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" + ], + "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": "moe-china", + "name": { + "en": "Ministry of Education of the People's Republic of China", + "zh": "中华人民共和国教育部" + }, + "description": { + "en": "The Ministry of Education of the People's Republic of China (MOE) is the government department responsible for comprehensive education management nationwide. It formulates education policies, publishes education statistics, supervises educational institutions at all levels, and provides authoritative data on education development including enrollment, teacher staffing, infrastructure, and educational expenditure across China.", + "zh": "中华人民共和国教育部是主管全国教育事业的国务院组成部门。负责制定教育政策、发布教育统计数据、监督管理各级各类教育机构,提供包括学生入学、师资配备、基础设施建设、教育经费等方面的权威教育发展数据。" + }, + "website": "https://www.moe.gov.cn/", + "data_url": "https://www.moe.gov.cn/jyb_xxgk/xxgk/neirong/tongji/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "education", + "education-statistics", + "education-policy", + "higher-education", + "basic-education" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "教育部", + "ministry-of-education", + "教育统计", + "education-statistics", + "教育事业发展", + "education-development", + "学校统计", + "school-statistics", + "学生数据", + "student-data", + "教师数据", + "teacher-data", + "教育经费", + "education-expenditure", + "高等教育", + "higher-education", + "基础教育", + "basic-education", + "职业教育", + "vocational-education", + "学前教育", + "preschool-education", + "教育政策", + "education-policy", + "教育法规", + "education-regulations" + ], + "data_content": { + "en": [ + "National education development statistics bulletin (annual comprehensive education data)", + "Education statistics data (enrollment, graduates, school count, teacher staffing across all levels)", + "China Education Monitoring and Evaluation Statistical Indicator System", + "School (institution) code management data", + "National education expenditure statistics (annual education funding execution data)", + "Annual data on students studying abroad and international students in China", + "Education policy documents and regulations", + "Administrative licensing information", + "Financial budgets and final accounts", + "Government procurement information", + "Personnel work information", + "Education information disclosure annual reports", + "Ministry of Education bulletins and briefings" + ], + "zh": [ + "全国教育事业发展统计公报(年度综合教育数据)", + "教育统计数据(各级各类学校招生、毕业生、学校数量、教师配备等)", + "中国教育监测与评价统计指标体系", + "学校(机构)代码管理数据", + "全国教育经费执行情况统计公告(年度教育经费投入数据)", + "年度出国留学、来华留学数据", + "教育政策文件与法规", + "行政许可信息", + "财政预算、决算信息", + "政府采购信息", + "人事工作信息", + "教育信息公开年度报告", + "教育部公报、简报" + ] + }, + "has_api": false, + "file_path": "china/education/moe-china.json" + }, + { + "id": "moe-gaokao", + "name": { + "en": "Sunshine Gaokao Platform", + "zh": "阳光高考信息平台" + }, + "description": { + "en": "The Sunshine Gaokao Information Platform is the official platform designated by China's Ministry of Education for the 'Sunshine Project' in higher education admissions. Launched on May 10, 2005, it is operated by the Ministry of Education's Student Service and Quality Development Center. The platform provides comprehensive services including admissions announcements, university information, online consultation, enrollment plans, Gaokao updates, and volunteer application guidance. In 2024, it introduced the 'Sunshine Volunteer' information service system, offering data-driven services such as major recommendations, career assessments, and employment prospects based on big data analysis.", + "zh": "阳光高考信息平台是教育部高校招生阳光工程指定信息发布平台,由教育部学生服务与素质发展中心主办。平台于2005年5月10日正式开通,集招生公示、院校信息、在线咨询、招生计划、高考动态、志愿参考等内容于一体。2024年,平台开通\"阳光志愿\"信息服务系统,基于招生、就业、调查、测评等大数据,结合深度专业和职业解读,提供志愿推荐、专业介绍、心理测评、就业去向及前景查询等服务。" + }, + "website": "https://gaokao.chsi.com.cn/", + "data_url": "https://gaokao.chsi.com.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "education", + "higher-education", + "admissions" + ], + "update_frequency": "daily", + "tags": [ + "阳光高考", + "sunshine-gaokao", + "高考", + "gaokao", + "college-entrance-examination", + "大学招生", + "university-admissions", + "志愿填报", + "volunteer-application", + "阳光志愿", + "sunshine-volunteer", + "招生计划", + "enrollment-plan", + "院校信息", + "university-information", + "专业介绍", + "major-introduction", + "就业前景", + "employment-prospects", + "教育部", + "ministry-of-education", + "学信网", + "chsi", + "高校招生", + "higher-education-enrollment", + "招生章程", + "admission-regulations" + ], + "data_content": { + "en": [ + "University Admissions Information - comprehensive enrollment plans, admission scores, and admission regulations for Chinese universities", + "Major and Specialty Database - detailed introductions to university majors, curriculum, and career prospects", + "Gaokao Policies and Updates - latest national and provincial Gaokao policies, examination schedules, and reform updates", + "Sunshine Volunteer Service - AI-powered volunteer application recommendations based on scores, preferences, and employment data", + "Online Consultation Services - direct Q&A with university admissions offices and education authorities", + "Admissions Announcements - official public notices of special admissions, self-enrollment, and admission results", + "Employment and Career Data - employment rates, salary trends, and career paths for different majors and universities", + "Psychological Assessment Tools - career interest tests and aptitude evaluations for major selection", + "Provincial Gaokao Information - region-specific examination requirements, score lines, and admission policies" + ], + "zh": [ + "高校招生信息 - 全国高校招生计划、录取分数线、招生章程等综合信息", + "专业与学科数据库 - 大学专业详细介绍、课程设置、就业前景等信息", + "高考政策与动态 - 最新国家及各省高考政策、考试安排、改革动态", + "阳光志愿服务 - 基于分数、偏好和就业数据的智能志愿填报推荐系统", + "在线咨询服务 - 与高校招生办和教育主管部门的直接问答平台", + "招生公示信息 - 特殊类型招生、自主招生、录取结果等官方公示", + "就业与职业数据 - 不同专业和高校的就业率、薪资趋势、职业发展路径", + "心理测评工具 - 职业兴趣测试、能力评估等专业选择辅助工具", + "各省高考信息 - 分省考试要求、分数线、录取政策等区域性信息" + ] + }, + "has_api": false, + "file_path": "china/education/moe-gaokao.json" + }, + { + "id": "china-cdb", + "name": { + "en": "China Development Bank", + "zh": "国家开发银行" + }, + "description": { + "en": "The China Development Bank (CDB) is China's largest policy bank and development finance institution, directly supervised by the State Council. Established in 1994, it provides medium- and long-term financing for major national strategic projects in infrastructure, basic industries, and pillar industries. CDB publishes annual reports, financial statements, bond issuance data, and statistics on lending to key sectors including transportation, energy, water resources, urban development, and international cooperation.", + "zh": "国家开发银行是中国最大的政策性银行和开发性金融机构,直属国务院监管,成立于1994年,为基础设施、基础产业和支柱产业等国家重大战略项目提供中长期融资。发布年度报告、财务报表、债券发行数据及交通、能源、水利、城镇化建设和国际合作等重点领域贷款统计数据。" + }, + "website": "https://www.cdb.com.cn", + "data_url": "https://www.cdb.com.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "finance", + "banking", + "infrastructure" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "china", + "development-bank", + "policy-bank", + "infrastructure-finance", + "long-term-lending", + "bond-issuance", + "国家开发银行", + "政策性银行", + "开发性金融", + "基础设施", + "中长期贷款", + "债券", + "能源贷款", + "交通贷款", + "城镇化", + "national-development", + "cdb", + "annual-report" + ], + "data_content": { + "en": [ + "Annual Reports - Full financial statements, business review, capital adequacy, and risk management disclosure", + "Bond Issuances - Domestic and international bond prospectuses, rates, and maturity schedules", + "Sector Lending Data - Loans outstanding by sector: transportation, energy, water, urban, education, agriculture", + "Infrastructure Finance - Financing volume for highways, railways, airports, and urban infrastructure", + "Poverty Alleviation Finance - Targeted lending statistics for poverty reduction and rural revitalization", + "International Cooperation - Overseas lending statistics and development finance for BRI projects", + "Green Finance - Green bonds and environmental lending statistics", + "Information Disclosure (ZWGK) - Regulatory filings, business reports, and governance documents" + ], + "zh": [ + "年度报告 - 完整财务报表、业务回顾、资本充足率及风险管理披露", + "债券发行 - 境内外债券募集说明书、利率及到期安排", + "行业贷款数据 - 按行业划分的贷款余额:交通、能源、水利、城镇、教育、农业", + "基础设施融资 - 公路、铁路、机场及城市基础设施的融资规模", + "脱贫攻坚金融 - 精准扶贫和乡村振兴的专项贷款统计", + "国际合作 - 境外贷款统计数据及一带一路项目开发性融资", + "绿色金融 - 绿色债券和环保领域贷款统计", + "政务公开(ZWGK) - 监管报备、业务报告及公司治理文件" + ] + }, + "has_api": false, + "file_path": "china/finance/banking/cdb.json" + }, + { + "id": "china-adbc", + "name": { + "en": "Agricultural Development Bank of China", + "zh": "中国农业发展银行" + }, + "description": { + "en": "The Agricultural Development Bank of China (ADBC) is China's state-owned agricultural policy bank, directly supervised by the State Council. Established in 1994, it provides policy-based financial support for agriculture, rural development, and food security. It publishes annual reports, bond issuance data, financial statements, and loan statistics related to rural development and food supply chain financing.", + "zh": "中国农业发展银行是中国国家出资、直属国务院领导的农业政策性银行,成立于1994年,为农业农村发展和粮食安全提供政策性金融支持。发布年度报告、债券发行数据、财务报表及涉农贷款和粮食供应链融资统计数据。" + }, + "website": "https://www.adbc.com.cn", + "data_url": "https://www.adbc.com.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "finance", + "agriculture", + "banking" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "agricultural-bank", + "policy-bank", + "rural-finance", + "agriculture-loans", + "adbc", + "农业发展银行", + "农发行", + "涉农贷款", + "三农金融", + "food-security", + "rural-development", + "china" + ], + "data_content": { + "en": [ + "Annual reports and audited financial statements", + "Agricultural policy loan portfolio statistics", + "Rural development and infrastructure financing data", + "Bond issuance and yield curve information", + "Food security and grain reserve financing statistics", + "Regional rural credit allocation data", + "Small and micro agricultural enterprise lending" + ], + "zh": [ + "年度报告和经审计财务报表", + "农业政策性贷款组合统计", + "农村发展和基础设施融资数据", + "债券发行和收益率曲线信息", + "粮食安全和储备融资统计", + "区域农村信贷配置数据", + "小微农业企业贷款数据" + ] + }, + "has_api": false, + "file_path": "china/finance/banking/china-adbc.json" + }, + { + "id": "china-boc", + "name": { + "en": "Bank of China (BOC)", + "zh": "中国银行" + }, + "description": { + "en": "Bank of China (BOC) is one of China's 'Big Four' state-owned commercial banks and the most internationalized Chinese bank. Established in 1912 and present in over 60 countries and regions, BOC is also the principal bank for RMB clearing and settlement in many overseas markets. BOC is China's designated foreign exchange bank and publishes authoritative daily RMB exchange rate reference prices (中间价) used widely across Chinese financial markets. In addition to comprehensive annual and interim financial reports covering capital ratios, asset quality, and profitability metrics, BOC provides key international financial data including cross-border trade finance volumes, overseas corporate banking statistics, and offshore RMB (CNH) market data. BOC's exchange rate and cross-border finance data are essential references for multinational corporations operating in China, foreign exchange risk management, and analysis of China's capital account liberalization progress.", + "zh": "中国银行(中行/BOC)是中国“四大行”之一,也是国际化程度最高的中国银行。中行创立于1912年,在全球逾60个国家和地区设有机构,同时是多个海外市场人民币清结算的主要银行。中行是中国官方指定的外汇专业银行,每日发布被中国金融市场广泛引用的人民币汇率中间价。除涵盖资本充足率、资产质量和盈利指标的完整年报和中报外,中行还提供跨境贸易融资规模、海外公司银行业务统计及离岸人民币(CNH)市场数据等关键国际金融数据。中行汇率和跨境金融数据是在华跨国企业外汇风险管理、人民币国际化进展分析及中国资本账户开放程度评估的重要参考。" + }, + "website": "https://www.boc.cn", + "data_url": "https://www.boc.cn/fimarkets/", + "api_url": null, + "authority_level": "commercial", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "economics", + "international-trade" + ], + "update_frequency": "daily", + "tags": [ + "boc", + "中国银行", + "bank-of-china", + "国有商业银行", + "state-owned-bank", + "外汇", + "foreign-exchange", + "人民币汇率", + "rmb-exchange-rate", + "汇率中间价", + "exchange-rate-midpoint", + "跨境贸易融资", + "cross-border-trade-finance", + "离岸人民币", + "offshore-rmb", + "cnh", + "年报", + "annual-report", + "资本充足率", + "capital-adequacy", + "银行业", + "banking", + "人民币国际化", + "rmb-internationalization" + ], + "data_content": { + "en": [ + "Daily RMB exchange rate middle rates (中间价): official CNY reference prices against USD, EUR, JPY, HKD, GBP, AUD, CAD, and 20+ other currencies", + "Foreign currency exchange rates: spot rates, forward rates, and cross rates updated throughout trading hours", + "Annual and interim financial reports: comprehensive financial statements with capital adequacy ratios, NPL ratios, and profitability metrics", + "Cross-border trade finance data: letter of credit volumes, cross-border RMB settlement statistics, and trade facilitation metrics", + "Offshore RMB (CNH) market data: Hong Kong and Singapore RMB deposit pools, CNH interbank rates", + "International banking statistics: country-by-country breakdown of overseas asset exposure and profitability", + "Interest rate publications: RMB deposit rates, loan prime rate (LPR) applications, and foreign currency deposit rates", + "SWIFT RMB internationalization data: BOC's share in global RMB cross-border payments and correspondent banking" + ], + "zh": [ + "每日人民币汇率中间价:人民币兑美元、欧元、日元、港元、英镑、澳元、加元等20多种货币的官方参考汇率", + "外币即期汇率、远期汇率及交叉汇率,在交易时间内实时更新", + "年报和中报:涵盖资本充足率、不良贷款率和盈利指标的完整财务报表", + "跨境贸易融资数据:信用证业务量、跨境人民币结算统计及贸易便利化指标", + "离岸人民币(CNH)市场数据:香港和新加坡人民币存款池规模、CNH同业利率", + "国际银行业统计:各国海外资产敞口及盈利能力分国别披露", + "利率公告:人民币存款利率、贷款市场报价利率(LPR)应用及外币存款利率", + "SWIFT人民币国际化数据:中行在全球人民币跨境支付及代理行网络中的占比" + ] + }, + "has_api": false, + "file_path": "china/finance/banking/china-boc.json" + }, + { + "id": "china-cba", + "name": { + "en": "China Banking Association", + "zh": "中国银行业协会" + }, + "description": { + "en": "The China Banking Association (CBA) is the national self-regulatory and industry organization for China's banking sector, operating under the guidance of the National Financial Regulatory Administration (NFRA). China's banking system is the world's largest by total assets, and CBA serves as the primary voice for over 4,000 banking institutions. CBA publishes authoritative annual reports on China's banking industry development, covering total bank assets and liabilities, deposit and loan balances, non-performing loan ratios, capital adequacy indicators, digital banking progress, green finance volumes, and banking service reach statistics. CBA's flagship publication, the China Banking Industry Development Report, provides the most comprehensive annual snapshot of China's banking sector and is widely used by policymakers, investors, and researchers globally.", + "zh": "中国银行业协会(银行业协会)是全国性银行业自律和行业组织,在国家金融监督管理总局指导下运营,服务对象超过4000家银行业金融机构。中国银行业资产规模全球最大,中国银行业协会是业界主要代言机构。协会发布权威年度银行业发展报告,内容涵盖银行业资产负债总量、存贷款余额、不良贷款率、资本充足率、数字金融进展、绿色金融规模及银行服务覆盖等统计数据。协会旗舰出版物《中国银行业发展报告》是全面反映中国银行业年度状况的最权威资料,被全球政策制定者、投资者和研究人员广泛参考。" + }, + "website": "https://www.china-cba.net/", + "data_url": "https://www.china-cba.net/Index/lists/catid/268.html", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "economics", + "statistics" + ], + "update_frequency": "annual", + "tags": [ + "中国银行业协会", + "china-banking-association", + "cba", + "银行业统计", + "banking-statistics", + "银行资产", + "bank-assets", + "存贷款", + "deposits-and-loans", + "不良贷款率", + "non-performing-loan-ratio", + "资本充足率", + "capital-adequacy-ratio", + "数字银行", + "digital-banking", + "绿色金融", + "green-finance", + "银行业发展报告", + "banking-industry-development-report", + "普惠金融", + "inclusive-finance", + "银行服务覆盖", + "banking-service-reach", + "中国银行业", + "china-banking-sector", + "金融统计", + "financial-statistics" + ], + "data_content": { + "en": [ + "Banking sector total assets: annual total assets of China's banking institutions broken down by bank type (state-owned, joint-stock, city commercial, rural, foreign)", + "Deposit and loan balances: total deposits and outstanding loan balances by category, including corporate, personal, and mortgage loans", + "Non-performing loan (NPL) data: industry NPL ratios and absolute volumes, NPL disposition and write-off statistics", + "Capital adequacy: capital adequacy ratios, core tier-1 capital, and leverage ratios across major bank categories", + "Profitability indicators: net profit, return on assets, return on equity, and net interest margins for China's banking industry", + "Digital banking progress: number of online banking users, mobile banking transaction volumes, fintech lending data", + "Green finance: green credit outstanding balances, green bond issuance by banks, and ESG-linked lending", + "Inclusive finance (普惠金融): small and micro enterprise loan volumes, agricultural credit extension, and financial service coverage in rural areas", + "Banking network: number of bank branches, ATMs, and electronic banking terminals by province", + "Annual China Banking Industry Development Report: flagship publication covering comprehensive banking industry analysis, trends, and policy assessments" + ], + "zh": [ + "银行业资产总量:按银行类型(国有大行、股份制银行、城商行、农村金融机构、外资银行)分类的年度资产总量", + "存贷款余额:各类存款和贷款余额,包括企业贷款、个人贷款及按揭贷款", + "不良贷款(NPL)数据:行业不良贷款率和绝对规模,不良贷款处置和核销统计", + "资本充足:主要银行类别的资本充足率、核心一级资本及杠杆率", + "盈利能力指标:中国银行业净利润、资产收益率、净资产收益率及净息差", + "数字银行进展:网银用户数量、手机银行交易量、金融科技贷款数据", + "绿色金融:绿色信贷余额、银行绿色债券发行量及ESG关联贷款", + "普惠金融:小微企业贷款规模、农业信贷投放及农村地区金融服务覆盖率", + "银行网络:分省银行网点、ATM机及电子银行终端数量", + "中国银行业发展报告:覆盖银行业综合分析、趋势研判和政策评估的旗舰出版物" + ] + }, + "has_api": false, + "file_path": "china/finance/banking/china-cba.json" + }, + { + "id": "china-pbccrc", + "name": { + "en": "People's Bank of China Credit Reference Center", + "zh": "中国人民银行征信中心" + }, + "description": { + "en": "The Credit Reference Center (CRC) of the People's Bank of China is the operator of China's national credit registry system—one of the world's largest credit databases. Established in 2006, CRC maintains credit records for over 1.1 billion natural persons and more than 60 million enterprises and other legal entities. It collects credit information from banks, non-bank financial institutions, public utilities, and government agencies, and provides credit reports to lenders, individuals, and authorized institutions for lending decisions, due diligence, and financial supervision. CRC also publishes aggregate credit statistics, reports on the scale of social financing, and research on credit system development that inform monetary policy and financial regulation.", + "zh": "中国人民银行征信中心是全国征信系统的运营机构,是全球最大的信用数据库之一。中心成立于2006年,维护着超过11亿自然人和6000万余家企业及其他法人主体的信用记录。数据来源包括银行、非银行金融机构、公用事业单位和政府部门,为贷款机构、个人和授权机构提供信用报告,用于授信决策、尽职调查和金融监管。征信中心还发布信用统计汇总数据、社会融资规模报告和征信体系发展研究,为货币政策和金融监管提供支撑。" + }, + "website": "https://www.pbccrc.org.cn", + "data_url": "https://www.pbccrc.org.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "credit", + "banking", + "economics" + ], + "update_frequency": "monthly", + "tags": [ + "人民银行征信", + "征信中心", + "crc", + "credit-reference", + "credit-bureau", + "信用报告", + "credit-report", + "企业信用", + "enterprise-credit", + "个人信用", + "personal-credit", + "社会征信", + "social-credit", + "金融监管", + "financial-regulation", + "银行信贷", + "bank-lending", + "不良贷款", + "non-performing-loans", + "社会融资规模", + "aggregate-social-financing", + "征信体系", + "credit-system", + "贷款", + "loan", + "债务", + "debt", + "人民银行", + "pbc" + ], + "data_content": { + "en": [ + "Individual Credit Reports: Personal credit history including loans, credit cards, repayment records, and public record information for over 1.1 billion individuals", + "Enterprise Credit Reports: Corporate credit histories including business loans, bonds, guarantees, and legal judgment records for 60+ million entities", + "Credit Statistics: Aggregate national statistics on credit scale, loan types, overdue rates, and financial system credit quality", + "Social Financing Scale: Monthly data on aggregate social financing (TSF), covering bank loans, corporate bonds, equity financing, and off-balance-sheet instruments", + "Credit System Research: Annual reports on China's credit system development, coverage rates, and comparative international analyses", + "Financial Institution Data: Credit registry data from thousands of banks and licensed non-bank financial institutions across China" + ], + "zh": [ + "个人信用报告:超过11亿自然人的贷款、信用卡、还款记录和公共记录信息", + "企业信用报告:6000万余家企业的贷款、债券、担保和法院判决记录", + "信贷统计:全国信贷规模、贷款类型、逾期率和金融体系信贷质量汇总数据", + "社会融资规模:银行贷款、企业债券、股权融资及表外业务的社会融资规模月度数据", + "征信研究:中国征信体系发展、覆盖率及国际比较分析年报", + "金融机构数据:来自全国数千家银行和持牌非银行金融机构的征信数据" + ] + }, + "has_api": false, + "file_path": "china/finance/banking/china-pbccrc.json" + }, + { + "id": "china-eximbank", + "name": { + "en": "Export-Import Bank of China", + "zh": "中国进出口银行" + }, + "description": { + "en": "The Export-Import Bank of China (EXIM China) is a state-owned policy bank directly under the State Council, established in 1994. It is the sole Chinese government agency bank mandated to provide policy financial services to support China's foreign trade, overseas investment, and international economic cooperation. It publishes annual reports, financial statements, bond issuance data, country loan data, and statistics on export seller's credit, import buyer's credit, and overseas investment loans.", + "zh": "中国进出口银行是直属国务院领导的国家政策性银行,成立于1994年,是唯一被授权承担政策性对外贸易金融业务的政府直属机构,主要支持中国对外贸易、境外投资和国际经济合作。发布年度报告、财务报表、债券发行数据、国别贷款数据及出口买方信贷、进口买方信贷和境外投资贷款统计数据。" + }, + "website": "http://www.eximbank.gov.cn", + "data_url": "http://www.eximbank.gov.cn/cn/index/information/annual/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "finance", + "trade", + "banking" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "china", + "policy-bank", + "export-credit", + "import-credit", + "trade-finance", + "foreign-trade", + "overseas-investment", + "belt-and-road", + "中国进出口银行", + "政策性银行", + "出口信贷", + "进口信贷", + "对外贸易", + "境外投资", + "一带一路", + "国际合作", + "债券", + "annual-report", + "development-finance" + ], + "data_content": { + "en": [ + "Annual Reports - Financial statements, business overview, key operational indicators and risk management data", + "Export Seller's Credit - Credit data for Chinese enterprises exporting goods, technology, and services", + "Export Buyer's Credit - Loans to foreign importers purchasing Chinese products and services", + "Overseas Investment Loans - Financing data for Chinese enterprises investing abroad", + "Foreign Government Loans - Concessional loans and preferential export buyer's credit to developing countries", + "Bond Issuances - Domestic and international bond offering data, prospectuses", + "Country Exposure - Loan exposure data by country and region", + "Belt and Road Initiative - Project financing statistics for BRI partner countries" + ], + "zh": [ + "年度报告 - 财务报表、业务概况、主要经营指标及风险管理数据", + "出口卖方信贷 - 中国企业出口商品、技术和服务的信贷数据", + "出口买方信贷 - 向境外进口商提供的采购中国产品和服务的贷款", + "境外投资贷款 - 中国企业境外投资的融资数据", + "对外优惠贷款 - 向发展中国家提供的优惠贷款和优惠出口买方信贷", + "债券发行 - 境内外债券发行数据、募集说明书", + "国别敞口 - 按国家和地区划分的贷款风险敞口数据", + "一带一路 - 共建\"一带一路\"伙伴国家项目融资统计数据" + ] + }, + "has_api": false, + "file_path": "china/finance/banking/eximbank.json" + }, + { + "id": "china-nfra", + "name": { + "en": "National Financial Regulatory Administration", + "zh": "国家金融监督管理总局", + "native": "国家金融监督管理总局" + }, + "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年成立的综合性金融监管机构,由原中国银行保险监督管理委员会(银保监会)与银行保险监管职能合并而成。负责监管银行业和保险业,发布全面的监管统计数据,包括银行资产负债、保险保费收入、监管合规指标、普惠型小微企业贷款数据以及行业整体运营指标。" + }, + "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": [ + "finance", + "banking", + "insurance", + "regulation" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "china", + "banking-regulation", + "insurance-regulation", + "nfra", + "cbirc", + "financial-supervision", + "banking-statistics", + "insurance-statistics", + "regulatory-compliance", + "financial-inclusion" + ], + "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": "china-pbc", + "name": { + "en": "People's Bank of China", + "zh": "中国人民银行", + "native": "中国人民银行" + }, + "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)、利率、汇率、银行业统计、国际收支、外汇储备、信贷数据和金融市场指标。" + }, + "website": "https://www.pbc.gov.cn", + "data_url": "https://www.pbc.gov.cn/diaochatongjisi/116219/index.html", + "api_url": null, + "country": "CN", + "domains": [ + "finance", + "economics", + "monetary-policy" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "china", + "central-bank", + "monetary-policy", + "money-supply", + "interest-rates", + "forex", + "banking", + "financial-stability" + ], + "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": "china-amac", + "name": { + "en": "Asset Management Association of China", + "zh": "中国证券投资基金业协会" + }, + "description": { + "en": "AMAC is the self-regulatory organization for China's fund management industry, responsible for registration of private fund managers and products, industry statistics, and investor protection. It publishes comprehensive data on mutual funds, private funds, asset management plans, and industry development.", + "zh": "中国证券投资基金业协会是基金行业自律组织,负责私募基金管理人和产品登记备案、行业统计和投资者保护。发布公募基金、私募基金、资产管理计划和行业发展等全面数据。" + }, + "website": "https://www.amac.org.cn", + "data_url": "https://www.amac.org.cn/informationpublicity/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "capital-markets", + "fund-management", + "asset-management" + ], + "update_frequency": "monthly", + "tags": [ + "china", + "mutual-funds", + "private-funds", + "asset-management", + "fund-industry", + "基金", + "私募", + "公募", + "资产管理", + "基金业协会" + ], + "data_content": { + "en": [ + "Mutual Fund Statistics - AUM, fund counts, investor numbers, and performance by fund type (equity, bond, money market, hybrid)", + "Private Fund Registry - Registered private fund managers, fund products, AUM distribution, and regional statistics", + "Asset Management Plans - Securities firm, insurance, and futures asset management data", + "Industry Reports - Annual and quarterly reports on China's fund industry development, trends, and challenges", + "Investor Protection - Investor education data, complaint statistics, and protection mechanisms" + ], + "zh": [ + "公募基金统计 - 管理规模、基金数量、投资者数量及各类型基金(股票、债券、货币、混合)表现", + "私募基金登记 - 已登记私募基金管理人、基金产品、管理规模分布和地区统计", + "资产管理计划 - 证券公司、保险、期货资产管理数据", + "行业报告 - 中国基金行业发展年度和季度报告、趋势与挑战分析", + "投资者保护 - 投资者教育数据、投诉统计和保护机制" + ] + }, + "has_api": false, + "file_path": "china/finance/capital-markets/china-amac.json" + }, + { + "id": "china-capco", + "name": { + "en": "China Association for Public Companies (CAPCO)", + "zh": "中国上市公司协会" + }, + "description": { + "en": "The China Association for Public Companies (CAPCO, 中国上市公司协会) is the national self-regulatory organization for listed companies in China, established in 2012 under the guidance of the China Securities Regulatory Commission (CSRC). CAPCO represents more than 5,000 companies listed on the Shanghai, Shenzhen, and Beijing stock exchanges, covering a combined market capitalization of over 80 trillion yuan. The association publishes authoritative statistical reports on the operating performance, governance quality, investor relations, and ESG disclosures of China's listed companies. It also releases annual research on board composition, executive compensation, shareholder returns, mergers and acquisitions, and share repurchase activities. CAPCO data is essential for analyzing the financial health and corporate governance of China's public companies, capital market development trends, and the effectiveness of listed company regulatory reforms.", + "zh": "中国上市公司协会是全国上市公司自律性组织,于2012年在中国证监会指导下成立。协会现有会员涵盖沪深北三大交易所5000余家上市公司,合计市值超过80万亿元。协会发布权威的上市公司经营业绩、治理质量、投资者关系及ESG披露等统计报告,并开展董事会构成、高管薪酬、股东回报、并购重组及股份回购等年度研究。中国上市公司协会的数据是分析中国上市公司财务健康、公司治理、资本市场发展趋势及上市公司监管改革成效的重要依据。" + }, + "website": "https://www.capco.org.cn", + "data_url": "https://www.capco.org.cn", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "economics", + "governance" + ], + "update_frequency": "quarterly", + "tags": [ + "capco", + "上市公司协会", + "listed-companies", + "上市公司", + "public-companies", + "公司治理", + "corporate-governance", + "esg披露", + "esg-disclosure", + "股东回报", + "shareholder-return", + "高管薪酬", + "executive-compensation", + "并购重组", + "m-and-a", + "股份回购", + "share-repurchase", + "a股" + ], + "data_content": { + "en": [ + "Annual operating performance report - aggregated revenue, profit, and financial indicators of China's listed companies by industry and exchange", + "Corporate governance statistics - board composition, independent director ratios, supervisory board structure, and audit committee data", + "Executive compensation studies - salary levels, equity incentive programs, and compensation-performance linkage analysis", + "ESG disclosure report - environmental, social, and governance reporting coverage and quality across listed firms", + "Investor relations assessment - IR practices, information disclosure quality, and retail investor communications", + "M&A and restructuring activity - annual transaction volumes, deal values, and industry distribution of listed company deals", + "Share repurchase and dividend statistics - buyback volumes, dividend payout ratios, and shareholder return trends", + "Member company directory - list of all listed companies by exchange, sector, and registered region", + "Policy research and industry reports - analysis of regulatory reforms, registration-based IPO system, and delisting rules" + ], + "zh": [ + "上市公司经营业绩年度报告 - 按行业和交易所汇总的上市公司营业收入、利润及财务指标", + "公司治理统计 - 董事会构成、独立董事占比、监事会结构及审计委员会数据", + "高管薪酬研究 - 薪酬水平、股权激励方案及薪酬与业绩挂钩分析", + "ESG信息披露报告 - 上市公司环境、社会和治理报告的覆盖率和质量", + "投资者关系评估 - 投资者关系管理实践、信息披露质量及中小投资者沟通", + "并购重组活动 - 上市公司年度交易数量、交易金额及行业分布", + "股份回购与分红统计 - 回购金额、分红比例及股东回报趋势", + "会员公司名录 - 按交易所、行业和注册地分类的上市公司名单", + "政策研究和行业报告 - 监管改革、注册制、退市制度等分析" + ] + }, + "has_api": false, + "file_path": "china/finance/capital-markets/china-capco.json" + }, + { + "id": "china-cfa", + "name": { + "en": "China Futures Association", + "zh": "中国期货业协会" + }, + "description": { + "en": "The China Futures Association (CFA) is the national self-regulatory organization for China's futures and derivatives market, operating under the guidance of the China Securities Regulatory Commission (CSRC). CFA publishes authoritative statistics on futures market trading volumes, open interest, number of accounts, client funds, and brokerage firm financials. China operates some of the world's most liquid commodity futures markets, including iron ore, rebar steel, crude oil, soybeans, copper, and coal futures. CFA data covers all domestic futures exchanges (SHFE, DCE, CZCE, CFFEX, INE) and is the primary reference for understanding China's commodity price discovery and derivatives hedging activity.", + "zh": "中国期货业协会(期货协会)是中国期货和衍生品市场的全国性自律组织,在中国证券监督管理委员会指导下运作。协会发布期货市场成交量、持仓量、开户数量、客户权益及期货公司财务数据等权威统计。中国拥有全球流动性最强的大宗商品期货市场,涵盖铁矿石、螺纹钢、原油、大豆、铜、煤炭等品种。期货协会数据覆盖全国各期货交易所(上期所、大商所、郑商所、中金所、能源中心),是了解中国大宗商品价格发现和衍生品套期保值活动的主要参考依据。" + }, + "website": "https://www.cfachina.org/", + "data_url": "https://www.cfachina.org/servicesupport/researchandpublishin/statisticalsdata/", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "economics", + "statistics" + ], + "update_frequency": "monthly", + "tags": [ + "期货市场", + "futures-market", + "大宗商品", + "commodities", + "期货成交量", + "futures-trading-volume", + "持仓量", + "open-interest", + "螺纹钢期货", + "rebar-futures", + "铁矿石期货", + "iron-ore-futures", + "原油期货", + "crude-oil-futures", + "大豆期货", + "soybean-futures", + "铜期货", + "copper-futures", + "衍生品", + "derivatives", + "套期保值", + "hedging", + "期货公司", + "futures-brokerage" + ], + "data_content": { + "en": [ + "Trading volume and turnover: monthly futures contracts traded across all domestic exchanges (SHFE, DCE, CZCE, CFFEX, INE) by commodity", + "Open interest: position data by commodity category including agricultural, metals, energy, and financial futures", + "Account statistics: number of futures trading accounts, institutional vs retail investor composition", + "Client funds: total funds deposited in futures margin accounts, indicating market participation scale", + "Futures brokerage financials: net capital, revenue, and profit data for licensed futures companies", + "Commodity price indices: futures price indices for agricultural products, metals, and energy", + "Options market data: options trading volumes, open interest, and volatility data for listed options", + "Cross-border trading: qualified foreign investor participation statistics in China's futures markets", + "Annual futures market report: comprehensive review of China's futures and derivatives market development" + ], + "zh": [ + "成交量与成交额:全国各期货交易所(上期所、大商所、郑商所、中金所、能源中心)按品种分类的月度期货合约成交情况", + "持仓量:农产品、金属、能源及金融期货各品种持仓数据", + "开户统计:期货交易账户数量、机构与散户投资者构成", + "客户权益:期货保证金账户总资金量,反映市场参与规模", + "期货公司财务数据:持牌期货公司净资本、营业收入和利润", + "大宗商品价格指数:农产品、金属、能源期货价格指数", + "期权市场数据:各上市期权品种成交量、持仓及波动率数据", + "境外交易:合格境外投资者参与中国期货市场统计", + "期货市场年度报告:中国期货和衍生品市场发展全面综述" + ] + }, + "has_api": false, + "file_path": "china/finance/capital-markets/china-cfa.json" + }, + { + "id": "china-cffex", + "name": { + "en": "China Financial Futures Exchange", + "zh": "中国金融期货交易所" + }, + "description": { + "en": "The China Financial Futures Exchange (CFFEX) is the sole financial futures exchange in mainland China, established in 2006 under the supervision of the China Securities Regulatory Commission. CFFEX lists and trades stock index futures (CSI 300, CSI 500, CSI 1000, SSE 50), treasury bond futures (2-year, 5-year, 10-year, 30-year), and stock index options. It publishes daily trading data, open interest, settlement prices, and position reports for all listed contracts. CFFEX's market data is essential for institutional investors, risk management practitioners, hedging strategy research, and macro financial analysis of China's capital markets.", + "zh": "中国金融期货交易所(中金所)是中国内地唯一的金融期货交易所,2006年在中国证券监督管理委员会监管下成立。中金所上市并交易股指期货(沪深300、中证500、中证1000、上证50)、国债期货(2年期、5年期、10年期、30年期)和股指期权合约,每日发布所有上市合约的成交数据、持仓量、结算价及持仓报告。中金所市场数据对机构投资者、风险管理从业者、套期保值策略研究及中国资本市场宏观金融分析具有重要价值。" + }, + "website": "https://www.cffex.com.cn/", + "data_url": "https://www.cffex.com.cn/sjzx/", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "capital-markets" + ], + "update_frequency": "daily", + "tags": [ + "中国金融期货交易所", + "cffex", + "china-financial-futures-exchange", + "中金所", + "股指期货", + "stock-index-futures", + "国债期货", + "treasury-bond-futures", + "沪深300", + "csi-300", + "中证500", + "csi-500", + "上证50", + "sse-50", + "股指期权", + "stock-index-options", + "期货", + "futures", + "金融衍生品", + "financial-derivatives", + "持仓量", + "open-interest", + "结算价", + "settlement-price", + "资本市场", + "capital-markets", + "风险对冲", + "hedging" + ], + "data_content": { + "en": [ + "Daily trading statistics - trading volume, open interest, and settlement prices for all listed futures and options contracts", + "Stock index futures - CSI 300, CSI 500, CSI 1000, SSE 50 index futures daily data and historical series", + "Treasury bond futures - 2-year, 5-year, 10-year, and 30-year government bond futures prices and volumes", + "Stock index options - CSI 300 options open interest, implied volatility, and put-call ratio data", + "Participant position reports - top 20 long and short position holders by contract", + "Market statistics reports - monthly and annual summaries of trading activity", + "Contract specifications and margin requirements - official rules and parameters for all listed products", + "Delivery and settlement data - physical delivery records and final settlement prices", + "Historical data downloads - tick-by-tick and daily OHLCV data for all expired and active contracts" + ], + "zh": [ + "每日交易统计 - 所有上市期货和期权合约的成交量、持仓量及结算价", + "股指期货 - 沪深300、中证500、中证1000、上证50股指期货每日数据及历史序列", + "国债期货 - 2年期、5年期、10年期和30年期国债期货价格及成交量", + "股指期权 - 沪深300期权持仓量、隐含波动率和认购/认沽比率数据", + "持仓报告 - 各合约前20名多空头持仓数据", + "市场统计报告 - 交易活动月度和年度汇总", + "合约规格及保证金要求 - 所有上市产品的官方规则及参数", + "交割与结算数据 - 实物交割记录及最终结算价", + "历史数据下载 - 所有已摘牌及活跃合约的逐笔和日频OHLCV数据" + ] + }, + "has_api": false, + "file_path": "china/finance/capital-markets/china-cffex.json" + }, + { + "id": "china-chinabond", + "name": { + "en": "China Bond Information Network", + "zh": "中国债券信息网" + }, + "description": { + "en": "China Bond Information Network (Chinabond) is the official information disclosure and data platform operated by China Central Depository & Clearing Co., Ltd. (CCDC), the central securities depository for China's interbank bond market supervised by the People's Bank of China. It serves as the authoritative source for bond yield curves, bond issuance prospectuses, bond market statistics, and credit rating disclosures for the Chinese bond market - the world's second-largest bond market. Chinabond publishes the widely referenced ChinaBond yield curve series covering government bonds, policy bank bonds, corporate bonds, and asset-backed securities, and provides transparency data for all bonds registered in the interbank market.", + "zh": "中国债券信息网(Chinabond)是中央国债登记结算有限责任公司(中债登)运营的官方信息披露与数据平台。中债登受中国人民银行监管,是中国银行间债券市场的中央证券托管机构。该平台是中国债券市场(全球第二大债券市场)债券收益率曲线、债券发行说明书、债券市场统计数据及信用评级披露的权威来源。中国债券信息网发布广泛引用的中债收益率曲线系列,涵盖国债、政策性银行债、企业债及资产支持证券,并为银行间市场登记的所有债券提供透明度数据。" + }, + "website": "https://www.chinabond.com.cn", + "data_url": "https://yield.chinabond.com.cn/cbweb-pbc-web/pbc/historyQuery", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "economics" + ], + "update_frequency": "daily", + "tags": [ + "债券收益率", + "bond-yield", + "中债收益率曲线", + "chinabond-yield-curve", + "国债", + "government-bond", + "政策性银行债", + "policy-bank-bond", + "企业债", + "corporate-bond", + "资产支持证券", + "abs", + "银行间债券市场", + "interbank-bond-market", + "债券发行", + "bond-issuance", + "信用评级", + "credit-rating", + "中央国债登记结算", + "ccdc", + "固定收益", + "fixed-income", + "债券市场统计", + "bond-market-statistics" + ], + "data_content": { + "en": [ + "ChinaBond yield curves: daily benchmark yield curves for government bonds, policy bank bonds, corporate bonds, and ABS across various maturities", + "Bond issuance disclosures: prospectuses, offering documents, and registration materials for all interbank market bonds", + "Bond market statistics: monthly and annual data on bond issuance volume, outstanding balance, and market structure", + "Credit rating disclosures: rating reports and rating change announcements for rated bonds", + "Bond trading and settlement data: interbank market secondary trading statistics", + "Asset-backed securities: ABS issuance documents, servicer reports, and trustee disclosures", + "Green bond registry: labeled green bond issuance information and use-of-proceeds reports" + ], + "zh": [ + "中债收益率曲线:国债、政策性银行债、企业债及资产支持证券各期限的每日基准收益率曲线", + "债券发行披露:银行间市场所有债券的募集说明书、发行文件及登记材料", + "债券市场统计:债券发行量、存量余额及市场结构的月度和年度数据", + "信用评级披露:已评级债券的评级报告及评级变化公告", + "债券交易与结算数据:银行间市场二级交易统计", + "资产支持证券:ABS发行文件、服务机构报告及受托机构披露", + "绿色债券注册:标注绿色债券的发行信息及募集资金用途报告" + ] + }, + "has_api": false, + "file_path": "china/finance/capital-markets/china-chinabond.json" + }, + { + "id": "china-czce", + "name": { + "en": "Zhengzhou Commodity Exchange", + "zh": "郑州商品交易所" + }, + "description": { + "en": "The Zhengzhou Commodity Exchange (CZCE) is one of China's three commodity futures exchanges, established in 1990 as China's first futures exchange. Supervised by the China Securities Regulatory Commission, CZCE lists futures and options contracts for agricultural commodities (wheat, cotton, rapeseed oil, rapeseed meal, sugar, peanuts, dates, apples, red dates) and industrial materials (methanol, ethylene glycol, purified terephthalic acid/PTA, urea, glass, ferrosilicon, silicon manganese). CZCE is the price discovery center for China's agricultural commodity markets and key chemical feedstocks. Daily market data including settlement prices, trading volumes, warehouse inventory, and open interest from CZCE are essential references for China's agricultural supply chain, textile industry, chemical producers, and commodity traders worldwide.", + "zh": "郑州商品交易所(郑商所)是中国三大商品期货交易所之一,成立于1990年,是中国第一家期货交易所。郑商所受中国证券监督管理委员会监管,上市农产品(小麦、棉花、菜籽油、菜粕、白砂糖、花生、红枣、苹果)及工业品(甲醇、乙二醇、精对苯二甲酸/PTA、尿素、玻璃、硅铁、锰硅)期货和期权合约。郑商所是中国农产品市场及重要化工原料的价格发现中心。郑商所每日发布的结算价、成交量、仓单及持仓量数据,是中国农业供应链、纺织行业、化工生产企业及全球大宗商品交易商的重要参考。" + }, + "website": "https://www.czce.com.cn/", + "data_url": "https://www.czce.com.cn/cn/exchange/daily_data/index.htm", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "capital-markets", + "economics", + "agriculture" + ], + "update_frequency": "daily", + "tags": [ + "郑州商品交易所", + "czce", + "zhengzhou-commodity-exchange", + "郑商所", + "商品期货", + "commodity-futures", + "小麦期货", + "wheat-futures", + "棉花期货", + "cotton-futures", + "白糖期货", + "sugar-futures", + "菜籽油", + "rapeseed-oil", + "PTA期货", + "pta-futures", + "甲醇期货", + "methanol-futures", + "乙二醇期货", + "ethylene-glycol-futures", + "尿素期货", + "urea-futures", + "玻璃期货", + "glass-futures", + "农产品", + "agricultural-commodities", + "化工品", + "chemical-products", + "结算价", + "settlement-price", + "仓单", + "warehouse-receipt", + "期权", + "options" + ], + "data_content": { + "en": [ + "Daily market data: settlement prices, trading volumes, open interest, and OHLC prices for all listed futures and options contracts", + "Wheat futures: hard white winter wheat contract, key benchmark for China's domestic grain market", + "Cotton futures: China's primary cotton price benchmark, widely tracked by global textile and apparel supply chains", + "Sugar futures: white sugar futures serving as price reference for China's domestic sugar market", + "Rapeseed oil and meal futures: key agricultural input price references for China's oilseed processing industry", + "PTA futures: purified terephthalic acid — upstream feedstock for polyester and PET production widely used in textiles and packaging", + "Methanol and ethylene glycol futures: key chemical feedstock prices for China's petrochemical industry", + "Urea futures: fertilizer market price benchmark for China's agricultural sector", + "Glass futures: industrial glass price reference tracking construction and solar panel demand", + "Warehouse inventory: registered warehouse receipts and physical stock levels for all deliverable commodities", + "Position reports: daily top-holder position data for major contracts" + ], + "zh": [ + "每日市场数据:所有上市期货和期权合约的结算价、成交量、持仓量及OHLC价格", + "小麦期货:硬冬白小麦合约,中国国内粮食市场的重要基准价格", + "棉花期货:中国主要棉花价格基准,被全球纺织和服装供应链广泛追踪", + "白砂糖期货:中国国内糖市的价格参考基准", + "菜籽油和菜粕期货:中国油籽加工业的关键农业投入品价格参考", + "PTA期货:精对苯二甲酸——纺织和包装领域广泛使用的聚酯和PET生产上游原料价格基准", + "甲醇和乙二醇期货:中国石化行业关键化工原料价格", + "尿素期货:中国农业领域化肥市场价格基准", + "玻璃期货:追踪建筑和太阳能电池板需求的工业玻璃价格参考", + "仓单:所有可交割品种的注册仓单及实物库存水平", + "持仓报告:主要合约的每日持仓大户数据" + ] + }, + "has_api": false, + "file_path": "china/finance/capital-markets/china-czce.json" + }, + { + "id": "china-dce", + "name": { + "en": "Dalian Commodity Exchange", + "zh": "大连商品交易所" + }, + "description": { + "en": "The Dalian Commodity Exchange (DCE) is one of China's three commodity futures exchanges and the world's largest agricultural futures exchange by trading volume. Established in 1993 and supervised by the China Securities Regulatory Commission, DCE lists futures and options for agricultural products (soybeans, soybean oil, soybean meal, corn, corn starch, palm oil, eggs, live hogs) and industrial commodities (iron ore, coking coal, coke, LLDPE, PVC, polypropylene, methanol, ethylene glycol, liquid petroleum gas). DCE's iron ore futures are the global benchmark for seaborne iron ore pricing, and its soybean complex contracts are pivotal references for global oilseed and vegetable oil markets. The exchange publishes daily settlement prices, trading volumes, warehouse inventory data, and position reports that are indispensable for commodity market participants worldwide.", + "zh": "大连商品交易所(大商所)是中国三大商品期货交易所之一,也是全球成交量最大的农产品期货交易所。大商所成立于1993年,受中国证券监督管理委员会监管,上市农产品(大豆、豆油、豆粕、玉米、玉米淀粉、棕榈油、鸡蛋、生猪)和工业品(铁矿石、焦煤、焦炭、线型低密度聚乙烯/LLDPE、聚氯乙烯/PVC、聚丙烯、甲醇、乙二醇、液化石油气)等期货和期权合约。大商所铁矿石期货是全球海运铁矿石定价的重要基准,大豆系列合约是全球油籽和植物油市场的关键价格参考。交易所每日发布结算价、成交量、仓单及持仓报告,是全球大宗商品市场参与者不可或缺的数据来源。" + }, + "website": "https://www.dce.com.cn/", + "data_url": "https://www.dce.com.cn/publicweb/quotesdata/dayQuotesCh.html", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "capital-markets", + "economics", + "agriculture" + ], + "update_frequency": "daily", + "tags": [ + "大连商品交易所", + "dce", + "dalian-commodity-exchange", + "大商所", + "商品期货", + "commodity-futures", + "铁矿石期货", + "iron-ore-futures", + "大豆期货", + "soybean-futures", + "豆粕期货", + "soybean-meal-futures", + "豆油期货", + "soybean-oil-futures", + "玉米期货", + "corn-futures", + "棕榈油期货", + "palm-oil-futures", + "焦炭期货", + "coke-futures", + "焦煤期货", + "coking-coal-futures", + "LLDPE期货", + "lldpe-futures", + "聚丙烯期货", + "polypropylene-futures", + "生猪期货", + "live-hog-futures", + "大宗商品", + "commodities", + "结算价", + "settlement-price", + "农产品", + "agricultural-commodities", + "钢铁原料", + "steel-raw-materials" + ], + "data_content": { + "en": [ + "Daily market data: settlement prices, trading volumes, open interest, and OHLC prices for all listed futures and options contracts", + "Iron ore futures: global benchmark for 62% Fe grade iron ore (PB fines equivalent), widely referenced for Australian and Brazilian mine pricing", + "Soybean complex: soybean, soybean meal, and soybean oil futures — primary price discovery for China's massive soy import market", + "Corn and corn starch futures: domestic grain price benchmarks tracking China's feed grain consumption and ethanol demand", + "Palm oil futures: complementary to CZCE rapeseed oil for vegetable oil market analysis", + "Coking coal and coke futures: upstream steel raw material price benchmarks for China's blast furnace industry", + "Plastics complex: LLDPE, PVC, and polypropylene futures for petrochemical feedstock price tracking", + "Live hog futures: pork price benchmark reflecting China's largest protein market", + "Egg futures: fresh egg price tracking for China's agricultural and food processing sectors", + "Warehouse inventory reports: registered warehouse receipts and physical inventory for all deliverable commodities", + "Position reports: daily top-holder long/short position data by contract" + ], + "zh": [ + "每日市场数据:所有上市期货和期权合约的结算价、成交量、持仓量及OHLC价格", + "铁矿石期货:62%品位铁矿石(PB粉矿当量)全球基准价格,被澳大利亚和巴西矿山定价广泛参考", + "大豆系列:大豆、豆粕和豆油期货——中国庞大大豆进口市场的主要价格发现机制", + "玉米和玉米淀粉期货:追踪中国饲料粮消费和乙醇需求的国内粮食价格基准", + "棕榈油期货:与郑商所菜籽油期货互补,用于植物油市场分析", + "焦煤和焦炭期货:中国高炉炼铁行业上游钢铁原料价格基准", + "塑料系列:LLDPE、PVC和聚丙烯期货,用于追踪石化原料价格", + "生猪期货:反映中国最大蛋白质市场的猪肉价格基准", + "鸡蛋期货:中国农业和食品加工领域鲜蛋价格跟踪", + "仓单报告:所有可交割品种的注册仓单及实物库存", + "持仓报告:按合约每日发布的多空头持仓大户数据" + ] + }, + "has_api": false, + "file_path": "china/finance/capital-markets/china-dce.json" + }, + { + "id": "china-nafmii", + "name": { + "en": "National Association of Financial Market Institutional Investors", + "zh": "中国银行间市场交易商协会" + }, + "description": { + "en": "NAFMII is a self-regulatory organization for China's interbank market, overseeing debt financing instruments, bond market registration, and market conduct. It publishes data on interbank bond issuance, trading volumes, market participants, and debt financing instruments including commercial paper, medium-term notes, and asset-backed securities.", + "zh": "中国银行间市场交易商协会是中国银行间市场的自律组织,负责债务融资工具注册、债券市场监管和市场行为规范。发布银行间债券发行、交易量、市场参与者以及短期融资券、中期票据、资产支持证券等债务融资工具数据。" + }, + "website": "https://www.nafmii.org.cn", + "data_url": "https://www.nafmii.org.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "capital-markets", + "bond-market", + "debt-financing" + ], + "update_frequency": "monthly", + "tags": [ + "china", + "interbank-market", + "bond-issuance", + "debt-financing", + "capital-markets", + "commercial-paper", + "medium-term-notes", + "银行间市场", + "债务融资", + "债券", + "交易商协会" + ], + "data_content": { + "en": [ + "Interbank Bond Market - Bond issuance volumes, trading data, and market statistics", + "Debt Financing Instruments - Registration and issuance data for commercial paper (CP), super-short-term CP (SCP), medium-term notes (MTN), and perpetual bonds", + "Asset-Backed Securities - Issuance and performance data for interbank ABS products", + "Market Participants - Registry of dealers, underwriters, and institutional investors", + "Market Rules and Standards - Self-regulatory rules, market conventions, and compliance requirements" + ], + "zh": [ + "银行间债券市场 - 债券发行量、交易数据和市场统计", + "债务融资工具 - 短期融资券(CP)、超短期融资券(SCP)、中期票据(MTN)和永续债的注册发行数据", + "资产支持证券 - 银行间ABS产品的发行与表现数据", + "市场参与者 - 交易商、承销商和机构投资者登记信息", + "市场规则与标准 - 自律规则、市场惯例和合规要求" + ] + }, + "has_api": false, + "file_path": "china/finance/capital-markets/china-nafmii.json" + }, + { + "id": "china-shfe", + "name": { + "en": "Shanghai Futures Exchange", + "zh": "上海期货交易所" + }, + "description": { + "en": "The Shanghai Futures Exchange (SHFE) is one of China's three commodity futures exchanges and the world's largest by trading volume for several key commodities. Supervised by the China Securities Regulatory Commission, SHFE lists futures and options contracts for base metals (copper, aluminum, zinc, lead, nickel, tin), precious metals (gold, silver), energy products (crude oil, fuel oil, natural gas, bitumen), and industrial materials (natural rubber, rebar, hot-rolled coil, wire rod). SHFE's daily market data — including settlement prices, trading volumes, and warehouse inventory reports — serve as benchmark price references for global commodity markets. The exchange publishes comprehensive statistics on contract trading activity, warehouse receipts, and position data that are essential for commodity traders, industrial hedgers, and macro investors tracking Chinese demand for raw materials.", + "zh": "上海期货交易所(上期所)是中国三大商品期货交易所之一,在多个主要大宗商品的成交量上居全球首位。上期所受中国证券监督管理委员会监管,上市有色金属(铜、铝、锌、铅、镍、锡)、贵金属(黄金、白银)、能源(原油、燃料油、天然气、沥青)及工业原材料(天然橡胶、螺纹钢、热轧卷板、线材)等期货和期权合约。上期所每日发布的市场数据——包括结算价、成交量及仓单报告——是全球大宗商品市场的重要基准价格参考。交易所发布的合约交易统计、标准仓单及持仓数据,对追踪中国原材料需求的大宗商品交易商、套期保值企业和宏观投资者具有重要价值。" + }, + "website": "https://www.shfe.com.cn/", + "data_url": "https://www.shfe.com.cn/reports/tradedata/dailyandweeklydata/", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "capital-markets", + "economics", + "industry" + ], + "update_frequency": "daily", + "tags": [ + "上海期货交易所", + "shfe", + "shanghai-futures-exchange", + "上期所", + "商品期货", + "commodity-futures", + "铜期货", + "copper-futures", + "铝期货", + "aluminum-futures", + "锌期货", + "zinc-futures", + "镍期货", + "nickel-futures", + "黄金期货", + "gold-futures", + "白银期货", + "silver-futures", + "原油期货", + "crude-oil-futures", + "天然橡胶", + "natural-rubber", + "螺纹钢", + "rebar", + "热轧卷板", + "hot-rolled-coil", + "仓单", + "warehouse-receipt", + "结算价", + "settlement-price", + "大宗商品", + "commodities", + "期权", + "options", + "有色金属", + "base-metals", + "贵金属", + "precious-metals" + ], + "data_content": { + "en": [ + "Daily market data: settlement prices, trading volumes, open interest, and OHLC prices for all listed futures and options contracts", + "Copper futures: global benchmark pricing for SHFE copper contracts, widely referenced by LME copper arbitrage traders", + "Aluminum, zinc, lead, nickel, tin futures: base metal contracts with daily settlement and position data", + "Gold and silver futures: precious metal futures settlement prices and trading statistics", + "Crude oil futures: Shanghai International Energy Exchange (INE) crude oil contract data, China's primary oil price benchmark", + "Natural rubber futures: RSS3 and TSR20 rubber futures, key price reference for automotive and industrial sectors", + "Rebar and hot-rolled coil futures: steel product futures widely used for construction and manufacturing hedging", + "Warehouse inventory reports: registered warehouse receipts and physical inventory levels for all deliverable commodities", + "Position reports: top 20 long and short position holders by contract (published daily)", + "Historical data: complete daily trading records for all active and expired contracts" + ], + "zh": [ + "每日市场数据:所有上市期货和期权合约的结算价、成交量、持仓量及OHLC价格", + "铜期货:上期所铜合约是全球基准价格之一,被伦敦金属交易所套利交易者广泛参考", + "铝、锌、铅、镍、锡期货:有色金属合约每日结算及持仓数据", + "黄金和白银期货:贵金属期货结算价及交易统计", + "原油期货:上海国际能源交易中心(INE)原油合约数据,中国主要石油价格基准", + "天然橡胶期货:RSS3和TSR20橡胶期货,汽车和工业领域的重要价格参考", + "螺纹钢和热轧卷板期货:建筑和制造业广泛用于套期保值的钢材期货", + "仓单报告:所有可交割品种的注册仓单及实物库存水平", + "持仓报告:按合约每日发布的前20名多空头持仓数据", + "历史数据:所有活跃及已摘牌合约的完整每日交易记录" + ] + }, + "has_api": false, + "file_path": "china/finance/capital-markets/china-shfe.json" + }, + { + "id": "china-beijing-stock-exchange", + "name": { + "en": "Beijing Stock Exchange", + "zh": "北京证券交易所" + }, + "description": { + "en": "The Beijing Stock Exchange (BSE) is China's newest national securities exchange, established in 2021. It focuses on serving innovative small and medium-sized enterprises (SMEs), particularly 'specialized, refined, distinctive and innovative' (专精特新) companies. BSE provides market data, listing information, disclosure documents, and trading statistics for its listed companies.", + "zh": "北京证券交易所(北交所)是中国最新设立的全国性证券交易所,成立于2021年。北交所定位于服务创新型中小企业,特别是「专精特新」企业。提供上市公司行情数据、上市信息、信息披露文件及交易统计数据。" + }, + "website": "https://www.bse.cn", + "data_url": "https://www.bse.cn/market_data.html", + "api_url": null, + "authority_level": "market", + "country": "CN", + "domains": [ + "finance", + "securities", + "capital-markets" + ], + "geographic_scope": "national", + "update_frequency": "real-time", + "tags": [ + "beijing-stock-exchange", + "北交所", + "bse", + "专精特新", + "sme", + "中小企业", + "新三板", + "股票", + "证券交易所", + "上市公司", + "market-data" + ], + "data_content": { + "en": [ + "Real-time Market Data - Stock prices, trading volumes, and market indices for BSE-listed companies", + "Listing Information - IPO prospectuses, listing applications, and company profiles", + "Disclosure Documents - Annual reports, interim reports, and ad-hoc announcements", + "Trading Statistics - Daily, weekly, and monthly trading summaries and market statistics", + "Regulatory Information - Trading rules, listing standards, and regulatory guidelines" + ], + "zh": [ + "实时行情数据 - 北交所上市公司股票价格、成交量及市场指数", + "上市信息 - IPO招股说明书、上市申请及公司简介", + "信息披露文件 - 年报、中期报告及临时公告", + "交易统计 - 每日、每周及每月交易汇总和市场统计", + "监管信息 - 交易规则、上市标准及监管指引" + ] + }, + "has_api": false, + "file_path": "china/finance/china-beijing-stock-exchange.json" + }, + { + "id": "china-cicpa", + "name": { + "en": "Chinese Institute of Certified Public Accountants", + "zh": "中国注册会计师协会" + }, + "description": { + "en": "The Chinese Institute of Certified Public Accountants (CICPA) is the national professional organization and self-regulatory body for the CPA profession in China, operating under the Ministry of Finance. CICPA maintains authoritative registries and statistical databases on China's certified public accountant population, accounting firms, and audit market. It publishes annual reports on the scale and structure of China's accounting profession, market concentration among audit firms, earnings of the Big Four and top domestic firms, and the results of CPA qualification examinations. CICPA data is essential for assessing financial audit quality, auditor independence, and the governance standards of China's listed companies and state-owned enterprises.", + "zh": "中国注册会计师协会(中注协)是全国注册会计师行业的全国性专业组织和自律机构,在财政部指导下运行。中注协维护权威的注册会计师执业人员、会计师事务所及审计市场统计数据库,并发布年度报告,涵盖中国会计职业规模与结构、审计市场集中度、四大及国内头部事务所业务收入、注册会计师资格考试结果等信息。中注协数据是评估财务审计质量、审计师独立性以及上市公司和国有企业治理水平的重要依据。" + }, + "website": "https://www.cicpa.org.cn", + "data_url": "https://www.cicpa.org.cn/xxcx/", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "governance", + "statistics" + ], + "update_frequency": "annual", + "tags": [ + "注册会计师", + "certified-public-accountant", + "会计师事务所", + "accounting-firm", + "审计市场", + "audit-market", + "CPA考试", + "cpa-examination", + "财务审计", + "financial-audit", + "四大", + "big-four", + "审计质量", + "audit-quality", + "会计行业", + "accounting-profession", + "财政部", + "ministry-of-finance", + "执业注册", + "professional-registration", + "事务所收入", + "firm-revenue", + "行业统计", + "industry-statistics", + "cicpa" + ], + "data_content": { + "en": [ + "CPA population statistics: total number of registered CPAs, practicing CPAs, and non-practicing CPAs in China by province and city, with historical growth trends and demographic breakdown by age and gender", + "Accounting firm registry and rankings: annual revenue, employee counts, partner numbers, and service structure for the top 100 accounting firms in China, including Big Four, mid-tier, and domestic firms", + "Audit market concentration data: market share analysis by firm size, industry sector, and listed company audit assignments, including percentage of A-share, H-share, and SOE audit engagements by firm tier", + "CPA qualification examination results: annual pass rates, registration numbers, subject-level performance, and score distributions for China's national CPA examination across provinces", + "Professional discipline and enforcement: annual reports on disciplinary actions against firms and individual CPAs, audit failures, regulatory sanctions, and enforcement patterns by the Ministry of Finance and CSRC", + "Continuing education compliance: registered CPAs' annual continuing professional education (CPE) completion rates, accredited training programs, and online learning statistics", + "International audit standards adoption: data on the adoption of Chinese audit standards aligned with International Standards on Auditing (ISA) and progress in cross-border audit cooperation frameworks", + "Firm organizational structure data: number of limited liability partnerships versus general partnerships, branch office networks, and geographic distribution of accounting firms across China's provinces" + ], + "zh": [ + "注册会计师人数统计:全国各省市注册会计师总数、执业会计师和非执业会计师数量,含历史增长趋势及按年龄和性别的人口特征分析", + "会计师事务所名册与排名:全国百强事务所年度收入、从业人员数量、合伙人人数及业务结构,涵盖四大、中型及本土事务所", + "审计市场集中度数据:按事务所规模、行业领域及上市公司审计委托的市场份额分析,包括各层级事务所承接A股、H股及国有企业审计业务的比例", + "注册会计师资格考试结果:全国注册会计师考试各省通过率、报名人数、各科目表现及分数分布情况", + "职业纪律与执法:财政部和中国证监会对事务所和个人会计师的年度纪律处分、审计失败、监管处罚及执法规律报告", + "继续教育合规情况:注册会计师年度继续职业教育(CPE)完成率、认可培训项目及在线学习统计数据", + "国际审计准则采用:与国际审计准则(ISA)接轨的中国审计准则采用情况数据及跨境审计合作框架进展", + "事务所组织结构数据:有限责任合伙与普通合伙的数量,分支机构网络及会计师事务所在全国各省市的地域分布" + ] + }, + "has_api": false, + "file_path": "china/finance/china-cicpa.json" + }, + { + "id": "china-csi-index", + "name": { + "en": "China Securities Index Co., Ltd.", + "zh": "中证指数有限公司" + }, + "description": { + "en": "China Securities Index Co., Ltd. (CSI) is a joint venture between the Shanghai Stock Exchange and the Shenzhen Stock Exchange. It is China's primary index provider, responsible for developing and maintaining major market indices including the CSI 300, CSI 500, CSI 1000, and hundreds of thematic and strategy indices. CSI provides index data, methodology documentation, and ESG ratings.", + "zh": "中证指数有限公司(中证指数)由上海证券交易所和深圳证券交易所共同出资成立,是中国主要的指数编制机构。负责编制和维护沪深300、中证500、中证1000等核心市场指数以及数百个主题和策略指数,提供指数数据、编制方案及ESG评价服务。" + }, + "website": "https://www.csindex.com.cn", + "data_url": "https://www.csindex.com.cn/#/indices/family/list", + "api_url": null, + "authority_level": "market", + "country": "CN", + "domains": [ + "finance", + "indices", + "securities", + "esg" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "csi", + "中证指数", + "csi-300", + "沪深300", + "csi-500", + "中证500", + "csi-1000", + "中证1000", + "指数", + "index", + "股票指数", + "市场基准", + "benchmark", + "ESG评价" + ], + "data_content": { + "en": [ + "Index Data - Real-time and historical data for all CSI indices including price, total return, and net return versions", + "Index Constituents - Current and historical constituent lists for all indices with weighting information", + "Index Methodology - Detailed methodology documents for each index family", + "ESG Ratings - ESG evaluation data for listed companies", + "Thematic Indices - Specialized indices covering sectors, themes, strategies, and smart beta approaches" + ], + "zh": [ + "指数数据 - 所有中证指数的实时和历史数据,包括价格、全收益和净收益版本", + "指数成份股 - 所有指数的当前及历史成份股名单与权重信息", + "指数编制方案 - 各指数系列的详细编制方法文档", + "ESG评价 - 上市公司ESG评价数据", + "主题指数 - 覆盖行业、主题、策略及Smart Beta的专业指数" + ] + }, + "has_api": false, + "file_path": "china/finance/china-csi-index.json" + }, + { + "id": "china-csrc-futures", + "name": { + "en": "China Futures Association", + "zh": "中国期货业协会" + }, + "description": { + "en": "Self-regulatory organization for China's futures industry, publishing futures market statistics, company rankings, trading volume data, and investor protection reports.", + "zh": "中国期货行业自律组织,发布期货市场统计、公司排名、交易量数据和投资者保护报告。" + }, + "website": "https://www.cfachina.org/", + "data_url": "https://www.cfachina.org/servicesupport/researchandpublishin/statisticalsdata/", + "country": "CN", + "geographic_scope": "national", + "authority_level": "other", + "domains": [ + "finance", + "capital-markets" + ], + "update_frequency": "monthly", + "tags": [ + "futures", + "derivatives", + "capital-markets", + "industry-statistics" + ], + "data_content": { + "en": [ + "futures market trading statistics", + "futures company rankings", + "investor protection data" + ], + "zh": [ + "期货市场交易统计", + "期货公司排名", + "投资者保护数据" + ] + }, + "has_api": false, + "file_path": "china/finance/china-csrc-futures.json" + }, + { + "id": "china-iac", + "name": { + "en": "Insurance Association of China", + "zh": "中国保险业协会" + }, + "description": { + "en": "The Insurance Association of China (IAC) is the national self-regulatory organization for China's insurance industry, representing insurance companies operating in China under the guidance of the National Financial Regulatory Administration (NFRA). IAC publishes authoritative insurance market statistics including total premium income, claims paid, insurance density, insurance penetration rate, and sector breakdowns for life, property, health, and agricultural insurance. It also releases research reports on industry trends, insurance products innovation, and market development data. IAC data is the primary source for understanding China's rapidly expanding insurance market, one of the largest in the world.", + "zh": "中国保险业协会(保险协会)是全国保险行业自律组织,在国家金融监督管理总局指导下代表在华保险公司。协会发布包括保费收入总量、赔付支出、保险密度、保险深度及寿险、财险、健康险、农业保险等分行业统计数据等权威保险市场统计。同时发布行业发展趋势研究报告、保险产品创新及市场发展数据。保险协会数据是了解中国这一全球最大保险市场之一快速扩张态势的主要来源。" + }, + "website": "https://www.iachina.cn/", + "data_url": "https://www.iachina.cn/col/col4479/", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "economics", + "statistics" + ], + "update_frequency": "monthly", + "tags": [ + "保险统计", + "insurance-statistics", + "保费收入", + "premium-income", + "保险密度", + "insurance-density", + "保险深度", + "insurance-penetration", + "寿险", + "life-insurance", + "财险", + "property-insurance", + "健康险", + "health-insurance", + "农业保险", + "agricultural-insurance", + "再保险", + "reinsurance", + "保险行业", + "insurance-industry", + "理赔", + "insurance-claims" + ], + "data_content": { + "en": [ + "Premium income: monthly and annual total premium income by insurance type (life, property, health, accident)", + "Insurance penetration and density: insurance premiums as percentage of GDP and per capita premium data", + "Claims and compensation: total claims paid by sector, major catastrophe loss statistics", + "Life insurance data: new policy sales, policy in-force reserves, annuity and pension insurance statistics", + "Property and casualty: auto insurance, home insurance, liability, and cargo insurance market data", + "Health insurance: commercial health insurance enrollment, benefit payments, and chronic disease coverage", + "Agricultural insurance: crop insurance coverage area, livestock insured, and agricultural indemnity paid", + "Market structure: number of licensed insurers, market share by company, foreign insurer penetration", + "Internet insurance: online insurance sales volumes and product categories", + "Annual insurance industry report: comprehensive yearly review of China's insurance market performance" + ], + "zh": [ + "保费收入:按险种(寿险、财险、健康险、意外险)分类的月度及年度保费总额", + "保险密度与深度:保费占GDP比例及人均保费数据", + "理赔与赔付:各险种赔付总额、重大灾害损失统计", + "寿险数据:新单销售、有效保单准备金、年金和养老保险统计", + "财产险:车险、家财险、责任险和货运险市场数据", + "健康险:商业健康保险参保人数、给付金额及慢性病保障情况", + "农业保险:农作物承保面积、牲畜承保数量及农业赔偿支出", + "市场结构:持牌保险公司数量、各公司市场份额、外资保险公司渗透率", + "互联网保险:网络保险销售规模和产品类别", + "保险行业年度报告:中国保险市场全年运行综合综述" + ] + }, + "has_api": false, + "file_path": "china/finance/china-iac.json" + }, + { + "id": "china-iamac", + "name": { + "en": "China Association of Banking and Insurance Asset Management", + "zh": "中国银行保险资产管理业协会" + }, + "description": { + "en": "The China Association of Banking and Insurance Asset Management (IAMAC) is a national industry self-regulatory organization established in 2021 under the supervision of the National Financial Regulatory Administration (NFRA, formerly CBIRC). IAMAC represents and serves wealth management subsidiaries of commercial banks, insurance asset management companies, and related financial institutions engaged in asset management business in China. The association publishes industry statistical reports, research white papers, regulatory compliance guidelines, and market data on China's banking and insurance asset management sector. IAMAC maintains data on the scale, structure, and performance of wealth management products (理财产品), insurance asset management products, and the aggregate asset management business across its member institutions. It is a key source for understanding the structure and development of China's non-securities asset management industry, which manages over 60 trillion yuan in assets.", + "zh": "中国银行保险资产管理业协会(IAMAC)成立于2021年,是在国家金融监督管理总局(原银保监会)监督指导下成立的全国性行业自律组织。协会代表并服务于商业银行理财子公司、保险资产管理公司及从事资产管理业务的相关金融机构。协会发布行业统计报告、研究白皮书、监管合规指引和中国银行保险资产管理行业市场数据。IAMAC维护会员机构理财产品、保险资管产品及资产管理业务总体规模、结构和绩效数据,是了解中国非证券类资产管理行业结构和发展的重要数据来源,该行业管理资产规模超60万亿元人民币。" + }, + "website": "https://www.iamac.org.cn", + "data_url": "https://www.iamac.org.cn", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "economics" + ], + "update_frequency": "quarterly", + "tags": [ + "中国银行保险资产管理业协会", + "iamac", + "银行理财", + "bank-wealth-management", + "理财子公司", + "wealth-management-subsidiary", + "保险资产管理", + "insurance-asset-management", + "资产管理", + "asset-management", + "理财产品", + "wealth-management-products", + "国家金融监督管理总局", + "nfra", + "cbirc", + "银保监会", + "行业统计", + "industry-statistics", + "自律组织", + "self-regulatory-organization", + "资管新规", + "asset-management-regulation", + "净值型产品", + "net-asset-value-products", + "信托", + "trust", + "债券投资", + "bond-investment", + "非标资产", + "non-standard-assets" + ], + "data_content": { + "en": [ + "Banking wealth management industry statistics: quarterly and annual reports on the total scale of wealth management products issued by commercial banks and their wealth management subsidiaries, including product type breakdown (fixed-income, equity, mixed), maturity structure, and investor categories", + "Insurance asset management industry data: aggregate data on insurance funds allocation across different asset classes (bonds, equities, real estate, alternative investments), investment returns, and risk exposure of insurance asset management companies", + "Market research white papers: in-depth industry research reports covering market development trends, regulatory impact analysis, product innovation, ESG investment in asset management, and cross-border investment data for the banking and insurance asset management sector", + "Regulatory compliance guidelines: industry self-regulatory guidelines, business conduct standards, and compliance reference materials for member institutions on wealth management product design, risk disclosure, investor suitability assessment, and information disclosure", + "Product registration and information disclosure data: aggregated data from the industry product registration system covering issuance scale, product performance, fee structures, and underlying asset information for bank wealth management and insurance asset management products", + "Investor structure and behavior data: analysis of wealth management product investor profiles, investment preferences, risk tolerance distribution, and market trends in Chinese retail and institutional investor participation in the non-securities asset management market" + ], + "zh": [ + "银行理财行业统计:商业银行及其理财子公司发行理财产品总规模季度和年度报告,包括产品类型细分(固收类、权益类、混合类)、期限结构和投资者类别", + "保险资管行业数据:保险资金在不同资产类别(债券、股票、房地产、另类投资)的配置总量数据、投资收益和保险资产管理公司风险敞口", + "市场研究白皮书:涵盖市场发展趋势、监管影响分析、产品创新、资管领域ESG投资和银行保险资产管理跨境投资数据的深度行业研究报告", + "监管合规指引:理财产品设计、风险信息披露、投资者适当性评估和信息公示方面的行业自律指引、业务行为准则和会员机构合规参考材料", + "产品登记和信息披露数据:行业产品登记系统汇总数据,涵盖银行理财和保险资管产品的发行规模、产品业绩、费率结构和底层资产信息", + "投资者结构和行为数据:中国零售和机构投资者参与非证券类资产管理市场的理财产品投资者画像、投资偏好、风险承受分布和市场趋势分析" + ] + }, + "has_api": false, + "file_path": "china/finance/china-iamac.json" + }, + { + "id": "china-nifa", + "name": { + "en": "National Internet Finance Association of China", + "zh": "中国互联网金融协会" + }, + "description": { + "en": "The National Internet Finance Association of China (NIFA) is the national self-regulatory organization for China's internet finance industry, established in 2016 under the guidance of the People's Bank of China. NIFA oversees regulatory compliance, information disclosure, and industry standards for online lending, digital payments, crowdfunding, and internet insurance. The association publishes authoritative reports on internet finance development, consumer risk warnings, industry statistics on registered platform numbers, transaction volumes, outstanding loans, and investor protection. NIFA operates the National Internet Finance Registration Disclosure System (NIFDS), which aggregates compliance data from thousands of regulated fintech platforms. Its data is essential for monitoring China's fintech sector, peer-to-peer lending cleanup progress, digital credit markets, and regulatory evolution of online financial services.", + "zh": "中国互联网金融协会(中互金协)是中国互联网金融行业的全国性自律组织,2016年在中国人民银行指导下成立。协会负责网络借贷、数字支付、众筹和互联网保险等领域的合规监督、信息披露和行业标准制定,发布互联网金融行业发展报告、消费者风险提示,以及注册平台数量、交易规模、贷款余额和投资者保护等权威行业数据。协会运营国家互联网金融登记披露服务平台(NIFDS),汇聚数千家受监管金融科技平台的合规数据。其数据对监测中国金融科技行业、P2P网贷整治进展、数字信贷市场及网络金融服务监管演进具有重要价值。" + }, + "website": "https://www.nifa.org.cn", + "data_url": "https://www.nifa.org.cn", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "fintech", + "digital-economy", + "regulation" + ], + "update_frequency": "monthly", + "tags": [ + "nifa", + "中国互联网金融协会", + "互联网金融", + "网络借贷", + "P2P", + "数字支付", + "金融科技", + "fintech", + "internet-finance", + "online-lending", + "digital-payment", + "p2p-lending", + "consumer-protection", + "金融监管", + "众筹" + ], + "data_content": { + "en": [ + "Internet finance industry development reports", + "Online lending platform statistics (registered platforms, transaction volumes, outstanding loans)", + "Digital payment market data", + "Crowdfunding and internet insurance statistics", + "Consumer risk warnings and investor protection bulletins", + "National Internet Finance Registration Disclosure System (NIFDS) compliance data", + "Annual internet finance industry summary reports" + ], + "zh": [ + "互联网金融行业发展报告", + "网络借贷平台统计(注册平台数量、交易规模、贷款余额)", + "数字支付市场数据", + "众筹及互联网保险统计", + "消费者风险提示和投资者保护公告", + "国家互联网金融登记披露服务平台(NIFDS)合规数据", + "互联网金融行业年度总结报告" + ] + }, + "has_api": false, + "file_path": "china/finance/china-nifa.json" + }, + { + "id": "china-nifd", + "name": { + "en": "National Institution for Finance and Development", + "zh": "国家金融与发展实验室" + }, + "description": { + "en": "The National Institution for Finance and Development (NIFD) is a national-level research think tank affiliated with the Chinese Academy of Social Sciences, focusing on macroeconomic analysis, financial market research, government debt tracking, and systemic risk assessment.", + "zh": "国家金融与发展实验室是中国社会科学院下属的国家级研究智库,专注于宏观经济分析、金融市场研究、政府债务跟踪和系统性风险评估。" + }, + "data_content": { + "en": [ + "macroeconomic analysis reports", + "financial market data", + "government debt statistics", + "systemic risk assessments", + "quarterly economic reviews" + ], + "zh": [ + "宏观经济分析报告", + "金融市场数据", + "政府债务统计", + "系统性风险评估", + "季度经济评论" + ] + }, + "country": "CN", + "authority_level": "research", + "geographic_scope": "national", + "website": "http://www.nifd.cn", + "data_url": "http://www.nifd.cn", + "domains": [ + "finance", + "economics" + ], + "tags": [ + "finance", + "macroeconomics", + "debt", + "risk-assessment", + "cass", + "think-tank" + ], + "update_frequency": "quarterly", + "has_api": false, + "file_path": "china/finance/china-nifd.json" + }, + { + "id": "china-payment-clearing", + "name": { + "en": "Payment & Clearing Association of China", + "zh": "中国支付清算协会" + }, + "description": { + "en": "Industry association for China's payment and clearing sector, publishing payment transaction statistics, reserve fund data, and clearing market analysis.", + "zh": "中国支付清算行业协会,发布支付交易量统计、备付金余额数据和清算市场分析。" + }, + "website": "https://www.pcac.org.cn/", + "data_url": "https://www.pcac.org.cn/eportal/ui?pageId=477883", + "country": "CN", + "geographic_scope": "national", + "authority_level": "other", + "domains": [ + "finance" + ], + "update_frequency": "quarterly", + "tags": [ + "payment", + "clearing", + "fintech", + "industry-statistics" + ], + "data_content": { + "en": [ + "payment transaction volume statistics", + "reserve fund balance data", + "clearing market analysis" + ], + "zh": [ + "支付交易量统计", + "备付金余额数据", + "清算市场分析" + ] + }, + "has_api": false, + "file_path": "china/finance/china-payment-clearing.json" + }, + { + "id": "china-shanghai-clearing-house", + "name": { + "en": "Shanghai Clearing House", + "zh": "上海清算所" + }, + "description": { + "en": "Shanghai Clearing House (SHCH) is a national financial market infrastructure institution established with the approval of the State Council of China. It provides central counterparty clearing, information disclosure, and data services for China's interbank market, covering bonds, interest rate derivatives, foreign exchange derivatives, and commodity derivatives.", + "zh": "上海清算所是经国务院批准设立的国家级金融市场基础设施,为中国银行间市场提供中央对手方清算、信息披露和数据服务,覆盖债券、利率衍生品、外汇衍生品和大宗商品衍生品等产品。" + }, + "website": "https://www.shclearing.com.cn", + "data_url": "https://www.shclearing.com.cn/sjtj/", + "api_url": null, + "authority_level": "market", + "country": "CN", + "domains": [ + "finance", + "bonds", + "derivatives", + "clearing" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "shanghai-clearing-house", + "上海清算所", + "shch", + "中央对手方清算", + "ccp", + "银行间市场", + "interbank-market", + "债券", + "bonds", + "利率衍生品", + "外汇衍生品", + "清算", + "clearing" + ], + "data_content": { + "en": [ + "Clearing Statistics - Daily clearing volumes, open interest, and settlement data for various product categories", + "Bond Valuation Data - Daily valuation prices for interbank bonds and related instruments", + "Interest Rate Curves - Yield curves and benchmark interest rate data", + "Market Data Reports - Monthly and annual market statistics and trend analysis", + "Product Information - Details on cleared products including bonds, IRS, FX derivatives, and commodity derivatives" + ], + "zh": [ + "清算统计 - 各产品类别的每日清算量、持仓量及结算数据", + "债券估值数据 - 银行间债券及相关工具的每日估值价格", + "利率曲线 - 收益率曲线及基准利率数据", + "市场数据报告 - 月度及年度市场统计与趋势分析", + "产品信息 - 清算产品详情,包括债券、利率互换、外汇衍生品及大宗商品衍生品" + ] + }, + "has_api": false, + "file_path": "china/finance/china-shanghai-clearing-house.json" + }, + { + "id": "china-shenzhen-jrj", + "name": { + "en": "Shenzhen Local Financial Supervision and Administration Bureau", + "zh": "深圳市地方金融监督管理局" + }, + "description": { + "en": "The Shenzhen Local Financial Supervision and Administration Bureau is the municipal government agency responsible for supervising and regulating the local financial industry in Shenzhen, one of China's most important financial centers alongside Shanghai and Hong Kong. The bureau oversees small loan companies, financing guarantee institutions, private equity funds, commercial factoring, financial leasing, and emerging fintech activities. It publishes data on the local financial industry development, fintech innovation, green finance initiatives, and financial risk monitoring. Shenzhen's financial data is particularly relevant for understanding China's fintech ecosystem, venture capital market, and the financial integration of the Greater Bay Area.", + "zh": "深圳市地方金融监督管理局是负责监管深圳地方金融业的市级政府部门。深圳与上海、香港并列为中国最重要的金融中心之一,该局负责监管小额贷款公司、融资担保机构、私募基金、商业保理、融资租赁和新兴金融科技业务。发布地方金融业发展数据、金融科技创新、绿色金融和金融风险监测等信息。深圳的金融数据对了解中国金融科技生态、风险投资市场和粤港澳大湾区金融融合具有重要参考价值。" + }, + "website": "https://jr.sz.gov.cn", + "data_url": "https://jr.sz.gov.cn/sjrb/xxgk/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "finance", + "fintech" + ], + "update_frequency": "quarterly", + "tags": [ + "深圳金融", + "shenzhen-finance", + "深圳金融监管", + "shenzhen-financial-supervision", + "地方金融", + "local-finance", + "金融科技", + "fintech", + "小额贷款", + "microfinance", + "融资担保", + "financing-guarantee", + "私募基金", + "private-equity", + "绿色金融", + "green-finance", + "深圳基金", + "shenzhen-fund", + "粤港澳大湾区金融", + "greater-bay-area-finance", + "商业保理", + "commercial-factoring" + ], + "data_content": { + "en": [ + "Financial industry overview: annual reports on Shenzhen's local financial industry development, total assets, and revenue", + "Microfinance: number of small loan companies, total loan balance, and lending statistics", + "Financing guarantee: guarantee institution performance, outstanding guarantee amounts, and risk indicators", + "Private equity and venture capital: fund registration statistics, investment amounts, and portfolio data in Shenzhen", + "Fintech innovation: fintech enterprise counts, sandbox pilot projects, and digital finance development data", + "Green finance: green bond issuance, green credit balances, and sustainable finance statistics", + "Financial risk monitoring: non-performing loan ratios, risk event statistics, and regulatory enforcement data", + "Cross-border finance: cross-border RMB settlements, QFLP/QDLP pilot data, and Greater Bay Area financial connectivity" + ], + "zh": [ + "金融业概况:深圳地方金融业年度发展报告、总资产和营收数据", + "小额贷款:小额贷款公司数量、贷款余额和放贷统计", + "融资担保:担保机构经营数据、在保余额和风险指标", + "私募股权和风险投资:深圳基金备案统计、投资金额和投资组合数据", + "金融科技创新:金融科技企业数量、监管沙盒试点项目和数字金融发展数据", + "绿色金融:绿色债券发行、绿色信贷余额和可持续金融统计", + "金融风险监测:不良贷款率、风险事件统计和监管执法数据", + "跨境金融:跨境人民币结算、QFLP/QDLP试点数据和大湾区金融互联互通" + ] + }, + "has_api": false, + "file_path": "china/finance/china-shenzhen-jrj.json" + }, + { + "id": "china-trustee-association", + "name": { + "en": "China Trustee Association", + "zh": "中国信托业协会" + }, + "description": { + "en": "Industry association for China's trust sector, publishing trust asset management data, quarterly reports, and industry statistics for 68 trust companies.", + "zh": "中国信托行业协会,发布信托资产管理数据、季度报告和68家信托公司行业统计。" + }, + "website": "http://www.xtxh.net/", + "data_url": "http://www.xtxh.net/xtyxh/hyyj/tjsj/index.html", + "country": "CN", + "geographic_scope": "national", + "authority_level": "other", + "domains": [ + "finance" + ], + "update_frequency": "quarterly", + "tags": [ + "trust", + "asset-management", + "financial-statistics" + ], + "data_content": { + "en": [ + "trust asset management statistics", + "quarterly industry reports", + "trust company data" + ], + "zh": [ + "信托资产管理统计", + "季度行业报告", + "信托公司数据" + ] + }, + "has_api": false, + "file_path": "china/finance/china-trustee-association.json" + }, + { + "id": "china-xinhua-finance", + "name": { + "en": "Xinhua Finance - China Financial Information Network", + "zh": "新华财经 - 中国金融信息网" + }, + "description": { + "en": "Xinhua Finance (中国金融信息网 / cnfin.com) is China's national financial information service platform operated by China Economic Information Service (CEIS), a wholly-owned subsidiary of Xinhua News Agency — China's state-run press agency. As the official financial information service of Xinhua, Xinhua Finance is authorized to deliver authoritative economic and financial data, market analytics, and financial news to domestic and international users. The platform provides real-time coverage of China's bond, equity, commodity, foreign exchange, and money markets; publishes proprietary indices such as the Xinhua Bond Index, Xinhua 08 Financial Data Terminal, and Silk Road Credit Ratings; and distributes exclusive macroeconomic reports, monetary policy analysis, and industry research. Xinhua Finance collaborates with major international financial information providers (e.g., S&P Global, Refinitiv) and serves government agencies, financial institutions, research organizations, and enterprises. It has been designated as an authoritative information dissemination channel for China's financial market opening and Belt and Road financial cooperation.", + "zh": "新华财经(中国金融信息网 / cnfin.com)是由新华社全资子公司中国经济信息社运营的国家级金融信息服务平台。作为新华社官方金融信息服务,新华财经被授权向国内外用户提供权威的经济金融数据、市场分析及金融新闻。平台实时报道中国债券、股票、商品、外汇及货币市场;发布新华债券指数、新华08金融数据终端、丝路信用评级等自主指数产品;并发布独家宏观经济报告、货币政策分析及行业研究。新华财经与标普全球、路孚特等国际主流金融信息服务商开展合作,服务对象包括政府部门、金融机构、研究机构及企业。新华财经被指定为中国金融市场开放和“一带一路”金融合作的权威信息发布渠道。" + }, + "website": "https://www.cnfin.com/", + "data_url": "https://www.cnfin.com/", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "economics", + "markets", + "media" + ], + "update_frequency": "real-time", + "tags": [ + "新华财经", + "xinhua-finance", + "中国金融信息网", + "china-financial-information-network", + "新华社", + "xinhua-news-agency", + "中国经济信息社", + "ceis", + "金融数据", + "financial-data", + "新华债券指数", + "xinhua-bond-index", + "新华08", + "xinhua-08-terminal", + "货币政策", + "monetary-policy", + "债券市场", + "bond-market", + "外汇市场", + "fx-market", + "商品市场", + "commodity-market", + "宏观经济", + "macroeconomics", + "丝路信用", + "silk-road-credit-ratings", + "金融科技", + "fintech", + "一带一路金融", + "belt-and-road-finance" + ], + "data_content": { + "en": [ + "Real-time market data: equity, bond, commodity, FX, and money market prices and trading information for China's major exchanges and interbank markets", + "Xinhua Bond Index series: proprietary indices tracking performance of Chinese bond markets including government, financial, corporate, and green bonds", + "Xinhua 08 Financial Data Terminal: professional financial data platform for banks, brokerages, funds, and research institutions", + "Economic indicators: coverage of PMI, CPI, PPI, GDP, trade, industrial output, and other key Chinese macroeconomic data releases", + "Monetary policy and central bank communications: real-time reporting of PBOC and regulator announcements, analysis of policy direction", + "Industry research reports: sector analysis covering technology, manufacturing, finance, energy, and emerging industries", + "Silk Road credit ratings: credit ratings focused on Belt and Road sovereign and corporate issuers", + "Xinhua financial news: authoritative financial journalism with emphasis on China and Asia-Pacific markets", + "Green finance and ESG data: Chinese green bond market tracking, ESG disclosures analysis", + "International market coverage: global economic and financial news translated and contextualized for Chinese users" + ], + "zh": [ + "实时市场数据:中国主要交易所和银行间市场的股票、债券、大宗商品、外汇及货币市场价格与交易信息", + "新华债券指数系列:跟踪中国债券市场(含国债、金融债、企业债、绿色债券)表现的自主指数", + "新华08金融数据终端:面向银行、证券、基金及研究机构的专业金融数据平台", + "经济指标:中国PMI、CPI、PPI、GDP、贸易、工业产出等重要宏观经济数据发布覆盖", + "货币政策与央行沟通:中国人民银行及监管机构公告的实时报道,政策方向分析", + "行业研究报告:涵盖科技、制造、金融、能源及新兴产业的行业分析", + "丝路信用评级:聚焦一带一路主权和企业发行人的信用评级", + "新华财经新闻:权威财经新闻报道,侧重中国及亚太市场", + "绿色金融与ESG数据:中国绿色债券市场跟踪、ESG信息披露分析", + "国际市场报道:全球经济金融新闻的翻译与本地化解读" + ] + }, + "has_api": false, + "file_path": "china/finance/china-xinhua-finance.json" + }, + { + "id": "china-mof", + "name": { + "en": "Ministry of Finance of China", + "zh": "中华人民共和国财政部" + }, + "description": { + "en": "The Ministry of Finance (MOF) is a constituent department of the State Council responsible for fiscal policy formulation, budget management, tax administration, and government financial regulation. It provides comprehensive data on national budgets, fiscal revenues and expenditures, government debt, tax statistics, accounting standards, and fiscal policy implementation across all levels of government.", + "zh": "中华人民共和国财政部是国务院组成部门,负责财政政策制定、预算管理、税收管理和政府财务监管。提供包括国家预算、财政收支、政府债务、税收统计、会计准则以及各级政府财政政策执行等全面的财政数据。" + }, + "website": "https://www.mof.gov.cn", + "data_url": "https://www.mof.gov.cn/gkml/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "economics", + "fiscal-policy", + "taxation", + "government-budget" + ], + "update_frequency": "monthly", + "tags": [ + "china", + "finance", + "fiscal-policy", + "budget", + "taxation", + "government-revenue", + "government-expenditure", + "public-debt", + "财政", + "预算", + "税收", + "财政收支", + "政府债务", + "财政部", + "中央财政", + "地方财政", + "财政政策" + ], + "data_content": { + "en": [ + "National Budget - Annual central and local government budgets, budget execution reports, and fiscal year planning", + "Fiscal Revenue and Expenditure - Monthly and annual fiscal revenue by source (taxes, fees), and government expenditure by function and department", + "Tax Statistics - Tax revenue data by category (VAT, corporate income tax, individual income tax, etc.), tax collection efficiency", + "Government Debt - Central and local government debt data, bond issuance, debt service ratios, and debt sustainability analysis", + "Transfer Payments - Central-to-local fiscal transfers, special-purpose transfers, and equalization mechanisms", + "State-Owned Assets - Financial performance of central state-owned enterprises, asset management, and dividend policies", + "Accounting Standards - Government accounting standards, financial reporting requirements, and compliance data", + "Fiscal Policy - Policy documents, reform initiatives, and implementation reports on fiscal reforms", + "International Fiscal Cooperation - Bilateral and multilateral fiscal agreements, foreign aid, and international financial commitments" + ], + "zh": [ + "国家预算 - 年度中央和地方政府预算、预算执行报告和财政年度规划", + "财政收支 - 按来源分类的月度和年度财政收入(税收、费用)及按功能和部门分类的政府支出", + "税收统计 - 按类别分类的税收收入数据(增值税、企业所得税、个人所得税等)、税收征管效率", + "政府债务 - 中央和地方政府债务数据、债券发行、偿债率和债务可持续性分析", + "转移支付 - 中央对地方财政转移支付、专项转移支付和均衡性转移支付机制", + "国有资产 - 中央国有企业财务绩效、资产管理和分红政策", + "会计准则 - 政府会计准则、财务报告要求和合规数据", + "财政政策 - 财政改革政策文件、改革举措和执行报告", + "国际财政合作 - 双边和多边财政协定、对外援助和国际财政承诺" + ] + }, + "has_api": false, + "file_path": "china/finance/fiscal/china-mof.json" + }, + { + "id": "china-nssf", + "name": { + "en": "National Social Security Fund Council of China", + "zh": "全国社会保障基金理事会" + }, + "description": { + "en": "The National Social Security Fund Council (NSSF) manages China's national social security reserve fund, established by the State Council in 2000 to supplement the basic pension system and address future social security funding gaps. The NSSF publishes annual reports disclosing fund size, investment portfolio allocation, asset returns, equity holdings, and long-term performance benchmarks. As of 2023, the fund manages over 3 trillion RMB in assets across domestic and overseas equities, bonds, alternative investments, and private equity. NSSF data is essential for analyzing China's sovereign wealth management strategy, pension system sustainability, and capital market influence.", + "zh": "全国社会保障基金理事会(社保基金)是国务院于2000年设立的国家社会保障战略储备基金管理机构,用于补充基本养老保险并应对未来社会保障资金缺口。理事会每年发布年度报告,披露基金规模、投资组合配置、资产收益、权益持仓及长期绩效基准。截至2023年,基金管理规模超过3万亿元人民币,涵盖境内外股票、债券、另类投资及私募股权。社保基金数据对分析中国主权财富管理策略、养老金体系可持续性及资本市场影响力具有重要价值。" + }, + "website": "http://www.ssf.gov.cn", + "data_url": "http://www.ssf.gov.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "social-security", + "investment", + "economics" + ], + "update_frequency": "annual", + "tags": [ + "社保基金", + "nssf", + "national-social-security-fund", + "养老金", + "pension", + "社会保障储备", + "social-security-reserve", + "基金规模", + "fund-size", + "投资组合", + "investment-portfolio", + "资产收益", + "asset-returns", + "主权基金", + "sovereign-fund", + "资本市场", + "capital-market", + "国家战略储备", + "national-strategic-reserve", + "年度报告", + "annual-report" + ], + "data_content": { + "en": [ + "Annual fund size and growth: total assets under management, cumulative investment returns since inception", + "Portfolio allocation: breakdown of assets across domestic equities, fixed income, overseas investments, alternative assets, and private equity", + "Investment returns: annual and cumulative return rates by asset class and overall portfolio", + "Equity holdings: major stock holdings in domestic A-share market and overseas listed companies", + "Social security transfer receipts: funds transferred from state-owned enterprise equity and other sources", + "Entrusted investment performance: performance of funds managed by external investment managers", + "Overseas investment: allocation to overseas markets by region and asset type", + "Annual statistical bulletin: comprehensive financial summary and key performance indicators" + ], + "zh": [ + "年度基金规模与增长:受托管理资产总规模、自成立以来累计投资收益", + "资产配置:国内股票、固定收益、境外投资、另类资产及私募股权的资产分布", + "投资收益:各资产类别及整体组合的年度和累计收益率", + "权益持仓:国内A股市场及境外上市公司主要股票持仓", + "社会保障基金转入:国有股权划转及其他来源的资金转入情况", + "委托投资绩效:外部投资管理人受托管理资金的绩效表现", + "境外投资:按地区和资产类别分类的境外市场配置情况", + "年度统计公报:综合财务摘要及关键绩效指标" + ] + }, + "has_api": false, + "file_path": "china/finance/fiscal/china-nssf.json" + }, + { + "id": "china-cfets", + "name": { + "en": "China Foreign Exchange Trade System", + "zh": "中国外汇交易中心" + }, + "description": { + "en": "China Foreign Exchange Trade System (CFETS), also known as China Money, is the institution authorized by the People's Bank of China to organize and operate the national interbank foreign exchange market, money market, and bond market. It publishes authoritative RMB exchange rate central parity rates, interbank market trading data, bond yields, and money market benchmark rates including SHIBOR and LPR.", + "zh": "中国外汇交易中心(CFETS)是经中国人民银行授权,负责组织运营全国银行间外汇市场、货币市场和债券市场的机构。发布人民币汇率中间价、银行间市场交易数据、债券收益率曲线、SHIBOR和LPR等货币市场基准利率等权威数据。" + }, + "website": "https://www.chinamoney.com.cn", + "data_url": "https://www.chinamoney.com.cn/chinese/bkccpr/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "finance", + "economics" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "china", + "cfets", + "foreign-exchange", + "forex", + "exchange-rate", + "interbank", + "money-market", + "bond-market", + "shibor", + "lpr", + "rmb", + "人民币汇率", + "中间价", + "银行间市场", + "货币市场", + "债券市场", + "利率" + ], + "data_content": { + "en": [ + "RMB Central Parity Rate - Daily central parity rates for RMB against USD and other major currencies", + "Interbank FX Market Data - Foreign exchange spot, forward, and swap trading volumes and rates", + "SHIBOR - Shanghai Interbank Offered Rate across multiple tenors", + "LPR - Loan Prime Rate published monthly", + "Bond Market Data - Interbank bond trading volumes, yields, and yield curves", + "Money Market Rates - Pledged repo rates, outright repo rates, and interbank lending rates", + "Gold Market Data - Interbank gold trading prices and volumes", + "CFETS RMB Index - Trade-weighted RMB exchange rate index" + ], + "zh": [ + "人民币汇率中间价 - 人民币对美元等主要货币的每日中间价", + "银行间外汇市场数据 - 外汇即期、远期、掉期交易量和汇率", + "SHIBOR - 上海银行间同业拆放利率(多期限)", + "LPR - 贷款市场报价利率(每月发布)", + "债券市场数据 - 银行间债券交易量、收益率和收益率曲线", + "货币市场利率 - 质押式回购利率、买断式回购利率、同业拆借利率", + "黄金市场数据 - 银行间黄金交易价格和成交量", + "CFETS人民币汇率指数 - 贸易加权人民币汇率指数" + ] + }, + "has_api": false, + "file_path": "china/finance/forex/china-cfets.json" + }, + { + "id": "china-safe", + "name": { + "en": "State Administration of Foreign Exchange of China", + "zh": "国家外汇管理局", + "native": "国家外汇管理局" + }, + "description": { + "en": "The State Administration of Foreign Exchange (SAFE) is China's foreign exchange regulatory authority responsible for drafting regulations on foreign exchange market supervision and managing China's foreign exchange reserves. It publishes authoritative statistics on foreign exchange reserves, balance of payments, international investment position, cross-border capital flows, and exchange rate data.", + "zh": "国家外汇管理局(外汇局)是中国外汇市场的监管机构,负责管理国家外汇储备。发布外汇储备规模、国际收支、国际投资头寸、跨境资本流动和汇率等权威统计数据。" + }, + "website": "https://www.safe.gov.cn", + "data_url": "https://www.safe.gov.cn/safe/tjsj1/index.html", + "api_url": null, + "country": "CN", + "domains": [ + "finance", + "economics", + "trade" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "authority_level": "government", + "tags": [ + "china", + "foreign-exchange", + "forex", + "reserves", + "balance-of-payments", + "international-investment", + "cross-border", + "capital-flows", + "exchange-rate", + "外汇", + "外汇储备", + "国际收支", + "跨境资本", + "人民币" + ], + "data_content": { + "en": [ + "Foreign Exchange Reserves - Monthly data on China's official foreign exchange reserve levels", + "Balance of Payments - Current account, capital account, and financial account statistics", + "International Investment Position - China's external assets and liabilities", + "Cross-border Capital Flows - FDI inflows/outflows, portfolio investment, and other capital flows", + "Exchange Rate Data - RMB central parity rates and exchange rate statistics", + "Foreign Exchange Market - Trading volumes and market structure data", + "Banks' Foreign Exchange Assets and Liabilities - Banking sector foreign exchange positions", + "External Debt Statistics - China's total external debt by sector and maturity" + ], + "zh": [ + "外汇储备规模 - 中国官方外汇储备月度数据", + "国际收支 - 经常账户、资本账户和金融账户统计", + "国际投资头寸 - 中国对外资产和负债状况", + "跨境资本流动 - 外商直接投资、证券投资和其他资本流动", + "汇率数据 - 人民币中间价和汇率统计", + "外汇市场 - 外汇市场交易量和市场结构数据", + "银行业外汇资产负债 - 银行业外汇头寸", + "外债统计 - 按部门和期限分类的中国外债总量" + ] + }, + "has_api": false, + "file_path": "china/finance/forex/china-safe.json" + }, + { + "id": "china-neeq", + "name": { + "en": "National Equities Exchange and Quotations (New Third Board)", + "zh": "全国中小企业股份转让系统(新三板)" + }, + "description": { + "en": "The National Equities Exchange and Quotations (NEEQ), commonly known as the New Third Board (新三板), is China's national OTC securities market for small and medium-sized enterprises (SMEs). Established in 2013 and supervised by the China Securities Regulatory Commission (CSRC), NEEQ provides a capital market platform for innovative SMEs that do not yet meet requirements for listing on the main exchanges. It publishes real-time quotation data, company disclosure information, and market statistics for thousands of listed companies.", + "zh": "全国中小企业股份转让系统(NEEQ),俗称新三板,是中国为中小企业设立的全国性场外证券市场。成立于2013年,受中国证券监督管理委员会监管,为尚不满足主板上市要求的创新型中小企业提供资本市场平台。提供数千家挂牌公司的实时行情数据、信息披露和市场统计数据。" + }, + "website": "https://www.neeq.com.cn", + "data_url": "https://www.neeq.com.cn/issuanceList.html", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "securities" + ], + "update_frequency": "daily", + "tags": [ + "新三板", + "new-third-board", + "neeq", + "全国股转", + "中小企业", + "sme", + "场外市场", + "otc-market", + "挂牌公司", + "listed-companies", + "股票行情", + "stock-quotations", + "证券", + "securities", + "中国资本市场", + "china-capital-market", + "做市商", + "market-maker", + "精选层", + "创新层", + "基础层", + "北交所", + "信息披露", + "disclosure" + ], + "data_content": { + "en": [ + "Market Overview - Total listed companies, market capitalization, and trading volume statistics", + "Real-time Quotations - Bid/ask prices, last trade prices, and volume for all listed stocks", + "Company Disclosure - Annual reports, interim reports, prospectuses, and material event announcements", + "Listing Information - New listings, de-listings, and transfer-to-exchange records", + "Fundraising Statistics - Equity financing amounts and deal counts by period", + "Industry Distribution - Listed company counts and market cap by CSRC industry classification", + "Regional Distribution - Listed company statistics by province and city", + "Market Maker Data - Market maker quotes, spreads, and turnover for designated stocks", + "Index Data - NEEQ composite index and selected tier indices", + "Annual Market Reports - Comprehensive annual statistics on SME equity financing in China" + ], + "zh": [ + "市场概况 - 挂牌公司总数、市值和成交量统计", + "实时行情 - 所有挂牌股票的买卖报价、最新成交价和成交量", + "信息披露 - 年报、半年报、招股说明书和重大事项公告", + "挂牌信息 - 新增挂牌、摘牌和转板记录", + "融资统计 - 各期间股权融资金额和交易笔数", + "行业分布 - 按证监会行业分类的挂牌公司数量和市值", + "地区分布 - 按省市划分的挂牌公司统计", + "做市商数据 - 做市股票的做市商报价、价差和成交数据", + "指数数据 - 新三板综合指数及各层次选取指数", + "年度市场报告 - 中国中小企业股权融资年度综合统计" + ] + }, + "has_api": false, + "file_path": "china/finance/securities/china-neeq.json" + }, + { + "id": "china-sse", + "name": { + "en": "Shanghai Stock Exchange", + "zh": "上海证券交易所", + "native": "上海证券交易所" + }, + "description": { + "en": "The Shanghai Stock Exchange (SSE) is one of China's two major stock exchanges and one of the largest in the world by market capitalization. It provides comprehensive real-time and historical market data including equity trading, bond markets, funds, derivatives, and company disclosure information. SSE hosts the main board and the STAR Market (Science and Technology Innovation Board) for high-tech enterprises.", + "zh": "上海证券交易所(上交所)是中国两大证券交易所之一,也是全球市值最大的证券交易所之一。提供股票交易、债券市场、基金、衍生品及上市公司信息披露的全面实时和历史市场数据。上交所设有主板和面向科创企业的科创板。" + }, + "website": "https://www.sse.com.cn", + "data_url": "https://www.sse.com.cn/market/stockdata/statistic/", + "api_url": null, + "country": "CN", + "domains": [ + "finance", + "securities" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "authority_level": "market", + "tags": [ + "china", + "stock-exchange", + "shanghai", + "a-shares", + "equities", + "bonds", + "etf", + "star-market", + "market-data", + "listed-companies", + "securities", + "上交所", + "上海证券交易所", + "A股", + "股票", + "科创板", + "债券" + ], + "data_content": { + "en": [ + "Equity Market Statistics - Daily trading volume, market capitalization, and price indices (SSE Composite, SSE 50, SSE 180)", + "Listed Companies - Total number, sector breakdown, financial disclosures, and annual reports", + "Bond Market - Government bonds, corporate bonds, convertible bonds trading data", + "Fund Market - ETFs, mutual funds, REITs listing and trading statistics", + "STAR Market - Science and Technology Innovation Board company listings and trading data", + "Derivatives - Stock options trading volumes and open interest", + "Market Overview - Total accounts, investor structure, and market activity", + "Historical Data - Daily, monthly, and annual historical market statistics" + ], + "zh": [ + "股票市场统计 - 日交易量、市值和价格指数(上证综指、上证50、上证180)", + "上市公司 - 总数、行业分布、财务披露和年报", + "债券市场 - 国债、公司债、可转债交易数据", + "基金市场 - ETF、公募基金、REITs上市和交易统计", + "科创板 - 科技创新企业上市和交易数据", + "衍生品 - 股票期权交易量和持仓量", + "市场概况 - 账户总数、投资者结构和市场活跃度", + "历史数据 - 每日、每月、每年历史市场统计数据" + ] + }, + "has_api": false, + "file_path": "china/finance/securities/china-sse.json" + }, + { + "id": "china-csrc", + "name": { + "en": "China Securities Regulatory Commission", + "zh": "中国证券监督管理委员会", + "native": "中国证券监督管理委员会" + }, + "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数据、上市公司信息、债券市场数据、期货市场统计、基金行业数据和监管执法行动。" + }, + "website": "https://www.csrc.gov.cn", + "data_url": "https://www.csrc.gov.cn/csrc/c100103/common_list.shtml", + "api_url": null, + "country": "CN", + "domains": [ + "finance", + "securities", + "capital-markets" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "china", + "securities", + "stock-market", + "ipo", + "listed-companies", + "capital-markets", + "regulation", + "csrc" + ], + "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": "hkex", + "name": { + "en": "Hong Kong Exchanges and Clearing Limited (HKEX)", + "zh": "香港交易及结算所有限公司(港交所)", + "native": "香港交易及结算所有限公司" + }, + "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信息和监管文件的官方平台。" + }, + "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": [ + "finance", + "securities", + "derivatives", + "capital-markets" + ], + "geographic_scope": "regional", + "update_frequency": "real-time", + "tags": [ + "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和新上市 - 新上市申请、进度报告和上市文件", + "持股披露 - 中央结算系统持股数据、互联互通持股和权益披露", + "清算结算数据 - 交易结算信息和风险管理数据", + "市场通讯 - 通告、监管公告和交易所通知" + ] + }, + "authority_level": "commercial", + "has_api": true, + "file_path": "china/finance/securities/hkex.json" + }, + { + "id": "china-szse", + "name": { + "en": "Shenzhen Stock Exchange", + "zh": "深圳证券交易所", + "native": "深圳证券交易所" + }, + "description": { + "en": "The Shenzhen Stock Exchange (SZSE) is one of China's two major stock exchanges, home to the ChiNext board (创业板) for innovative growth companies and the Small and Medium Enterprise (SME) board. It provides comprehensive market data including stock trading statistics, listed company information, bond market data, fund data, index data, and market summaries.", + "zh": "深圳证券交易所是中国两大主要证券交易所之一,设有面向创新成长型企业的创业板和中小企业板。提供全面的市场数据,包括股票交易统计、上市公司信息、债券市场数据、基金数据、指数数据和市场总览。" + }, + "website": "https://www.szse.cn", + "data_url": "https://www.szse.cn/market/trend/index.html", + "api_url": "https://www.szse.cn/api/report/ShowReport/data", + "authority_level": "government", + "country": "CN", + "domains": [ + "finance", + "securities" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "china", + "shenzhen", + "stock-exchange", + "szse", + "chinext", + "创业板", + "中小板", + "深交所", + "equity", + "securities", + "a-shares", + "etf", + "bonds", + "index" + ], + "data_content": { + "en": [ + "Market Overview - Daily trading volume, market capitalization, number of listed companies, and composite index", + "ChiNext Board (创业板) - Trading data, listings, and market statistics for innovative growth companies", + "Stock Trading Data - Real-time and historical prices, volume, turnover rate, and sector statistics", + "Listed Companies - Company profiles, financial disclosures, prospectuses, and annual reports", + "Bond Market - Corporate bonds, convertible bonds, asset-backed securities trading data", + "Fund Data - ETF, LOF, and REITs trading volume and net asset value statistics", + "Index Data - SZSE Component Index, ChiNext Index, and other derived indices", + "Industry Statistics - Trading data segmented by CSRC industry classification", + "Investor Statistics - Number of accounts, institutional vs. retail investor breakdown" + ], + "zh": [ + "市场总览 - 每日成交量、市值、上市公司数量和综合指数", + "创业板 - 创新成长型企业交易数据、上市情况和市场统计", + "股票交易数据 - 实时和历史价格、成交量、换手率及行业统计", + "上市公司 - 公司概况、财务披露、招股说明书和年报", + "债券市场 - 公司债、可转债、资产支持证券交易数据", + "基金数据 - ETF、LOF和REITs成交量及净值统计", + "指数数据 - 深证成份指数、创业板指数及其他衍生指数", + "行业统计 - 按证监会行业分类的交易数据", + "投资者统计 - 账户数量、机构与散户投资者结构" + ] + }, + "has_api": true, + "file_path": "china/finance/securities/szse.json" + }, + { + "id": "china-chinatax", + "name": { + "en": "State Taxation Administration of China", + "zh": "国家税务总局" + }, + "description": { + "en": "Official tax statistics and fiscal revenue data from China's State Taxation Administration (STA). Covers national tax revenue collection data, tax category breakdowns (VAT, corporate income tax, personal income tax, consumption tax, tariffs), monthly and annual tax revenue bulletins, tax compliance and enforcement statistics, taxpayer registration data, tax refund and drawback records, and regional tax revenue distribution. The STA administers and collects all taxes and social insurance contributions in China except for customs duties.", + "zh": "国家税务总局发布的官方税收统计与财政收入数据,涵盖全国税收收入征管数据、税种分类明细(增值税、企业所得税、个人所得税、消费税、关税等)、月度及年度税收收入公告、税务合规与执法统计、纳税人登记数据、退税与退库记录及地区税收收入分布。税务总局负责征管全国除关税外的各类税收及社会保险费。" + }, + "website": "https://www.chinatax.gov.cn/", + "data_url": "https://www.chinatax.gov.cn/chinatax/n810219/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "economics", + "governance" + ], + "update_frequency": "monthly", + "tags": [ + "税收", + "taxation", + "国家税务总局", + "state-taxation-administration", + "增值税", + "vat", + "企业所得税", + "corporate-income-tax", + "个人所得税", + "personal-income-tax", + "消费税", + "consumption-tax", + "税收收入", + "tax-revenue", + "财政收入", + "fiscal-revenue", + "纳税人", + "taxpayer", + "税收统计", + "tax-statistics", + "sta", + "税收征管", + "tax-administration", + "出口退税", + "export-tax-refund" + ], + "data_content": { + "en": [ + "Monthly and annual national tax revenue reports: total collection by tax category", + "Value-Added Tax (VAT) revenue: by industry sector, region, and enterprise size", + "Corporate Income Tax (CIT) revenue statistics: collected from domestic enterprises and foreign-invested companies", + "Personal Income Tax (PIT) data: wage income, business income, dividend income and withholding statistics", + "Consumption tax collection: tobacco, alcohol, petroleum products, luxury goods", + "Taxpayer registration data: number of registered taxpayers by type (general VAT, small-scale, individual business)", + "Export tax refund (VAT drawback) statistics by industry and province", + "Social insurance contribution collection data (unified collection since 2019)", + "Tax enforcement and compliance statistics: audits, penalties, and tax evasion cases", + "Regional tax revenue distribution: provincial breakdowns of major tax categories" + ], + "zh": [ + "月度及年度全国税收收入报告:各税种征收总量", + "增值税收入:按行业、地区及企业规模分类", + "企业所得税收入统计:内资企业和外资企业征收情况", + "个人所得税数据:工资薪金、经营所得、股息所得及代扣代缴统计", + "消费税征收:烟草、酒类、石油制品、奢侈品等", + "纳税人登记数据:一般纳税人、小规模纳税人、个体工商户数量", + "出口退税(增值税退税)统计:按行业及省份分类", + "社会保险费征收数据(2019年起统一征收)", + "税收执法与合规统计:稽查、处罚及逃税案件", + "地区税收收入分布:主要税种省级分类数据" + ] + }, + "has_api": false, + "file_path": "china/finance/taxation/china-chinatax.json" + }, + { + "id": "china-acla", + "name": { + "en": "All China Lawyers Association", + "zh": "中华全国律师协会" + }, + "description": { + "en": "The All China Lawyers Association (ACLA) is the national self-regulatory organization for the legal profession in China, established in 1986. Under the supervision of the Ministry of Justice, ACLA represents and manages approximately 650,000 licensed lawyers and over 40,000 law firms across China. It publishes annual statistics on the legal profession including lawyer counts by region, law firm distribution, legal aid cases, and industry growth trends, serving as the authoritative data source for China's legal services market.", + "zh": "中华全国律师协会(全国律协/ACLA)成立于1986年,是中国法律职业的全国性自律组织,受司法部监管。代表和管理全国约65万名执业律师和4万余家律师事务所。发布全国律师行业年度统计数据,包括各地区律师人数、律师事务所分布、法律援助案件情况和行业发展趋势,是中国法律服务市场的权威数据来源。" + }, + "website": "https://www.acla.org.cn", + "data_url": "https://www.acla.org.cn/acla/tjxx/", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "legal", + "governance" + ], + "update_frequency": "annual", + "tags": [ + "律师", + "lawyer", + "法律服务", + "legal-services", + "律师事务所", + "law-firm", + "全国律协", + "acla", + "司法", + "judicial", + "法律援助", + "legal-aid", + "律师统计", + "lawyer-statistics", + "中国法律", + "china-legal", + "执业律师", + "licensed-attorney", + "法律职业", + "legal-profession", + "律师行业", + "律师人数", + "律师分布" + ], + "data_content": { + "en": [ + "Lawyer Statistics - Annual count of licensed lawyers nationwide and by province/city", + "Law Firm Distribution - Number and size of law firms across provinces, cities, and counties", + "Legal Aid Data - Legal aid cases handled, recipients served, and geographic distribution", + "Professional Development - New admissions, annual continuing education completion rates", + "Specialization Areas - Distribution of lawyers across practice areas (criminal, civil, commercial, IP, etc.)", + "Industry Revenue - Total revenue of China's legal services industry and per-lawyer metrics", + "Foreign Law Firms - Number and distribution of foreign law firm representative offices in China", + "Disciplinary Actions - Lawyer disciplinary cases and outcomes by category", + "International Cooperation - Cross-border legal service statistics and bilateral agreements" + ], + "zh": [ + "律师统计 - 全国及各省市执业律师年度人数", + "律师事务所分布 - 全国各省市县律师事务所数量和规模", + "法律援助数据 - 法律援助案件办理数量、受援对象和地域分布", + "队伍建设 - 新增执业律师数量、年度继续教育完成情况", + "业务领域分布 - 律师在刑事、民事、商事、知识产权等领域的分布", + "行业收入 - 法律服务行业总收入和人均创收指标", + "外国律师事务所 - 外国律师事务所在华代表机构数量和分布", + "惩戒处分 - 按类型分类的律师惩戒案件和处理结果", + "国际合作 - 跨境法律服务统计和双边合作协议情况" + ] + }, + "has_api": false, + "file_path": "china/governance/china-acla.json" + }, + { + "id": "china-bankruptcy-court", + "name": { + "en": "National Enterprise Bankruptcy and Restructuring Case Information Network", + "zh": "全国企业破产重整案件信息网" + }, + "description": { + "en": "The National Enterprise Bankruptcy and Restructuring Case Information Network is the official judicial platform operated by the Supreme People's Court of China for disclosing enterprise bankruptcy and restructuring case information. The platform provides public access to bankruptcy case filings, restructuring plans, creditor meeting announcements, administrator appointment records, and case progress updates across all Chinese courts. It serves as the authoritative source for tracking corporate insolvency proceedings in China, supporting creditor protection, investment risk assessment, and legal research on China's evolving bankruptcy regime.", + "zh": "全国企业破产重整案件信息网是最高人民法院运营的企业破产重整案件信息公开官方司法平台,提供破产案件立案信息、重整计划、债权人会议公告、管理人任命记录及案件进展等公开数据。该平台是追踪中国企业破产清算及重组程序的权威数据源,为债权人保护、投资风险评估以及中国破产法律制度研究提供数据支持。" + }, + "website": "https://pccz.court.gov.cn", + "data_url": "https://pccz.court.gov.cn/pcajxxw/index/xxwsy", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "legal", + "finance", + "corporate-governance" + ], + "update_frequency": "daily", + "tags": [ + "bankruptcy", + "restructuring", + "enterprise-bankruptcy", + "liquidation", + "creditor", + "supreme-people's-court", + "bankruptcy-cases", + "corporate-restructuring", + "bankruptcy-administrator", + "judicial-data", + "corporate-credit", + "risk-assessment" + ], + "data_content": { + "en": [ + "Bankruptcy case filings: court acceptance records for enterprise bankruptcy cases nationwide", + "Restructuring plans: publicly disclosed restructuring plans and voting results", + "Creditor meeting announcements: schedules and agendas for creditor assemblies", + "Administrator appointments: designated bankruptcy administrator information and contact details", + "Case progress tracking: real-time updates on case stages from filing to closure", + "Creditor claims: deadlines and procedures for creditor claim declarations", + "Asset disposal: information on bankrupt enterprise asset auctions and dispositions", + "Court rulings: key judicial decisions in bankruptcy proceedings" + ], + "zh": [ + "破产案件立案:全国企业破产案件的法院受理记录", + "重整计划:公开披露的重整计划及表决结果", + "债权人会议公告:债权人会议日程安排及议程", + "管理人任命:指定破产管理人信息及联系方式", + "案件进展追踪:从立案到结案各阶段的实时进展更新", + "债权申报:债权人申报债权的截止期限和程序", + "资产处置:破产企业资产拍卖及处置信息", + "法院裁定:破产程序中的重要司法裁定" + ] + }, + "has_api": false, + "file_path": "china/governance/china-bankruptcy-court.json" + }, + { + "id": "china-cafiu", + "name": { + "en": "China Association for International Understanding", + "zh": "中国国际交流协会" + }, + "description": { + "en": "The China Association for International Understanding (CAFIU) is a national non-governmental organization established in 1981, registered with the Ministry of Civil Affairs and affiliated with the International Liaison Department of the CPC Central Committee. CAFIU conducts people-to-people diplomacy, policy dialogue, and multilateral exchanges with political parties, think tanks, NGOs and political figures from more than 160 countries. It publishes authoritative content on China's party-to-party diplomacy, global governance perspectives, Belt and Road cooperation narratives, Chinese modernization experience-sharing, and international cooperation on sustainable development. CAFIU's research outputs include dialogue proceedings with foreign think tanks, bilateral and multilateral forum reports (e.g., CPC in Dialogue with Marxist Political Parties Worldwide Forum, CPC-African Political Parties Dialogue), policy briefings on international affairs, and academic publications by its affiliated CAFIU Journal. The association is a key reference source for researchers studying Chinese public diplomacy, party diplomacy channels, and China's engagement with global civil society.", + "zh": "中国国际交流协会(CAFIU)是成立于1981年的全国性民间友好组织,在民政部登记注册,业务上与中国共产党中央委员会对外联络部(中联部)联系,开展民间外交、政策对话和多边交流,与160多个国家的政党、智库、非政府组织及政治人士保持联系。协会发布关于中国政党外交、全球治理观点、「一带一路」合作叙事、中国式现代化经验分享及国际可持续发展合作的权威内容。协会的研究成果包括与外国智库的对话纪要、双边和多边论坛报告(如中国共产党与世界马克思主义政党理论研讨会、中非政党对话会)、国际事务政策简报,以及其主办的《中国国际交流》等学术刊物。协会是研究中国公共外交、政党外交渠道以及中国与全球公民社会交往的重要参考来源。" + }, + "website": "https://www.cafiu.org.cn", + "data_url": "https://www.cafiu.org.cn", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "governance", + "international-relations", + "diplomacy" + ], + "update_frequency": "irregular", + "tags": [ + "cafiu", + "中国国际交流协会", + "民间外交", + "政党外交", + "party-diplomacy", + "public-diplomacy", + "international-exchange", + "中联部", + "think-tank-dialogue", + "一带一路", + "belt-and-road", + "global-governance", + "全球治理", + "international-affairs", + "policy-dialogue" + ], + "data_content": { + "en": [ + "Records of party-to-party diplomacy events and dialogues", + "Bilateral and multilateral forum reports (CPC-Marxist Parties, CPC-African Parties etc.)", + "Policy briefings on international affairs and global governance", + "CAFIU Journal academic publications", + "Belt and Road cooperation narratives and people-to-people exchange cases", + "Dialogue proceedings with foreign think tanks and NGOs", + "Research reports on Chinese modernization experience sharing" + ], + "zh": [ + "政党外交活动及对话纪要", + "双边和多边论坛报告(中马、中非政党对话等)", + "国际事务与全球治理政策简报", + "《中国国际交流》等学术刊物", + "一带一路合作叙事与民间交流案例", + "与外国智库和非政府组织的对话纪要", + "中国式现代化经验分享研究报告" + ] + }, + "has_api": false, + "file_path": "china/governance/china-cafiu.json" + }, + { + "id": "china-ccdi", + "name": { + "en": "Central Commission for Discipline Inspection of the Communist Party of China", + "zh": "中央纪律检查委员会" + }, + "description": { + "en": "The Central Commission for Discipline Inspection (CCDI) is the highest internal-control institution of the Chinese Communist Party, responsible for anti-corruption enforcement and party discipline oversight. Its website publishes official investigation results, disciplinary action statistics, anti-corruption campaign data, and transparency disclosures on disciplinary cases at all levels of government and party organizations.", + "zh": "中央纪律检查委员会(中央纪委)是中国共产党最高纪律检查机关,负责反腐败执纪和党纪监督。其官方网站发布案件查处结果、纪律处分统计、反腐败专项行动数据,以及各级党政机关纪律案件的透明度信息。" + }, + "website": "https://www.ccdi.gov.cn", + "data_url": "https://www.ccdi.gov.cn/xxgk/", + "api_url": null, + "country": "CN", + "domains": [ + "governance", + "anti-corruption", + "transparency" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "china", + "中央纪委", + "anti-corruption", + "反腐败", + "discipline-inspection", + "纪律检查", + "party-discipline", + "党纪", + "governance", + "transparency", + "信息公开", + "disciplinary-cases", + "纪律处分", + "rule-of-law", + "法治" + ], + "data_content": { + "en": [ + "Disciplinary Case Disclosures - Official announcements on investigated and disciplined party and government officials", + "Anti-Corruption Statistics - Annual and periodic statistics on corruption cases, recovered assets, and enforcement actions", + "Campaign Reports - Data from centralized anti-corruption campaigns including 'Tigers and Flies'", + "Policy Documents - Regulations, guidelines, and internal control documents for party discipline", + "Transparency Index - Public disclosure data on government and party compliance and enforcement" + ], + "zh": [ + "纪律案件公告 - 受查处党政干部的官方通报", + "反腐败统计 - 腐败案件、追缴资产和执纪数量的年度及阶段性统计", + "专项行动报告 - '打虎拍蝇'等集中反腐专项行动数据", + "政策文件 - 党纪法规、内部监控指南和相关制度文件", + "透明度数据 - 党政机关合规与执纪公开信息" + ] + }, + "authority_level": "government", + "has_api": false, + "file_path": "china/governance/china-ccdi.json" + }, + { + "id": "china-ccgp", + "name": { + "en": "China Government Procurement Network", + "zh": "中国政府采购网" + }, + "description": { + "en": "The China Government Procurement Network (CCGP) is the official national portal operated by the Ministry of Finance for government procurement transparency. It is the authoritative platform for disclosing public procurement announcements, bid results, contract awards, and supplier qualification information across all levels of Chinese government — central, provincial, and municipal. China's government procurement market exceeds 3 trillion RMB annually, making CCGP one of the world's most comprehensive public procurement databases. The platform covers goods procurement, engineering projects, and service contracts tendered by government agencies, public institutions, and state-funded organizations. CCGP publishes standardized procurement notices, evaluation results, and contract performance disclosures, providing critical transparency data for market analysis, anti-corruption research, supply chain intelligence, and comparative public finance studies.", + "zh": "中国政府采购网(CCGP)是由财政部运营的全国政府采购信息公开官方门户网站,是覆盖中央、省、市各级政府的政府采购公告、中标结果、合同授予及供应商资质信息的权威公开平台。中国政府采购市场年规模超过3万亿元人民币,CCGP是全球最全面的公共采购数据库之一。平台涵盖政府机关、事业单位和国家出资机构招标的货物采购、工程项目和服务合同。CCGP发布标准化采购公告、评审结果和合同履行公示,为市场分析、反腐研究、供应链情报及公共财政比较研究提供重要的透明度数据。" + }, + "website": "https://www.ccgp.gov.cn/", + "data_url": "https://www.ccgp.gov.cn/cggg/index.htm", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "economics", + "governance", + "finance", + "statistics" + ], + "update_frequency": "daily", + "tags": [ + "中国政府采购网", + "ccgp", + "china-government-procurement", + "政府采购", + "government-procurement", + "公开招标", + "public-bidding", + "中标公告", + "bid-award-announcement", + "采购公告", + "procurement-notice", + "财政部", + "ministry-of-finance", + "合同公告", + "contract-notice", + "政府支出", + "government-spending", + "供应商", + "supplier", + "公共采购", + "public-procurement", + "招投标", + "bidding-and-tendering", + "政府透明度", + "government-transparency", + "财政支出", + "fiscal-expenditure", + "央企采购", + "soe-procurement" + ], + "data_content": { + "en": [ + "Procurement announcements: tender notices for goods, engineering works, and services from all levels of Chinese government", + "Bid result disclosures: winning supplier names, contract values, and evaluation scores for completed tenders", + "Contract award notices: official contract execution announcements including parties, amounts, and performance terms", + "Supplier qualification lists: approved vendor registries and disqualification records for government procurement participants", + "Framework agreement data: standing agreements and catalog pricing for commonly procured items", + "Regional procurement data: procurement volumes and contract awards by province, city, and government agency", + "Sector spending analysis: procurement by category (IT equipment, construction, consulting, vehicles, office supplies)", + "Single-source procurement: non-competitive procurement disclosures required for transparency under Chinese law", + "Annual government procurement statistics: national summary of total procurement value, category breakdown, and savings", + "Inquiry and complaint records: public documentation of procurement disputes and regulatory responses" + ], + "zh": [ + "采购公告:各级政府货物、工程和服务的招标公告", + "中标结果公示:已完成招标的中标供应商名称、合同金额和评审得分", + "合同授予公告:包括合同方、金额和履约条款的正式合同签订公告", + "供应商资质名单:政府采购参与者的合格供应商注册库及取消资格记录", + "框架协议数据:常用采购品目的框架协议和目录价格", + "分地区采购数据:按省、市和政府机构统计的采购规模和合同授予情况", + "分行业支出分析:按品类(IT设备、建设工程、咨询、车辆、办公用品)统计的采购情况", + "单一来源采购:依据中国法律要求公开披露的非竞争性采购信息", + "年度政府采购统计:全国采购总额、品类分布和节支情况汇总", + "质疑与投诉记录:采购争议和监管回应的公开记录" + ] + }, + "has_api": false, + "file_path": "china/governance/china-ccgp.json" + }, + { + "id": "china-cdpf", + "name": { + "en": "China Disabled Persons' Federation", + "zh": "中国残疾人联合会" + }, + "description": { + "en": "The China Disabled Persons' Federation (CDPF) is the national mass organization representing the rights and interests of persons with disabilities in China. Founded in 1988 and chaired by a standing member of the National People's Congress, CDPF operates under the guidance of the State Council and coordinates disability policy, rehabilitation, employment, education, and welfare programs across the country. CDPF publishes authoritative statistics on China's disabled population, including disability prevalence by type and severity, employment rates, rehabilitation coverage, welfare benefits, and special education enrollment. Its China Yearbook of People with Disabilities and periodic statistical bulletins serve as the primary national data source on disability affairs and social inclusion indicators.", + "zh": "中国残疾人联合会(中国残联)是代表全国残疾人权益的全国性群众组织,成立于1988年,在国务院领导下开展工作,统筹协调残疾人政策、康复、就业、教育及福利保障工作。中国残联发布权威的残疾人统计数据,涵盖各类别和等级残疾人数量、就业率、康复服务覆盖率、社会保障待遇及特殊教育入学情况。《中国残疾人事业统计年鉴》及定期统计公报是全国残疾人事务和社会融合指标的主要国家级数据来源。" + }, + "website": "https://www.cdpf.org.cn", + "data_url": "https://www.cdpf.org.cn/zwgk/index.htm", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "social", + "demographics", + "governance" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "中国残疾人联合会", + "china-disabled-persons'-federation", + "cdpf", + "残疾人统计", + "disability-statistics", + "残疾人口", + "disabled-population", + "残疾类型", + "disability-types", + "康复服务", + "rehabilitation-services", + "残疾人就业", + "disability-employment", + "特殊教育", + "special-education", + "社会保障", + "social-security", + "无障碍", + "accessibility", + "残疾年鉴", + "disability-yearbook", + "社会融合", + "social-inclusion", + "残疾补贴", + "disability-allowance", + "china" + ], + "data_content": { + "en": [ + "Disability prevalence: number and share of persons with disabilities by type (visual, hearing, speech, physical, intellectual, psychiatric) and severity grade", + "Employment statistics: employment rate, job placement programs, supported employment, and sheltered workshop data", + "Rehabilitation coverage: persons receiving rehabilitation services by disability type and service category", + "Special education: enrollment in special schools and inclusive education programs for children with disabilities", + "Social welfare and benefits: disability allowance recipients, subsistence allowance (dibao), nursing care subsidies", + "Assistive devices: distribution of prosthetics, orthotics, hearing aids, wheelchairs, and other assistive technology", + "Poverty alleviation: disabled persons in poverty, targeted assistance programs, and poverty exit rates", + "Cultural and sports activities: participation of persons with disabilities in cultural events and para-sports", + "Legal rights protection: disability rights complaints, legal aid cases, and policy implementation data", + "China Yearbook of People with Disabilities: annual compilation of all disability affairs statistics" + ], + "zh": [ + "残疾人口规模:各类别(视力、听力、语言、肢体、智力、精神)和各等级残疾人数量及比例", + "就业统计:残疾人就业率、就业援助项目、支持性就业及辅助性就业机构数据", + "康复服务覆盖:按残疾类别和服务类型统计的获得康复服务人数", + "特殊教育:残疾儿童特殊学校入学及随班就读情况", + "社会福利保障:残疾人两项补贴(困难残疾人生活补贴及重度残疾人护理补贴)发放情况", + "辅助器具:假肢、矫形器、助听器、轮椅及其他辅助技术发放数量", + "脱贫攻坚:残疾人贫困规模、精准帮扶项目及脱贫数据", + "文化体育活动:残疾人参与文化活动及残疾人体育运动情况", + "权益保障:残疾人权益投诉、法律援助及政策执行数据", + "中国残疾人事业统计年鉴:残疾人事业各项统计数据年度汇编" + ] + }, + "has_api": false, + "file_path": "china/governance/china-cdpf.json" + }, + { + "id": "china-cfpa", + "name": { + "en": "China Fire Protection Association", + "zh": "中国消防协会" + }, + "description": { + "en": "The China Fire Protection Association (CFPA) is the national academic and industry organization for fire safety and emergency rescue, operating under the guidance of the Ministry of Emergency Management. CFPA publishes annual fire statistics reports covering the number of fire incidents, casualties, economic losses, fire causes, and building type breakdowns across China. It also produces technical standards, scientific research outputs, and fire prevention guidance. CFPA data is the authoritative source for national fire safety situation analysis and urban fire risk assessment.", + "zh": "中国消防协会(消防协会)是在应急管理部指导下开展消防科技与行业自律的全国性社团组织。协会发布年度火灾统计报告,涵盖全国火灾起数、伤亡人数、直接经济损失、起火原因及建筑类型分布等数据,同时出版技术标准、科研成果及消防宣传材料。消防协会数据是分析全国火灾安全形势和城市火灾风险的权威来源。" + }, + "website": "http://www.cfpa.cn", + "data_url": "http://www.cfpa.cn", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "update_frequency": "annual", + "domains": [ + "public-safety", + "emergency-management", + "statistics" + ], + "tags": [ + "china", + "cfpa", + "消防协会", + "fire-protection", + "消防", + "fire-safety", + "消防安全", + "emergency-management", + "应急管理", + "fire-statistics", + "火灾统计", + "disaster", + "safety", + "annual-report" + ], + "data_content": { + "en": [ + "Annual Fire Statistics - National fire incident count, casualties, economic losses, and fire cause analysis", + "Regional Fire Data - Provincial and city-level fire occurrence and loss breakdowns", + "Building Type Fire Analysis - Fire statistics segmented by residential, commercial, industrial, and public facility types", + "Fire Prevention Standards - Technical standards and guidelines for fire risk assessment and prevention", + "Research Publications - Academic papers and reports on fire science, suppression technology, and safety engineering" + ], + "zh": [ + "年度火灾统计 - 全国火灾起数、伤亡人数、直接经济损失及起火原因分析", + "地区火灾数据 - 各省市火灾发生情况及损失分布", + "建筑类型火灾分析 - 按住宅、商业、工业及公共设施分类的火灾统计", + "消防技术标准 - 火灾风险评估与预防的技术规范和指引", + "科研出版物 - 消防科学、灭火技术及安全工程学术论文与报告" + ] + }, + "has_api": false, + "file_path": "china/governance/china-cfpa.json" + }, + { + "id": "china-cidca", + "name": { + "en": "China International Development Cooperation Agency", + "zh": "国家国际发展合作署" + }, + "description": { + "en": "The China International Development Cooperation Agency (CIDCA) is a vice-ministerial government body established in 2018 to oversee China's foreign aid and international development cooperation. It formulates strategic guidelines and plans for foreign assistance, coordinates and supervises aid implementation, and reports on cooperation outcomes. CIDCA publishes data on China's foreign aid programs, country-specific assistance allocations, completed aid projects, technical cooperation, humanitarian assistance, and South-South cooperation initiatives. Its reports and white papers are primary official sources for understanding the scale, scope, and priorities of China's global development engagement.", + "zh": "国家国际发展合作署是2018年设立的副部级政府机构,负责统筹协调中国对外援助与国际发展合作工作。该机构负责制定对外援助战略方针和规划,协调监督援助实施,并报告合作成果。国际发展合作署发布中国对外援助项目、国别援助分配、已竣工援助项目、技术合作、人道主义援助及南南合作举措等方面的数据,其报告和白皮书是了解中国全球发展参与规模、范围和重点的主要官方数据来源。" + }, + "website": "http://www.cidca.gov.cn", + "data_url": "http://www.cidca.gov.cn/ywgz.htm", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "global", + "domains": [ + "development-aid", + "international-relations", + "governance", + "economics" + ], + "update_frequency": "annual", + "tags": [ + "china", + "foreign-aid", + "development-cooperation", + "south-south", + "international-relations", + "belt-and-road", + "humanitarian-aid", + "technical-assistance", + "对外援助", + "国际发展合作", + "南南合作", + "人道主义援助", + "技术援助", + "国际合作", + "发展合作署" + ], + "data_content": { + "en": [ + "Foreign Aid Programs - Country-by-country breakdown of aid projects, grant allocations, and concessional loans", + "White Papers on Foreign Aid - Comprehensive official reports on China's foreign aid philosophy, scope, and outcomes", + "Technical Cooperation - Expert dispatching, training programs, and technology transfer project data", + "Humanitarian Assistance - Emergency relief operations, disaster response, and food aid statistics", + "South-South Cooperation - Data on developing country partnerships, mutual learning programs, and joint projects", + "BRI Development Projects - Infrastructure and development cooperation projects under the Belt and Road Initiative" + ], + "zh": [ + "对外援助项目 - 按国家分类的援助项目、无偿援助及优惠贷款分配情况", + "对外援助白皮书 - 关于中国对外援助理念、规模和成果的综合性官方报告", + "技术合作 - 专家派遣、培训项目和技术转让项目数据", + "人道主义援助 - 紧急救援行动、灾害应急响应和粮食援助统计", + "南南合作 - 发展中国家伙伴关系、互学互鉴项目和联合项目数据", + "\"一带一路\"发展项目 - \"一带一路\"倡议框架下的基础设施和发展合作项目" + ] + }, + "has_api": false, + "file_path": "china/governance/china-cidca.json" + }, + { + "id": "china-cnao", + "name": { + "en": "National Audit Office of China", + "zh": "中华人民共和国审计署" + }, + "description": { + "en": "The National Audit Office of China (CNAO) is the supreme audit institution of the People's Republic of China, responsible for auditing the fiscal revenues and expenditures of central government agencies, state-owned enterprises, and financial institutions. It publishes official audit reports, audit findings on government budget execution, special audit investigations, and national audit work reports submitted to the Standing Committee of the National People's Congress. CNAO's disclosures provide unique transparency into public finance, state asset management, and government accountability in China.", + "zh": "中华人民共和国审计署是中国最高审计机关,负责对中央政府机关、国有企业和金融机构的财政收支进行审计监督。审计署发布官方审计报告、政府预算执行审计结果、专项审计调查报告,以及向全国人民代表大会常务委员会提交的国家审计工作报告。审计署的信息披露为了解中国公共财政、国有资产管理和政府问责提供了独特的透明度视角。" + }, + "website": "https://www.audit.gov.cn", + "data_url": "https://www.audit.gov.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "governance", + "finance", + "economics" + ], + "update_frequency": "annual", + "tags": [ + "审计署", + "national-audit-office", + "审计报告", + "audit-report", + "政府预算", + "government-budget", + "财政审计", + "fiscal-audit", + "国有企业审计", + "soe-audit", + "公共财政", + "public-finance", + "政府问责", + "government-accountability", + "审计结果", + "audit-findings", + "cnao", + "中央预算执行", + "central-budget-execution", + "国有资产", + "state-owned-assets" + ], + "data_content": { + "en": [ + "Annual audit work reports to the National People's Congress: summary of national audit findings and government budget execution", + "Central budget execution audit reports: examination of central government agencies' revenue and expenditure compliance", + "State-owned enterprise audit reports: financial audit results for major central SOEs", + "Special audit investigation reports: targeted audits on specific sectors (social security funds, education funds, infrastructure projects)", + "Government debt audit results: audit findings on local government debt, hidden debt, and financing platform obligations", + "Financial institution audit reports: audits of state-owned banks and policy financial institutions", + "National natural resource asset audit reports: accountability audits for local leaders on environmental assets", + "Audit rectification tracking: implementation status of previous audit recommendations and corrections" + ], + "zh": [ + "向全国人民代表大会提交的年度审计工作报告:全国审计结果汇总及政府预算执行情况", + "中央预算执行审计报告:对中央政府机关收支合规性的检查结果", + "国有企业审计报告:主要中央国有企业财务审计结果", + "专项审计调查报告:对特定领域的专项审计(社会保险基金、教育经费、基础设施项目)", + "政府债务审计结果:地方政府债务、隐性债务及融资平台义务审计发现", + "金融机构审计报告:国有银行和政策性金融机构审计情况", + "自然资源资产离任审计报告:地方领导干部自然资源资产管理情况问责审计", + "审计整改追踪:历次审计建议落实情况及问题整改进展" + ] + }, + "has_api": false, + "file_path": "china/governance/china-cnao.json" + }, + { + "id": "china-cnas", + "name": { + "en": "China National Accreditation Service for Conformity Assessment", + "zh": "中国合格评定国家认可委员会" + }, + "description": { + "en": "The China National Accreditation Service for Conformity Assessment (CNAS) is the sole national accreditation body in China authorized by the government to operate under the Regulations on Certification and Accreditation. CNAS accredits testing laboratories, calibration laboratories, inspection bodies, certification bodies, and proficiency testing providers according to international standards (ISO/IEC 17000 series). As of 2024, CNAS has accredited over 17,000 laboratories and hundreds of certification and inspection bodies, covering fields including food safety, environmental monitoring, medical devices, electronics, and construction materials. CNAS publishes official accreditation directories, accreditation criteria, statistical reports on accredited entities by type and sector, and annual accreditation development reports. CNAS accreditation is internationally recognized through mutual recognition arrangements (MRA) with ILAC and IAF, making it the authoritative source for China's conformity assessment ecosystem data.", + "zh": "中国合格评定国家认可委员会(CNAS)是经国务院授权、依据《认证认可条例》设立的中国唯一国家级认可机构。CNAS依据ISO/IEC 17000系列国际标准,对检测实验室、校准实验室、检验机构、认证机构及能力验证提供者开展认可活动。截至2024年,CNAS已认可超过17000家实验室及数百家认证和检验机构,覆盖食品安全、环境监测、医疗器械、电子电器、建筑材料等领域。CNAS发布认可机构名录、认可准则、分行业认可机构统计报告及年度认可工作报告。CNAS认可结果通过与国际实验室认可合作组织(ILAC)和国际认可论坛(IAF)签订的多边互认协议(MRA)获得国际认可,是中国合格评定生态系统数据的权威来源。" + }, + "website": "https://www.cnas.org.cn/", + "data_url": "https://www.cnas.org.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "industry", + "technology", + "standards", + "quality" + ], + "update_frequency": "monthly", + "tags": [ + "中国合格评定国家认可委员会", + "cnas", + "china-national-accreditation-service", + "实验室认可", + "laboratory-accreditation", + "认证机构", + "certification-body", + "检验机构", + "inspection-body", + "合格评定", + "conformity-assessment", + "iso/iec-17025", + "校准实验室", + "calibration-laboratory", + "食品安全检测", + "food-safety-testing", + "环境检测", + "environmental-testing", + "医疗器械检验", + "medical-device-inspection", + "ilac", + "iaf", + "互认协议", + "mutual-recognition", + "质量认证", + "quality-certification", + "能力验证", + "proficiency-testing", + "计量认可", + "metrology-accreditation" + ], + "data_content": { + "en": [ + "Accredited laboratory directory: searchable database of over 17,000 CNAS-accredited testing and calibration laboratories in China, with scope of accreditation by test type and field", + "Certification body directory: list of CNAS-accredited certification bodies authorized to issue product, system, and personnel certifications", + "Inspection body directory: accredited inspection organizations with scopes covering construction, food, environment, transportation, and industrial sectors", + "Proficiency testing providers: organizations authorized to conduct proficiency testing programs for laboratory competence assessment", + "Accreditation statistics: annual and periodic statistics on accredited entity count, growth trends, and distribution by sector and province", + "Annual accreditation development report: comprehensive report on CNAS activities, accreditation numbers, international cooperation, and policy developments", + "Accreditation criteria and documents: technical criteria, assessment procedures, and guidance documents for laboratories and certification bodies", + "International MRA scope: details of mutual recognition arrangement coverage with ILAC and IAF, specifying which accreditation categories are internationally recognized", + "Suspension and withdrawal records: publicly disclosed cases of suspended or withdrawn accreditation for non-compliant entities" + ], + "zh": [ + "认可实验室名录:超过17000家CNAS认可检测和校准实验室的可检索数据库,含按检测类型和领域分类的认可范围", + "认证机构名录:CNAS认可的产品、体系、人员认证机构列表", + "检验机构名录:覆盖建筑、食品、环境、交通、工业等领域的认可检验机构", + "能力验证提供者:获授权开展实验室能力验证计划的机构", + "认可统计数据:认可机构数量、增长趋势及按行业、省份分布的年度和定期统计", + "年度认可工作报告:涵盖CNAS活动、认可数量、国际合作及政策进展的综合报告", + "认可准则和文件:实验室和认证机构的技术准则、评审程序和指导文件", + "国际互认范围:与ILAC和IAF互认协议覆盖情况及各认可类别的国际认可详情", + "暂停和撤销记录:不符合要求机构被暂停或撤销认可的公示记录" + ] + }, + "has_api": false, + "file_path": "china/governance/china-cnas.json" + }, + { + "id": "china-cnca", + "name": { + "en": "China National Accreditation Service for Conformity Assessment", + "zh": "中国国家认证认可监督管理委员会" + }, + "description": { + "en": "The China National Accreditation Service for Conformity Assessment (CNCA) is a government body under the State Administration for Market Regulation (SAMR) responsible for managing China's certification, accreditation, inspection, and testing (CAIT) system. CNCA oversees compulsory product certification (CCC), voluntary certification schemes, laboratory accreditation, and inspection body accreditation. It publishes data on certified products, accredited laboratories, inspection agencies, and certification body registrations across China, providing authoritative information for trade facilitation, product safety, and quality oversight.", + "zh": "中国国家认证认可监督管理委员会(国家认监委,CNCA)是国家市场监督管理总局(市场监管总局)下设的政府机构,负责管理中国认证认可检验检测(CAIT)体系。国家认监委负责强制性产品认证(3C认证)、自愿性认证、实验室认可和检验机构认可等工作,发布全国认证产品、认可实验室、检验机构及认证机构注册等数据,为贸易便利化、产品安全和质量监督提供权威信息。" + }, + "website": "https://www.cnca.gov.cn", + "data_url": "https://www.cnca.gov.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "quality", + "standards", + "trade", + "industry" + ], + "geographic_scope": "national", + "update_frequency": "irregular", + "tags": [ + "认证认可", + "certification", + "accreditation", + "3C认证", + "ccc-certification", + "实验室认可", + "laboratory-accreditation", + "检验机构", + "inspection-body", + "产品认证", + "product-certification", + "质量监督", + "quality-supervision", + "合格评定", + "conformity-assessment", + "cnca", + "国家认监委", + "强制认证", + "compulsory-certification", + "贸易便利化", + "trade-facilitation" + ], + "data_content": { + "en": [ + "CCC (China Compulsory Certification) database: certified products, certificates, and manufacturers", + "Accredited laboratory directory: CNAS-accredited testing and calibration laboratories by sector", + "Inspection body registry: accredited inspection and certification bodies operating in China", + "Certification body list: approved certification organizations and their scope of accreditation", + "Annual certification and accreditation statistical report: industry-wide CAIT data", + "Import/export commodity inspection data: inspection outcomes for trade-related goods", + "Organic product certification database: certified organic producers and products", + "Food safety management system certifications: HACCP, ISO 22000 certified enterprises" + ], + "zh": [ + "3C认证数据库:认证产品、证书及制造商信息", + "认可实验室目录:按行业分类的CNAS认可检测和校准实验室", + "检验机构注册:在华运营的认可检验和认证机构", + "认证机构名单:经批准的认证组织及其认证范围", + "认证认可年度统计报告:全行业CAIT数据", + "进出口商品检验数据:贸易相关商品的检验结果", + "有机产品认证数据库:认证有机生产者和产品", + "食品安全管理体系认证:HACCP、ISO 22000认证企业" + ] + }, + "has_api": false, + "file_path": "china/governance/china-cnca.json" + }, + { + "id": "china-court-auction", + "name": { + "en": "People's Court Litigation Assets Network", + "zh": "人民法院诉讼资产网" + }, + "description": { + "en": "The People's Court Litigation Assets Network is the official judicial auction platform operated by the Supreme People's Court of China. It publishes court-ordered asset dispositions including real estate, vehicles, land use rights, equity stakes, and other seized properties. The platform aggregates judicial auction listings from courts at all levels nationwide, providing standardized information on auction schedules, reserve prices, property details, and bidding results. As the authoritative government platform for judicial asset disposal, it serves as the primary reference for tracking court-ordered property sales across China's judicial system.", + "zh": "人民法院诉讼资产网是最高人民法院运营的官方司法拍卖平台,发布法院裁定的资产处置信息,包括房产、车辆、土地使用权、股权及其他查封财产。平台汇集全国各级法院的司法拍卖信息,提供拍卖时间、起拍价、标的物详情和竞价结果等标准化信息。作为司法资产处置的权威政府平台,是追踪中国司法系统法院强制拍卖的首要参考来源。" + }, + "website": "https://www.rmfysszc.gov.cn", + "data_url": "https://www.rmfysszc.gov.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "judicial-auction", + "real-estate", + "asset-disposal" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "judicial-auction", + "real-estate", + "court", + "asset-disposal", + "property" + ], + "data_content": { + "en": [ + "Court-ordered judicial auction listings for real estate, vehicles, land use rights, and equity", + "Auction schedules, reserve prices, and bidding results from courts nationwide", + "Seized property details and disposal records from all court levels" + ], + "zh": [ + "法院裁定的房产、车辆、土地使用权、股权等司法拍卖信息", + "全国各级法院拍卖时间、起拍价和竞价结果", + "各级法院查封财产详情和处置记录" + ] + }, + "has_api": false, + "file_path": "china/governance/china-court-auction.json" + }, + { + "id": "china-court-execution", + "name": { + "en": "China Court Execution Information Disclosure Network", + "zh": "全国法院被执行人信息查询平台" + }, + "description": { + "en": "The China Court Execution Information Disclosure Network, operated by the Supreme People's Court, is the official platform for publicizing court execution case information. It provides searchable databases of judgment debtors (被执行人), dishonest persons subject to enforcement (失信被执行人/老赖), consumption restriction orders (限制消费令), and terminated execution cases. The platform also publishes judicial auction information and enforcement case progress. It is the authoritative source for credit risk assessment related to court judgments and the primary tool for China's social credit enforcement system.", + "zh": "全国法院被执行人信息查询平台由最高人民法院运营,是公开法院执行案件信息的官方平台。提供被执行人、失信被执行人(老赖)、限制消费令、终本案件等可查询数据库,同时发布司法拍卖信息和执行案件进展。是涉诉信用风险评估的权威来源,也是中国社会信用执行体系的核心工具。" + }, + "website": "https://zxgk.court.gov.cn", + "data_url": "https://zxgk.court.gov.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "judicial-execution", + "credit-risk", + "social-credit" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "court-execution", + "dishonest-debtor", + "credit-risk", + "judicial", + "social-credit" + ], + "data_content": { + "en": [ + "Judgment debtor (被执行人) database searchable by name and ID", + "Dishonest persons subject to enforcement (失信被执行人/老赖) blacklist", + "Consumption restriction orders and terminated execution case records", + "Judicial auction listings and enforcement case progress tracking" + ], + "zh": [ + "按姓名和证件号可查询的被执行人数据库", + "失信被执行人(老赖)黑名单", + "限制消费令和终本案件记录", + "司法拍卖信息和执行案件进展追踪" + ] + }, + "has_api": false, + "file_path": "china/governance/china-court-execution.json" + }, + { + "id": "china-cppcc", + "name": { + "en": "Chinese People's Political Consultative Conference", + "zh": "中国人民政治协商会议" + }, + "description": { + "en": "The Chinese People's Political Consultative Conference (CPPCC) is a key institution of China's political system functioning as the country's main political advisory body. Established in 1949, the CPPCC brings together representatives from political parties, people's organizations, ethnic minorities, and various social sectors to provide political consultation and democratic oversight. The CPPCC National Committee meets annually alongside the National People's Congress in the 'Two Sessions'. It publishes proposals, motion documents, committee reports, and consultative deliberation outcomes across economic, social, cultural, and environmental policy areas. The CPPCC website provides access to official documents, proposals submitted by members, research reports, and proceedings from plenary sessions and standing committee meetings.", + "zh": "中国人民政治协商会议(全国政协)是中国政治体系的重要机构,是国家最高政治协商机构。1949年成立,全国政协汇聚各民主党派、人民团体、少数民族和各社会界别代表,履行政治协商、民主监督、参政议政职能。全国政协常委会每年与全国人大共同召开「两会」。全国政协网站提供官方文件、委员提案、研究报告、全体会议及常委会会议纪要,涵盖经济、社会、文化和环境政策等各领域。" + }, + "website": "http://www.cppcc.gov.cn", + "data_url": "http://www.cppcc.gov.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "governance", + "political-science", + "social", + "economics" + ], + "update_frequency": "irregular", + "tags": [ + "全国政协", + "cppcc", + "chinese-people's-political-consultative-conference", + "政治协商", + "political-consultation", + "提案", + "proposals", + "民主监督", + "democratic-oversight", + "参政议政", + "两会", + "two-sessions", + "政协委员", + "committee-members", + "政协常委会", + "standing-committee", + "政协全体会议", + "plenary-session", + "政协报告", + "cppcc-reports" + ], + "data_content": { + "en": [ + "CPPCC member proposals: formal policy proposals submitted by committee members across economic, social, cultural, and environmental areas", + "Committee reports: annual work reports of the CPPCC National Committee and standing committee", + "Plenary session records: proceedings and resolutions from the annual National Committee sessions", + "Standing committee meeting documents: records of bimonthly standing committee meetings and deliberations", + "Special committee research: investigation and research reports from CPPCC specialized committees on key policy topics", + "Democratic oversight documents: feedback and recommendations on implementation of major national policies", + "Consultative deliberation outcomes: results of consultative conferences on specific economic and social policy issues" + ], + "zh": [ + "全国政协委员提案:委员就经济、社会、文化、环境等领域提交的正式政策建议", + "委员会报告:全国政协委员会及常委会年度工作报告", + "全体会议记录:全国委员会年度会议的议程及决议", + "常委会会议文件:两月一次常委会会议记录及审议结论", + "专门委员会研究:政协各专门委员会就重大政策课题开展的调研报告", + "民主监督文件:对重大国家政策贯彻落实情况的意见与建议", + "协商座谈成果:就具体经济社会政策议题召开协商座谈会的成果文件" + ] + }, + "has_api": false, + "file_path": "china/governance/china-cppcc.json" + }, + { + "id": "china-cqc", + "name": { + "en": "China Quality Certification Centre", + "zh": "中国质量认证中心" + }, + "description": { + "en": "The China Quality Certification Centre (CQC) is an authoritative third-party certification body established under the State Administration for Market Regulation (SAMR) and the Standardization Administration of China (SAC). CQC operates as the primary certification organization implementing mandatory China Compulsory Certification (CCC) for products sold in the Chinese market, covering electrical safety, electromagnetic compatibility, and related requirements. CQC also administers voluntary quality certifications including the CQC Mark for safety, energy efficiency, environmental protection, and product quality. The center maintains a comprehensive public database of certified products, publishes annual certification statistics, and issues technical standards guidance applicable to domestic manufacturers and international exporters targeting China's market.", + "zh": "中国质量认证中心(CQC)是在国家市场监督管理总局和国家标准化管理委员会指导下设立的权威第三方认证机构。CQC是实施中国强制性产品认证(CCC认证)的主要认证机构,面向在中国市场销售的产品,涵盖电气安全、电磁兼容等强制要求。中国质量认证中心同时开展自愿性CQC标志认证,涉及安全、能效、环保及产品质量等领域。该中心维护完整的公开认证产品数据库,发布年度认证统计数据,并向国内生产企业及面向中国市场的国际出口商提供技术标准指导。" + }, + "website": "https://www.cqc.com.cn/", + "data_url": "https://www.cqc.com.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "governance", + "statistics", + "trade", + "technology" + ], + "update_frequency": "monthly", + "tags": [ + "中国质量认证中心", + "cqc", + "china-compulsory-certification", + "CCC认证", + "3C认证", + "质量认证", + "quality-certification", + "产品认证", + "product-certification", + "能效认证", + "energy-efficiency-certification", + "CQC标志", + "cqc-mark", + "安全认证", + "safety-certification", + "环保认证", + "environmental-certification", + "认证统计", + "certification-statistics", + "国家市场监督管理总局", + "samr", + "标准化", + "standardization", + "进口产品认证", + "import-product-certification" + ], + "data_content": { + "en": [ + "CCC certificate database: publicly searchable database of mandatory China Compulsory Certification (3C) certificates, including product scope, certificate holder, validity period, and certification status", + "Certified products directory: comprehensive catalog of all products bearing the CQC Mark or CCC mark, searchable by product category, manufacturer, and certification type", + "Annual certification statistics: number of certificates issued, renewed, suspended, and revoked by product category and certification scheme", + "Energy efficiency certificate data: list of certified energy-efficient products with corresponding energy efficiency grades and performance metrics", + "Environmental certification records: green product certifications for electronics, appliances, and building materials meeting environmental standards", + "Factory inspection reports: summary results of mandatory post-market surveillance factory inspections for CCC-certified manufacturers", + "Technical standard updates: notifications of changes to CCC technical requirements and testing standards affecting product certification", + "Recall and revocation notices: official notices of certificate suspensions, revocations, and product safety recalls linked to certification non-compliance", + "Certification fee schedules: official pricing for CCC and voluntary certification services", + "International mutual recognition data: information on bilateral/multilateral certification recognition agreements between China and other countries" + ], + "zh": [ + "CCC证书数据库:中国强制性产品认证(3C认证)证书公开查询库,包括产品范围、证书持有人、有效期和认证状态", + "认证产品目录:所有持有CQC标志或CCC标志产品的完整目录,可按产品类别、生产企业和认证类型检索", + "年度认证统计:按产品类别和认证方案分类的证书颁发、续期、暂停和撤销数量", + "能效证书数据:认证节能产品清单及相应能效等级和性能指标", + "环保认证记录:符合环保标准的电子产品、家电和建材绿色产品认证", + "工厂检查报告:对CCC认证生产企业实施强制性市场后监督工厂检查的汇总结果", + "技术标准更新:影响产品认证的CCC技术要求和检测标准变更通知", + "召回和撤销公告:因认证不合规而暂停、撤销证书及产品安全召回的官方公告", + "认证费用表:CCC和自愿性认证服务官方收费标准", + "国际互认数据:中国与其他国家双边/多边认证互认协议信息" + ] + }, + "has_api": false, + "file_path": "china/governance/china-cqc.json" + }, + { + "id": "china-ggzy", + "name": { + "en": "China National Public Resources Trading Platform", + "zh": "全国公共资源交易平台" + }, + "description": { + "en": "The China National Public Resources Trading Platform (GGZY, 全国公共资源交易平台) is the authoritative national government portal for public resources trading, administered by the National Development and Reform Commission (NDRC) in conjunction with the State Administration for Market Regulation and other central agencies. The platform aggregates and discloses transaction data from public resource auctions and procurements across China, including engineering construction project bidding, government procurement, state-owned property rights and assets transfers, mineral rights auctions, and other public resource trading activities. As the designated national unified trading service platform mandated by the State Council, GGZY provides comprehensive transparency data on public resource market transactions, bidding results, contract awards, and participant information, making it the primary reference for public procurement market analysis, anti-corruption monitoring, and policy evaluation in China.", + "zh": "全国公共资源交易平台(GGZY)是国家发展和改革委员会联合市场监管总局等中央机构主管的权威国家政府门户,专门用于公共资源交易公示。平台汇聚并公开全国公共资源拍卖和采购的交易数据,涵盖工程建设项目招标、政府采购、国有产权及资产转让、矿业权拍卖及其他公共资源交易活动。作为国务院指定的国家统一交易服务平台,GGZY提供公共资源市场交易、招标结果、合同授予和参与方信息的全面公示数据,是中国公共采购市场分析、廉政监察和政策评估的主要数据来源。" + }, + "website": "https://www.ggzy.gov.cn/", + "data_url": "https://www.ggzy.gov.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "governance", + "economics", + "finance" + ], + "update_frequency": "daily", + "tags": [ + "全国公共资源交易平台", + "ggzy", + "public-resources-trading", + "公共资源交易", + "政府采购", + "government-procurement", + "工程招标", + "engineering-bidding", + "招投标", + "bid-tendering", + "国有资产", + "state-owned-assets", + "产权交易", + "property-rights-trading", + "矿业权", + "mineral-rights", + "国家发展改革委", + "ndrc", + "透明度", + "transparency", + "反腐", + "anti-corruption", + "合同授予", + "contract-award", + "采购公告", + "procurement-announcement", + "中标结果", + "bid-results" + ], + "data_content": { + "en": [ + "Engineering construction project bidding: bid notices, bid results, and contract award announcements for infrastructure and construction projects across all provinces", + "Government procurement: procurement announcements, evaluation results, and contract awards for goods, services, and works purchased by government entities", + "State-owned property rights transfers: listings and transaction results for state-owned enterprises and assets transferred through public trading processes", + "Mineral rights auctions: auction notices and results for exploration and mining rights across coal, metals, oil and gas, and other minerals", + "Land use rights trading: public land auction results and transaction data (linked to land market)", + "Market participant information: bidder registration data, qualification records, and performance history for companies participating in public resource transactions", + "Transaction volume statistics: aggregate data on total public resource trading volume, deal counts, and market activity by region and sector", + "Supervision and compliance data: records of bidding irregularities, debarment decisions, and compliance enforcement actions" + ], + "zh": [ + "工程建设项目招标:全国各省基础设施和建设项目的招标公告、招标结果及合同授予公示", + "政府采购:政府实体采购货物、服务和工程的采购公告、评标结果和合同授予公示", + "国有产权转让:通过公开交易流程转让的国有企业和国有资产挂牌信息及成交结果", + "矿业权拍卖:煤炭、金属、油气及其他矿产探矿权和采矿权的拍卖公告及成交结果", + "土地使用权交易:公开土地拍卖结果和交易数据(与土地市场联通)", + "市场主体信息:参与公共资源交易企业的投标人登记数据、资质记录和履约历史", + "交易量统计:按地区和行业分类的公共资源交易总量、成交笔数和市场活跃度汇总数据", + "监督与合规数据:串标违规记录、不良行为认定及合规执法措施记录" + ] + }, + "has_api": false, + "file_path": "china/governance/china-ggzy.json" + }, + { + "id": "china-mem", + "name": { + "en": "Ministry of Emergency Management of China", + "zh": "中华人民共和国应急管理部" + }, + "description": { + "en": "Official emergency management and disaster statistics from China's Ministry of Emergency Management (MEM). Covers natural disaster statistics (floods, droughts, earthquakes, geological hazards, typhoons, low-temperature events), production safety accident data, fire statistics, rescue operations records, emergency response reports, and national emergency resource reserves. Established in 2018 by merging multiple agencies, MEM is responsible for disaster prevention, mitigation, relief, and production safety supervision across China.", + "zh": "中华人民共和国应急管理部发布的官方应急管理与灾害统计数据,涵盖自然灾害统计(洪涝、干旱、地震、地质灾害、台风、低温等)、生产安全事故数据、火灾统计、救援行动记录、应急响应报告及国家应急物资储备情况。应急管理部于2018年整合多部门职能组建,负责全国防灾减灾救灾和安全生产监管工作。" + }, + "website": "https://www.mem.gov.cn/", + "data_url": "https://www.mem.gov.cn/gk/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "environment", + "public-health", + "governance", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "应急管理", + "emergency-management", + "自然灾害", + "natural-disaster", + "防灾减灾", + "disaster-prevention", + "洪涝", + "flood", + "地震灾害", + "earthquake-disaster", + "台风", + "typhoon", + "生产安全", + "production-safety", + "火灾", + "fire-statistics", + "救援", + "rescue", + "应急响应", + "emergency-response", + "灾情统计", + "disaster-statistics", + "mem", + "应急管理部" + ], + "data_content": { + "en": [ + "Natural disaster annual and monthly statistics: affected population, deaths, missing persons, direct economic losses by disaster type", + "Flood and drought disaster data: affected farmland, collapsed houses, emergency resettlement figures", + "Production safety accident statistics: total accidents, deaths, injuries by industry sector (mining, construction, transportation, etc.)", + "Fire statistics: fire incidents, casualties, property losses by region and cause", + "Geological hazard monitoring data: landslides, mudslides, ground subsidence events", + "Typhoon impact records: landfall events, casualties, and economic damage", + "Emergency rescue operations data: dispatched personnel, rescue teams, and equipment deployment", + "National emergency material reserves: types, quantities, and distribution of strategic reserves", + "Disaster relief fund allocation and usage reports" + ], + "zh": [ + "自然灾害年度及月度统计:各类灾害受灾人口、死亡、失踪及直接经济损失", + "洪涝和干旱灾害数据:受灾耕地、倒塌房屋、紧急转移安置人数", + "生产安全事故统计:各行业(矿山、建筑、交通运输等)事故总数、死亡及受伤情况", + "火灾统计:各地区火灾起数、伤亡人员及财产损失及原因分析", + "地质灾害监测数据:滑坡、泥石流、地面沉降事件", + "台风影响记录:登陆台风、伤亡人员及经济损失", + "应急救援行动数据:出动人员、救援队伍及装备部署情况", + "国家应急物资储备:战略储备物资种类、数量与分布", + "灾害救助资金拨付与使用报告" + ] + }, + "has_api": false, + "file_path": "china/governance/china-mem.json" + }, + { + "id": "china-mofa", + "name": { + "en": "Ministry of Foreign Affairs of China", + "zh": "中华人民共和国外交部" + }, + "description": { + "en": "Official diplomatic and foreign policy data from China's Ministry of Foreign Affairs (MOFA). Covers China's bilateral and multilateral treaty database, diplomatic relations statistics, embassy and consulate information worldwide, official foreign policy statements, and international agreements. The Ministry of Foreign Affairs is responsible for managing China's foreign relations, treaty affairs, consular services, and international cooperation.", + "zh": "中华人民共和国外交部发布的官方外交与对外政策数据,涵盖中国双边及多边条约数据库、外交关系统计、全球大使馆与领事馆信息、官方外交政策声明及国际协议。外交部负责管理中国对外关系、条约事务、领事服务及国际合作。" + }, + "website": "https://www.mfa.gov.cn/", + "data_url": "https://www.mfa.gov.cn/web/system/index_17321.shtml", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "governance", + "international", + "law" + ], + "update_frequency": "irregular", + "tags": [ + "外交", + "diplomacy", + "条约", + "treaty", + "外交关系", + "diplomatic-relations", + "大使馆", + "embassy", + "领事馆", + "consulate", + "双边协议", + "bilateral-agreement", + "多边协议", + "multilateral-agreement", + "外交政策", + "foreign-policy", + "国际合作", + "international-cooperation", + "领事服务", + "consular-services", + "mofa", + "外交部", + "国际条约", + "international-treaty" + ], + "data_content": { + "en": [ + "Treaty database: bilateral and multilateral treaties, agreements, and conventions signed by China", + "Diplomatic relations data: countries with which China maintains diplomatic relations, dates of establishment", + "Embassy and consulate directory: locations, contacts, and jurisdictions of Chinese diplomatic missions worldwide", + "Foreign policy documents: official white papers, position papers, and statements on international affairs", + "Consular affairs statistics: visa, passport, and overseas Chinese affairs data", + "International agreements: memoranda of understanding, cooperation frameworks, and joint communiqués", + "Bilateral exchange records: state visits, diplomatic meetings, and joint declarations" + ], + "zh": [ + "条约数据库:中国签署的双边及多边条约、协定与公约", + "外交关系数据:与中国建立外交关系的国家及建交日期", + "大使馆与领事馆名录:中国驻外外交机构的位置、联系方式及管辖范围", + "外交政策文件:官方白皮书、立场文件及国际事务声明", + "领事事务统计:签证、护照及海外华人事务数据", + "国际协议:谅解备忘录、合作框架及联合公报", + "双边往来记录:国事访问、外交会谈及联合声明" + ] + }, + "has_api": false, + "file_path": "china/governance/china-mofa.json" + }, + { + "id": "china-moj", + "name": { + "en": "Ministry of Justice of China", + "zh": "中华人民共和国司法部" + }, + "description": { + "en": "Official legal and judicial statistics from China's Ministry of Justice (MOJ). Covers national justice administration statistics, attorney and notary registration data, legal aid service records, prison management and offender rehabilitation data, community corrections statistics, mediation and arbitration data, and legislative affairs information. The Ministry of Justice is responsible for managing legal services, prison affairs, community corrections, legal aid, notarization, and promoting the rule of law in China.", + "zh": "中华人民共和国司法部发布的官方法律与司法行政统计数据,涵盖全国司法行政统计、律师与公证员注册信息、法律援助服务记录、监狱管理与罪犯改造数据、社区矫正统计、调解与仲裁数据及立法事务信息。司法部负责管理法律服务、监狱事务、社区矫正、法律援助、公证工作,并推进法治建设。" + }, + "website": "https://www.moj.gov.cn/", + "data_url": "https://www.moj.gov.cn/pub/sfbgw/zwgkzl/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "governance", + "law", + "social" + ], + "update_frequency": "annual", + "tags": [ + "司法", + "justice", + "法律援助", + "legal-aid", + "律师", + "attorney", + "公证", + "notary", + "监狱", + "prison", + "社区矫正", + "community-corrections", + "调解", + "mediation", + "仲裁", + "arbitration", + "法治", + "rule-of-law", + "司法行政", + "justice-administration", + "司法统计", + "justice-statistics", + "moj", + "司法部" + ], + "data_content": { + "en": [ + "National justice administration statistics: annual reports on attorney counts, law firm registrations, and legal professionals", + "Legal aid service data: case counts, beneficiaries, types of aid provided by region", + "Notarization statistics: national and provincial notary registrations and certified document counts", + "Prison management data: offender population, rehabilitation programs, education and vocational training outcomes", + "Community corrections statistics: people under community supervision, types of corrections, recidivism rates", + "People's mediation data: mediation organizations, mediators, and disputes resolved nationwide", + "Administrative law enforcement supervision reports", + "Legislative affairs information: laws, regulations, and normative documents managed by MOJ" + ], + "zh": [ + "全国司法行政统计:律师人数、律师事务所注册及法律职业人员年度报告", + "法律援助服务数据:各地区案件数量、受益人及援助类型", + "公证统计:全国及分省公证机构注册数与公证书出具数量", + "监狱管理数据:在押人员规模、改造项目、教育与职业培训成效", + "社区矫正统计:社区矫正人员、矫正类型及再犯率", + "人民调解数据:全国调解组织、调解员及纠纷化解情况", + "行政执法监督报告", + "立法事务信息:司法部管理的法律法规及规范性文件" + ] + }, + "has_api": false, + "file_path": "china/governance/china-moj.json" + }, + { + "id": "china-mva", + "name": { + "en": "Ministry of Veterans Affairs of China", + "zh": "中华人民共和国退役军人事务部" + }, + "description": { + "en": "The Ministry of Veterans Affairs (MVA) is China's central government ministry responsible for veterans' affairs, established in March 2018 under the State Council institutional reform. It manages policies, benefits, placement, education, and social services for China's millions of retired military personnel and their families. The MVA publishes annual statistical summaries (退役军人事务统计汇要) covering veteran registration, placement outcomes, vocational training participation, pension and disability benefit recipients, and commemorative facility management. Its data is essential for understanding China's military personnel transition system and social welfare for former service members.", + "zh": "退役军人事务部是中国负责退役军人工作的中央政府部门,于2018年3月国务院机构改革中组建成立。主要负责退役军人政策制定、安置就业、优抚保障、职业培训及社会服务等工作,服务对象为中国数百万退役军人及其家属。退役军人事务部发布年度《退役军人事务统计汇要》,内容涵盖退役军人登记注册、安置就业情况、职业技能培训参与情况、抚恤补助金领取人数及烈士纪念设施管理情况,是了解中国军人转业安置体系和退役军人社会保障的重要数据来源。" + }, + "website": "https://www.mva.gov.cn/", + "data_url": "https://www.mva.gov.cn/gongkai/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "social", + "governance", + "statistics" + ], + "update_frequency": "annual", + "tags": [ + "退役军人事务部", + "ministry-of-veterans-affairs", + "退役军人", + "veterans", + "军人安置", + "military-placement", + "优抚", + "preferential-treatment", + "烈士纪念", + "martyr-commemoration", + "职业技能培训", + "vocational-training", + "抚恤金", + "pension", + "退役军人统计", + "veterans-statistics", + "国防社会化", + "military-civilian-integration", + "中国军人", + "chinese-military-personnel" + ], + "data_content": { + "en": [ + "Veteran registration: total number of registered retired military personnel by province and category (officers, non-commissioned officers, soldiers)", + "Placement outcomes: annual statistics on veteran employment placement, including government job assignments, college enrollment, and self-employment support", + "Vocational and educational training: number of veterans enrolled in vocational skills training programs and higher education", + "Pension and disability benefits: number of recipients of military disability pensions, living allowances for family members of deceased soldiers", + "Commemorative facilities: number of national martyrs' cemeteries, memorial halls, and monuments managed or registered", + "Housing and living support: veterans receiving housing subsidies, emergency living assistance statistics", + "Annual statistical summary (退役军人事务统计汇要): comprehensive yearly report on veterans affairs nationwide" + ], + "zh": [ + "退役军人登记注册:按省份和类别(军官、士官、义务兵)分类的退役军人登记总数", + "安置就业情况:年度退役军人安置数据,包括政府机关安置、大学录取和自主创业支持", + "职业技能与教育培训:参加职业技能培训和高等学历教育的退役军人人数", + "抚恤金与伤残补助:军人伤残抚恤金领取人数、烈士家属优待金发放情况", + "纪念设施:纳入管理和登记的国家烈士陵园、纪念馆和纪念碑数量", + "住房与生活保障:享受住房补贴、紧急生活救助的退役军人统计数据", + "退役军人事务统计汇要:全国退役军人工作综合年度报告" + ] + }, + "has_api": false, + "file_path": "china/governance/china-mva.json" + }, + { + "id": "china-napp", + "name": { + "en": "National Administration of Press and Publication", + "zh": "国家新闻出版署" + }, + "description": { + "en": "The National Administration of Press and Publication (NAPP) is China's central government authority responsible for regulating and overseeing the press, publication, copyright, and online publishing industries. Established under the State Council and merged with the General Administration of Press and Publication in 2018, NAPP issues statistics and regulatory data on books, newspapers, periodicals, digital publications, game approvals, and copyright registrations in China. It provides authoritative data on the scale and structure of China's publishing industry, the number of licensed publications, video game approval lists, and copyright protection enforcement — essential reference for China's content and media market research.", + "zh": "国家新闻出版署(NAPP)是中国负责监管新闻出版、版权及网络出版产业的中央政府机构。根据国务院机构改革,原国家新闻出版广电总局出版职能并入,2018年重新组建。国家新闻出版署发布图书、报纸、期刊、数字出版物、游戏版号审批及版权登记等统计数据,是中国出版业规模与结构、持证出版单位数量、电子游戏审批名单及版权保护执法的权威数据来源,是研究中国内容产业和媒体市场的重要参考。" + }, + "website": "https://www.nppa.gov.cn/", + "data_url": "https://www.nppa.gov.cn/xxfb/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "media", + "culture", + "governance", + "technology" + ], + "update_frequency": "monthly", + "tags": [ + "新闻出版", + "press-and-publication", + "游戏版号", + "game-approval", + "版权登记", + "copyright-registration", + "图书出版", + "book-publishing", + "数字出版", + "digital-publishing", + "期刊", + "periodicals", + "报纸", + "newspapers", + "网络游戏", + "online-games", + "内容产业", + "content-industry", + "出版统计", + "publishing-statistics", + "媒体监管", + "media-regulation" + ], + "data_content": { + "en": [ + "Video game approvals: monthly and annual lists of approved domestic and imported video games (版号) — critical data for China gaming market analysis", + "Book publication statistics: number of new titles, total print runs, revenue by category and publisher", + "Newspaper and periodical data: count of licensed newspapers and magazines, circulation statistics, industry revenue", + "Digital publishing: total output value of digital publishing industry, e-book, online audio/video, and mobile reading data", + "Copyright registration: annual copyright registrations, enforcement actions, anti-piracy statistics", + "Publishing license information: lists of licensed publishers, distribution enterprises, and printing companies", + "Industry annual reports: comprehensive reports on China's press and publication industry development", + "Import/export of publications: statistics on imported and exported books, periodicals, and digital content" + ], + "zh": [ + "游戏版号审批:每月及年度国产及进口游戏版号审批名单——中国游戏市场分析的关键数据", + "图书出版统计:新书品种数、总印数、按类别和出版社分类的出版收入", + "报纸期刊数据:持证报纸和期刊数量、发行量统计、行业收入", + "数字出版:数字出版产业总产出、电子书、网络音视频和移动阅读数据", + "版权登记:年度版权登记数量、执法行动、打击盗版统计", + "出版许可信息:持证出版单位、发行企业和印刷公司名单", + "行业年度报告:中国新闻出版业发展综合报告", + "出版物进出口:图书、期刊及数字内容进出口统计数据" + ] + }, + "has_api": false, + "file_path": "china/governance/china-napp.json" + }, + { + "id": "china-ncac", + "name": { + "en": "National Copyright Administration of China", + "zh": "国家版权局" + }, + "description": { + "en": "The National Copyright Administration of China (NCAC) is the central government authority responsible for copyright protection, administration, and enforcement. NCAC oversees the registration of copyrights for literary, artistic, and software works, handles copyright complaints and anti-piracy actions, and participates in international copyright treaties. It publishes annual statistics on copyright registrations, software copyright grants, copyright protection actions, and the copyright industry's contribution to the national economy. NCAC's China Copyright Protection Center (CCPC) operates the national copyright registration database and issues official copyright certificates.", + "zh": "国家版权局是负责版权保护、管理和执法的中央政府主管部门。版权局主管文学、艺术和软件作品的版权登记,受理版权投诉,开展打击侵权盗版行动,并参与国际版权条约事务。版权局发布版权登记、软件著作权授权、版权保护行动及版权产业对国民经济贡献的年度统计数据。国家版权局下属的中国版权保护中心负责运营全国版权登记数据库并颁发版权登记证书。" + }, + "website": "https://www.ncac.gov.cn/", + "data_url": "https://www.ncac.gov.cn/chinacopyright/channels/634.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "intellectual-property", + "governance", + "technology" + ], + "update_frequency": "annual", + "tags": [ + "国家版权局", + "ncac", + "national-copyright-administration", + "版权登记", + "copyright-registration", + "软件著作权", + "software-copyright", + "著作权", + "copyright", + "知识产权", + "intellectual-property", + "版权保护", + "copyright-protection", + "反盗版", + "anti-piracy", + "版权产业", + "copyright-industry", + "中国版权保护中心", + "ccpc", + "版权执法", + "copyright-enforcement", + "文化产业", + "cultural-industry" + ], + "data_content": { + "en": [ + "Annual copyright registration statistics - total registrations by work type (literary, artistic, musical, cinematographic, software)", + "Software copyright grant statistics - number of software copyright certificates issued by industry and region", + "Copyright protection enforcement - anti-piracy campaign results, cases investigated, infringing goods seized", + "Copyright industry economic contribution - value-added output, employment, and share of GDP", + "International copyright affairs - bilateral copyright agreements, enforcement cooperation data", + "Copyright complaint and dispute statistics - number of administrative complaints and adjudications", + "Online copyright monitoring reports - infringement detection across digital platforms and e-commerce", + "Annual China Copyright Development Report (中国版权年度报告)" + ], + "zh": [ + "年度版权登记统计 - 按作品类别(文字、美术、音乐、电影、软件)分类的登记总量", + "软件著作权授权统计 - 按行业和地区分类的软件著作权证书发放量", + "版权保护执法 - 打击侵权盗版专项行动成果、案件查处及查获侵权品数量", + "版权产业经济贡献 - 增加值产出、就业人数及占GDP比重", + "国际版权事务 - 双边版权协议及执法合作数据", + "版权投诉及争议统计 - 行政投诉和裁决数量", + "网络版权监测报告 - 数字平台和电商侵权监测情况", + "年度中国版权发展报告" + ] + }, + "has_api": false, + "file_path": "china/governance/china-ncac.json" + }, + { + "id": "china-ncha", + "name": { + "en": "National Cultural Heritage Administration of China", + "zh": "国家文物局" + }, + "description": { + "en": "The National Cultural Heritage Administration of China (NCHA) is the central government agency responsible for the protection, management, and utilization of cultural heritage across China. It oversees the registration and conservation of immovable cultural relics, museums, archaeological excavations, and the export control of cultural artifacts. NCHA publishes the National Survey of Immovable Cultural Relics, annual museum statistics, lists of nationally protected cultural heritage sites, and archaeological discovery reports. With over 770,000 registered immovable cultural relics and more than 6,000 registered museums, NCHA data serves as the authoritative reference for China's cultural heritage landscape, including UNESCO World Heritage Sites and national key cultural relics protection units.", + "zh": "国家文物局是负责全国文物保护、管理和利用工作的中央政府机构,主管不可移动文物登记保护、博物馆管理、考古发掘审批和文物出境监管。国家文物局发布全国不可移动文物普查成果、年度博物馆统计数据、全国重点文物保护单位名单和考古重要发现报告。全国登记不可移动文物逾77万处,注册博物馆超过6000家,国家文物局数据是了解中国文化遗产状况(含世界遗产和全国重点文物保护单位)的权威来源。" + }, + "website": "http://www.ncha.gov.cn", + "data_url": "http://www.ncha.gov.cn/col/col2276/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "culture", + "education", + "governance" + ], + "update_frequency": "annual", + "tags": [ + "国家文物局", + "ncha", + "national-cultural-heritage-administration", + "文物保护", + "cultural-heritage-protection", + "不可移动文物", + "immovable-cultural-relics", + "全国重点文物保护单位", + "national-key-cultural-relics", + "博物馆统计", + "museum-statistics", + "考古发现", + "archaeological-discoveries", + "世界遗产", + "world-heritage-sites", + "文物普查", + "cultural-relics-survey", + "历史文化遗址", + "historical-cultural-sites", + "非物质文化遗产", + "intangible-cultural-heritage", + "文物出境", + "cultural-artifacts-export" + ], + "data_content": { + "en": [ + "National survey of immovable cultural relics: comprehensive registry of over 770,000 registered cultural relics sites across China, categorized by type, era, protection level, and geographic distribution", + "Annual museum statistics: number of registered museums, visitor counts, collections size, and revenue data by province and museum type", + "National key cultural relics protection units: official list of state-protected heritage sites with classification details, dating, and location information", + "Archaeological excavation reports: annual summaries of major archaeological finds and excavation project approvals", + "UNESCO World Heritage Sites in China: data on China's 57 World Heritage Sites including natural, cultural, and mixed sites", + "Cultural relics law enforcement: statistics on illegal excavation cases, artifact smuggling, and law enforcement actions", + "Heritage conservation funding: government investment in cultural heritage protection projects by region and project type", + "Museum development report: annual assessment of China's museum sector development, including thematic museums and community museums" + ], + "zh": [ + "全国不可移动文物普查成果:全国77万余处登记文物点综合名录,按类型、年代、保护级别和地区分类", + "年度博物馆统计:全国登记博物馆数量、参观人次、馆藏规模及收入数据,按省份和博物馆类型分类", + "全国重点文物保护单位名单:国家级文物保护单位官方名录,含分类详情、年代鉴定和位置信息", + "考古发掘报告:年度重大考古发现及考古发掘项目审批情况综述", + "中国世界遗产数据:中国57处世界遗产(含自然、文化和混合遗产)基本信息", + "文物执法统计:非法盗掘案件、文物走私及执法行动数据", + "文化遗产保护经费:各地区、各类项目政府文物保护投入情况", + "博物馆事业发展报告:全国博物馆事业发展年度评估,含主题博物馆和社区博物馆" + ] + }, + "has_api": false, + "file_path": "china/governance/china-ncha.json" + }, + { + "id": "china-neac", + "name": { + "en": "National Ethnic Affairs Commission of China", + "zh": "国家民族事务委员会" + }, + "description": { + "en": "The National Ethnic Affairs Commission (NEAC), also known as the State Ethnic Affairs Commission (SEAC), is China's central government body responsible for ethnic minority affairs, policy implementation, and statistical monitoring of China's 55 recognized ethnic minority groups. NEAC publishes data on ethnic minority population distribution, economic development in minority regions, poverty alleviation progress, preservation of minority languages and cultures, ethnic education, and regional autonomy governance. Key publications include ethnic minority population census data, annual statistical bulletins on minority areas development, and reports on the implementation of ethnic regional autonomy. NEAC data is essential for understanding demographic diversity, regional development disparities, and social policy in China's autonomous regions.", + "zh": "国家民族事务委员会(民委)是中国负责民族事务管理、政策实施及55个少数民族统计监测的国家中央政府机构。民委发布少数民族人口分布、民族地区经济发展、脱贫攻坚进展、少数民族语言文化保护、民族教育及民族区域自治治理等数据。主要出版物包括少数民族人口普查数据、民族地区年度发展统计公报及民族区域自治制度实施报告。民委数据对了解中国的人口多样性、区域发展差异及自治区社会政策具有重要意义。" + }, + "website": "https://www.neac.gov.cn", + "data_url": "https://www.neac.gov.cn/seac/xxgk/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "demographics", + "governance", + "economics", + "social" + ], + "update_frequency": "annual", + "tags": [ + "民委", + "neac", + "seac", + "ethnic-minority", + "少数民族", + "民族地区", + "minority-regions", + "民族人口", + "ethnic-population", + "民族区域自治", + "ethnic-regional-autonomy", + "少数民族发展", + "minority-development", + "民族文化", + "ethnic-culture", + "民族教育", + "ethnic-education", + "脱贫攻坚", + "poverty-alleviation", + "自治区", + "autonomous-regions", + "西藏", + "tibet", + "新疆", + "xinjiang", + "民族统计", + "ethnic-statistics" + ], + "data_content": { + "en": [ + "Ethnic minority population: census data on population size, distribution, and demographic characteristics of 55 ethnic minority groups", + "Regional development statistics: GDP, per capita income, poverty rate, and infrastructure in ethnic autonomous regions", + "Poverty alleviation data: poverty reduction progress in ethnic minority areas under national rural revitalization strategy", + "Education indicators: school enrollment rates, literacy, higher education participation among ethnic minorities", + "Language and culture: number of schools teaching minority languages, cultural heritage preservation programs", + "Economic autonomy: fiscal transfers to autonomous regions, special development funds for minority areas", + "Social indicators: life expectancy, maternal mortality, healthcare access in ethnic minority communities", + "Annual bulletin on ethnic minority areas development: comprehensive report on socioeconomic progress across autonomous regions" + ], + "zh": [ + "少数民族人口:55个少数民族人口规模、分布及人口特征普查数据", + "地区发展统计:民族自治区域的GDP、人均收入、贫困率及基础设施情况", + "脱贫攻坚数据:农村振兴战略下少数民族地区减贫进展", + "教育指标:少数民族的入学率、文化程度及高等教育参与率", + "语言与文化:少数民族语言教学学校数量、文化遗产保护项目", + "经济自治:对自治区的财政转移支付及民族地区特殊发展基金", + "社会指标:少数民族聚居地区人均寿命、孕产妇死亡率及医疗可及性", + "少数民族地区年度发展统计公报:自治区社会经济进展综合报告" + ] + }, + "has_api": false, + "file_path": "china/governance/china-neac.json" + }, + { + "id": "china-nfra-fire", + "name": { + "en": "National Fire and Rescue Administration of China", + "zh": "国家消防救援局" + }, + "description": { + "en": "The National Fire and Rescue Administration (NFRA, 国家消防救援局) is the highest-level government body in China responsible for fire prevention, firefighting, rescue operations, and fire safety supervision. Established in 2018 following reform of the People's Armed Police system, NFRA operates a nationwide network of fire stations and rescue teams under the Ministry of Emergency Management. The Administration publishes official fire statistics, rescue operation data, fire prevention inspection records, major fire incident investigations, and national fire safety standards and guidelines. NFRA data provides authoritative information on fire incidents, casualties, property losses, hazardous material emergencies, and urban/rural fire safety conditions across China.", + "zh": "国家消防救援局是中国负责消防预防、灭火救援和消防安全监督的最高政府机构。2018年随武警改革组建,国家消防救援局在应急管理部领导下管理全国消防队伍。消防救援局发布官方火灾统计数据、救援行动记录、消防安全检查记录、重大火灾事故调查报告及国家消防技术标准和规范,是中国火灾事故数量、伤亡情况、财产损失、危险化学品事故和城乡消防安全状况的权威数据来源。" + }, + "website": "https://www.119.gov.cn", + "data_url": "https://www.119.gov.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "governance", + "public-safety", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "消防救援", + "fire-rescue", + "国家消防救援局", + "nfra", + "火灾统计", + "fire-statistics", + "消防安全", + "fire-safety", + "灾害救援", + "disaster-rescue", + "应急救援", + "emergency-rescue", + "危险化学品", + "hazardous-materials", + "消防检查", + "fire-inspection" + ], + "data_content": { + "en": [ + "Annual and monthly fire statistics - total fire incidents, deaths, injuries, and direct property losses nationwide and by province", + "Fire cause analysis - breakdown of fire incidents by ignition source (electrical, open flame, smoking, arson, etc.)", + "Rescue operation data - records of firefighting and rescue operations, dispatched personnel, and vehicles", + "Major fire incident investigation reports - cause analysis and safety lessons from significant fires and explosions", + "Hazardous material emergency records - chemical plant fires, gas leaks, and toxic substance incidents", + "Fire safety inspection statistics - enterprise compliance rates, major hazard source identification, and rectification orders", + "Urban and rural fire safety gap analysis - regional fire risk assessments and prevention priority reports", + "National fire safety standards - technical codes and regulatory documents for fire prevention in buildings and industries", + "High-rise and underground space fire data - incident statistics for complex building environments", + "Fire rescue team capacity data - nationwide distribution, staffing levels, and equipment inventories" + ], + "zh": [ + "年度及月度火灾统计 - 全国及各省市火灾起数、死亡人数、受伤人数和直接财产损失", + "火灾原因分析 - 按点火源(电气、明火、吸烟、人为纵火等)分类的火灾事故构成", + "救援行动数据 - 消防灭火救援出动记录、参战人员和车辆情况", + "重大火灾事故调查报告 - 重大火灾和爆炸事故的原因分析与安全警示", + "危险化学品应急记录 - 化工厂火灾、气体泄漏和有毒物质事故", + "消防安全检查统计 - 企业合规率、重大危险源认定和整改指令", + "城乡消防安全差距分析 - 区域火灾风险评估和防火重点报告", + "国家消防技术标准 - 建筑和工业消防预防技术规范和监管文件", + "高层及地下空间火灾数据 - 复杂建筑环境的事故统计", + "消防救援队伍建设数据 - 全国布局、人员编制和装备配备情况" + ] + }, + "has_api": false, + "file_path": "china/governance/china-nfra-fire.json" + }, + { + "id": "china-nia", + "name": { + "en": "National Immigration Administration of China", + "zh": "国家移民管理局" + }, + "description": { + "en": "The National Immigration Administration (NIA) of China is the central government authority responsible for immigration management, border control, and exit-entry administration. Established in 2018 as a reform of the former Exit-Entry Administration Bureau, the NIA publishes official statistics on border crossings, passport and visa issuance, foreign nationals entering and exiting China, overseas Chinese affairs, and emigration trends. The NIA manages China's frontier inspection system and oversees the growing outbound tourism and overseas study flows. Its data is essential for analyzing China's international mobility, immigration policy, and border security statistics.", + "zh": "国家移民管理局是中国负责移民管理、边境管控和出入境行政的中央政府机构,2018年在原出入境管理局基础上改革设立。国家移民管理局发布边境通关、护照和签证签发量、外国人入出境、华侨华人事务及移民趋势等官方统计数据,管理中国边检系统并监管不断增长的出境旅游和出国留学流量。其数据是分析中国国际人口流动、移民政策和边境安全的重要参考。" + }, + "website": "https://www.nia.gov.cn/", + "data_url": "https://www.nia.gov.cn/n741440/n741547/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "governance", + "social", + "statistics" + ], + "update_frequency": "quarterly", + "tags": [ + "移民管理", + "immigration", + "出入境", + "exit-entry", + "边境管控", + "border-control", + "护照签证", + "passport-visa", + "外籍人员", + "foreign-nationals", + "出境旅游", + "outbound-tourism", + "华侨华人", + "overseas-chinese", + "国际移动", + "international-mobility", + "边检", + "frontier-inspection", + "出国留学", + "overseas-study" + ], + "data_content": { + "en": [ + "Border crossing statistics: total entry and exit volumes at land, air, and sea ports across China", + "Passport issuance: numbers of ordinary passports, official passports, and diplomatic passports issued annually", + "Visa and permit data: foreign visas approved, residence permits for foreigners, work permit statistics", + "Foreign nationals in China: registered foreign residents by nationality, purpose of stay, and region", + "Emigration trends: number of Chinese nationals emigrating abroad, emigration destinations, and returning overseas Chinese", + "Outbound tourism: Chinese outbound traveler counts by destination country and travel purpose", + "Illegal immigration and enforcement: border enforcement actions, overstay violations, deportation cases", + "Exit-entry administration reform: implementation statistics on China's new exit-entry management system", + "Overseas Chinese affairs: registered overseas Chinese population and related welfare statistics" + ], + "zh": [ + "边境通关统计:全国各陆路、空港、水运口岸入出境人次总量", + "护照签发:普通护照、公务护照、外交护照年度签发量", + "签证和居留许可数据:外国人签证审批量、外国人居留许可、工作许可统计", + "在华外籍人员:按国籍、居留目的和地区划分的外国常住人口统计", + "移民趋势:出国定居中国公民数量、移居目的地、归国华侨华人统计", + "出境旅游:按目的地国家和旅行目的分类的中国公民出境旅游人次", + "非法移民与执法:边境执法行动、逾期逗留违法、遣返案例", + "出入境管理改革:中国新出入境管理制度实施统计数据", + "华侨华人事务:境外注册华侨华人人口及相关福利保障统计" + ] + }, + "has_api": false, + "file_path": "china/governance/china-nia.json" + }, + { + "id": "china-nncc", + "name": { + "en": "China National Narcotics Control Commission", + "zh": "中国国家禁毒委员会" + }, + "description": { + "en": "The China National Narcotics Control Commission (NNCC) is the top-level inter-ministerial body overseeing drug control policy and enforcement in China. Its official portal, China Anti-Drug Network (中国禁毒网), publishes authoritative national drug control reports, annual drug situation assessments, data on drug-related crimes, rehabilitation statistics, synthetic drug trend analyses, and public awareness campaign outcomes. NNCC data is the primary official source for understanding China's drug abuse epidemiology, enforcement actions, and policy progress.", + "zh": "中国国家禁毒委员会(禁毒委)是负责统筹协调全国禁毒工作的最高部际协调机构。其官方门户《中国禁毒网》发布权威的全国毒品形势报告、年度毒情综述、涉毒违法犯罪统计、戒毒康复数据、合成毒品趋势分析及禁毒宣传活动成效等信息,是了解中国禁毒执法、毒品滥用流行病学及政策进展的主要官方数据来源。" + }, + "website": "http://www.nncc626.com", + "data_url": "http://www.nncc626.com", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "update_frequency": "annual", + "domains": [ + "public-safety", + "governance", + "health", + "crime" + ], + "tags": [ + "china", + "nncc", + "禁毒委", + "drug-control", + "禁毒", + "narcotics", + "毒品", + "anti-drug", + "drug-crime", + "涉毒犯罪", + "rehabilitation", + "戒毒", + "drug-situation", + "毒品形势" + ], + "data_content": { + "en": [ + "Annual Drug Situation Reports - National drug abuse trends, seizure volumes, and enforcement statistics", + "Drug-Related Crime Data - Arrests, prosecutions, and conviction statistics for narcotics offenses", + "Rehabilitation Statistics - Data on compulsory drug detoxification and community-based recovery programs", + "Synthetic Drug Trends - Intelligence and statistical analyses on new psychoactive substances", + "Drug Control Policy Documents - Laws, regulations, and national action plans for drug prevention and control" + ], + "zh": [ + "年度毒品形势报告 - 全国毒品滥用趋势、缴获数量及执法统计", + "涉毒违法犯罪数据 - 毒品犯罪的抓获、起诉及定罪统计", + "戒毒康复统计 - 强制隔离戒毒及社区康复计划数据", + "合成毒品趋势分析 - 新型精神活性物质情报及统计分析", + "禁毒政策文件 - 禁毒相关法律法规及国家行动计划" + ] + }, + "has_api": false, + "file_path": "china/governance/china-nncc.json" + }, + { + "id": "china-nnsa", + "name": { + "en": "National Nuclear Safety Administration", + "zh": "国家核安全局" + }, + "description": { + "en": "The National Nuclear Safety Administration (NNSA) of China is the national regulatory authority responsible for the safety supervision and management of nuclear and radiation safety, operating as a functional department under the Ministry of Ecology and Environment (MEE). Established in 1984, NNSA regulates the licensing, construction, operation, and decommissioning of nuclear power plants, research reactors, nuclear fuel cycle facilities, and radioactive waste management facilities across China. NNSA publishes China's nuclear safety regulations, technical guidelines, licensing decisions, and annual nuclear safety reports. It maintains registries of licensed nuclear installations, radiation sources, and radioactive waste repositories, and publishes environmental radiation monitoring data from nuclear facilities. NNSA is China's competent authority under the Convention on Nuclear Safety and cooperates with the International Atomic Energy Agency (IAEA) on nuclear safety standards and peer reviews.", + "zh": "国家核安全局(NNSA)是中国负责核与辐射安全监督管理的国家监管机构,作为生态环境部的职能部门运行。NNSA成立于1984年,负责对中国核电站、研究堆、核燃料循环设施和放射性废物管理设施的许可、建设、运行和退役实施监管。国家核安全局发布中国核安全法规、技术导则、许可决定和年度核安全报告,维护持证核设施、放射源和放射性废物库的登记注册,并发布核设施周边环境辐射监测数据。NNSA是《核安全公约》下的中国主管当局,与国际原子能机构(IAEA)在核安全标准和同行评审方面开展合作。" + }, + "website": "http://nnsa.mee.gov.cn", + "data_url": "http://nnsa.mee.gov.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "energy", + "environment", + "science", + "governance" + ], + "update_frequency": "irregular", + "tags": [ + "国家核安全局", + "nnsa", + "核安全", + "nuclear-safety", + "辐射安全", + "radiation-safety", + "核电站", + "nuclear-power-plant", + "核监管", + "nuclear-regulation", + "放射性废物", + "radioactive-waste", + "核燃料", + "nuclear-fuel", + "核许可证", + "nuclear-license", + "环境辐射监测", + "environmental-radiation-monitoring", + "核安全法规", + "nuclear-safety-regulations", + "核安全导则", + "nuclear-safety-guides", + "核设施", + "nuclear-installations", + "放射源", + "radiation-sources", + "生态环境部", + "ministry-of-ecology-and-environment", + "mee", + "iaea", + "核安全公约", + "convention-on-nuclear-safety", + "研究堆", + "research-reactor" + ], + "data_content": { + "en": [ + "Nuclear safety regulations and technical guidelines: comprehensive collection of China's HAF (nuclear safety) regulatory framework documents, technical safety guidelines (HAD series), and regulatory basis documents for nuclear power plants, research reactors, and fuel cycle facilities", + "Nuclear facility licensing registry: database of licensed and pending nuclear installations in China, including nuclear power units (operational, under construction, decommissioned), research reactors, uranium processing facilities, and radioactive waste repositories", + "Annual nuclear safety reports: comprehensive annual assessment of China's nuclear safety performance, including safety inspection results, events and incidents statistics, radioactive release data, and regulatory enforcement actions", + "Environmental radiation monitoring data: radiation dose rate, radioactivity concentration in air, water, and soil from monitoring networks around nuclear power plants and other nuclear facilities, supporting public transparency and safety oversight", + "Radiation source and radioactive waste registries: national registries of sealed and unsealed radioactive sources, radiation-emitting devices, and radioactive waste storage facilities subject to regulatory control", + "Nuclear event and incident reports: classified and public reports on nuclear and radiological events at Chinese nuclear facilities, including INES-rated incidents, near-misses, and safety-significant events reported under national and international obligations" + ], + "zh": [ + "核安全法规和技术导则:中国HAF(核安全)监管框架文件、技术安全导则(HAD系列)和核电站、研究堆、燃料循环设施监管基础文件综合集", + "核设施许可证注册库:中国持证和待审核设施数据库,包括核电机组(运行中、在建、退役)、研究堆、铀处理设施和放射性废物库", + "年度核安全报告:中国核安全绩效年度综合评估,包括安全检查结果、事件和事故统计、放射性排放数据和监管执法行动", + "环境辐射监测数据:核电站和其他核设施周边监测网络的辐射剂量率、空气、水和土壤中放射性活度浓度数据,支持公众透明度和安全监管", + "放射源和放射性废物登记注册:国家监管范围内的密封和非密封放射源、辐射装置和放射性废物贮存设施国家注册库", + "核事件和事故报告:中国核设施核与辐射事件的分级和公开报告,包括INES评级事件、未遂事件和依据国家及国际义务报告的安全重要事件" + ] + }, + "has_api": false, + "file_path": "china/governance/china-nnsa.json" + }, + { + "id": "china-npc-law", + "name": { + "en": "National People's Congress Law Database", + "zh": "全国人大法律法规数据库" + }, + "description": { + "en": "The National People's Congress (NPC) Law Database (法律法规库) is the official repository for China's national legislation, maintained by the Standing Committee of the NPC. It provides the full text of all laws enacted by the NPC and its Standing Committee, administrative regulations issued by the State Council, local regulations from provincial legislatures, judicial interpretations, and Party regulations. This database is the authoritative reference for China's statutory law and enables tracking of legislative history, amendments, and repeal dates for every piece of enacted national legislation. Updated continuously as new laws are passed, it serves as the primary legal data source for government agencies, courts, law firms, academic institutions, and compliance teams operating in China. The platform also offers structured metadata enabling systematic analysis of China's legislative output and regulatory trends.", + "zh": "全国人民代表大会法律法规数据库(法律法规库)是由全国人民代表大会常务委员会维护的中国国家立法官方数据库。该数据库收录全国人大及其常委会通过的全部法律全文、国务院发布的行政法规、省级立法机关制定的地方性法规、司法解释及党内法规。该数据库是中国成文法的权威参考,可追溯每部现行国家立法的立法历史、修订情况和废止日期。随新法通过持续更新,是在华政府机关、法院、律师事务所、学术机构和合规团队的主要法律数据来源。该平台还提供结构化元数据,支持对中国立法产出和法规趋势进行系统分析。" + }, + "website": "https://www.npc.gov.cn/", + "data_url": "https://flk.npc.gov.cn/", + "api_url": "https://flk.npc.gov.cn/api/", + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "governance", + "law", + "policy", + "regulatory" + ], + "update_frequency": "irregular", + "tags": [ + "全国人大", + "npc", + "national-people's-congress", + "法律法规库", + "law-database", + "中国法律", + "chinese-law", + "国家立法", + "national-legislation", + "行政法规", + "administrative-regulations", + "地方性法规", + "local-regulations", + "司法解释", + "judicial-interpretations", + "立法历史", + "legislative-history", + "全文检索", + "full-text-search", + "法律全文", + "law-full-text", + "党内法规", + "party-regulations", + "法规修订", + "law-amendments", + "合规数据", + "compliance-data", + "法制", + "rule-of-law", + "人民代表大会", + "people's-congress" + ], + "data_content": { + "en": [ + "Full text of national laws: complete text of all laws enacted by the NPC and Standing Committee since the founding of the PRC, with amendment history", + "Administrative regulations: full text of State Council regulations (行政法规) with enactment and effective dates", + "Local regulations: provincial and municipal legislative acts (地方性法规) from all 31 provincial-level jurisdictions", + "Judicial interpretations: official interpretations by the Supreme People's Court and Supreme People's Procuratorate", + "Party regulations: selected regulations issued by the Central Committee of the Communist Party of China", + "Legislative metadata: law number, enactment authority, adoption date, effective date, revision history, and repeal status for each document", + "Thematic law collections: curated sets of laws by topic area including civil law, criminal law, economic law, environmental law, and administrative law", + "Legislative statistics: annual counts of laws passed, amended, and repealed by the NPC and Standing Committee" + ], + "zh": [ + "国家法律全文:中华人民共和国成立以来全国人大及其常委会通过的全部法律完整文本及修订历史", + "行政法规:国务院行政法规全文及颁布日期和施行日期", + "地方性法规:全国31个省级行政区的地方性立法(地方性法规)", + "司法解释:最高人民法院和最高人民检察院发布的正式司法解释", + "党内法规:中国共产党中央委员会颁布的部分党内法规", + "立法元数据:各文件的法规编号、制定机关、通过日期、施行日期、修订历史和废止状态", + "专题法律汇编:按民法、刑法、经济法、环境法、行政法等专题整理的法律文件集", + "立法统计:全国人大及常委会年度立法、修订和废止法律的数量统计" + ] + }, + "has_api": true, + "file_path": "china/governance/china-npc-law.json" + }, + { + "id": "china-nrta", + "name": { + "en": "National Radio and Television Administration of China", + "zh": "国家广播电视总局" + }, + "description": { + "en": "The National Radio and Television Administration (NRTA) is China's primary government authority responsible for regulating the radio and television broadcasting industry, including content supervision, licensing, technical standards, and industry development. Established in 2018 by merging the former State Administration of Press, Publication, Radio, Film and Television (SAPPRFT) functions, NRTA publishes annual statistical bulletins on China's broadcasting sector covering the number of licensed radio and TV stations, broadcast hours, cable and satellite subscriber data, program production volume, internet audio-visual service platforms, and smart TV penetration rates. Its data is essential for analyzing China's media landscape, digital broadcasting transition, and content regulation environment.", + "zh": "国家广播电视总局是中国广播电视行业的主管部门,负责广播电视内容监管、行业许可、技术标准制定和产业发展规划。2018年由原国家新闻出版广播电影电视总局相关职能重组而来。广电总局每年发布全国广播电视统计公报,涵盖持证广播电视播出机构数量、播出时长、有线及卫星用户数据、节目制作播出量、互联网视听服务平台许可情况及智能电视普及率等核心数据,是研究中国媒体格局、数字广播转型和内容监管环境的重要参考。" + }, + "website": "https://www.nrta.gov.cn/", + "data_url": "https://www.nrta.gov.cn/col/col2040/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "media", + "governance", + "technology" + ], + "update_frequency": "annual", + "tags": [ + "广播电视总局", + "nrta", + "national-radio-television-administration", + "广播电视", + "broadcasting", + "电视台", + "television-station", + "广播电台", + "radio-station", + "有线电视", + "cable-tv", + "卫星电视", + "satellite-tv", + "互联网视听", + "internet-audiovisual", + "流媒体", + "streaming", + "内容监管", + "content-regulation", + "广播电视统计公报", + "broadcasting-statistics", + "节目制作", + "program-production", + "智能电视", + "smart-tv", + "传媒产业", + "media-industry" + ], + "data_content": { + "en": [ + "Annual broadcasting statistics bulletin: total number of licensed radio stations, TV stations, cable and satellite operators nationwide", + "Broadcasting coverage rates: radio and television signal coverage by province and rural-urban breakdown", + "Cable and IPTV subscribers: number of subscribers to cable TV, satellite direct-to-home, and IPTV services", + "Program production volume: hours of original programming produced by category (news, drama, variety, documentary, animation)", + "Internet audiovisual platforms: number of licensed platforms offering video-on-demand, live streaming, and online radio services", + "Smart TV and connected devices: penetration rates and active users of internet-connected television sets", + "Advertising revenue: total advertising income of radio and TV broadcasters", + "Industry employment: number of employees in the broadcasting and audiovisual production sector" + ], + "zh": [ + "广播电视统计公报:全国持证广播电台、电视台及有线电视、卫星运营机构总量", + "广播电视覆盖率:按省份及城乡分类的广播电视信号覆盖情况", + "有线及IPTV用户:有线电视、直播卫星和IPTV用户订阅数量", + "节目制作播出量:按类别(新闻、电视剧、综艺、纪录片、动画片)分类的原创节目时长", + "互联网视听平台:持证视频点播、网络直播和网络广播平台数量", + "智能电视与联网终端:互联网电视机普及率和活跃用户数", + "广告收入:广播电视播出机构广告经营总收入", + "行业就业:广播电视及视听节目制作行业从业人员数量" + ] + }, + "has_api": false, + "file_path": "china/governance/china-nrta.json" + }, + { + "id": "china-pkulaw", + "name": { + "en": "PKU Law (Peking University Law Database)", + "zh": "北大法宝" + }, + "description": { + "en": "PKU Law (Peking University Law, 北大法宝) is China's most comprehensive legal database, operated by the Institute of Legal Information of Peking University Law School. It aggregates the full text of Chinese laws, administrative regulations, judicial interpretations, local regulations, court judgments, legal journals, and legislative history from 1949 to the present. The database covers over 10 million legal documents including all national legislation promulgated by the National People's Congress (NPC), State Council regulations, ministry-level normative documents, provincial and municipal local laws, Supreme People's Court and Supreme People's Procuratorate judicial interpretations, and millions of court verdicts. PKU Law is the authoritative legal reference for legal practitioners, judiciary officials, government agencies, corporations, academic researchers, and law schools across China. The database is continuously updated with new legislative developments and court decisions, making it the primary tool for tracking China's evolving legal framework.", + "zh": "北大法宝(北京大学法律信息中心)是中国最权威、最全面的法律数据库,由北京大学法学院法律信息中心运营。数据库收录了1949年至今的中国法律、行政法规、司法解释、地方法规、法院判决、法学期刊及立法历史全文,覆盖超过1000万份法律文件,包括全国人民代表大会颁布的国家立法、国务院法规、部委规范性文件、省市地方法规、最高人民法院和最高人民检察院司法解释,以及数百万份裁判文书。北大法宝是全国法律从业者、司法人员、政府机关、企业法务、学术研究者和法学院校的权威法律参考工具,持续更新最新立法动态和判决信息,是追踪中国法制演进的核心平台。" + }, + "website": "https://www.pkulaw.com/", + "data_url": "https://www.pkulaw.com/law", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "governance", + "law", + "policy" + ], + "update_frequency": "daily", + "tags": [ + "北大法宝", + "pku-law", + "peking-university-law", + "中国法律", + "chinese-law", + "法律数据库", + "legal-database", + "法规", + "regulations", + "司法解释", + "judicial-interpretations", + "裁判文书", + "court-judgments", + "地方法规", + "local-regulations", + "立法", + "legislation", + "全国人大", + "npc", + "国务院", + "state-council", + "法学期刊", + "legal-journals", + "法条", + "legal-provisions", + "行政法规", + "administrative-regulations", + "规范性文件", + "normative-documents", + "法律检索", + "legal-research", + "合规", + "compliance" + ], + "data_content": { + "en": [ + "National legislation: full text of all laws enacted by the National People's Congress (NPC) and its Standing Committee from 1949 to present", + "Administrative regulations: State Council regulations, implementation rules, and policy documents", + "Judicial interpretations: Supreme People's Court and Supreme People's Procuratorate interpretations, guiding cases, and judicial policies", + "Local regulations: provincial, municipal, and special economic zone legislation and government rules", + "Ministry-level normative documents: departmental regulations and rules from all central government ministries", + "Court judgments: millions of civil, criminal, administrative, and commercial court verdicts at all levels", + "Legal journals: full text of major Chinese law reviews and legal academic publications", + "Legislative history: revision history, explanatory notes, and comparative analysis of legislative changes", + "International treaties: treaties and conventions signed and ratified by China", + "Legal Q&A and commentary: expert legal analysis and practice guides" + ], + "zh": [ + "国家立法:全国人民代表大会及其常委会自1949年至今颁布的所有法律全文", + "行政法规:国务院法规、实施细则及政策文件", + "司法解释:最高人民法院和最高人民检察院司法解释、指导性案例及司法政策", + "地方法规:省级、市级及经济特区立法和政府规章", + "部委规范性文件:各中央部委制定的部门规章和规范性文件", + "裁判文书:各级法院民事、刑事、行政及商事裁判文书数百万份", + "法学期刊:主要中国法学评论和法律学术出版物全文", + "立法历史:法规修订历史、立法说明及法律变迁比较分析", + "国际条约:中国签署和批准的条约及国际公约", + "法律问答与评注:专家法律分析及实务指南" + ] + }, + "has_api": false, + "file_path": "china/governance/china-pkulaw.json" + }, + { + "id": "china-saac", + "name": { + "en": "National Archives Administration of China", + "zh": "中华人民共和国国家档案局" + }, + "description": { + "en": "The National Archives Administration of China (SAAC) is the central government authority responsible for managing China's national archives system, overseeing archival work across all levels of government, and setting standards for records management. SAAC administers the Central Archives, which holds important historical records of the Communist Party of China and the People's Republic of China including declassified documents, historical treaties, and rare manuscripts. The agency publishes national archives statistics, archival legislation, standards for electronic records management, and thematic document releases on significant historical events.", + "zh": "中华人民共和国国家档案局(国家档案局)是负责管理中国国家档案体系、监督各级政府档案工作、制定档案管理标准的中央政府主管部门。国家档案局管辖中央档案馆,保存有中国共产党和中华人民共和国的重要历史档案,包括解密文件、历史条约和珍贵手稿。该机构发布全国档案统计数据、档案法规标准、电子档案管理规范,以及重大历史事件的专题档案文献。" + }, + "website": "https://www.saac.gov.cn/", + "data_url": "https://www.saac.gov.cn/daj/fzgz/lmlist.shtml", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "governance", + "history", + "statistics" + ], + "update_frequency": "annual", + "tags": [ + "国家档案局", + "national-archives-administration", + "saac", + "中央档案馆", + "central-archives", + "档案统计", + "archives-statistics", + "历史文献", + "historical-documents", + "档案法规", + "archival-legislation", + "电子档案", + "electronic-records", + "档案管理", + "records-management", + "解密档案", + "declassified-documents", + "政府信息公开", + "government-information-disclosure", + "档案年鉴", + "archives-yearbook", + "标准规范", + "standards-and-specifications" + ], + "data_content": { + "en": [ + "National archives statistics: annual reports on archives institutions, archival holdings volume, and staff nationwide", + "Archival legislation: laws, regulations, and administrative rules governing archives management in China", + "Electronic records management: standards and specifications for digital archives and e-government records", + "Historical document releases: declassified files on significant historical events, including wartime records and diplomatic archives", + "Archives yearbook: comprehensive annual compilation of national archival sector statistics", + "Planning and development: strategic plans for archives modernization, informatization progress indicators", + "Standards library: technical standards for archives preservation, digitization, and metadata management" + ], + "zh": [ + "全国档案统计数据:全国档案机构、馆藏数量和从业人员年度统计报告", + "档案法规:中国档案管理的法律、法规和行政规章", + "电子档案管理:数字档案馆和电子政务档案的标准与规范", + "历史档案发布:重大历史事件的解密档案,包括战时档案和外交档案", + "档案年鉴:全国档案事业统计数据综合年度汇编", + "规划与发展:档案现代化战略规划、信息化进展指标", + "标准规范库:档案保护、数字化和元数据管理的技术标准" + ] + }, + "has_api": false, + "file_path": "china/governance/china-saac.json" + }, + { + "id": "china-spc", + "name": { + "en": "Supreme People's Court of China", + "zh": "最高人民法院" + }, + "description": { + "en": "The Supreme People's Court (SPC) is China's highest judicial authority, responsible for supervising the administration of justice across all courts nationwide. The SPC publishes annual judicial statistics covering the entire Chinese court system, including case filings, disposals, and outcomes at the district, intermediate, and high court levels across all 31 provincial jurisdictions. Its public data includes criminal, civil, administrative, and enforcement case volumes; trial efficiency indicators; appeal rates; and the breakdown of disputes by type. The SPC also operates China Judgments Online (中国裁判文书网), the world's largest public database of court decisions, containing over 100 million judicial documents. Additionally, the SPC issues binding judicial interpretations that function as quasi-legislation, shaping the application of law throughout the judicial system.", + "zh": "最高人民法院是中国最高司法机关,负责监督全国各级法院的司法工作。最高人民法院每年发布覆盖全国法院体系的司法统计数据,包括全国31个省级行政区基层法院、中级法院和高级法院的案件受理、办结和裁判结果。公开数据涵盖刑事、民事、行政和执行案件数量、审判效率指标、上诉率及纠纷类型分布。最高人民法院还运营“中国裁判文书网”,这是全球最大的裁判文书公开数据库,收录逾1亿份司法文书。此外,最高人民法院发布具有约束力的司法解释,其效力准同法律,对全司法系统的法律适用产生重要影响。" + }, + "website": "https://www.court.gov.cn/", + "data_url": "https://www.court.gov.cn/sfsj.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "governance", + "law", + "social", + "regulatory" + ], + "update_frequency": "annual", + "tags": [ + "最高人民法院", + "spc", + "supreme-people's-court", + "司法统计", + "judicial-statistics", + "裁判文书", + "court-decisions", + "中国裁判文书网", + "china-judgments-online", + "案件数据", + "case-data", + "刑事案件", + "criminal-cases", + "民事案件", + "civil-cases", + "行政诉讼", + "administrative-litigation", + "执行案件", + "enforcement-cases", + "审判效率", + "trial-efficiency", + "司法解释", + "judicial-interpretations", + "法院数据", + "court-data", + "诉讼统计", + "litigation-statistics", + "司法公开", + "judicial-transparency" + ], + "data_content": { + "en": [ + "Annual judicial statistics: case filings, disposals, and backlogs for all courts (district/basic, intermediate, high, and supreme) nationwide", + "Case type breakdown: criminal, civil, commercial, intellectual property, administrative, maritime, and enforcement case volumes by jurisdiction", + "Trial outcomes: conviction rates, acquittal rates, mediation rates, and appeal rates for major case categories", + "Enforcement statistics: number and value of enforcement cases, enforcement success rates, and listing of dishonest debtors", + "China Judgments Online: full-text database of court decisions from all levels of Chinese courts (100M+ documents)", + "Judicial interpretation texts: all binding SPC interpretations and replies, with effective dates and subject matter", + "Court efficiency indicators: average case resolution time, case clearance rates, and cross-jurisdictional comparison data", + "People's assessors data: participation rates of lay assessors (人民陪审员) in trials across China" + ], + "zh": [ + "年度司法统计:全国各级法院(基层法院、中级法院、高级法院和最高法院)案件受理、办结及待结数据", + "案件类型分布:按管辖区域分列的刑事、民事、商事、知识产权、行政、海事和执行案件数量", + "裁判结果:主要案件类型的定罪率、无罪率、调解率和上诉率", + "执行统计:执行案件数量和标的额、执行到位率及失信被执行人名单", + "中国裁判文书网:全国各级法院裁判文书全文数据库(逾1亿份文书)", + "司法解释文本:最高人民法院全部具有约束力的解释和批复,含施行日期和主题", + "审判效率指标:平均结案时间、结案率及跨辖区比较数据", + "人民陪审员数据:人民陪审员在全国各地法院审判活动中的参与情况" + ] + }, + "has_api": false, + "file_path": "china/governance/china-spc.json" + }, + { + "id": "china-spp", + "name": { + "en": "Supreme People's Procuratorate of China", + "zh": "最高人民检察院" + }, + "description": { + "en": "The Supreme People's Procuratorate (SPP) is China's highest procuratorial authority, responsible for legal supervision of the entire criminal justice system including investigation, prosecution, trial, and sentence execution. The SPP publishes comprehensive annual procuratorial statistics covering the full spectrum of criminal cases handled by prosecutors at all levels — district, intermediate, and provincial — across China's 31 provincial jurisdictions. Its statistical releases include data on criminal arrests, prosecutions, non-prosecution decisions, public interest litigation, and supervision of public officials. The SPP also issues white papers on specific crime types, anti-corruption prosecution outcomes, juvenile crime, and environmental protection enforcement. Through its public prosecution database and annual work report presented to the National People's Congress, the SPP provides authoritative data on China's criminal justice trends, enforcement priorities, and rule-of-law development.", + "zh": "最高人民检察院(最高检)是中国最高检察机关,负责对侦查、起诉、审判和刑罚执行全过程进行法律监督。最高检每年发布覆盖全国31个省级行政区各级(基层、中级、高级)检察院办理刑事案件情况的全面检察统计数据,内容涵盖逮捕、提起公诉、不起诉决定、公益诉讼和对公职人员的监督。最高检还就特定犯罪类型、反腐败起诉结果、未成年人犯罪和环境保护执法发布白皮书。通过公开的检察数据库和每年向全国人民代表大会提交的工作报告,最高检提供关于中国刑事司法趋势、执法重点和法治建设的权威数据。" + }, + "website": "https://www.spp.gov.cn/", + "data_url": "https://www.spp.gov.cn/spp/jcdt/jcgzdt/index_1.shtml", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "governance", + "law", + "social", + "regulatory" + ], + "update_frequency": "annual", + "tags": [ + "最高人民检察院", + "spp", + "supreme-people's-procuratorate", + "检察统计", + "procuratorial-statistics", + "刑事起诉", + "criminal-prosecution", + "逮捕数据", + "arrest-data", + "不起诉", + "non-prosecution", + "公益诉讼", + "public-interest-litigation", + "反腐败", + "anti-corruption", + "职务犯罪", + "duty-crimes", + "未成年人犯罪", + "juvenile-crime", + "环境违法", + "environmental-enforcement", + "检察白皮书", + "procuratorial-white-paper", + "检察工作报告", + "procuratorial-work-report", + "刑事司法", + "criminal-justice", + "法律监督", + "legal-supervision", + "司法数据", + "judicial-data" + ], + "data_content": { + "en": [ + "Annual procuratorial statistics: case counts for arrests approved, prosecutions initiated, and non-prosecution decisions by crime category and provincial jurisdiction", + "Anti-corruption prosecution data: number of officials investigated and prosecuted for corruption, bribery, and dereliction of duty, including senior official cases", + "Criminal justice pipeline: data on cases transferred from public security to prosecution, prosecution rates, and conviction outcomes from court proceedings", + "Public interest litigation statistics: civil and administrative public interest cases filed by procuratorates in environmental, food safety, land, and state asset protection domains", + "Juvenile crime statistics: cases involving minors as offenders or victims, including trends in internet-related offenses and campus safety incidents", + "Environmental enforcement: prosecutions of illegal dumping, pollution discharge, poaching, and other environmental crimes under the Criminal Law", + "Financial and securities crimes: prosecution data on fraud, money laundering, securities manipulation, and corporate crime", + "Annual work reports to NPC: official annual reports to the National People's Congress summarizing prosecution outcomes, reform priorities, and rule-of-law indicators" + ], + "zh": [ + "年度检察统计:按犯罪类型和省级行政区分列的批准逮捕、提起公诉和不起诉案件数量", + "反腐败起诉数据:被侦查和起诉的腐败、受贿及渎职公职人员数量,包括高级别案件", + "刑事司法流程:公安机关移送审查起诉案件数、起诉率和法院审判结果", + "公益诉讼统计:检察机关在环境、食品安全、土地和国有资产保护领域提起的民事和行政公益诉讼案件", + "未成年人犯罪统计:未成年人涉案(作为加害人或被害人)案件,包括网络犯罪和校园安全事件趋势", + "环境违法执法:依据《刑法》对非法排污、非法狩猎等环境犯罪的起诉数据", + "金融和证券犯罪:欺诈、洗钱、证券操纵和企业犯罪起诉数据", + "向全国人大工作报告:关于起诉结果、改革重点和法治指标的年度官方报告" + ] + }, + "has_api": false, + "file_path": "china/governance/china-spp.json" + }, + { + "id": "china-stma", + "name": { + "en": "State Tobacco Monopoly Administration of China", + "zh": "国家烟草专卖局" + }, + "description": { + "en": "The State Tobacco Monopoly Administration (STMA) is the central government agency responsible for overseeing and regulating China's tobacco industry under a state monopoly system. China is the world's largest tobacco producer and consumer, and STMA controls all aspects of tobacco production, distribution, and sales in the country. It publishes annual and periodic statistics on cigarette output, tobacco leaf production by province, industry revenue, tax contributions, and export data. STMA data is essential for global tobacco market analysis, public health policy research, and understanding China's agricultural and fiscal landscape, as tobacco taxation contributes significantly to government revenue.", + "zh": "国家烟草专卖局(国家局)是负责监管中国烟草行业的中央政府机构,实行国家专卷制度。中国是全球最大的烟草生产国和消费国,国家烟草专卖局统一管理全国烟草的生产、流通和销售。局方发布卷烟产量、各省烟叶生产、行业营收、税利贡献及出口等年度和阶段性统计数据。国家烟草专卖局的数据对于全球烟草市场分析、公共卫生政策研究以及了解中国农业和财税格局至关重要,烟草税是政府财政收入的重要来源。" + }, + "website": "https://www.tobacco.gov.cn/", + "data_url": "https://www.tobacco.gov.cn/html/42/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "economics", + "industry", + "agriculture", + "governance" + ], + "update_frequency": "annual", + "tags": [ + "国家烟草专卖局", + "stma", + "state-tobacco-monopoly-administration", + "烟草行业", + "tobacco-industry", + "卷烟产量", + "cigarette-production", + "烟叶产量", + "tobacco-leaf-production", + "烟草税利", + "tobacco-tax-revenue", + "中国烟草", + "china-tobacco", + "烟草专卖", + "tobacco-monopoly", + "烟草出口", + "tobacco-export", + "行业统计", + "industry-statistics", + "公共卫生", + "public-health", + "农业生产", + "agricultural-production" + ], + "data_content": { + "en": [ + "Cigarette production: annual and periodic output volumes by major brand group and manufacturing enterprise", + "Tobacco leaf: provincial production data for flue-cured tobacco, covering major growing areas such as Yunnan, Guizhou, Henan, and Hunan", + "Industry revenue and taxes: total industry revenue, profit, and tobacco tax contributions to central and local government budgets", + "Sales and distribution: domestic cigarette sales volumes, retail sales by region, and wholesale distribution data", + "Export statistics: cigarette and tobacco leaf export volumes and values by destination country", + "Enterprise performance: operational data for major state-owned tobacco groups (e.g., China Tobacco Yunnan Industrial Co.)", + "Import data: imported tobacco leaf and cigarette volumes and declared values", + "Industry overview reports: annual industry development reports summarizing production, revenue, and policy priorities" + ], + "zh": [ + "卷烟产量:主要品牌集团和生产企业的年度及阶段性卷烟产量", + "烟叶生产:烤烟各省产量数据,涵盖云南、贵州、河南、湖南等主产区", + "行业税利:行业总营收、利润及烟草税对中央和地方财政的贡献", + "销售与流通:国内卷烟销量、各地区零售销售额和批发流通数据", + "出口统计:按目的地国家分类的卷烟和烟叶出口量及出口额", + "企业经营:主要国有烟草集团(如云南中烟工业有限责任公司)运营数据", + "进口数据:进口烟叶和卷烟数量及申报价值", + "行业综述报告:汇总生产、税利和政策重点的年度行业发展报告" + ] + }, + "has_api": false, + "file_path": "china/governance/china-stma.json" + }, + { + "id": "china-wenshu", + "name": { + "en": "China Judgments Online", + "zh": "中国裁判文书网" + }, + "description": { + "en": "China Judgments Online (Wenshu) is the official public disclosure platform for judicial documents operated by the Supreme People's Court of China. Launched in 2013, it is one of the world's largest databases of court judgments, hosting hundreds of millions of judicial documents from courts at all levels across China — from the Supreme People's Court down to district courts. The platform provides full-text access to civil, criminal, administrative, enforcement, and state compensation rulings, and is a critical resource for legal research, compliance due diligence, litigation analytics, and empirical legal studies. The database reflects China's judicial transparency initiative and is widely used by lawyers, academics, and corporate legal teams to research case precedents, litigation trends, and judicial interpretations.", + "zh": "中国裁判文书网是最高人民法院运营的司法文书官方公开平台。该平台于2013年上线,是全球最大的裁判文书数据库之一,收录了从最高人民法院到基层法院各级法院的数亿份司法文书。平台提供民事、刑事、行政、执行及国家赔偿裁判文书的全文访问,是法律研究、合规尽调、诉讼分析及实证法学研究的重要资源。该数据库是中国司法公开改革的重要体现,被律师、学者及企业法务广泛用于研究案例先例、诉讼趋势及司法解释。" + }, + "website": "https://wenshu.court.gov.cn", + "data_url": "https://wenshu.court.gov.cn/website/wenshu/181107ANFZ0BXSK4/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "legal", + "governance" + ], + "update_frequency": "daily", + "tags": [ + "裁判文书", + "court-judgment", + "司法文书", + "judicial-document", + "最高人民法院", + "supreme-people's-court", + "民事判决", + "civil-judgment", + "刑事判决", + "criminal-judgment", + "行政诉讼", + "administrative-litigation", + "法律研究", + "legal-research", + "案例数据库", + "case-database", + "司法透明", + "judicial-transparency", + "诉讼分析", + "litigation-analytics", + "合规尽调", + "compliance-due-diligence", + "法律科技", + "legal-tech", + "中国法院", + "chinese-courts", + "审判公开" + ], + "data_content": { + "en": [ + "Civil judgments: first, second, and retrial instance decisions on civil disputes including contracts, property, family, labor, and corporate matters", + "Criminal judgments: rulings in criminal cases at all court levels covering the full range of criminal offenses", + "Administrative judgments: decisions in cases where citizens or entities sue government bodies for administrative actions", + "Enforcement rulings: court orders and decisions related to the enforcement of judgments", + "State compensation rulings: decisions on claims for state compensation for wrongful government acts", + "Full-text search: keyword and structured search across hundreds of millions of judicial documents by case type, court level, region, and year", + "Judicial statistics: aggregate data on caseload trends, case types, and court-level distribution" + ], + "zh": [ + "民事判决:涵盖合同、物权、家事、劳动、公司等事项的一审、二审及再审裁判文书", + "刑事判决:各级法院对全部刑事罪名的刑事裁判文书", + "行政判决:公民或机构就行政行为起诉政府机关的裁判文书", + "执行裁定:与判决执行相关的法院命令及裁定", + "国家赔偿裁定:对政府违法行为提出国家赔偿请求的裁定", + "全文检索:通过案件类型、法院层级、地区、年份等对数亿份司法文书进行关键词和结构化检索", + "司法统计:案件数量趋势、案件类型及法院层级分布的汇总数据" + ] + }, + "has_api": false, + "file_path": "china/governance/china-wenshu.json" + }, + { + "id": "china-cflac", + "name": { + "en": "China Federation of Literary and Art Circles", + "zh": "中国文学艺术界联合会" + }, + "description": { + "en": "The China Federation of Literary and Art Circles (CFLAC) is the top-level national organization uniting Chinese artists, writers, filmmakers, musicians, and other creative professionals. Its official portal, China Art Net (中国文艺网), publishes statistics and reports on the development of China's cultural and creative industries, including performing arts attendance, film production data, literary output, fine arts exhibition records, and cultural infrastructure statistics. CFLAC provides the authoritative institutional perspective on trends in Chinese culture and the arts sector.", + "zh": "中国文学艺术界联合会(中国文联)是联合全国文艺界的最高全国性组织,涵盖作家、电影人、音乐家等各类文艺工作者。其官方门户《中国文艺网》发布中国文化创意产业发展统计报告,内容涵盖演艺观众人次、影视产量、文学创作成果、美术展览记录及文化基础设施数据。中国文联为了解中国文化与艺术行业趋势提供了权威的机构视角。" + }, + "website": "https://www.cflac.org.cn", + "data_url": "https://www.cflac.org.cn", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "update_frequency": "irregular", + "domains": [ + "culture", + "arts", + "media" + ], + "tags": [ + "china", + "cflac", + "中国文联", + "arts-culture", + "文学艺术", + "performing-arts", + "表演艺术", + "literature", + "文学", + "film", + "电影", + "music", + "creative-industry", + "文化产业" + ], + "data_content": { + "en": [ + "Cultural Industry Reports - Annual statistics on China's performing arts, visual arts, and literary output", + "Film and TV Production Data - Feature film production counts, box office reference data, and broadcasting statistics", + "Performing Arts Attendance - Audience numbers and venue statistics for theater, opera, dance, and music performances", + "Arts Exhibition Records - National and regional fine arts and photography exhibition statistics", + "Cultural Infrastructure Data - Statistics on cultural venues, art museums, libraries, and performance spaces" + ], + "zh": [ + "文化产业报告 - 中国演艺、视觉艺术及文学创作年度统计", + "影视制作数据 - 故事片产量、票房参考数据及播出统计", + "演艺观众数据 - 戏剧、歌剧、舞蹈、音乐演出的观众人次及场馆统计", + "美术展览记录 - 全国及地方美术、摄影展览统计", + "文化基础设施数据 - 文化场馆、美术馆、图书馆及演出场所统计" + ] + }, + "has_api": false, + "file_path": "china/governance/culture/china-cflac.json" + }, + { + "id": "china-cnaf", + "name": { + "en": "China National Arts Fund", + "zh": "国家艺术基金" + }, + "description": { + "en": "The China National Arts Fund (CNAF) is a public fund established by the State Council and administered by the Ministry of Culture and Tourism and the Ministry of Finance. It supports artistic creation, talent training, communication and dissemination, and international cultural exchange across stage performance, visual arts, literature, and mass culture. CNAF publishes annual funding project lists, grantee information, project outcomes, funding statistics by discipline and region, and evaluation reports, providing authoritative data on China's public arts funding, cultural industry development, and artistic output.", + "zh": "国家艺术基金(CNAF)是经国务院批准设立、由文化和旅游部和财政部共同管理的公益性基金,旨在资助艺术创作、人才培养、传播交流推广及对外文化交流,覆盖舞台艺术、美术、文学及群众文化等领域。基金公示年度立项项目名单、资助对象信息、项目成果、按艺术门类与地区分类的资助统计及评审报告,是中国公共艺术资助、文化事业发展和艺术创作产出的权威数据来源。" + }, + "website": "https://www.cnaf.cn", + "data_url": "https://www.cnaf.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "update_frequency": "annual", + "domains": [ + "culture", + "arts", + "public-funding", + "governance" + ], + "tags": [ + "china", + "cnaf", + "国家艺术基金", + "arts", + "艺术", + "culture", + "文化", + "public-funding", + "公益基金", + "stage-performance", + "舞台艺术", + "visual-arts", + "美术", + "cultural-industry", + "文化产业" + ], + "data_content": { + "en": [ + "Annual Funded Project Lists - Approved projects by year with grantee name, project title, and funding amount", + "Grantee Information - Disclosure of individual artists and institutions awarded funding with project categories", + "Funding Statistics - Total funding amount by discipline (stage, visual arts, literature), region, and project type", + "Project Outcomes - Performance tours, exhibitions, publications and talent cultivation results from funded projects", + "Evaluation Reports - Midterm and final project evaluation outcomes and public oversight records" + ], + "zh": [ + "年度立项项目名单 - 按年度公布的获批项目,含申报主体、项目名称及资助金额", + "资助对象信息 - 获资助的艺术家个人和机构及其项目类别公示", + "资助统计 - 按艺术门类(舞台、美术、文学)、地区及项目类型分类的资助总额", + "项目成果 - 获资助项目的巡演、展览、出版及人才培养成果", + "评审报告 - 项目中期及结项评审结果与公共监督记录" + ] + }, + "has_api": false, + "file_path": "china/governance/culture/china-cnaf.json" + }, + { + "id": "china-film-admin", + "name": { + "en": "National Film Administration of China", + "zh": "国家电影局" + }, + "description": { + "en": "The National Film Administration (NFA, 国家电影局) is the Chinese government agency under the Central Propaganda Department responsible for supervising and managing the country's film industry. It regulates film production, distribution, exhibition, and import/export, while publishing authoritative statistics on China's box office performance, cinema screen counts, film production output, and audience attendance. China is the world's second-largest film market, with annual box office revenues exceeding 40 billion yuan. The NFA releases monthly and annual box office data through its official channels, making it the primary source for tracking China's cinema industry trends, blockbuster performance, domestic vs. imported film market share, and national cinema infrastructure expansion.", + "zh": "国家电影局是中央宣传部主管的政府机构,负责对电影业进行监督管理。主要职能包括电影制作、发行、放映、进出口的监管,并发布权威的票房统计、银幕数量、电影产量及观影人次数据。中国是全球第二大电影市场,年票房规模超过400亿元。国家电影局通过官方渠道发布月度和年度票房数据,是追踪中国院线产业趋势、国产与进口影片市场占比及全国影院基础设施建设情况的首要数据来源。" + }, + "website": "https://www.chinafilm.gov.cn", + "data_url": "https://www.chinafilm.gov.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "culture", + "media", + "economics" + ], + "update_frequency": "monthly", + "tags": [ + "国家电影局", + "nfa", + "电影票房", + "box-office", + "院线数据", + "cinema-statistics", + "银幕数量", + "screen-count", + "电影产业", + "film-industry", + "国产电影", + "domestic-film", + "进口影片", + "imported-film", + "观影人次", + "admissions" + ], + "data_content": { + "en": [ + "Monthly and annual box office revenue - total national box office receipts, including domestic and imported film performance", + "Cinema screen count - nationwide number of screens, cinema locations, and digital projection equipment", + "Film production output - annual number of films approved for production, completed productions, and genre breakdowns", + "Import quota and performance - approved foreign film titles, release dates, and box office contribution of imported films", + "Audience attendance statistics - annual admissions data and per-capita attendance trends", + "Market share analysis - domestic vs. imported film revenue shares and top-grossing titles", + "Cinema infrastructure expansion - new cinema openings and regional distribution of exhibition venues", + "Annual China Film Industry Report - comprehensive review of market size, key titles, and policy developments" + ], + "zh": [ + "月度和年度票房数据 - 全国总票房及国产与进口影片的分项数据", + "院线银幕数量 - 全国银幕总数、影院数量及数字放映设备情况", + "电影产量 - 年度获批立项影片数量、完成产量及题材类型分布", + "进口影片配额与票房 - 批准上映的境外影片名单、上映日期及票房贡献", + "观影人次统计 - 年度观影人次及人均观影次数趋势", + "市场份额分析 - 国产与进口影片票房占比及年度票房冠军", + "院线基础设施扩张 - 新开影院数量及影院区域分布情况", + "中国电影产业年度报告 - 市场规模、重点影片及政策进展综合分析" + ] + }, + "has_api": false, + "file_path": "china/governance/culture/china-film-admin.json" + }, + { + "id": "china-national-museum", + "name": { + "en": "National Museum of China", + "zh": "中国国家博物馆" + }, + "description": { + "en": "The National Museum of China (NMC) is the premier national museum under the Ministry of Culture and Tourism, housing over 1.4 million artifacts spanning 5,000 years of Chinese history and culture. It publishes authoritative data on cultural relics, historical exhibitions, archaeological discoveries, and cultural heritage collections in China.", + "zh": "中国国家博物馆(国博)是文化和旅游部直属的最高历史文化艺术殿堂,馆藏逾140万件文物,涵盖5000年中国历史与文化,发布文物典藏、历史展览、考古发现及中国文化遗产的权威数据。" + }, + "website": "https://www.chnmuseum.cn", + "data_url": "https://www.chnmuseum.cn/zp/zpml/", + "api_url": null, + "country": "CN", + "domains": [ + "culture", + "history", + "heritage" + ], + "geographic_scope": "national", + "update_frequency": "irregular", + "tags": [ + "china", + "国家博物馆", + "national-museum", + "cultural-relics", + "文物", + "cultural-heritage", + "文化遗产", + "archaeology", + "考古", + "history", + "历史", + "collections", + "藏品", + "exhibitions", + "展览", + "art" + ], + "data_content": { + "en": [ + "Collection Catalog - Searchable database of over 1.4 million artifacts with high-resolution images and descriptions", + "Exhibition Records - Historical and current exhibition information and catalogs", + "Archaeological Reports - Data on major archaeological discoveries and excavations in China", + "Cultural Relic Categories - Classification and provenance data for bronzes, ceramics, calligraphy, paintings, and more", + "Digital Resources - Digitized collection items, 3D models, and virtual exhibitions" + ], + "zh": [ + "藏品目录 - 逾140万件文物的可检索数据库,含高清图像和文字说明", + "展览记录 - 历史和现有展览信息及目录", + "考古报告 - 中国重大考古发现和发掘数据", + "文物分类 - 青铜器、陶瓷、书法、绘画等文物的分类和来源数据", + "数字资源 - 数字化藏品、三维模型和虚拟展览" + ] + }, + "authority_level": "government", + "has_api": false, + "file_path": "china/governance/culture/china-national-museum.json" + }, + { + "id": "china-gas", + "name": { + "en": "General Administration of Sport of China", + "zh": "国家体育总局" + }, + "description": { + "en": "The General Administration of Sport of China (GAS) is the national government agency responsible for sports administration, sports industry regulation, and sports statistics. It publishes official data on national fitness participation, competitive sports performance, sports industry output, lottery revenues, and the development of sports infrastructure across China. Key publications include the National Fitness Development Statistics Bulletin and China Sports Industry Statistics.", + "zh": "国家体育总局是负责体育行政管理、体育产业监管和体育统计的国家政府机构,发布全民健身参与情况、竞技体育成绩、体育产业产出、体育彩票收入及全国体育设施建设等官方数据。主要出版物包括全民健身活动状况调查公报和中国体育产业统计年鉴。" + }, + "website": "https://www.sport.gov.cn/", + "data_url": "https://www.sport.gov.cn/n315/n330/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "sports", + "social", + "economics", + "statistics" + ], + "update_frequency": "annual", + "tags": [ + "体育总局", + "gas", + "sports-statistics", + "体育统计", + "national-fitness", + "全民健身", + "sports-industry", + "体育产业", + "competitive-sports", + "竞技体育", + "sports-lottery", + "体育彩票", + "sports-infrastructure", + "体育设施", + "china-sports", + "中国体育" + ], + "data_content": { + "en": [ + "National Fitness Activity Status Survey: participation rates, exercise frequency, preferred sports types by age and region", + "Sports industry statistics: total output value, added value, employment, and sub-sector breakdown of China's sports industry", + "Sports lottery sales data: annual and monthly revenue by lottery type (Zhucai and Ticai), regional distribution", + "Competitive sports achievement data: national games results, international competition medals, athlete registration statistics", + "Sports facility census: number and distribution of sports venues, per capita sports area by province", + "Mass sports development: sports clubs, sports associations, community fitness centers nationwide", + "China Sports Yearbook: comprehensive annual statistical compilation of all sports-related data" + ], + "zh": [ + "全民健身活动状况调查:各年龄段及地区的参与率、锻炼频率、偏好运动项目", + "体育产业统计:中国体育产业总产出、增加值、就业人数及各细分行业数据", + "体育彩票销售数据:竞彩和体彩各类彩票年度及月度收入、地区分布", + "竞技体育成绩数据:全国运动会成绩、国际赛事奖牌、运动员注册统计", + "体育场地普查:各省体育场馆数量与分布、人均体育用地面积", + "群众体育发展:全国体育俱乐部、体育协会、社区健身中心情况", + "中国体育年鉴:各类体育数据的综合年度统计汇编" + ] + }, + "has_api": false, + "file_path": "china/governance/sports/china-gas.json" + }, + { + "id": "china-cacm", + "name": { + "en": "Chinese Association of Chinese Medicine", + "zh": "中华中医药学会" + }, + "description": { + "en": "The Chinese Association of Chinese Medicine (CACM) is China's largest national academic organization in the field of traditional Chinese medicine (TCM). Founded in 1979, it publishes clinical guidelines, TCM research standards, disease classification standards, academic journals, and annual reports on the development of traditional Chinese medicine in China.", + "zh": "中华中医药学会(CACM)是中国最大的中医药全国性学术团体,成立于1979年。发布中医药临床指南、研究标准、疾病分类标准、学术期刊及中国中医药事业发展年度报告。" + }, + "website": "https://www.cacm.org.cn", + "data_url": "https://www.cacm.org.cn", + "api_url": null, + "country": "CN", + "domains": [ + "health", + "research", + "social" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "china", + "tcm", + "traditional-chinese-medicine" + ], + "data_content": { + "en": [ + "TCM Clinical Guidelines - Evidence-based guidelines for traditional Chinese medicine treatments", + "TCM Research Standards - Methodological standards for TCM clinical research", + "Disease Classification - TCM-specific disease nomenclature and classification standards", + "Annual Development Report - Statistical overview of TCM industry, hospitals, and practitioners", + "Academic Journals - Peer-reviewed publications on TCM clinical practice and research", + "TCM Education Statistics - Data on TCM universities, graduates, and training programs" + ], + "zh": [ + "中医临床指南 - 中医药治疗方案的循证指南", + "中医科研标准 - 中医临床研究方法学标准", + "疾病分类标准 - 中医特有疾病命名与分类标准", + "年度发展报告 - 中医药行业、医院及从业人员统计概况", + "学术期刊 - 中医药临床实践与研究同行评审出版物", + "中医教育统计 - 中医院校、毕业生及培训项目数据" + ] + }, + "authority_level": "research", + "has_api": false, + "file_path": "china/health/china-cacm.json" + }, + { + "id": "china-cacms", + "name": { + "en": "China Academy of Chinese Medical Sciences", + "zh": "中国中医科学院" + }, + "description": { + "en": "The China Academy of Chinese Medical Sciences (CACMS) is China's highest academic and research institution dedicated to traditional Chinese medicine (TCM). Established in 1955, CACMS operates research institutes covering basic TCM theory, clinical medicine, acupuncture-moxibustion, Chinese materia medica, and TCM history. CACMS publishes research findings on TCM treatment efficacy, Chinese herb pharmacology, and integrative medicine. It also hosts the China TCM Data Center which maintains databases on medicinal plant resources, classical formulas, clinical trial data, and TCM literature, serving as the authoritative repository for TCM scientific knowledge in China.", + "zh": "中国中医科学院是中国最高级别的中医药学术与研究机构,成立于1955年。院下设多个研究所,涵盖中医基础理论、临床医学、针灸推拿、中药学和中医史学。院内发布中医疗效、中药药理及中西医结合的研究成果。院内还设有中国中医药数据中心,维护药用植物资源、经典方剂、临床试验数据及中医药文献数据库,是中国中医药科学知识的权威存储库。" + }, + "website": "https://www.cacms.ac.cn", + "data_url": "https://www.cacms.ac.cn/index.html", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "health", + "traditional-medicine", + "pharmacology" + ], + "update_frequency": "irregular", + "tags": [ + "中国中医科学院", + "cacms", + "traditional-chinese-medicine", + "中医", + "tcm", + "acupuncture", + "针灸", + "chinese-materia-medica", + "中药", + "herbal-medicine", + "草药", + "integrative-medicine", + "中西医结合", + "medicinal-plants", + "药用植物", + "classical-formulas", + "经典方剂", + "tcm-research", + "中医研究", + "pharmacology", + "药理学" + ], + "data_content": { + "en": [ + "TCM Clinical Research Data - Results from clinical trials on traditional Chinese medicine treatments for various conditions", + "Chinese Materia Medica Database - Comprehensive data on Chinese medicinal herbs including composition, efficacy, and safety", + "Classical Formula Repository - Systematic documentation of traditional prescription formulas and their clinical applications", + "Medicinal Plant Resource Data - Distribution, species classification, and resource assessment of medicinal plants in China", + "Acupuncture Research Findings - Evidence-based research publications on acupuncture and moxibustion treatments", + "TCM Literature Database - Digitized classical texts and modern research papers on traditional Chinese medicine", + "Annual TCM Industry Report - Statistical overview of the TCM research, production, and clinical application landscape" + ], + "zh": [ + "中医临床研究数据 - 中医药治疗各类疾病的临床试验结果", + "中药资源数据库 - 中药材成分、功效及安全性综合数据", + "经典方剂库 - 传统处方的系统文献整理及临床应用记录", + "药用植物资源数据 - 中国药用植物的分布、种类及资源评估", + "针灸研究成果 - 针灸及艾灸治疗的循证医学研究成果", + "中医文献数据库 - 中医经典古籍数字化文本及现代研究论文", + "中医药产业年度报告 - 中医药研究、生产及临床应用发展概况统计" + ] + }, + "has_api": false, + "file_path": "china/health/china-cacms.json" + }, + { + "id": "china-cams", + "name": { + "en": "Chinese Academy of Medical Sciences (CAMS)", + "zh": "中国医学科学院" + }, + "description": { + "en": "The Chinese Academy of Medical Sciences (CAMS), together with its affiliated Peking Union Medical College (PUMC), is China's premier national medical research institution, established in 1956 and headquartered in Beijing. CAMS oversees 18 research institutes, 6 hospitals, and multiple national key laboratories covering clinical medicine, basic medical research, biomedical engineering, pharmacology, oncology, and infectious disease. As a national-level authority, CAMS produces authoritative data on medical research outputs, drug development pipelines, disease burden studies, clinical trial registrations, genomic research, and population health surveys. CAMS hosts the Chinese Health Statistics Yearbook data and major disease surveillance programs, providing essential datasets for public health policy, pharmaceutical research, and clinical practice.", + "zh": "中国医学科学院(CAMS)是中国最高医学研究机构,与北京协和医学院实行院校合一管理体制,成立于1956年,总部位于北京。中国医学科学院下设18个研究所、6所附属医院和多个国家重点实验室,覆盖临床医学、基础医学、生物医学工程、药理学、肿瘤学和传染病学等领域。作为国家级机构,中国医学科学院产出权威的医学研究成果数据、药物研发管线、疾病负担研究、临床试验注册、基因组研究及人群健康调查数据。院校还承担《中国卫生统计年鉴》数据汇编及重要疾病监测项目,为公共卫生政策、医药研究和临床实践提供核心数据集。" + }, + "website": "https://www.cams.cn", + "data_url": "https://www.cams.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "health", + "research", + "pharmaceuticals" + ], + "update_frequency": "irregular", + "tags": [ + "中国医学科学院", + "cams", + "协和医学院", + "pumc", + "医学研究", + "medical-research", + "药物研发", + "drug-development", + "临床试验", + "clinical-trials", + "肿瘤学", + "oncology", + "传染病", + "infectious-disease", + "基因组学", + "genomics", + "公共卫生", + "public-health", + "疾病监测", + "disease-surveillance", + "国家重点实验室", + "national-key-laboratory", + "医学数据", + "medical-data" + ], + "data_content": { + "en": [ + "Medical research publications and datasets from 18 research institutes covering all major biomedical fields", + "Oncology data: cancer incidence, mortality, survival rates from affiliated cancer hospitals and national tumor registries", + "Infectious disease research: epidemiological data, pathogen surveillance, vaccine efficacy studies", + "Drug development pipeline: clinical trial registration data, pharmacological research, drug safety monitoring", + "Genomic and proteomics research data from national platforms affiliated with CAMS", + "Population health surveys: chronic disease prevalence, risk factor surveillance, health behavior studies", + "Medical device and biomedical engineering research data", + "Disease burden studies: DALYs, mortality statistics, disability-adjusted life year analyses", + "Health technology assessment reports supporting national essential medicine list updates", + "Chinese Pharmacopoeia data and quality standards for pharmaceuticals" + ], + "zh": [ + "18个研究所涵盖所有主要生物医学领域的科研成果和数据集", + "肿瘤数据:来自附属肿瘤医院和全国肿瘤登记处的癌症发病率、死亡率和生存率", + "传染病研究:流行病学数据、病原体监测、疫苗效力研究", + "药物研发管线:临床试验注册数据、药理学研究、药物安全监测", + "与中国医学科学院相关联的国家平台的基因组和蛋白质组研究数据", + "人群健康调查:慢性病患病率、危险因素监测、健康行为研究", + "医疗器械和生物医学工程研究数据", + "疾病负担研究:伤残调整寿命年分析、死亡率统计", + "支持国家基本药物目录更新的卫生技术评估报告", + "《中华人民共和国药典》数据及药品质量标准" + ] + }, + "has_api": false, + "file_path": "china/health/china-cams.json" + }, + { + "id": "china-catcm", + "name": { + "en": "China Association of Traditional Chinese Medicine", + "zh": "中国中药协会" + }, + "description": { + "en": "The China Association of Traditional Chinese Medicine (CATCM) is the national industry organization representing traditional Chinese medicine (TCM) enterprises, including herbal medicine producers, processors, and distributors. CATCM publishes authoritative market statistics on TCM herb production volumes, wholesale prices of medicinal materials, industry output value, trade data, and market trend analyses. It is the primary source for supply-and-demand data on Chinese herbal medicine markets and a key reference for TCM industry policy and standardization.", + "zh": "中国中药协会(中药协)是代表中药企业(含中药材生产、加工、流通企业)的全国性行业组织。协会发布权威的中药材产量、中药材市场批发价格、行业产值、进出口贸易数据及市场趋势分析,是了解中药材供需行情和中药产业政策、标准化工作的主要数据来源。" + }, + "website": "https://www.catcm.org.cn", + "data_url": "https://www.catcm.org.cn", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "update_frequency": "monthly", + "domains": [ + "health", + "pharmaceuticals", + "agriculture", + "trade" + ], + "tags": [ + "china", + "catcm", + "中药协", + "traditional-chinese-medicine", + "中医药", + "herbal-medicine", + "中药材", + "tcm", + "medicinal-herbs", + "药材价格", + "herb-prices", + "中药产业", + "pharmaceuticals", + "market-data" + ], + "data_content": { + "en": [ + "TCM Herb Market Prices - Wholesale price indices for hundreds of traditional Chinese medicinal herbs", + "Industry Output Statistics - Annual output value, production volumes, and enterprise data for TCM industry", + "Import/Export Trade Data - TCM herb and product trade statistics with major partner countries", + "Market Trend Reports - Periodic analyses of supply-demand dynamics in Chinese herbal medicine markets", + "Policy and Standardization Documents - Industry standards, quality specifications, and regulatory guidance for TCM materials" + ], + "zh": [ + "中药材市场价格 - 数百种中药材批发价格指数", + "行业产值统计 - 中药行业年度产值、产量及企业数据", + "进出口贸易数据 - 中药材及中药产品与主要贸易伙伴的贸易统计", + "市场趋势报告 - 中药材市场供需动态的阶段性分析", + "政策与标准化文件 - 中药材行业标准、质量规范及监管指引" + ] + }, + "has_api": false, + "file_path": "china/health/china-catcm.json" + }, + { + "id": "china-cdc", + "name": { + "en": "Chinese Center for Disease Control and Prevention", + "zh": "中国疾病预防控制中心" + }, + "description": { + "en": "The Chinese Center for Disease Control and Prevention (China CDC) is the national public health institute responsible for disease prevention, surveillance, and health emergency response. It publishes infectious disease surveillance reports, chronic disease data, vaccination coverage statistics, environmental health assessments, and public health emergency bulletins. Some deep-link sub-sections (e.g. /jkzt/) have been reorganized; use /gzdt/ for published work announcements or en.chinacdc.cn for English portal.", + "zh": "中国疾病预防控制中心是国家级疾病预防控制与公共卫生技术管理和服务机构,负责疾病预防控制、公共卫生监测和卫生应急处置。发布传染病疫情监测报告、慢性病数据、疫苗接种统计、环境卫生评估及突发公共卫生事件公报。" + }, + "website": "https://www.chinacdc.cn", + "data_url": "https://www.chinacdc.cn/gzdt/", + "api_url": null, + "country": "CN", + "domains": [ + "health", + "epidemiology", + "public-health" + ], + "geographic_scope": "national", + "update_frequency": "weekly", + "tags": [ + "china", + "cdc", + "disease-control", + "epidemiology", + "infectious-disease", + "public-health", + "vaccination", + "surveillance", + "疾控中心", + "传染病", + "疫情监测", + "公共卫生", + "疫苗接种", + "慢性病" + ], + "data_content": { + "en": [ + "Infectious Disease Surveillance - Weekly and monthly reports on notifiable infectious diseases", + "Chronic Disease Data - Prevalence and incidence of major chronic diseases", + "Vaccination Coverage - National immunization program statistics and coverage rates", + "Environmental Health - Drinking water quality, air pollution health impact assessments", + "Health Emergency Reports - Public health emergency response and outbreak investigation reports", + "Disease Burden Studies - National disease burden and risk factor analysis", + "Nutrition and Food Safety - National nutrition surveys and food safety monitoring" + ], + "zh": [ + "传染病疫情监测 - 法定传染病周报和月报", + "慢性病数据 - 主要慢性病患病率和发病率", + "疫苗接种覆盖率 - 国家免疫规划统计和接种率", + "环境卫生 - 饮用水水质监测、空气污染健康影响评估", + "卫生应急报告 - 突发公共卫生事件应急处置和疫情调查报告", + "疾病负担研究 - 全国疾病负担和危险因素分析", + "营养与食品安全 - 全国营养调查和食品安全监测" + ] + }, + "authority_level": "government", + "has_api": false, + "file_path": "china/health/china-cdc.json" + }, + { + "id": "china-chinadrugtrials", + "name": { + "en": "China Drug Clinical Trials Registration and Information Disclosure Platform", + "zh": "药物临床试验登记与信息公示平台" + }, + "description": { + "en": "The China Drug Clinical Trials Registration and Information Disclosure Platform is operated by the Center for Drug Evaluation (CDE) under the National Medical Products Administration (NMPA). It serves as China's official registry for drug clinical trials, providing public access to trial registration data, study protocols, and results. The platform covers all phases of clinical trials conducted in China, including trials for chemical drugs, biological products, and traditional Chinese medicines. Researchers, pharmaceutical companies, and the public can search for ongoing and completed trials, review study designs, and access outcome information. The platform plays a critical role in promoting transparency and accountability in China's pharmaceutical clinical research ecosystem.", + "zh": "药物临床试验登记与信息公示平台由国家药品监督管理局药品审评中心(CDE)运营,是中国药物临床试验的官方登记注册平台,提供试验登记数据、研究方案和结果的公开访问。平台覆盖在中国开展的所有阶段临床试验,包括化学药品、生物制品和中药的临床试验。研究人员、制药企业和公众可以检索正在进行和已完成的临床试验,审查研究设计并获取结果信息。该平台在促进中国医药临床研究生态系统的透明度和问责制方面发挥着关键作用。" + }, + "website": "https://www.chinadrugtrials.org.cn", + "data_url": "https://www.chinadrugtrials.org.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "health", + "pharmaceuticals" + ], + "update_frequency": "daily", + "tags": [ + "临床试验", + "clinical-trials", + "药物", + "drug", + "cde", + "药品审评", + "drug-evaluation", + "nmpa", + "国家药监局", + "pharmaceutical", + "制药", + "试验登记", + "trial-registration", + "生物制品", + "biological-products", + "中药", + "traditional-chinese-medicine", + "研究方案", + "study-protocol", + "药物研发", + "drug-development" + ], + "data_content": { + "en": [ + "Clinical trial registration records: trial ID, sponsor, study title, therapeutic area, drug name, trial phase, and registration date", + "Study protocol details: study design, objectives, endpoints, inclusion/exclusion criteria, sample size, and treatment arms", + "Trial status tracking: recruitment status, start and completion dates, and participating clinical sites across China", + "Drug information: investigational drug details, dosage forms, routes of administration, and indications under study", + "Sponsor and investigator data: sponsoring organizations, principal investigators, and ethics committee approval information", + "Trial results summaries: outcome data and results for completed clinical trials when available" + ], + "zh": [ + "临床试验登记记录:试验编号、申办者、研究题目、治疗领域、药物名称、试验分期及登记日期", + "研究方案详情:研究设计、目的、终点指标、入选/排除标准、样本量及治疗组别", + "试验状态跟踪:招募状态、开始与完成日期及全国参与临床试验机构", + "药物信息:在研药物详情、剂型、给药途径及研究适应症", + "申办者与研究者数据:申办机构、主要研究者及伦理委员会批件信息", + "试验结果摘要:已完成临床试验的结局数据和结果信息" + ] + }, + "has_api": false, + "file_path": "china/health/china-chinadrugtrials.json" + }, + { + "id": "china-class", + "name": { + "en": "China Longitudinal Aging Social Survey (CLASS)", + "zh": "中国老年社会追踪调查(CLASS)" + }, + "description": { + "en": "The China Longitudinal Aging Social Survey (CLASS) is a nationally representative longitudinal survey of Chinese elderly population aged 60 and above, conducted by the China Survey and Data Center at Renmin University of China. Launched in 2012, CLASS follows over 11,000 elderly individuals across 28 provinces and collects comprehensive data on physical and mental health, economic status, social participation, intergenerational relationships, and eldercare needs. CLASS is China's leading longitudinal aging dataset and is freely accessible to academic researchers, providing critical evidence for aging policy and social welfare research.", + "zh": "中国老年社会追踪调查(CLASS)是由中国人民大学中国调查与数据中心(CSDC)负责执行的全国性老年人追踪调查,覆盖28个省份60岁及以上老年人11000余人。CLASS自2012年启动,追踪老年群体的身心健康、经济状况、社会参与、代际关系和养老需求等综合数据,是中国最权威的老龄化追踪数据集,向学术研究者免费开放,为老龄化政策和社会福利研究提供关键依据。" + }, + "website": "http://class.ruc.edu.cn/", + "data_url": "http://class.ruc.edu.cn/", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "health", + "social", + "demographics" + ], + "update_frequency": "irregular", + "tags": [ + "老年社会调查", + "class", + "aging", + "老龄化", + "elderly", + "老年人", + "longitudinal", + "追踪调查", + "人民大学", + "renmin-university", + "eldercare", + "养老", + "老年健康", + "elderly-health", + "mental-health", + "心理健康", + "social-participation", + "社会参与", + "intergenerational", + "代际关系", + "pension", + "养老金", + "long-term-care", + "长期照护", + "cognitive-decline", + "认知衰退", + "retirement", + "退休", + "老年政策", + "aging-policy" + ], + "data_content": { + "en": [ + "Physical health: chronic disease status, functional limitations, disability, Activities of Daily Living (ADL)", + "Mental health: depression screening, cognitive function tests, subjective well-being", + "Economic status: pension income, other income sources, asset ownership, economic hardship", + "Social participation: community activities, volunteering, social networks, club membership", + "Intergenerational support: financial transfers from/to children, emotional support, co-residence patterns", + "Care needs and provision: formal and informal caregiving arrangements, care preferences", + "Healthcare utilization: hospital visits, medication use, traditional Chinese medicine", + "Living arrangements: co-residence with children, household composition, housing conditions", + "Life satisfaction and quality of life measures for the elderly population", + "Survey waves: 2012, 2014, 2016, 2018 covering 28 provinces (11,511 elderly respondents in 2012)" + ], + "zh": [ + "身体健康:慢性病状况、功能限制、残障、日常生活活动能力(ADL)", + "心理健康:抑郁筛查、认知功能测试、主观幸福感", + "经济状况:养老金收入、其他收入来源、资产拥有、经济困难", + "社会参与:社区活动、志愿服务、社会网络、社团会员资格", + "代际支持:与子女间的经济转移、情感支持、同住模式", + "照护需求与提供:正式与非正式照护安排、照护偏好", + "医疗卫生利用:就医情况、用药状况、中医服务使用", + "居住安排:与子女同住、家庭成员构成、住房条件", + "老年人生活满意度和生活质量测量", + "调查波次:2012、2014、2016、2018年,覆盖28个省份(2012年首波调查11511名老年受访者)" + ] + }, + "has_api": false, + "file_path": "china/health/china-class.json" + }, + { + "id": "china-cpdrc", + "name": { + "en": "China Population and Development Research Center", + "zh": "中国人口与发展研究中心" + }, + "description": { + "en": "The China Population and Development Research Center (CPDRC) is a national public welfare research institution under the National Health Commission (NHC), specializing in population science, demographic research, and public health data. CPDRC conducts China's national fertility surveys, tracks population aging trends, monitors reproductive health indicators, and produces demographic projections. Key outputs include the China Population and Development Research Report, national fertility status surveys, population aging studies, and data on contraception, maternal and child health, and family planning policy outcomes. CPDRC is China's primary institution for demographic intelligence, providing the empirical foundation for population policy decisions including the transition from one-child to three-child policies.", + "zh": "中国人口与发展研究中心(中国人发中心)是国家卫生健康委员会直属的国家级公益性研究机构,专注于人口科学、人口学研究和公共卫生数据。中国人发中心承担全国生育状况抽样调查、人口老龄化趋势追踪、生殖健康指标监测及人口预测工作。主要成果包括《中国人口与发展研究》报告、全国生育调查数据、人口老龄化研究成果以及避孕、妇幼保健和生育政策效果评估数据。中国人发中心是中国人口情报的核心机构,为人口政策决策(包括从独生子女到三孩政策的转变)提供实证依据。" + }, + "website": "https://www.cpdrc.org.cn", + "data_url": "https://www.cpdrc.org.cn/sjzw/", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "demographics", + "health", + "social", + "statistics" + ], + "update_frequency": "annual", + "tags": [ + "中国人口", + "china-population", + "人口与发展", + "population-and-development", + "生育率", + "fertility-rate", + "生育调查", + "fertility-survey", + "人口老龄化", + "population-aging", + "生育政策", + "fertility-policy", + "三孩政策", + "three-child-policy", + "计划生育", + "family-planning", + "人口预测", + "population-projection", + "妇幼健康", + "maternal-and-child-health", + "避孕", + "contraception", + "出生率", + "birth-rate", + "人口结构", + "population-structure", + "卫生健康委", + "nhc" + ], + "data_content": { + "en": [ + "National fertility status surveys: comprehensive national surveys on fertility intentions, birth rates, and reproductive behavior by age, region, and socioeconomic status", + "Fertility rate statistics: total fertility rate (TFR), age-specific fertility rates, and birth rate trends by province", + "Population aging data: proportion of elderly population, dependency ratios, aging projections by region", + "Contraception statistics: modern contraceptive prevalence rates, method distribution, and family planning service coverage", + "Maternal and child health: maternal mortality rates, infant mortality, prenatal care coverage, and breastfeeding statistics", + "Population projections: medium and long-term demographic forecasts by age structure, urbanization, and migration", + "Reproductive health indicators: infertility rates, assisted reproduction statistics, and reproductive disease prevalence", + "Policy evaluation research: impact assessment of fertility policy changes (one-child, two-child, three-child) on birth rates and population structure" + ], + "zh": [ + "全国生育状况抽样调查:按年龄、地区及社会经济状况分类的生育意愿、出生率及生育行为综合调查", + "生育率统计:总和生育率(TFR)、年龄别生育率及各省出生率趋势", + "人口老龄化数据:老年人口比例、抚养比及各地区老龄化预测", + "避孕统计:现代避孕方法使用率、方法分布及计划生育服务覆盖率", + "妇幼健康:孕产妇死亡率、婴儿死亡率、产前检查覆盖率及母乳喂养统计", + "人口预测:按年龄结构、城镇化程度及流动人口的中长期人口预测", + "生殖健康指标:不孕不育率、辅助生殖技术统计及生殖系统疾病患病率", + "政策评估研究:生育政策变化(独生子女、二孩、三孩政策)对出生率和人口结构的影响评估" + ] + }, + "has_api": false, + "file_path": "china/health/china-cpdrc.json" + }, + { + "id": "china-cpharma", + "name": { + "en": "Chinese Pharmaceutical Association", + "zh": "中国药学会" + }, + "description": { + "en": "The Chinese Pharmaceutical Association (CPA), founded in 1907, is China's oldest and most authoritative national pharmaceutical academic organization. It publishes pharmaceutical science research, drug safety reports, clinical pharmacy standards, pharmaceutical industry development data, and continuing education materials for pharmacists.", + "zh": "中国药学会成立于1907年,是中国历史最悠久、最具权威的全国性药学学术团体。发布药学研究成果、药品安全报告、临床药学标准、医药产业发展数据及药师继续教育资料。" + }, + "website": "https://www.cpa.org.cn", + "data_url": "https://www.cpa.org.cn/?do=class&classid=250", + "api_url": null, + "authority_level": "research", + "country": "CN", + "domains": [ + "health", + "pharmaceuticals", + "research" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "pharmaceutical-association", + "drug-safety", + "clinical-pharmacy", + "pharmacy-standards", + "cpa", + "中国药学会", + "药学", + "药品安全", + "临床药学", + "医药产业", + "pharmacology", + "china" + ], + "data_content": { + "en": [ + "Pharmaceutical science research publications", + "Drug safety and pharmacovigilance reports", + "Clinical pharmacy practice guidelines and standards", + "Pharmaceutical industry development statistics", + "Pharmacist education and certification data", + "Drug utilization and rational use of medicines data", + "Traditional Chinese medicine pharmacology research" + ], + "zh": [ + "药学科学研究出版物", + "药品安全和药物警戒报告", + "临床药学实践指南和标准", + "医药产业发展统计数据", + "药师教育和执业资格数据", + "药物使用和合理用药数据", + "中药药理学研究" + ] + }, + "has_api": false, + "file_path": "china/health/china-cpharma.json" + }, + { + "id": "china-cpma", + "name": { + "en": "Chinese Preventive Medicine Association", + "zh": "中华预防医学会" + }, + "description": { + "en": "The Chinese Preventive Medicine Association (CPMA) is China's largest national-level academic association in the field of public health and preventive medicine, established in 1987 under the supervision of the National Health Commission. CPMA unites over 400,000 public health professionals and 89 professional branches covering epidemiology, occupational health, nutrition, environmental health, school health, and health statistics. The association publishes key academic journals, organizes national public health surveillance research, and issues clinical guidelines and technical standards for disease prevention and control. CPMA plays a central role in translating evidence-based public health research into national prevention policies, vaccination programs, and non-communicable disease intervention strategies. It coordinates with WHO and international public health organizations on global health initiatives.", + "zh": "中华预防医学会是中国最大的公共卫生和预防医学领域全国性学术团体,1987年在国家卫生健康委员会主管下成立,拥有40余万名公共卫生专业人员和89个专业分会,涵盖流行病学、职业卫生、营养、环境卫生、学校卫生和卫生统计等领域。学会出版重要学术期刊,组织全国公共卫生监测研究,发布疾病预防控制临床指南和技术规范。中华预防医学会在将循证公共卫生研究转化为国家预防政策、疫苗接种规划和慢性病干预策略方面发挥核心作用,并与世界卫生组织及国际公共卫生组织协调开展全球卫生行动。" + }, + "website": "https://www.cpma.org.cn", + "data_url": "https://www.cpma.org.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "health", + "science", + "social" + ], + "update_frequency": "irregular", + "tags": [ + "中华预防医学会", + "cpma", + "chinese-preventive-medicine-association", + "公共卫生", + "public-health", + "预防医学", + "preventive-medicine", + "流行病学", + "epidemiology", + "职业卫生", + "occupational-health", + "营养学", + "nutrition", + "环境卫生", + "environmental-health", + "学校卫生", + "school-health", + "卫生统计", + "health-statistics", + "疾病预防", + "disease-prevention", + "疫苗接种", + "vaccination", + "慢性病", + "non-communicable-disease", + "ncd", + "卫生政策", + "health-policy", + "全球卫生", + "global-health", + "who", + "世界卫生组织" + ], + "data_content": { + "en": [ + "Epidemiological surveillance data: national disease burden estimates, outbreak investigation reports, and long-term epidemiological cohort study data for major communicable and non-communicable diseases", + "Public health guidelines and standards: evidence-based clinical practice guidelines for disease prevention, technical standards for health examination, and occupational health assessment criteria", + "Vaccination program data: immunization schedule recommendations, vaccine safety monitoring reports, and vaccination coverage surveys across Chinese provinces", + "Nutrition and dietary surveys: national nutrition status data, dietary pattern analyses, micronutrient deficiency prevalence, and dietary guideline development data for Chinese populations", + "Occupational health data: work-related disease statistics, occupational exposure limit standards, workplace health hazard assessments, and industrial hygiene monitoring data", + "Environmental health research: environmental exposure assessment studies, environmental epidemiology data for air, water, and soil pollution impacts on human health", + "School and child health: student physical fitness surveillance, school environment health assessments, adolescent health monitoring, and eye health data", + "Academic publications: peer-reviewed research from Chinese Journal of Preventive Medicine and 10+ CPMA-affiliated journals covering all major public health domains" + ], + "zh": [ + "流行病学监测数据:重大传染病和慢性病的全国疾病负担估算、暴发事件调查报告和长期流行病学队列研究数据", + "公共卫生指南和标准:疾病预防循证临床实践指南、健康检查技术规范和职业健康评估标准", + "疫苗接种规划数据:免疫接种时间表建议、疫苗安全监测报告和全国各省接种率调查", + "营养和膳食调查:全国营养状况数据、膳食结构分析、微量营养素缺乏流行率和中国居民膳食指南制定数据", + "职业卫生数据:职业病统计、职业接触限值标准、工作场所危害评估和工业卫生监测数据", + "环境卫生研究:环境暴露评估研究、空气、水和土壤污染对人体健康影响的环境流行病学数据", + "学校和儿童健康:学生体质监测、学校环境卫生评估、青少年健康监测和视力健康数据", + "学术出版物:《中华预防医学杂志》及10余种中华预防医学会下属期刊的所有公共卫生领域同行评审研究" + ] + }, + "has_api": false, + "file_path": "china/health/china-cpma.json" + }, + { + "id": "china-hospital-association", + "name": { + "en": "Chinese Hospital Association", + "zh": "中国医院协会" + }, + "description": { + "en": "The Chinese Hospital Association (CHA) is the national industry organization representing China's hospital sector, with over 30,000 member institutions. CHA publishes annual hospital industry reports, quality assessment data, hospital management standards, and patient safety statistics. Its data covers hospital bed capacity, service volumes, medical quality indicators, hospital grading evaluations, and healthcare workforce statistics. CHA is a key source for understanding the scale, structure, and performance of China's inpatient healthcare system, which includes over 35,000 hospitals providing services to the world's largest patient population.", + "zh": "中国医院协会是代表中国医院行业的全国性行业组织,会员单位逾3万家。协会发布年度医院行业发展报告、质量评估数据、医院管理标准和患者安全统计,数据涵盖医院床位、服务量、医疗质量指标、医院等级评审及卫生人力资源统计,是了解中国住院医疗体系规模、结构和绩效的重要数据来源。" + }, + "website": "https://www.cha.org.cn", + "data_url": "https://www.cha.org.cn", + "api_url": null, + "country": "CN", + "domains": [ + "health", + "healthcare", + "industry" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "china", + "hospital", + "医院", + "中国医院协会", + "healthcare", + "医疗", + "hospital-management", + "医院管理", + "patient-safety", + "患者安全", + "hospital-quality", + "医疗质量", + "health-workforce", + "卫生人力", + "inpatient", + "住院服务" + ], + "data_content": { + "en": [ + "China Hospital Industry Annual Report - Comprehensive annual statistics on China's hospital sector", + "Hospital Bed Capacity Data - National and provincial data on hospital bed numbers by type and level", + "Medical Quality Indicators - Clinical quality metrics, surgical outcomes, and safety event data", + "Hospital Grading Evaluation Results - Assessment scores for tertiary and secondary hospitals", + "Patient Service Volume Statistics - Outpatient visits, inpatient admissions, and surgical case numbers", + "Healthcare Workforce Data - Doctors, nurses, and allied health professionals in hospital settings", + "Hospital Management Standards - Guidelines and benchmarks for hospital operations and governance" + ], + "zh": [ + "中国医院行业年度报告 - 中国医院行业全面年度统计数据", + "医院床位数据 - 按类型和等级分类的全国及省级医院床位数量", + "医疗质量指标 - 临床质量指标、手术结果和安全事件数据", + "医院等级评审结果 - 三级和二级医院评审分数", + "患者服务量统计 - 门诊量、住院人次和手术例数", + "卫生人力数据 - 医院中的医生、护士和医技人员统计", + "医院管理标准 - 医院运营和管理指南与基准" + ] + }, + "authority_level": "other", + "has_api": false, + "file_path": "china/health/china-hospital-association.json" + }, + { + "id": "china-medical-association", + "name": { + "en": "Chinese Medical Association", + "zh": "中华医学会" + }, + "description": { + "en": "The Chinese Medical Association (CMA), founded in 1915, is China's largest and most authoritative national medical academic organization. With 89 specialty branches and over 600,000 members, it publishes 150+ peer-reviewed medical journals, clinical practice guidelines, disease epidemiology reports, and public health data covering all major medical specialties.", + "zh": "中华医学会成立于1915年,是中国最大、最具权威的全国性医学学术团体,拥有89个专科分会和60余万会员。出版150余种医学期刊,发布各主要医学专科的临床诊疗指南、疾病流行病学报告和公共卫生数据。" + }, + "website": "https://www.cma.org.cn", + "data_url": "https://www.cma.org.cn/col/col5601/index.html", + "api_url": null, + "authority_level": "research", + "country": "CN", + "domains": [ + "health", + "research" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "medical-association", + "clinical-guidelines", + "medical-journals", + "public-health", + "cma", + "中华医学会", + "临床指南", + "医学期刊", + "医学教育", + "disease-epidemiology", + "china" + ], + "data_content": { + "en": [ + "Clinical practice guidelines across 89 medical specialties", + "Peer-reviewed medical journal publications (150+ titles)", + "Disease epidemiology and public health reports", + "Medical education and training standards", + "Healthcare quality and patient safety data", + "Medical technology and innovation reports", + "National continuing medical education program data" + ], + "zh": [ + "89个医学专科临床诊疗指南", + "同行评审医学期刊出版物(150余种)", + "疾病流行病学和公共卫生报告", + "医学教育和培训标准", + "医疗质量和患者安全数据", + "医疗技术和创新报告", + "全国继续医学教育项目数据" + ] + }, + "has_api": false, + "file_path": "china/health/china-medical-association.json" + }, + { + "id": "china-natcm", + "name": { + "en": "National Administration of Traditional Chinese Medicine", + "zh": "国家中医药管理局" + }, + "description": { + "en": "The National Administration of Traditional Chinese Medicine (NATCM) is China's government authority for regulating, developing, and promoting Traditional Chinese Medicine (TCM) and ethnic minority medicine. NATCM publishes official statistics on TCM institutions, practitioners, hospital visits, and industry development through its annual National TCM Statistics Yearbook (全国中医药统计摘编). It oversees TCM education standards, clinical practice guidelines, and international TCM cooperation. As TCM plays an increasingly important role in China's healthcare system and global health diplomacy, NATCM's data is essential for understanding TCM's integration into mainstream healthcare and its contributions to China's health economy.", + "zh": "国家中医药管理局是负责监管、发展和推广中医药及民族医药的中国政府主管部门。管理局通过《全国中医药统计摘编》发布中医医疗机构、中医执业人员、中医就诊人次及产业发展等官方统计数据,并负责中医药教育标准制定、临床实践规范和国际中医药合作。随着中医药在中国医疗卫生体系和全球卫生外交中的地位日益凸显,管理局数据对了解中医药融入主流医疗体系及其对中国卫生经济的贡献具有重要价值。" + }, + "website": "https://www.natcm.gov.cn/", + "data_url": "https://www.natcm.gov.cn/guihuacaiwusi/gongzuodongtai/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "health", + "social" + ], + "update_frequency": "annual", + "tags": [ + "国家中医药管理局", + "natcm", + "national-administration-of-traditional-chinese-medicine", + "中医药", + "traditional-chinese-medicine", + "tcm", + "中医医院", + "tcm-hospitals", + "中医执业医师", + "tcm-practitioners", + "中药", + "chinese-herbal-medicine", + "针灸", + "acupuncture", + "民族医药", + "ethnic-minority-medicine", + "中医药产业", + "tcm-industry", + "中医教育", + "tcm-education", + "中医统计", + "tcm-statistics", + "中医就诊", + "tcm-visits", + "中医科研", + "tcm-research" + ], + "data_content": { + "en": [ + "TCM medical institutions - number of TCM hospitals, clinics, and integrated Chinese-Western medicine hospitals by type and region", + "TCM workforce statistics - licensed TCM physicians, pharmacists, nurses, and other health workers", + "TCM service utilization - outpatient visits, inpatient admissions, and bed occupancy at TCM facilities", + "TCM education and training - TCM university enrollment, graduates, and continuing education statistics", + "TCM pharmaceutical industry - output value of Chinese patent medicines, herbal preparations, and related products", + "TCM scientific research - national R&D projects, publications, and key laboratory statistics", + "International TCM cooperation - overseas TCM centers, medical teams dispatched, and treaty agreements", + "TCM standardization - number of TCM clinical practice guidelines and quality standards issued", + "Annual National TCM Statistics Yearbook (全国中医药统计摘编)" + ], + "zh": [ + "中医医疗机构 - 按类型和地区分类的中医医院、中医诊所和中西医结合医院数量", + "中医药从业人员统计 - 执业中医师、药师、护士及其他卫生人员数量", + "中医服务利用 - 中医医疗机构门诊量、住院人次及床位使用率", + "中医药教育培训 - 中医药院校在校生、毕业生及继续教育统计", + "中医药产业 - 中成药、中药饮片及相关产品产值", + "中医药科研 - 国家科研项目、发表论文及重点实验室统计", + "国际中医药合作 - 海外中医中心、派遣医疗队及协议情况", + "中医药标准化 - 发布的中医临床实践指南和质量标准数量", + "全国中医药统计摘编年鉴" + ] + }, + "has_api": false, + "file_path": "china/health/china-natcm.json" + }, + { + "id": "china-ndcpa", + "name": { + "en": "National Disease Control and Prevention Administration of China", + "zh": "国家疾病预防控制局" + }, + "description": { + "en": "The National Disease Control and Prevention Administration (NDCPA) is China's central government authority for public health surveillance, disease prevention and control, established in May 2021 under the National Health Commission as a vice-ministerial-level agency. It took over core functions from the Chinese Center for Disease Control and Prevention (China CDC) to strengthen national biosecurity and epidemic response governance following COVID-19 lessons. NDCPA oversees national communicable disease surveillance and reporting, national immunization program management, chronic disease prevention, environmental health monitoring, and health emergency preparedness. It publishes statutory infectious disease case reports (法定传染病疫情), vaccination coverage data, and health risk assessment reports, making it the authoritative source for China's epidemiological data and public health indicators.", + "zh": "国家疾病预防控制局是中国公共卫生监测、疾病预防与控制的中央主管部门,2021年5月在国家卫生健康委领导下正式组建,为副部级机构。在汲取新冠疫情防控经验教训后,承接中国疾病预防控制中心核心职能,以强化国家生物安全和疫情应对治理体系。疾控局负责全国传染病监测报告、国家免疫规划管理、慢性病防控、环境卫生监测和卫生应急准备。定期发布法定传染病疫情通报、疫苗接种覆盖率数据和健康风险评估报告,是中国流行病学数据和公共卫生指标的权威来源。" + }, + "website": "https://www.ndcpa.gov.cn/", + "data_url": "https://www.ndcpa.gov.cn/jbkzzx/c100016/second/list.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "health", + "governance", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "国家疾病预防控制局", + "ndcpa", + "national-disease-control", + "疾控局", + "cdc-china", + "传染病报告", + "infectious-disease-reporting", + "法定传染病", + "statutory-infectious-disease", + "疫情监测", + "epidemic-surveillance", + "公共卫生", + "public-health", + "疫苗接种", + "vaccination", + "免疫规划", + "immunization-program", + "慢性病", + "chronic-disease", + "生物安全", + "biosafety", + "卫生应急", + "health-emergency", + "流行病学", + "epidemiology", + "疾病预防", + "disease-prevention" + ], + "data_content": { + "en": [ + "Monthly statutory infectious disease reports: case counts for 40 nationally notifiable diseases by category (Class A, B, C), province, and pathogen type", + "Annual immunization program statistics: vaccination coverage rates for BCG, hepatitis B, polio, DTP, measles-rubella, Japanese encephalitis, and other EPI vaccines by age group and province", + "Communicable disease surveillance bulletins: real-time and periodic epidemiological bulletins on influenza, dengue fever, hand-foot-mouth disease, and emerging infectious diseases", + "Chronic disease prevalence data: nationwide surveys and monitoring results for hypertension, diabetes, cancer, cardiovascular disease, and obesity", + "Environmental health monitoring: reports on ambient air quality health impacts, drinking water safety surveillance, and occupational disease statistics", + "Health risk assessments: rapid risk assessments and technical guidance documents for public health events of potential concern", + "Biosafety laboratory statistics: data on pathogen detection capacity, biosafety laboratory accreditation, and national reference laboratory networks" + ], + "zh": [ + "月度法定传染病疫情通报:按类别(甲乙丙类)、省份和病原体分类的40种法定报告传染病病例数", + "年度国家免疫规划统计:按年龄组和省份分类的卡介苗、乙肝、脊髓灰质炎、百白破、麻疹风疹、乙脑等EPI疫苗接种覆盖率", + "传染病监测简报:流感、登革热、手足口病及新发传染病实时和定期流行病学通报", + "慢性病患病率数据:高血压、糖尿病、癌症、心脑血管疾病和肥胖症全国调查及监测结果", + "环境卫生监测:环境空气质量健康影响报告、饮用水安全监测及职业病统计", + "健康风险评估:针对潜在突发公共卫生事件的快速风险评估和技术指导文件", + "生物安全实验室统计:病原体检测能力、实验室生物安全认证及国家参比实验室网络数据" + ] + }, + "has_api": false, + "file_path": "china/health/china-ndcpa.json" + }, + { + "id": "china-nhc", + "name": { + "en": "National Health Commission of China", + "zh": "国家卫生健康委员会", + "native": "国家卫生健康委员会" + }, + "description": { + "en": "The National Health Commission (NHC) of China is the government body responsible for national health administration. It publishes comprehensive health statistics including population health indicators, disease surveillance, medical resources, maternal and child health, chronic disease prevalence, and public health emergency data through its statistical information center.", + "zh": "国家卫生健康委员会是负责全国卫生健康工作的国务院组成部门。通过统计信息中心发布综合性卫生健康统计数据,包括人口健康指标、疾病监测、卫生资源、妇幼健康、慢性病患病率及突发公共卫生事件数据。" + }, + "website": "https://www.nhc.gov.cn", + "data_url": "https://www.nhc.gov.cn/mohwsbwstjxxzx/s7967/new_list.shtml", + "api_url": null, + "country": "CN", + "domains": [ + "health", + "demographics", + "epidemiology", + "social" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "china", + "nhc", + "health", + "healthcare", + "medical", + "disease", + "public-health", + "卫生健康", + "国家卫健委", + "卫生统计", + "疾病监测", + "医疗资源", + "妇幼健康" + ], + "data_content": { + "en": [ + "China Health Statistical Yearbook - Comprehensive annual health statistics", + "Medical Resources - Number of hospitals, beds, health workers by region", + "Disease Surveillance - Notifiable infectious disease reports and monitoring", + "Maternal and Child Health - Maternal mortality, infant mortality, birth rates", + "Chronic Disease Statistics - Prevalence of hypertension, diabetes, cancer", + "Health Expenditure - National and household health spending data", + "Life Expectancy - Population health indicators by province and age group" + ], + "zh": [ + "中国卫生健康统计年鉴 - 全面的年度卫生健康统计数据", + "卫生资源 - 按地区分类的医院数量、床位数、卫生工作者统计", + "疾病监测 - 法定传染病报告与监测数据", + "妇幼健康 - 孕产妇死亡率、婴儿死亡率、出生率", + "慢性病统计 - 高血压、糖尿病、癌症患病率", + "卫生费用 - 全国及居民卫生支出数据", + "人均预期寿命 - 按省份和年龄段分类的人口健康指标" + ] + }, + "authority_level": "government", + "has_api": false, + "file_path": "china/health/china-nhc.json" + }, + { + "id": "china-nhei", + "name": { + "en": "China National Health Development Research Center", + "zh": "国家卫生健康委卫生发展研究中心" + }, + "description": { + "en": "The China National Health Development Research Center (CNHDRC), formerly known as the China Health Economics Institute, is the principal policy research institution affiliated with the National Health Commission (NHC) of the People's Republic of China. Established in 1991, CNHDRC conducts evidence-based research on health policy, health economics, health system reform, health financing, primary healthcare, essential medicines, health technology assessment, and health workforce planning. The center produces the authoritative China Health Statistical Yearbook analytical companion, the National Health Accounts (NHA) report, and serves as the WHO Collaborating Centre for Health Technology Assessment and Health System Research. Its research directly informs major national health reforms including health financing reform, public hospital reform, and the Healthy China 2030 initiative.", + "zh": "国家卫生健康委卫生发展研究中心(中国医学科学院卫生发展研究中心),前身为中国卫生经济研究所,是国家卫生健康委员会直属的主要政策研究机构,成立于1991年。中心围绕卫生政策、卫生经济、医药卫生体制改革、卫生筹资、基层医疗、基本药物、卫生技术评估和卫生人力规划等领域开展循证研究,发布权威的《中国卫生统计年鉴》分析配套报告和《中国卫生总费用核算报告》,同时是WHO卫生技术评估与卫生体系研究合作中心。研究成果直接服务于国家重大卫生改革,包括卫生筹资改革、公立医院改革和健康中国2030战略。" + }, + "website": "https://www.nhei.cn", + "data_url": "https://www.nhei.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "health-policy", + "health-economics", + "healthcare", + "public-health", + "health-financing", + "health-systems" + ], + "update_frequency": "irregular", + "tags": [ + "卫生发展研究中心", + "nhei", + "cnhdrc", + "national-health-development-research-center", + "卫生经济", + "health-economics", + "卫生政策", + "health-policy", + "医改", + "health-reform", + "卫生总费用", + "national-health-accounts", + "基本医疗", + "essential-healthcare", + "公立医院", + "public-hospital", + "健康中国2030", + "healthy-china-2030", + "who合作中心", + "who-collaborating-centre" + ], + "data_content": { + "en": [ + "China National Health Accounts (NHA) reports: authoritative annual estimates of total health expenditure by source of funds, provider, and function at national and provincial levels", + "Health system research reports: policy evaluations of public hospital reform, primary healthcare strengthening, and essential medicine system", + "Health technology assessment (HTA) reports: systematic evidence-based evaluation of medical technologies, drugs, and interventions for reimbursement decisions", + "Health workforce planning studies: analysis of physician density, nurse distribution, and rural health workforce across Chinese provinces", + "Health financing research: cost-sharing analyses, catastrophic health expenditure rates, and health insurance benefit package evaluations", + "International comparison studies: comparative analyses benchmarking China's health system against OECD and BRICS countries", + "Healthy China 2030 monitoring: indicators and progress reports on the national health strategy implementation" + ], + "zh": [ + "中国卫生总费用核算报告:从筹资来源、服务提供方和功能三个维度对国家和省级卫生总费用的权威年度估算", + "卫生体系研究报告:公立医院改革、基层医疗强化和基本药物制度的政策评估", + "卫生技术评估(HTA)报告:医疗技术、药品和干预措施的系统循证评估,用于医保报销决策", + "卫生人力规划研究:各省医师密度、护士分布和农村卫生人力分析", + "卫生筹资研究:费用分担分析、灾难性卫生支出比率和医保保障范围评估", + "国际比较研究:中国卫生体系与OECD和金砖国家对标的比较分析", + "健康中国2030监测:国家健康战略实施指标和进展报告" + ] + }, + "has_api": false, + "file_path": "china/health/china-nhei.json" + }, + { + "id": "china-nhsa", + "name": { + "en": "National Healthcare Security Administration of China", + "zh": "国家医疗保障局" + }, + "description": { + "en": "The National Healthcare Security Administration (NHSA) is China's central government body responsible for managing the national medical insurance system, including basic medical insurance, maternity insurance, and medical assistance programs. Established in 2018, the NHSA consolidated functions previously spread across multiple departments to create a unified medical security management system. NHSA publishes authoritative statistics on health insurance fund revenues and expenditures, enrollment numbers for urban and rural residents, reimbursement rates, drug pricing through the national negotiation mechanism, and DRG payment reform progress. Its data covers over 1.3 billion insured persons, making it one of the world's largest healthcare financing datasets.", + "zh": "国家医疗保障局是负责管理全国医疗保障体系的中央政府机构,涵盖基本医疗保险、生育保险及医疗救助项目。2018年成立,整合了原分散于多个部门的医疗保障职能,建立统一的医疗保障管理体制。国家医疗保障局发布医保基金收支、城乡居民参保人数、报销比例、国家医保谈判药品价格及DRG支付改革进展等权威统计数据。其数据覆盖超过13亿参保人员,是全球最大的医疗筹资数据集之一。" + }, + "website": "https://www.nhsa.gov.cn/", + "data_url": "https://www.nhsa.gov.cn/col/col7/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "health", + "finance", + "social", + "statistics" + ], + "update_frequency": "annual", + "tags": [ + "医疗保障", + "healthcare-security", + "医疗保险", + "medical-insurance", + "医保基金", + "medical-insurance-fund", + "参保人数", + "enrollment-statistics", + "医保报销", + "medical-reimbursement", + "药品价格谈判", + "drug-price-negotiation", + "DRG支付", + "drg-payment", + "生育保险", + "maternity-insurance", + "医疗救助", + "medical-assistance", + "全民医保", + "universal-health-coverage" + ], + "data_content": { + "en": [ + "Insurance fund financials: annual revenue and expenditure of basic medical insurance fund, balance and reserve data", + "Enrollment statistics: number of insured persons by scheme (employee basic medical insurance, urban-rural resident insurance) and by province", + "Reimbursement data: average reimbursement rates for inpatient and outpatient services by insurance type and region", + "Drug pricing: negotiated drug prices from national medical insurance negotiations, coverage lists and pricing updates", + "DRG payment reform: diagnostic-related groups implementation statistics, hospital payment reform progress", + "Pharmaceutical benefits management: national medical insurance drug list (NRDL) coverage and utilization", + "Medical assistance: government-funded medical assistance recipients, spending, and poverty health protection data", + "Maternity insurance: maternity insurance fund revenue, benefit payments, and number of claimants", + "Healthcare cost trends: per capita medical expenditure, hospitalization rates, and cost growth indicators", + "Annual national healthcare security statistical bulletin: comprehensive insurance system performance review" + ], + "zh": [ + "医保基金财务:基本医疗保险基金年度收入、支出、结余及累计结存数据", + "参保统计:按险种(职工基本医疗保险、城乡居民医疗保险)和省份分类的参保人数", + "报销数据:按险种和地区分类的住院和门诊平均报销比例", + "药品价格:国家医保谈判药品价格、医保目录收录情况及价格调整", + "DRG支付改革:按疾病诊断相关分组实施统计、医院支付改革进展", + "药品保障管理:国家医保药品目录(NRDL)覆盖品种及使用情况", + "医疗救助:政府医疗救助受益人数、资金支出及贫困人口健康保障数据", + "生育保险:生育保险基金收入、待遇支出及享受待遇人数", + "医疗费用趋势:人均医疗费用、住院率及费用增长指标", + "全国医疗保障事业统计公报:保险体系运行年度综合述评" + ] + }, + "has_api": false, + "file_path": "china/health/china-nhsa.json" + }, + { + "id": "china-nifdc", + "name": { + "en": "National Institutes for Food and Drug Control", + "zh": "中国食品药品检定研究院" + }, + "description": { + "en": "The National Institutes for Food and Drug Control (NIFDC) is China's highest national-level technical institution for quality control and standard-setting of drugs, biologics, medical devices, food, and cosmetics, operating under the National Medical Products Administration (NMPA). Established in 1950, NIFDC is responsible for the development and revision of national drug standards (Chinese Pharmacopoeia), biological product batch release testing, and reference substance management. The institute publishes official drug standard databases, batch release reports, adverse event signals for biologics and vaccines, food contaminant benchmark data, and inspection methodology standards. NIFDC's quality control data and standard documents are mandatory references for pharmaceutical manufacturers, regulatory agencies, and clinical research institutions across China and are widely cited in international pharmacovigilance research.", + "zh": "中国食品药品检定研究院(中检院)是药品、生物制品、医疗器械、食品和化妆品质量控制与标准制定的国家级最高技术机构,隶属于国家药品监督管理局。研究院成立于1950年,负责国家药品标准(中国药典)的制定与修订、生物制品批签发检验和标准物质管理,发布国家药品标准数据库、批签发报告、生物制品和疫苗不良事件信号、食品污染物基准数据及检验方法标准。中检院的质量控制数据和标准文件是全国药品生产企业、监管机构及临床研究机构的强制参考依据,并被国际药物警戒研究广泛引用。" + }, + "website": "https://www.nifdc.org.cn", + "data_url": "https://www.nifdc.org.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "health", + "pharmaceuticals", + "food-safety", + "standards" + ], + "update_frequency": "irregular", + "tags": [ + "nifdc", + "中检院", + "中国食品药品检定研究院", + "药品标准", + "中国药典", + "生物制品", + "批签发", + "疫苗", + "药品质量", + "food-drug-control", + "pharmacopoeia", + "drug-standards", + "vaccine-testing", + "food-safety", + "medical-devices" + ], + "data_content": { + "en": [ + "National drug standards (Chinese Pharmacopoeia) database", + "Biological product batch release testing results", + "Reference substance catalog and technical requirements", + "Drug adverse event and quality risk signals", + "Food and cosmetic contaminant benchmark data", + "Medical device testing standards and reports", + "Annual national drug quality sampling inspection reports" + ], + "zh": [ + "国家药品标准(中国药典)数据库", + "生物制品批签发检验结果", + "标准物质目录与技术要求", + "药品不良事件与质量风险信号", + "食品和化妆品污染物基准数据", + "医疗器械检验标准与报告", + "年度国家药品质量抽检报告" + ] + }, + "has_api": false, + "file_path": "china/health/china-nifdc.json" + }, + { + "id": "china-nmpa", + "name": { + "en": "National Medical Products Administration of China", + "zh": "国家药品监督管理局" + }, + "description": { + "en": "Official drug, medical device, and cosmetic regulatory data from China's National Medical Products Administration (NMPA). Covers approved drug registrations, new drug approvals, medical device certifications, cosmetic filings, adverse drug reaction reports, drug recall notices, pharmaceutical enterprise inspections, drug quality sampling results, clinical trial registrations, and import/export pharmaceutical data. The NMPA regulates drugs, medical devices, and cosmetics in China, ensuring product safety, efficacy, and quality.", + "zh": "国家药品监督管理局发布的官方药品、医疗器械与化妆品监管数据,涵盖批准药品注册信息、新药审批、医疗器械认证、化妆品备案、药品不良反应报告、药品召回公告、药品生产企业检查、药品质量抽检结果、临床试验登记及药品进出口数据。药监局负责对全国药品、医疗器械和化妆品实施监管,保障产品的安全性、有效性和质量。" + }, + "website": "https://www.nmpa.gov.cn/", + "data_url": "https://www.nmpa.gov.cn/datasearch/home-index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "public-health", + "science", + "governance" + ], + "update_frequency": "monthly", + "tags": [ + "药品监管", + "drug-regulation", + "医疗器械", + "medical-device", + "化妆品", + "cosmetics", + "新药审批", + "drug-approval", + "药品注册", + "drug-registration", + "不良反应", + "adverse-drug-reaction", + "药品召回", + "drug-recall", + "临床试验", + "clinical-trial", + "药品质量", + "drug-quality", + "nmpa", + "药监局", + "食品药品", + "pharmaceutical", + "仿制药", + "generic-drug", + "gmp", + "gsp" + ], + "data_content": { + "en": [ + "Drug registration database: approved chemical drugs, biological products, traditional Chinese medicines, and their specifications", + "New drug approvals and marketing authorizations: first approvals, supplemental approvals, and imported drug registrations", + "Medical device registration and filing database: Class I, II, III medical devices by product category", + "Cosmetic product registration and filing records: domestic and imported cosmetics", + "Adverse drug reaction (ADR) annual reports: nationwide ADR case counts, severe reactions, and trend analysis", + "Drug quality sampling results: pass/fail rates for sampled drugs by category and manufacturer", + "Drug recall notices: voluntary and mandatory recall announcements and scope", + "GMP/GSP compliance inspections: pharmaceutical manufacturing and distribution enterprise inspection results", + "Clinical trial registration data: trials being conducted in China, phases, and indications", + "Pharmaceutical import and export approval records" + ], + "zh": [ + "药品注册数据库:已批准化学药品、生物制品、中药及其规格说明", + "新药审批与上市许可:首次批准、补充批准及进口药品注册", + "医疗器械注册与备案数据库:一类、二类、三类医疗器械分类", + "化妆品注册与备案记录:国产及进口化妆品", + "药品不良反应(ADR)年度报告:全国ADR病例数量、严重不良反应及趋势分析", + "药品质量抽检结果:各类药品按品种和生产企业的合格率", + "药品召回公告:主动召回与责令召回公告及范围", + "GMP/GSP合规检查:药品生产和流通企业检查结果", + "临床试验登记数据:在中国开展的试验信息、阶段及适应症", + "药品进出口审批记录" + ] + }, + "has_api": false, + "file_path": "china/health/china-nmpa.json" + }, + { + "id": "china-nphsd", + "name": { + "en": "National Population and Health Science Data Center", + "zh": "国家人口与健康科学数据中心" + }, + "description": { + "en": "The National Population and Health Science Data Center (NPHSD) is China's national platform for sharing public health and population science data, established under the National Basic Science Data Sharing Service Program led by the Ministry of Science and Technology. It aggregates and provides access to health survey datasets, epidemiological study data, clinical research data, and demographic health statistics from national research programs. NPHSD covers domains including chronic disease surveillance, maternal and child health surveys, nutrition and health data, and infectious disease monitoring, making it a key open data repository for researchers in public health, medicine, and population sciences in China.", + "zh": "国家人口与健康科学数据中心(NPHSD)是中国国家科学数据共享工程框架下,由科学技术部主导建立的公共卫生与人口科学数据共享国家平台。该中心汇聚并开放来自国家科研项目的健康调查数据集、流行病学研究数据、临床研究数据及人口健康统计数据。覆盖领域包括慢性病监测、妇幼健康调查、营养与健康数据以及传染病监测,是中国公共卫生、医学和人口科学研究人员的重要开放数据平台。" + }, + "website": "https://www.phsciencedata.cn", + "data_url": "https://www.phsciencedata.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "health", + "epidemiology", + "demographics", + "social" + ], + "update_frequency": "irregular", + "tags": [ + "国家人口与健康科学数据中心", + "nphsd", + "public-health-data", + "公共卫生数据", + "population-health", + "人口健康", + "epidemiology", + "流行病学", + "chronic-disease", + "慢性病", + "maternal-health", + "妇幼健康", + "nutrition", + "营养", + "health-survey", + "健康调查", + "infectious-disease", + "传染病", + "science-data-sharing", + "科学数据共享", + "clinical-research-data", + "临床研究数据" + ], + "data_content": { + "en": [ + "Chronic Disease Surveillance Data - National monitoring datasets on hypertension, diabetes, cardiovascular disease, and cancer", + "Maternal and Child Health Survey Data - Nationwide survey data on maternal mortality, child nutrition, and reproductive health", + "Nutrition and Health Survey - Results from national nutrition and health examination surveys by age group and region", + "Infectious Disease Monitoring Data - Epidemiological datasets on notifiable infectious diseases and outbreak investigations", + "Clinical Research Datasets - Anonymized patient data from national clinical trials and cohort studies", + "Population Health Statistics - Demographic and vital statistics datasets including mortality, morbidity, and disability data", + "Aging and Geriatric Data - Health status, functional ability, and care needs data for elderly populations" + ], + "zh": [ + "慢性病监测数据 - 全国高血压、糖尿病、心血管疾病和癌症监测数据集", + "妇幼健康调查数据 - 全国孕产妇死亡率、儿童营养及生殖健康调查数据", + "营养与健康调查 - 按年龄组和地区划分的全国营养与健康体检调查结果", + "传染病监测数据 - 法定传染病及疫情调查流行病学数据集", + "临床研究数据集 - 国家临床试验和队列研究的脱敏患者数据", + "人口健康统计 - 包含死亡率、发病率和残疾数据的人口与生命统计数据集", + "老龄化与老年医学数据 - 老年人群健康状况、功能能力和照护需求数据" + ] + }, + "has_api": false, + "file_path": "china/health/china-nphsd.json" + }, + { + "id": "china-phirda", + "name": { + "en": "China Pharmaceutical Innovation and Research Development Association", + "zh": "中国医药创新促进会" + }, + "description": { + "en": "The China Pharmaceutical Innovation and Research Development Association (PhIRDA, 中国医药创新促进会) is a national industry association representing innovative pharmaceutical companies, biotechnology firms, and clinical research organizations in China. Founded in 2012, PhIRDA promotes R&D-based drug development, policy advocacy for pharmaceutical innovation, and regulatory dialogue between industry and government agencies including NMPA (National Medical Products Administration). PhIRDA publishes annual innovation reports on China's pharmaceutical R&D pipeline, clinical trial statistics, drug approval data, R&D investment benchmarks, and policy analyses. Its research provides authoritative insights into China's pharmaceutical innovation landscape, new drug development trends, biopharma industry competitiveness, and regulatory environment for novel therapies.", + "zh": "中国医药创新促进会(PhIRDA)是代表中国创新药企业、生物技术公司和临床研究机构的全国性行业协会,成立于2012年。PhIRDA致力于推动研发驱动型新药研发,开展医药创新政策倡导,并促进行业与国家药品监督管理局(NMPA)等监管机构的对话。协会发布中国医药研发管线年度创新报告、临床试验统计、新药批准数据、研发投入基准和政策分析,为了解中国医药创新格局、新药研发趋势、生物制药行业竞争力和新疗法监管环境提供权威参考。" + }, + "website": "https://www.phirda.com", + "data_url": "https://www.phirda.com", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "health", + "research", + "industry" + ], + "update_frequency": "annual", + "tags": [ + "中国医药创新促进会", + "phirda", + "医药创新", + "pharmaceutical-innovation", + "新药研发", + "drug-development", + "生物制药", + "biopharma", + "临床试验", + "clinical-trials", + "新药审批", + "drug-approval", + "nmpa", + "国家药监局", + "研发投入", + "rnd-investment", + "创新药", + "innovative-drugs" + ], + "data_content": { + "en": [ + "Annual innovation report - overview of China's pharmaceutical R&D pipeline including small molecules, biologics, and cell/gene therapies", + "Clinical trial statistics - number of IND applications, ongoing Phase I/II/III trials, and completion rates in China", + "New drug approval data - NDA and BLA approvals by NMPA, approval timelines, and therapeutic area breakdown", + "R&D investment benchmarks - pharmaceutical industry R&D spending as percentage of revenue by company type and therapeutic focus", + "Global competitiveness analysis - comparison of China's innovative drug pipeline with US, EU, and Japan", + "Patent cliff and genericization data - key drugs facing patent expiry and biosimilar development activity", + "Regulatory policy analyses - impact assessments of NMPA policy reforms, MAH system implementation, and drug pricing linkage", + "Biopharma company landscape reports - profiling of leading domestic innovative companies, R&D capabilities, and licensed-in assets", + "Medical device innovation data - innovative device pipeline and NMPA approval statistics for high-risk devices" + ], + "zh": [ + "年度创新报告 - 中国医药研发管线综述,涵盖小分子、生物制品及细胞/基因治疗", + "临床试验统计 - IND申请数量、在研I/II/III期临床试验及完成率", + "新药批准数据 - 国家药监局NDA和BLA审批情况、审评时限和治疗领域分布", + "研发投入基准 - 按企业类型和治疗重点分类的医药行业研发投入占营收比例", + "全球竞争力分析 - 中国创新药管线与美国、欧盟和日本的比较", + "专利悬崖与仿制化数据 - 面临专利到期的重点药品及生物类似药研发动态", + "监管政策分析 - 药监局政策改革、MAH制度实施和药品价格联动影响评估", + "生物制药企业图谱报告 - 国内领先创新企业、研发能力和引进资产概况", + "医疗器械创新数据 - 创新器械管线及高风险器械NMPA审批统计" + ] + }, + "has_api": false, + "file_path": "china/health/china-phirda.json" + }, + { + "id": "china-avic", + "name": { + "en": "Aviation Industry Corporation of China (AVIC)", + "zh": "中国航空工业集团有限公司" + }, + "description": { + "en": "The Aviation Industry Corporation of China (AVIC, 中国航空工业集团) is a central state-owned enterprise under the State Council and China's primary aerospace and defense conglomerate. AVIC is responsible for the research, development, and manufacturing of military and civil aviation products, including fighter jets, helicopters, transport aircraft, aero-engines, avionics systems, and aerospace components. As one of the world's largest aviation companies by revenue, AVIC encompasses over 100 subsidiary enterprises and research institutes, with more than 400,000 employees. AVIC and its listed subsidiaries publish annual reports, operational data on aviation manufacturing output, delivery volumes of civil and military aircraft, and technology development disclosures. The group's data provides critical insights into China's aviation industrial capacity, defense manufacturing trends, and the development of China's domestic commercial aviation supply chain.", + "zh": "中国航空工业集团有限公司(航空工业)是国务院直属的中央国有企业,是中国航空和国防工业的主体。主要承担军民用航空产品的研发和制造,包括战斗机、直升机、运输机、航空发动机、航空电子系统和航空零部件。作为全球营收规模最大的航空企业之一,航空工业拥有100余家成员企业和科研院所,员工逾40万人。航空工业集团及其上市子公司发布年度报告、航空制造产量运营数据、军民机交付数量及技术研发披露,为了解中国航空工业能力、国防制造趋势和国产民用航空供应链发展提供重要参考。" + }, + "website": "https://www.avic.com", + "data_url": "https://www.avic.com", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "aerospace", + "defense", + "manufacturing", + "economics" + ], + "update_frequency": "annual", + "tags": [ + "avic", + "航空工业", + "航空制造", + "aviation-manufacturing", + "军用飞机", + "military-aircraft", + "民用飞机", + "civil-aircraft", + "航空发动机", + "aero-engine", + "国防工业", + "defense-industry", + "央企", + "central-soe", + "直升机", + "helicopter", + "航电系统", + "avionics" + ], + "data_content": { + "en": [ + "Annual reports - consolidated financial statements, revenue, profit, and operating highlights for AVIC Group", + "Aircraft manufacturing output - production volumes and delivery records for military fighters, trainers, transport aircraft, and helicopters", + "Civil aviation supply chain data - components and systems supplied to domestic and international civil aviation OEMs", + "Listed subsidiary disclosures - financial and operational data from AVIC subsidiaries listed on Shanghai and Shenzhen stock exchanges", + "R&D investment and technology milestones - annual R&D expenditure, patent registrations, and major technical achievements", + "Workforce statistics - total employees, engineering and technical staff, and education-level breakdown", + "Export and international cooperation - foreign military sales, international joint ventures, and overseas delivery data", + "Subsidiary enterprise profiles - business scope, production capacity, and key products of major member companies" + ], + "zh": [ + "年度报告 - 航空工业集团的合并财务报表、营业收入、利润及运营要点", + "飞机制造产量 - 军用战斗机、教练机、运输机和直升机的生产数量和交付记录", + "民用航空供应链数据 - 向国内外民用航空整机制造商提供的零部件和系统数据", + "上市子公司披露 - 在沪深两市上市的航空工业成员企业的财务和运营数据", + "研发投入和技术里程碑 - 年度研发支出、专利申请数量和重大技术成就", + "劳动力统计 - 员工总数、工程技术人员及学历层次分布", + "出口和国际合作 - 对外军售、国际合资合作及境外交付数据", + "成员企业概况 - 主要成员单位的业务范围、生产能力和拳头产品" + ] + }, + "has_api": false, + "file_path": "china/industry/aerospace/china-avic.json" + }, + { + "id": "china-casc", + "name": { + "en": "China Aerospace Science and Technology Corporation (CASC)", + "zh": "中国航天科技集团有限公司" + }, + "description": { + "en": "China Aerospace Science and Technology Corporation (CASC) is China's premier state-owned aerospace enterprise and the principal contractor for China's national space program. Founded in 1999 as a restructuring of the former Ministry of Aerospace Industry, CASC develops and manufactures China's Long March launch vehicles, Shenzhou crewed spacecraft, Tianzhou cargo ships, Chang'e lunar probes, Tianwen Mars spacecraft, and the Beidou satellite constellation. CASC operates eight major subsidiaries and over 100 research institutes, with more than 160,000 employees. The corporation publishes annual reports, launch statistics, satellite manufacturing output data, aerospace technology development disclosures, and sustainability reports. As the backbone of China's space industry, CASC data provides authoritative insights into China's space launch cadence, crewed spaceflight progress, deep space exploration missions, and the commercial aerospace sector, making it essential for space industry analysis, international space cooperation research, and China's strategic technology assessment.", + "zh": "中国航天科技集团有限公司(航天科技集团)是中国最重要的国有航天企业,是国家航天工程的主要承包商。集团成立于1999年,由原航天工业部重组而来,负责研制长征系列运载火箭、神舟载人飞船、天舟货运飞船、嫦娥月球探测器、天问火星探测器及北斗卫星导航系统。集团下设八大研究院及百余家研究所,员工逾16万人。集团发布年度报告、发射统计、卫星制造产量数据、航天技术研发披露及可持续发展报告。作为中国航天工业的核心力量,航天科技集团数据为了解中国航天发射节奏、载人航天进展、深空探测任务和商业航天发展提供权威参考,是航天产业分析、国际航天合作研究和中国战略技术评估的重要数据来源。" + }, + "website": "https://www.spacechina.com", + "data_url": "https://www.spacechina.com/n25/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "aerospace", + "technology", + "defense" + ], + "update_frequency": "annual", + "tags": [ + "中国航天科技集团", + "casc", + "china-aerospace-science-technology", + "航天", + "space", + "长征火箭", + "long-march-rocket", + "神舟", + "shenzhou", + "嫦娥", + "chang'e", + "天问", + "tianwen", + "卫星", + "satellite", + "航天发射", + "space-launch", + "载人航天", + "crewed-spaceflight", + "北斗", + "beidou", + "商业航天", + "commercial-space" + ], + "data_content": { + "en": [ + "Annual reports: financial performance, operational highlights, and strategic development disclosures for CASC and its major subsidiaries", + "Launch statistics: Long March rocket launch frequency, success rates, payload types, and orbital delivery data by year", + "Crewed spaceflight data: Shenzhou mission profiles, crew schedules, and China Space Station (Tiangong) operational status", + "Satellite production: number of satellites manufactured, constellation expansion progress (Beidou, Yaogan, Gaofen series)", + "Deep space missions: mission status updates for Chang'e lunar program and Tianwen Mars exploration", + "Commercial aerospace market: launch service pricing, satellite in-orbit delivery contracts, and commercial payload statistics", + "R&D investment: annual research and development expenditure, technology development milestones, and patent filings", + "Sustainability reports: carbon footprint data, energy consumption in manufacturing, and green development initiatives" + ], + "zh": [ + "年度报告:航天科技集团及主要子公司的财务业绩、运营亮点和战略发展披露", + "发射统计:长征系列火箭年度发射次数、成功率、有效载荷类型和入轨数据", + "载人航天数据:神舟任务参数、航天员任务时间表及中国空间站(天宫)在轨状态", + "卫星生产:年度卫星研制数量、星座扩展进度(北斗、遥感、高分系列)", + "深空探测:嫦娥月球工程和天问火星探测任务状态更新", + "商业航天市场:发射服务报价、卫星在轨交付合同及商业载荷统计", + "研发投入:年度研发支出、技术研发里程碑及专利申请", + "可持续发展报告:碳排放数据、制造业能耗及绿色发展举措" + ] + }, + "has_api": false, + "file_path": "china/industry/aerospace/china-casc.json" + }, + { + "id": "china-ceeia", + "name": { + "en": "China Electrical Equipment Industry Association", + "zh": "中国电器工业协会" + }, + "description": { + "en": "The China Electrical Equipment Industry Association (CEEIA) is the national industry organization representing China's electrical equipment manufacturing sector. It publishes comprehensive industry statistics, market analysis reports, production data, export figures, and policy recommendations covering power generation equipment, transmission equipment, industrial motors, household appliances, and energy-efficient products.", + "zh": "中国电器工业协会(CEEIA)是代表中国电器制造行业的全国性行业组织,发布涵盖发电设备、输配电设备、工业电机、家用电器及节能产品的行业统计数据、市场分析报告、产量数据、出口数据及政策建议。" + }, + "website": "https://www.ceeia.com", + "data_url": "https://www.ceeia.com", + "api_url": null, + "country": "CN", + "domains": [ + "industry", + "energy", + "manufacturing" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "china", + "electrical-equipment", + "manufacturing", + "power-equipment" + ], + "data_content": { + "en": [ + "Electrical Equipment Production Statistics - Monthly and annual output data for major electrical product categories", + "Industry Market Analysis - Market size, growth trends, and competitive landscape reports", + "Export Data - Electrical equipment export volumes and destination markets", + "Energy-Efficiency Standards - Industry benchmarks and compliance data for energy-efficient products", + "Power Generation Equipment - Statistics on turbines, generators, and transformer production", + "Industry Development Report - Annual overview of China's electrical equipment industry performance" + ], + "zh": [ + "电器产品产量统计 - 主要电器品类月度和年度产量数据", + "行业市场分析 - 市场规模、增长趋势及竞争格局报告", + "出口数据 - 电器设备出口量及目标市场统计", + "能效标准 - 节能产品行业基准及合规数据", + "发电设备统计 - 汽轮机、发电机及变压器产量数据", + "行业发展报告 - 中国电器工业年度发展情况综述" + ] + }, + "authority_level": "commercial", + "has_api": false, + "file_path": "china/industry/china-ceeia.json" + }, + { + "id": "china-csei", + "name": { + "en": "China Special Equipment Inspection and Research Institute", + "zh": "中国特种设备检测研究院" + }, + "description": { + "en": "The China Special Equipment Inspection and Research Institute (CSEI) is a national-level research and technical service institution under the State Administration for Market Regulation (SAMR), focusing on safety inspection of special equipment including pressure vessels, pressure piping, boilers, elevators, cranes, passenger ropeways, and large amusement rides. CSEI publishes annual special equipment safety situation reports, accident statistics, safety supervision data, and technical standards. Its data is the authoritative source for special equipment safety risk assessment and industrial accident prevention in China.", + "zh": "中国特种设备检测研究院(中国特检院)是国家市场监督管理总局直属的国家级特种设备安全检测技术机构,专注于压力容器、压力管道、锅炉、电梯、起重机械、客运索道及大型游乐设施等特种设备的安全检测研究。研究院发布年度特种设备安全状况报告、事故统计、安全监察数据及技术标准,是中国特种设备安全风险评估和工业事故预防的权威数据来源。" + }, + "website": "https://www.csei.org.cn", + "data_url": "https://www.csei.org.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "update_frequency": "annual", + "domains": [ + "safety", + "industrial-equipment", + "standards", + "governance" + ], + "tags": [ + "china", + "csei", + "特检院", + "special-equipment", + "特种设备", + "safety-inspection", + "安全检测", + "pressure-vessel", + "压力容器", + "elevator", + "电梯", + "industrial-safety", + "工业安全", + "accident-statistics", + "事故统计" + ], + "data_content": { + "en": [ + "Annual Special Equipment Safety Reports - National statistics on special equipment quantities, accidents, and safety supervision", + "Accident Statistics - Detailed breakdowns of accidents by equipment type, cause, severity, and region", + "Equipment Registration Data - Counts of registered special equipment by category and province", + "Safety Inspection Standards - Technical specifications and methods for special equipment safety assessment", + "Research Publications - Academic and technical reports on failure analysis, risk assessment, and safety engineering" + ], + "zh": [ + "年度特种设备安全状况报告 - 全国特种设备数量、事故及安全监察统计", + "事故统计 - 按设备类型、事故原因、严重程度及地区分类的详细事故数据", + "设备登记数据 - 各类特种设备按类别和省份的登记数量", + "安全检测标准 - 特种设备安全评估的技术规范和检测方法", + "科研出版物 - 失效分析、风险评估及安全工程学术与技术报告" + ] + }, + "has_api": false, + "file_path": "china/industry/china-csei.json" + }, + { + "id": "china-csia", + "name": { + "en": "China Semiconductor Industry Association", + "zh": "中国半导体行业协会" + }, + "description": { + "en": "The China Semiconductor Industry Association (CSIA) is the national industry body representing China's semiconductor sector. It publishes IC industry statistics, market reports, and semiconductor trade data.", + "zh": "中国半导体行业协会是代表中国半导体产业的全国性行业组织。发布集成电路产业统计数据、市场报告和半导体贸易数据。" + }, + "data_content": { + "en": [ + "IC industry statistics", + "semiconductor market reports", + "chip trade data", + "industry development reports", + "member enterprise data" + ], + "zh": [ + "集成电路产业统计", + "半导体市场报告", + "芯片贸易数据", + "产业发展报告", + "会员企业数据" + ] + }, + "country": "CN", + "authority_level": "other", + "geographic_scope": "national", + "website": "https://web.csia.net.cn", + "data_url": "https://web.csia.net.cn", + "domains": [ + "technology", + "manufacturing" + ], + "tags": [ + "semiconductor", + "ic", + "chip", + "electronics" + ], + "update_frequency": "quarterly", + "has_api": false, + "file_path": "china/industry/china-csia.json" + }, + { + "id": "china-miit-eidc", + "name": { + "en": "MIIT Equipment Industry Development Center", + "zh": "工业和信息化部装备工业发展中心" + }, + "description": { + "en": "The Equipment Industry Development Center (EIDC) of China's Ministry of Industry and Information Technology (MIIT) is a national-level policy research and data analysis institution specializing in China's equipment manufacturing sector. EIDC tracks and analyzes the development of high-end equipment industries including machine tools, industrial robots, rail transit equipment, aerospace equipment, marine engineering machinery, energy equipment, and agricultural machinery. The center publishes industry analysis reports, equipment manufacturing operation data, enterprise rankings, and policy research outputs that serve as authoritative references for government planning, industry benchmarking, and investment decisions. EIDC data covers production output, market scale, technology advancement indicators, and international competitiveness metrics for China's strategic equipment manufacturing industries, which are central to the Made in China 2025 and dual circulation strategy implementation.", + "zh": "工业和信息化部装备工业发展中心(EIDC)是工业和信息化部下属的国家级政策研究与数据分析机构,专注于中国装备制造业发展研究。EIDC追踪和分析机床、工业机器人、轨道交通装备、航空航天装备、海洋工程机械、能源装备和农业机械等高端装备产业发展动态,发布行业分析报告、装备制造业运行数据、企业排名和政策研究成果,是政府规划制定、行业对标和投资决策的权威参考。EIDC数据涵盖中国战略性装备制造产业的生产产出、市场规模、技术进步指标和国际竞争力评估,是「中国制造2025」和双循环战略落实情况的重要数据来源。" + }, + "website": "https://www.miit-eidc.org.cn/", + "data_url": "https://www.miit-eidc.org.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "industry", + "technology", + "economics" + ], + "update_frequency": "monthly", + "tags": [ + "工业和信息化部装备工业发展中心", + "miit", + "eidc", + "装备制造", + "equipment-manufacturing", + "高端装备", + "high-end-equipment", + "机床", + "machine-tools", + "工业机器人", + "industrial-robots", + "轨道交通", + "rail-transit-equipment", + "航空航天装备", + "aerospace-equipment", + "海洋工程", + "marine-engineering", + "农业机械", + "agricultural-machinery", + "中国制造2025", + "made-in-china-2025", + "制造业", + "manufacturing", + "工业统计", + "industrial-statistics", + "产业分析", + "industry-analysis", + "企业排名", + "enterprise-rankings" + ], + "data_content": { + "en": [ + "Equipment manufacturing operation data: monthly and annual output statistics for key equipment categories including machine tools, industrial robots, rail equipment, and energy machinery", + "Industry analysis reports: sector assessments covering market scale, growth trends, enterprise concentration, and regional distribution of equipment manufacturing", + "Enterprise rankings: performance rankings of major equipment manufacturers by revenue, output, R&D investment, and market share", + "Technology advancement indicators: tracking innovation metrics, patent filings, and technology maturity levels across strategic equipment sectors", + "Policy research outputs: analysis of domestic and international policies affecting equipment manufacturing competitiveness", + "International comparison data: benchmarking China's equipment industry against major manufacturing nations including Germany, Japan, South Korea, and the United States", + "Market demand forecasts: projections for downstream industry demand driving equipment purchases in sectors such as energy, transportation, and construction", + "Import substitution tracking: progress data on replacing imported equipment with domestically produced alternatives across strategic sectors" + ], + "zh": [ + "装备制造业运行数据:机床、工业机器人、轨道装备和能源机械等主要装备类别的月度和年度产量统计", + "行业分析报告:涵盖市场规模、增长趋势、企业集中度和装备制造业区域分布的行业评估报告", + "企业排名:按营收、产量、研发投入和市场份额对主要装备制造企业进行排名", + "技术进步指标:追踪战略性装备领域的创新指标、专利申请和技术成熟度水平", + "政策研究成果:影响装备制造竞争力的国内外政策分析", + "国际比较数据:中国装备工业与德国、日本、韩国和美国等主要制造大国的横向对比", + "市场需求预测:能源、交通运输和建筑等下游产业拉动装备需求的展望预测", + "进口替代跟踪:战略领域以国产装备替代进口设备的进展数据" + ] + }, + "has_api": false, + "file_path": "china/industry/china-miit-eidc.json" + }, + { + "id": "china-camet", + "name": { + "en": "China Association of Metros (CAMET)", + "zh": "中国城市轨道交通协会" + }, + "description": { + "en": "The China Association of Metros (CAMET) is the national industry association for urban rail transit in China, established in 2000 and headquartered in Beijing. CAMET represents subway, light rail, monorail, and automated guideway transit operators across all major Chinese cities. The association publishes the authoritative annual Urban Rail Transit Statistical Report, which is the primary national data source for the industry, covering total network mileage, number of lines, passenger volumes, operating revenues, investment, and ridership trends across China's urban rail systems. As of 2023, China operates the world's largest urban rail network with over 10,000 kilometers of routes across 55 cities. CAMET data are essential for urban transport planning, smart city investment analysis, and benchmarking China's transit expansion against global peers.", + "zh": "中国城市轨道交通协会(CAMET)是全国性城市轨道交通行业协会,2000年在北京成立,代表全国各大城市的地铁、轻轨、单轨和自动导轨交通运营商。协会每年发布权威的《城市轨道交通统计和分析报告》,是该行业最主要的全国数据来源,涵盖全国城市轨道交通总里程、线路数量、客运量、运营收入、投资规模和客流趋势等数据。截至2023年,中国已运营全球最大规模的城市轨道交通网络,在55个城市运营总里程超过1万公里。CAMET数据是城市交通规划、智慧城市投资分析及与全球同行进行基准比较的重要参考。" + }, + "website": "https://www.camet.org.cn", + "data_url": "https://www.camet.org.cn", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "infrastructure", + "transportation", + "urban", + "statistics" + ], + "update_frequency": "annual", + "tags": [ + "中国城市轨道交通协会", + "camet", + "地铁", + "metro", + "城市轨道交通", + "urban-rail-transit", + "轻轨", + "light-rail", + "客运量", + "passenger-volume", + "运营里程", + "operating-mileage", + "地铁统计", + "metro-statistics", + "城市交通", + "urban-transportation", + "轨道交通投资", + "rail-transit-investment", + "智慧交通", + "smart-transportation", + "城市建设", + "urban-construction", + "公共交通", + "public-transit" + ], + "data_content": { + "en": [ + "Annual urban rail transit statistical report: comprehensive industry-wide data published each year for all operating cities", + "Network scale: total route mileage, number of lines, number of stations by city and nationwide aggregate", + "Passenger volume: annual and monthly ridership, passenger-kilometers, peak-hour loads by city and system", + "Operating revenues: fare revenue, ancillary income, operating costs, and subsidy data for urban rail operators", + "Infrastructure investment: annual capital expenditure on new lines, extensions, and renovation projects", + "Fleet and equipment: number of vehicles, train composition, average train age, and energy consumption", + "Line-by-line statistics: mileage, station count, daily ridership, and opening year for each urban rail line in China", + "City-level comparison: cross-city benchmarking of network size, efficiency, and ridership density", + "Expansion plans: data on under-construction mileage and approved future projects by city", + "Safety and punctuality: key performance indicators including on-time rate and incident statistics" + ], + "zh": [ + "年度城市轨道交通统计分析报告:每年发布,涵盖所有运营城市的全行业数据", + "网络规模:按城市和全国汇总的总运营里程、线路数量和车站数量", + "客运量:各城市和系统的年度及月度客运量、旅客周转量和高峰小时负荷", + "运营收入:城市轨道交通运营商的票务收入、附属收入、运营成本和补贴数据", + "基础设施投资:新线、延伸线和改造项目的年度资本支出", + "车辆装备:车辆数量、列车编组、平均车龄和能耗数据", + "分线统计:中国每条城市轨道交通线路的里程、车站数、日均客流和开通年份", + "城市横向比较:各城市网络规模、运营效率和客流密度的跨城市基准分析", + "建设规划:各城市在建里程和已批未建项目数据", + "安全与准点率:准点率和事故统计等关键绩效指标" + ] + }, + "has_api": false, + "file_path": "china/infrastructure/china-camet.json" + }, + { + "id": "china-cata", + "name": { + "en": "China Air Transport Association", + "zh": "中国航空运输协会" + }, + "description": { + "en": "The China Air Transport Association (CATA) is the national industry association representing China's civil aviation sector. Founded in 2005, CATA serves airlines, airports, aviation service providers, and related enterprises in China's rapidly growing civil aviation market. CATA publishes industry reports and statistical data covering airline passenger and cargo volumes, operational performance, aviation safety, airport throughput, ticket pricing trends, and the financial health of China's carriers. It also advocates for policy positions on behalf of the civil aviation industry and organizes capacity-building programs. CATA's data complements official CAAC statistics by providing industry-level analysis and benchmarking across China's aviation ecosystem, making it a key reference for investors, airlines, and transport policy researchers.", + "zh": "中国航空运输协会(CATA)是代表中国民航业的全国性行业协会,成立于2005年,为航空公司、机场、航空服务提供商及相关企业服务。CATA发布涵盖航空公司旅客和货物运输量、运营绩效、航空安全、机场吞吐量、机票价格趋势和中国航空公司财务状况的行业报告和统计数据,并代表民航业进行政策倡导、组织能力建设项目。CATA数据通过提供行业层面分析和基准对比,对官方民航局统计数据形成有效补充,是投资机构、航空公司和交通政策研究人员的重要参考。" + }, + "website": "https://www.cata.org.cn/", + "data_url": "https://www.cata.org.cn/NewsList.aspx?id=11", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "transportation", + "industry", + "statistics" + ], + "update_frequency": "monthly", + "tags": [ + "民航", + "civil-aviation", + "航空运输", + "air-transport", + "航空公司", + "airline", + "机场", + "airport", + "旅客吞吐量", + "passenger-throughput", + "货运量", + "cargo-volume", + "航班", + "flight", + "cata", + "中国航空", + "china-aviation", + "机票价格", + "airfare", + "航空安全", + "aviation-safety", + "运输总周转量", + "total-traffic-volume", + "load-factor", + "座位利用率" + ], + "data_content": { + "en": [ + "Monthly airline passenger statistics: domestic and international passenger volumes for all Chinese carriers by route and airport", + "Cargo and mail traffic: air freight and mail transport volumes, growth rates, and major cargo hub performance", + "Total traffic volume (RTK): revenue tonne-kilometers broken down by airline, route type, and domestic versus international operations", + "Airline operational performance: on-time departure and arrival rates, load factors, and capacity utilization metrics", + "Airport throughput ranking: China's major airports ranked by annual passenger and cargo volumes", + "Ticket price trend analysis: average domestic and international airfare indices, seasonal fluctuation reports", + "Airline financial health: industry-level revenue, profit, cost structure, and fuel expenditure statistics", + "Aviation safety incident statistics: accident and incident reports compiled from national regulatory data", + "Annual China Civil Aviation Development Report: comprehensive overview of industry scale, structure, and outlook" + ], + "zh": [ + "月度航空公司旅客统计:全国各航空公司按航线和机场分类的国内外旅客运输量", + "货邮运输量:航空货物和邮件运输量、增长率及主要货运枢纽表现", + "运输总周转量(RTK):按航空公司、航线类型及国内外业务分类的收入吨公里数", + "航空公司运营绩效:准点率、客座率及运力利用率指标", + "机场吞吐量排名:全国主要机场年度旅客吞吐量和货运量排行", + "机票价格趋势分析:国内外平均票价指数及季节性波动报告", + "航空公司财务状况:行业整体营收、利润、成本结构和燃油支出统计", + "航空安全事故统计:汇编自国家监管数据的事故和事件报告", + "年度中国民航发展报告:行业规模、结构及发展前景综合概览" + ] + }, + "has_api": false, + "file_path": "china/infrastructure/china-cata.json" + }, + { + "id": "china-ccs", + "name": { + "en": "China Classification Society", + "zh": "中国船级社" + }, + "description": { + "en": "China Classification Society (CCS) is the only national ship classification society in China, authorized by the Chinese government under the Ministry of Transport. Established in 1956, CCS develops and enforces technical standards for ship design, construction, and materials; surveys and certifies vessels, offshore platforms, and marine equipment; and issues certificates of compliance with international maritime conventions. CCS is a full member of the International Association of Classification Societies (IACS). It publishes annual statistics on the Chinese-flagged fleet, classification rules, technical circulars, and reports on marine safety and green shipping. CCS data is widely used by shipbuilders, shipowners, insurers, regulators, and maritime researchers to track China's shipbuilding output, fleet condition, and compliance with international maritime standards such as SOLAS, MARPOL, and the ISM Code.", + "zh": "中国船级社(CCS)是中国唯一的国家级船舶检验机构,依法受交通运输部授权。成立于1956年,CCS负责制定和执行船舶设计、建造及材料的技术标准,对船舶、海洋平台和船用设备进行检验和认证,并出具符合国际海事公约的合规证书。CCS是国际船级社协会(IACS)的正式成员,每年发布中国籍船队统计数据、船级规范、技术通函和海洋安全与绿色航运报告。CCS数据被造船企业、船东、保险机构、监管部门和海事研究人员广泛用于追踪中国造船产量、船队状况,以及对SOLAS、MARPOL、ISM规则等国际海事标准的遵守情况。" + }, + "website": "https://www.ccs.org.cn/", + "data_url": "https://www.ccs.org.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "transportation", + "safety", + "standards", + "statistics" + ], + "update_frequency": "annual", + "tags": [ + "船级社", + "classification-society", + "船舶检验", + "ship-survey", + "船舶认证", + "vessel-certification", + "海洋平台", + "offshore-platform", + "造船", + "shipbuilding", + "船队统计", + "fleet-statistics", + "航运安全", + "maritime-safety", + "绿色航运", + "green-shipping", + "iacs", + "solas", + "marpol", + "ISM规则", + "中国船级社", + "ccs", + "海事标准", + "maritime-standards", + "船舶规范", + "classification-rules" + ], + "data_content": { + "en": [ + "Chinese-flagged fleet statistics: annual data on number, tonnage, and age distribution of CCS-classed vessels by ship type (bulk carriers, tankers, container ships, LNG carriers)", + "Ship classification rules: technical standards for hull structure, machinery, electrical systems, fire protection, and stability applicable to new builds and existing vessels", + "Survey and certification records: number of ships surveyed, certificates issued, and deficiency findings by flag state and vessel type", + "Marine equipment type approvals: list of approved marine equipment and materials certified to CCS standards", + "Green shipping reports: data on ship energy efficiency (EEDI, CII), alternative fuel adoption, and decarbonization progress for the Chinese fleet", + "Technical circulars and safety bulletins: notifications on regulatory changes, accident lessons learned, and updated technical requirements", + "Annual China Ship Quality Report: comprehensive statistics on ship construction quality, major deficiencies, and safety performance", + "Offshore platform and marine structure data: classification statistics for drilling rigs, FPSOs, and fixed platforms operating in Chinese waters", + "International convention compliance data: PSC detention rates and deficiency statistics for CCS-classed vessels in foreign ports" + ], + "zh": [ + "中国籍船队统计:CCS入级船舶数量、吨位及船龄分布年度数据,按船型(散货船、油轮、集装箱船、LNG船)分类", + "船舶入级规范:适用于新造船和现有船舶的船体结构、机械、电气系统、防火和稳性技术标准", + "检验与证书记录:按船旗国和船型分类的检验船舶数量、颁证数量和缺陷发现", + "船用设备型式认可:经CCS认证的船用设备和材料认可名录", + "绿色航运报告:中国船队能效(EEDI、CII)、替代燃料应用和脱碳进展数据", + "技术通函和安全通告:法规变更通知、事故经验教训和更新的技术要求", + "年度中国船舶质量报告:船舶建造质量、主要缺陷和安全表现综合统计", + "海洋平台和海洋结构物数据:在中国海域运营的钻井平台、FPSO和固定平台入级统计", + "国际公约合规数据:CCS入级船舶在外国港口的PSC滞留率和缺陷统计" + ] + }, + "has_api": false, + "file_path": "china/infrastructure/china-ccs.json" + }, + { + "id": "china-crg", + "name": { + "en": "China State Railway Group", + "zh": "中国国家铁路集团有限公司" + }, + "description": { + "en": "China State Railway Group Co., Ltd. (China Railway, CRG) is the state-owned enterprise responsible for operating and managing China's national railway network, the world's largest high-speed rail system. As the sole operator of China's national rail network, CRG publishes official statistics on railway passenger traffic, freight volumes, operating mileage, infrastructure investment, high-speed rail operations, and network expansion. Its annual statistical bulletins are the authoritative source for China's rail transportation data, covering over 155,000 km of railway lines including more than 45,000 km of high-speed rail.", + "zh": "中国国家铁路集团有限公司(国铁集团,CRG)是负责运营管理中国国家铁路网的国有企业,运营着全球最大的高速铁路系统。作为全国铁路网唯一运营主体,国铁集团发布铁路旅客运输量、货物运输量、营业里程、基础设施投资、高铁运营及路网扩建等官方统计数据。其年度统计公报是中国铁路运输数据的权威来源,覆盖超过15.5万公里铁路线路,其中高速铁路超过4.5万公里。" + }, + "website": "http://www.china-railway.com.cn/", + "data_url": "http://www.china-railway.com.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "transportation", + "logistics", + "infrastructure", + "economics" + ], + "update_frequency": "monthly", + "tags": [ + "铁路", + "railway", + "高铁", + "high-speed-rail", + "铁路运输统计", + "railway-transport-statistics", + "旅客发送量", + "passenger-traffic", + "货物运输", + "freight-volume", + "铁路里程", + "railway-mileage", + "高速铁路", + "hsr", + "春运", + "spring-festival-travel", + "铁路基础设施", + "railway-infrastructure", + "轨道交通", + "rail-transit", + "铁路投资", + "railway-investment" + ], + "data_content": { + "en": [ + "Passenger traffic statistics: monthly and annual railway passenger volume by line and region", + "Freight transport data: goods volume, turnover, and commodity breakdown by rail", + "High-speed rail operations: HSR ridership, punctuality rates, and fleet statistics", + "Railway network mileage: total operating length, by speed class and electrification", + "Infrastructure investment: fixed asset investment in railway construction by year and region", + "Station and line data: number of stations, route lengths, and service frequencies", + "Spring Festival (Chunyun) travel statistics: annual peak travel period passenger data", + "Locomotive and rolling stock: fleet composition, utilization rates", + "Operating revenue and efficiency indicators: ton-kilometers, passenger-kilometers", + "Annual Railway Statistical Bulletin: comprehensive review of national rail system performance" + ], + "zh": [ + "旅客运输统计:按线路和地区划分的月度及年度铁路旅客发送量", + "货物运输数据:铁路货运量、换算周转量及分品类货物统计", + "高速铁路运营:高铁客运量、正点率及车辆编组统计", + "铁路网里程:按速度等级及电气化程度划分的运营总里程", + "基础设施投资:按年度及地区划分的铁路建设固定资产投资", + "车站与线路数据:车站数量、线路长度及运营频次", + "春运旅客统计:年度春运高峰期旅客发送量数据", + "机车车辆:车辆编组构成、使用效率", + "运营收入与效率指标:换算吨公里、旅客公里", + "铁路统计年报:全国铁路系统运营绩效综合报告" + ] + }, + "has_api": false, + "file_path": "china/infrastructure/china-crg.json" + }, + { + "id": "china-crrc", + "name": { + "en": "CRRC Corporation Limited", + "zh": "中国中车股份有限公司" + }, + "description": { + "en": "CRRC Corporation Limited (中国中车) is the world's largest rolling stock manufacturer, formed by the merger of CNR and CSR in 2015 and listed on both Shanghai and Hong Kong stock exchanges. As a central state-owned enterprise, CRRC designs and manufactures high-speed trains, locomotives, metro vehicles, trams, and freight wagons, serving over 100 countries. CRRC publishes annual reports, production statistics, R&D investment data, and export performance figures, providing authoritative insight into China's rail equipment manufacturing, high-speed rail technology, and global transportation industry supply chains.", + "zh": "中国中车股份有限公司(中国中车)是全球最大的轨道交通装备制造商,2015年由中国北车与中国南车合并组建,在上海和香港两地上市,为国务院国资委直属中央企业。中国中车研制生产高速列车、机车、城轨车辆、有轨电车及货运车辆,产品遍布全球100多个国家。公司发布年度报告、生产统计、研发投入数据及出口业绩,是了解中国轨道交通装备制造、高速铁路技术和全球交通产业供应链的权威数据来源。" + }, + "website": "https://www.crrcgc.cc", + "data_url": "https://www.crrcgc.cc", + "api_url": null, + "authority_level": "commercial", + "country": "CN", + "geographic_scope": "national", + "update_frequency": "annual", + "domains": [ + "transportation", + "manufacturing", + "rail", + "technology" + ], + "tags": [ + "china", + "crrc", + "中国中车", + "rail", + "轨道交通", + "high-speed-rail", + "高铁", + "rolling-stock", + "机车车辆", + "manufacturing", + "制造业", + "metro", + "城轨", + "state-owned-enterprise", + "央企" + ], + "data_content": { + "en": [ + "Annual Reports - Revenue breakdown by product type (EMU, locomotives, metro vehicles, components), domestic and export markets", + "Production Statistics - Number of vehicles delivered, track km equivalent, and production capacity by plant", + "R&D Investment Data - Research expenditure, patent filings, technology platform development", + "Export Performance - Rolling stock exports by country and region, international project contracts", + "ESG Reports - Energy consumption per vehicle, carbon footprint of manufacturing operations, labor statistics" + ], + "zh": [ + "年度报告 - 按产品类型(动车组、机车、城轨车辆、零部件)分类的营收及内外销数据", + "生产统计 - 交付车辆数量、折算公里数及各基地产能", + "研发投入数据 - 研究经费、专利申请、技术平台建设", + "出口业绩 - 按国家和地区分类的轨道交通装备出口及海外项目合同", + "ESG报告 - 单车能耗、制造运营碳足迹、用工统计" + ] + }, + "has_api": false, + "file_path": "china/infrastructure/china-crrc.json" + }, + { + "id": "china-crta", + "name": { + "en": "China Road Transport Association", + "zh": "中国道路运输协会" + }, + "description": { + "en": "The China Road Transport Association (CRTA) is the national industry organization representing China's road transport sector, including passenger transport, freight logistics, bus and coach services, and road-based supply chain businesses. China operates the world's largest road transport network by volume, and CRTA serves as the authoritative voice for the industry's 30 million-plus practitioners. The association publishes statistical reports on road passenger and freight volumes, vehicle fleet composition, fuel consumption, road safety data, new energy vehicle adoption in transport fleets, and industry revenue. CRTA also tracks emerging trends in logistics digitization, platform economy in transport, and cross-border freight. Its data is essential for supply chain analysts, logistics operators, transport policy researchers, and investors tracking China's vast land-based transport economy.", + "zh": "中国道路运输协会(CRTA)是代表中国道路运输行业的全国性行业组织,涵盖旅客运输、货运物流、公路客车及公路供应链等业务。中国拥有全球运量最大的道路运输网络,中国道路运输协会是代表行业3000万余名从业人员的权威机构。协会发布公路客货运量、车辆结构、燃料消耗、道路安全、运输车队新能源汽车普及率及行业营收等统计报告,同时追踪物流数字化、平台经济在运输领域的发展及跨境货运新趋势。其数据对于供应链分析师、物流运营商、交通政策研究人员以及追踪中国陆路运输经济的投资者具有重要参考价值。" + }, + "website": "https://www.crta.org.cn/", + "data_url": "https://www.crta.org.cn/news.html?id=42", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "transportation", + "logistics", + "economics" + ], + "update_frequency": "monthly", + "tags": [ + "道路运输", + "road-transport", + "货运", + "freight-transport", + "旅客运输", + "passenger-transport", + "物流", + "logistics", + "运输统计", + "transport-statistics", + "新能源商用车", + "new-energy-commercial-vehicles", + "公路货运量", + "road-freight-volume", + "供应链", + "supply-chain", + "跨境货运", + "cross-border-freight", + "crta", + "运输平台", + "transport-platform", + "货车", + "trucks", + "道路安全", + "road-safety" + ], + "data_content": { + "en": [ + "Road freight volume: total road freight tonnage and ton-kilometer data at national and regional levels", + "Road passenger transport: passenger trips and passenger-kilometer data by service type", + "Vehicle fleet statistics: registered commercial vehicle counts by category (trucks, buses, coaches, taxis)", + "New energy vehicle adoption: penetration rate of electric and alternative fuel vehicles in road transport fleets", + "Industry revenue and operators: total business revenue and count of road transport enterprises", + "Fuel consumption and energy: diesel and gasoline consumption by road transport sector", + "Road safety data: traffic accident rates, fatalities, and injury statistics for commercial transport", + "Cross-border freight: China-Europe land freight volumes, China-ASEAN road cargo data", + "Logistics platform economy: data on digital freight matching platforms and transport sharing economy", + "Annual industry development report: comprehensive overview of China road transport sector trends and outlook" + ], + "zh": [ + "公路货运量:全国及分地区公路货运总量和货物周转量(吨公里)数据", + "公路旅客运输:按服务类型分类的旅客出行次数和旅客周转量数据", + "车辆结构统计:按类型(货车、公共汽车、长途客车、出租车)统计的营运车辆注册数量", + "新能源汽车普及:电动及替代燃料车辆在道路运输车队中的渗透率", + "行业营收与经营者:道路运输企业总营业收入和数量", + "燃料消耗与能源:道路运输行业柴油和汽油消耗量", + "道路安全数据:营运交通的交通事故率、死亡人数和伤亡统计", + "跨境货运:中欧陆路货运量、中国—东盟公路货运数据", + "物流平台经济:数字货运匹配平台和运输共享经济数据", + "年度行业发展报告:中国道路运输行业趋势与展望综合报告" + ] + }, + "has_api": false, + "file_path": "china/infrastructure/china-crta.json" + }, + { + "id": "china-cttic", + "name": { + "en": "China Transport Telecommunications & Information Center", + "zh": "中国交通通信信息中心" + }, + "description": { + "en": "China Transport Telecommunications & Information Center (CTTIC) is the specialized public service institution under the Ministry of Transport of China, responsible for transport-sector telecommunications, informatization and satellite navigation services. It publishes integrated transportation statistics, road and waterway network data, logistics operation indicators, and supports national transport information systems including the BeiDou application in commercial vehicles and vessels.", + "zh": "中国交通通信信息中心(CTTIC)是中华人民共和国交通运输部直属的专业公共服务机构,承担交通行业通信、信息化与卫星导航服务,发布综合交通运输统计、公路和水路网络数据、物流运行指标等,并支持北斗在营运车辆和船舶中的应用等国家级交通信息系统。" + }, + "website": "https://www.cttic.cn", + "data_url": "https://www.cttic.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "transportation", + "infrastructure", + "logistics", + "technology" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "china", + "transport", + "telecommunications", + "informatization", + "logistics", + "beidou", + "satellite-navigation", + "commercial-vehicles", + "交通通信信息中心", + "交通运输部", + "北斗", + "营运车辆", + "交通信息化", + "CTTIC" + ], + "data_content": { + "en": [ + "Integrated transport operation monitoring data", + "National road freight and passenger volume indicators", + "Waterway and coastal shipping statistics", + "BeiDou navigation applications in commercial fleets", + "Transport informatization standards and datasets", + "Industry think-tank reports on smart transportation" + ], + "zh": [ + "综合交通运行监测数据", + "全国公路货运与客运运行指标", + "水路及沿海航运统计", + "营运车辆北斗导航应用数据", + "交通信息化标准与数据集", + "智慧交通行业智库报告" + ] + }, + "has_api": false, + "file_path": "china/infrastructure/china-cttic.json" + }, + { + "id": "china-highway-society", + "name": { + "en": "China Highway and Transportation Society", + "zh": "中国公路学会" + }, + "description": { + "en": "The China Highway and Transportation Society (CHTS) is a national academic and professional organization for China's highway and transportation sector, affiliated with the Ministry of Transport. CHTS publishes research reports, technical standards, and data covering highway construction, road infrastructure, traffic volume, transportation technology, and highway safety. It is a key reference for policy research, engineering standards, and transportation planning in China.", + "zh": "中国公路学会(CHTS)是中国公路与交通运输行业的全国性学术和专业组织,隶属于交通运输部。学会发布研究报告、技术标准和数据,内容涵盖公路建设、道路基础设施、交通流量、交通运输技术和公路安全。是中国政策研究、工程标准和交通规划的重要参考来源。" + }, + "website": "https://www.chts.cn", + "data_url": "https://www.chts.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "infrastructure", + "transportation", + "construction", + "technology" + ], + "update_frequency": "annual", + "tags": [ + "公路", + "highway", + "交通运输", + "transportation", + "道路建设", + "road-construction", + "交通流量", + "traffic-volume", + "公路安全", + "highway-safety", + "交通工程", + "traffic-engineering", + "路网", + "road-network", + "技术标准", + "technical-standards", + "chts", + "中国公路" + ], + "data_content": { + "en": [ + "Highway mileage statistics: total road network length by grade (expressway, national highway, provincial highway, rural road)", + "Highway construction investment: annual investment data in road infrastructure by region and project type", + "Traffic volume data: vehicle counts, passenger and freight transport volume on major highway corridors", + "Highway safety statistics: accident frequency, fatality rates, major incident analysis by road type", + "Bridge and tunnel statistics: number, length, and structural condition of highway bridges and tunnels", + "Technical research reports: pavement technology, bridge engineering, tunnel construction innovations", + "Highway freight transport: cargo volume and turnover by transport mode and highway grade", + "Transportation planning and policy research reports for China's road network" + ], + "zh": [ + "公路里程统计:按等级(高速公路、国道、省道、农村公路)的公路网总里程", + "公路建设投资:按地区和项目类型的道路基础设施年度投资数据", + "交通流量数据:主要公路走廊的车辆计数、客运和货运量", + "公路安全统计:按道路类型分类的事故频率、死亡率和重大事故分析", + "桥梁和隧道统计:公路桥梁和隧道的数量、长度和结构状况", + "技术研究报告:路面技术、桥梁工程、隧道建设创新", + "公路货运:按运输方式和公路等级的货运量和货运周转量", + "中国公路网交通规划和政策研究报告" + ] + }, + "has_api": false, + "file_path": "china/infrastructure/china-highway-society.json" + }, + { + "id": "china-mot", + "name": { + "en": "Ministry of Transport of China", + "zh": "中华人民共和国交通运输部", + "native": "中华人民共和国交通运输部" + }, + "description": { + "en": "The Ministry of Transport (MOT) is responsible for planning, policy, and regulation of transportation in China, covering highways, waterways, civil aviation coordination, and postal services. It publishes comprehensive transportation statistics through annual statistical bulletins and monthly reports, including data on road and waterway infrastructure, passenger and freight volumes, vehicle registrations, port throughput, and transportation safety.", + "zh": "中华人民共和国交通运输部负责中国交通运输的规划、政策和监管,涵盖公路、水路、民航协调和邮政等领域。通过年度统计公报和月度报告发布全面的交通运输统计数据,包括公路和水路基础设施、客货运量、车辆登记、港口吞吐量和交通安全数据。" + }, + "website": "https://www.mot.gov.cn", + "data_url": "https://www.mot.gov.cn/shuju/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "transportation", + "infrastructure", + "logistics" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "交通运输部", + "ministry-of-transport", + "公路", + "highway", + "水路", + "waterway", + "港口", + "port", + "客运量", + "passenger-volume", + "货运量", + "freight-volume", + "物流", + "logistics", + "交通基础设施", + "transport-infrastructure", + "高速公路", + "expressway", + "内河航运", + "inland-waterway", + "春运", + "spring-festival-travel", + "mot", + "china" + ], + "data_content": { + "en": [ + "Highway infrastructure - Total mileage, expressway length, road grades, bridges, and tunnels", + "Waterway infrastructure - Navigable inland waterway mileage, berths, port facilities", + "Passenger transport - Passenger volumes and turnover by highway, waterway, and urban transit", + "Freight transport - Freight volumes and turnover by highway and waterway", + "Port throughput - Cargo and container throughput for major coastal and inland ports", + "Vehicle statistics - Registered commercial vehicles, vessels, and urban transit vehicles", + "Transportation safety - Accident statistics, casualties, and safety indicators", + "Urban public transport - Bus routes, metro lines, ridership, and operational data", + "Fixed asset investment - Investment in transportation infrastructure by sector", + "Spring Festival travel rush (Chunyun) - Daily cross-regional passenger flow statistics" + ], + "zh": [ + "公路基础设施 - 公路总里程、高速公路里程、公路等级、桥梁和隧道", + "水路基础设施 - 内河航道里程、泊位数、港口设施", + "客运 - 按公路、水路和城市公交分类的客运量和旅客周转量", + "货运 - 按公路和水路分类的货运量和货物周转量", + "港口吞吐量 - 主要沿海和内河港口的货物和集装箱吞吐量", + "车辆统计 - 营运车辆、船舶和城市公交车辆登记数", + "交通安全 - 事故统计、伤亡人数和安全指标", + "城市公共交通 - 公交线路、地铁线路、客运量和运营数据", + "固定资产投资 - 按行业分类的交通基础设施投资", + "春运 - 每日跨区域人员流动量统计" + ] + }, + "has_api": false, + "file_path": "china/infrastructure/china-mot.json" + }, + { + "id": "china-msa", + "name": { + "en": "China Maritime Safety Administration", + "zh": "中国海事局" + }, + "description": { + "en": "The China Maritime Safety Administration (MSA), operating under the Ministry of Transport, is the principal authority responsible for maritime safety supervision, vessel registration and inspection, seafarer certification, port state control, and navigation aid management in China. MSA publishes authoritative statistics on China's inland and coastal maritime activities, including vessel registration volumes, maritime accident statistics, seafarer certificate issuance, port state control inspection results, and pollution incident records. China operates one of the world's largest merchant fleets and busiest port systems; MSA data is therefore essential for understanding maritime safety trends, shipping industry compliance, and China's evolving role in global maritime trade. MSA also manages the Ship Automatic Identification System (AIS) data infrastructure for Chinese waters.", + "zh": "中国海事局隶属于交通运输部,是负责中国海事安全监管、船舶登记检验、船员证书管理、港口国监督检查和航标管理的主要权威机构。海事局发布内河和沿海航运活动权威统计数据,包括船舶登记数量、海事事故统计、船员证书签发、港口国监督检查结果和污染事故记录。中国拥有世界上最大的商船队之一和最繁忙的港口体系,因此海事局数据是了解海事安全趋势、航运行业合规状况及中国在全球海上贸易中作用的重要参考。海事局还管理中国水域的船舶自动识别系统(AIS)数据基础设施。" + }, + "website": "https://www.msa.gov.cn/", + "data_url": "https://www.msa.gov.cn/page/zxgk/tjsj.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "transportation", + "safety", + "statistics" + ], + "update_frequency": "annual", + "tags": [ + "海事", + "maritime", + "海事安全", + "maritime-safety", + "船舶", + "vessel", + "船舶登记", + "ship-registration", + "港口国监督", + "port-state-control", + "船员", + "seafarer", + "航运", + "shipping", + "海事事故", + "maritime-accident", + "海上污染", + "marine-pollution", + "ais", + "内河航运", + "inland-waterway", + "商船队", + "merchant-fleet", + "中国海事局", + "msa", + "海上交通", + "maritime-traffic" + ], + "data_content": { + "en": [ + "Vessel registration statistics: number and tonnage of registered ships by type (cargo, tanker, passenger, fishing) and flag", + "Maritime accident records: annual statistics on ship collisions, groundings, fires, sinkings, and casualties by vessel type and water area", + "Port state control (PSC) inspection results: deficiency rates, detention statistics, and compliance performance of foreign vessels in Chinese ports", + "Seafarer certification data: number of maritime professional certificates issued by grade and certificate type", + "Inland waterway traffic statistics: cargo volumes, vessel trips, and throughput on major Chinese rivers including the Yangtze and Pearl River systems", + "Coastal shipping statistics: domestic short-sea shipping volumes and major cargo route performance", + "Marine pollution incidents: oil spill, hazardous substance discharge, and other pollution event statistics", + "Navigation aid and channel data: lighthouse, buoy, and fairway maintenance statistics for Chinese waters", + "Annual China Maritime Development Report: comprehensive overview of China's maritime safety environment and shipping industry" + ], + "zh": [ + "船舶登记统计:按类型(货船、油轮、客船、渔船)和船旗分类的登记船舶数量和吨位", + "海事事故记录:按船型和水域分类的年度船舶碰撞、搁浅、火灾、沉没及人员伤亡统计", + "港口国监督(PSC)检查结果:外国船舶在中国港口的缺陷率、滞留统计和合规表现", + "船员证书数据:按等级和证书类型颁发的水上专业证书数量", + "内河航运统计:长江、珠江等主要水系的货运量、船次和吞吐量", + "沿海航运统计:国内短程海运运量和主要货运航线表现", + "海洋污染事故:溢油、危险物质泄漏及其他污染事故统计", + "航标和航道数据:中国水域灯塔、浮标和航道维护统计", + "年度中国航运发展报告:中国海事安全环境和航运行业综合概览" + ] + }, + "has_api": false, + "file_path": "china/infrastructure/china-msa.json" + }, + { + "id": "china-nra", + "name": { + "en": "National Railway Administration of China", + "zh": "国家铁路局" + }, + "description": { + "en": "The National Railway Administration (NRA) is China's government regulatory authority for the railway industry, responsible for safety supervision, licensing, technical standards, and industry monitoring across all rail operations including high-speed rail, conventional rail, and urban transit. Established in 2013 under the Ministry of Transport, NRA publishes the Annual Statistical Bulletin on Railway Transportation (铁道统计公报) containing comprehensive data on railway network length, passenger volume, freight tonnage, locomotive and rolling stock inventory, safety incidents, fixed asset investment, and employment. As China operates the world's largest high-speed rail network, NRA's data is critical for understanding China's transportation infrastructure, logistics capacity, and regional economic connectivity.", + "zh": "国家铁路局是中国铁路行业的政府监管机构,负责涵盖高铁、普铁和城市轨道交通在内的全路网安全监管、行政许可、技术标准制定和行业监测。2013年在交通运输部领导下组建成立。铁路局每年发布《铁道统计公报》,收录铁路网里程、旅客发送量、货物发送量、机车车辆保有量、安全事故、固定资产投资及从业人员等全面数据。中国已建成全球最大高铁网络,铁路局数据对于研究中国交通基础设施、物流能力和区域经济互联互通具有重要价值。" + }, + "website": "https://www.nra.gov.cn/", + "data_url": "https://www.nra.gov.cn/xxgk/gkml/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "transportation", + "infrastructure", + "economics" + ], + "update_frequency": "annual", + "tags": [ + "国家铁路局", + "nra", + "national-railway-administration", + "铁道统计公报", + "railway-statistics", + "高铁", + "high-speed-rail", + "hsr", + "铁路里程", + "railway-mileage", + "旅客发送量", + "passenger-volume", + "货物运输", + "freight-transport", + "铁路投资", + "railway-investment", + "铁路安全", + "railway-safety", + "动车组", + "emu-trains", + "高铁网络", + "hsr-network", + "铁路运营", + "railway-operation", + "轨道交通", + "rail-transit", + "物流", + "logistics" + ], + "data_content": { + "en": [ + "Railway network length: total operating mileage of national railways, broken down by high-speed rail (250km/h+), electrified lines, double-track lines, and regional distribution", + "Passenger statistics: total passenger trips, passenger-kilometers, average trip distance, and breakdown by high-speed vs. conventional rail", + "Freight statistics: total freight volume (tonnes), tonne-kilometers, cargo types (coal, grain, steel, containers), and major corridor flows", + "Rolling stock inventory: number of locomotives, EMU (high-speed) trainsets, passenger cars, and freight wagons in service", + "Fixed asset investment: annual capital expenditure on new line construction, electrification, and infrastructure upgrades", + "Station and facility data: number of operating railway stations, maintenance depots, and freight terminals", + "Safety statistics: number of railway accidents, casualties, and near-miss incidents by category", + "Industry employment: total workforce in the national railway system by function" + ], + "zh": [ + "铁路网里程:全国铁路营业里程,按高铁(250公里/小时及以上)、电气化铁路、复线及区域分布细分", + "旅客统计:旅客发送量、旅客周转量、平均运距,以及高铁与普铁分类数据", + "货物统计:货物发送量(万吨)、货物周转量、货物品类(煤炭、粮食、钢铁、集装箱)及主要通道运量", + "机车车辆保有量:在役机车、动车组、客车和货车数量", + "固定资产投资:新线建设、电气化改造和基础设施提升年度资本支出", + "车站及设施数据:运营铁路客站、维修基地和货运站数量", + "安全统计:按类别分类的铁路事故数量、人员伤亡及险情情况", + "行业就业:全国铁路系统按职能分类的从业人员总数" + ] + }, + "has_api": false, + "file_path": "china/infrastructure/china-nra.json" + }, + { + "id": "china-ports-association", + "name": { + "en": "China Ports & Harbours Association", + "zh": "中国港口协会" + }, + "description": { + "en": "The China Ports & Harbours Association (CPHA) is a national non-profit industry organization supervised by the Ministry of Transport of China. It brings together port enterprises, shipping terminals, logistics companies and research institutions, releasing official industry statistics including port cargo throughput, container throughput, shipping capacity utilization, port productivity indicators and industry development reports covering mainland Chinese ports.", + "zh": "中国港口协会(CPHA)是由中华人民共和国交通运输部主管的全国性港航业非营利社团组织,汇聚港口企业、码头运营商、航运物流公司及科研机构,发布包括港口货物吞吐量、集装箱吞吐量、船舶运力利用率、港口生产效率指标及行业发展报告等官方行业统计数据,覆盖中国大陆各港口。" + }, + "website": "http://www.port.org.cn", + "data_url": "http://www.port.org.cn", + "api_url": null, + "authority_level": "other", + "country": "CN", + "domains": [ + "transportation", + "infrastructure", + "trade", + "logistics" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "china", + "ports", + "harbours", + "shipping", + "port-throughput", + "container-throughput", + "cargo", + "logistics", + "中国港口协会", + "港口协会", + "港口吞吐量", + "集装箱吞吐量", + "港航业", + "水运", + "CPHA" + ], + "data_content": { + "en": [ + "Monthly and annual port cargo throughput statistics", + "Container throughput (TEU) rankings by port", + "Shipping capacity and fleet utilization", + "Port productivity and operational efficiency indicators", + "Port infrastructure investment and construction data", + "Industry development reports and market analysis", + "Membership directory of Chinese ports and terminals" + ], + "zh": [ + "月度及年度港口货物吞吐量统计", + "港口集装箱吞吐量(TEU)排名", + "船舶运力与船队利用率", + "港口生产效率与运营指标", + "港口基础设施投资与建设数据", + "行业发展报告与市场分析", + "全国港口与码头会员名录" + ] + }, + "has_api": false, + "file_path": "china/infrastructure/china-ports-association.json" + }, + { + "id": "china-post-group", + "name": { + "en": "China Post Group Corporation", + "zh": "中国邮政集团有限公司" + }, + "description": { + "en": "China Post Group Corporation is China's state-owned postal and logistics enterprise, operating under the supervision of the State Post Bureau. As the national postal service operator, China Post Group collects and publishes comprehensive statistics on postal services, express delivery, e-commerce logistics, savings banking, and insurance. Its statistical data, together with reports from the State Post Bureau, form the authoritative source for China's postal industry metrics, covering mail volumes, express parcel counts, rural postal coverage, and postal savings balances. China Post operates the world's most extensive postal network and is a key indicator of China's consumer economy and e-commerce growth.", + "zh": "中国邮政集团有限公司是国家邮政局监管的国有邮政和物流企业,是全国邮政业务运营主体。中国邮政集团收集并发布邮政服务、快递、电商物流、储蓄银行及保险业务的综合统计数据,与国家邮政局统计报告共同构成中国邮政行业指标的权威来源,涵盖函件量、快递包裹量、农村邮政覆盖率及邮政储蓄余额等数据。中国邮政运营着全球规模最大的邮政网络,是反映中国消费经济和电商增长的重要指标。" + }, + "website": "https://www.chinapost.com.cn/", + "data_url": "https://www.chinapost.com.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "logistics", + "transportation", + "economics", + "finance" + ], + "update_frequency": "annual", + "tags": [ + "邮政", + "postal-service", + "快递", + "express-delivery", + "邮政统计", + "postal-statistics", + "包裹量", + "parcel-volume", + "电商物流", + "e-commerce-logistics", + "邮政储蓄", + "postal-savings", + "农村邮政", + "rural-postal", + "物流", + "logistics", + "邮政年报", + "postal-annual-report", + "国家邮政局", + "state-post-bureau", + "寄递服务", + "delivery-services" + ], + "data_content": { + "en": [ + "Mail volumes: letters, parcels, and printed matter by class and destination", + "Express delivery statistics: parcel counts, weight, and revenue from express services", + "E-commerce logistics: online shopping-driven parcel volumes and regional distribution", + "Postal network coverage: number of postal outlets, rural coverage ratio, delivery routes", + "Postal Savings Bank: deposit balances, loan data, and customer counts", + "Revenue and financial data: total postal service revenue, breakdown by business line", + "Rural postal services: coverage of administrative villages, delivery frequency statistics", + "International mail: cross-border postal flows, international express volumes", + "Postal industry employment: workforce size and distribution across service types", + "Annual Report: comprehensive review of China Post Group's business and financial performance" + ], + "zh": [ + "函件量:按类别和目的地划分的信函、包裹及印刷品数据", + "快递统计:快递包裹数量、重量及收入", + "电商物流:网购驱动的包裹量及地区分布", + "邮政网络覆盖:邮政网点数量、农村覆盖率及投递路线", + "邮政储蓄银行:存款余额、贷款数据及客户数量", + "收入与财务数据:邮政服务总收入及各业务线分类", + "农村邮政服务:行政村覆盖率、投递频次统计", + "国际邮件:跨境邮政流量及国际快递量", + "邮政行业就业:各类服务类型的从业人员规模及分布", + "年度报告:中国邮政集团业务与财务绩效综合报告" + ] + }, + "has_api": false, + "file_path": "china/infrastructure/china-post-group.json" + }, + { + "id": "china-spb", + "name": { + "en": "State Post Bureau of China", + "zh": "国家邮政局" + }, + "description": { + "en": "The State Post Bureau of China (SPB) is the national regulatory authority overseeing the postal and express delivery industry in China. It publishes official statistics on China's postal and courier services, including parcel volumes, revenue, business entities, and delivery network capacity. With China being the world's largest express delivery market, SPB's data provides critical insights into the country's e-commerce logistics backbone, consumer demand trends, and the rapid growth of domestic and cross-border express services.", + "zh": "国家邮政局是负责监管中国邮政和快递业的国家级监管机构。国家邮政局发布中国邮政和快递服务的官方统计数据,包括快件业务量、业务收入、企业数量和配送网络能力。中国是全球最大的快递市场,国家邮政局的数据为了解中国电子商务物流支撑体系、消费需求趋势以及国内外快递服务的快速增长提供了关键参考。" + }, + "website": "https://www.spb.gov.cn/", + "data_url": "https://www.spb.gov.cn/gjyzj/c100009/c100014/xxgk_index.shtml", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "economics", + "industry", + "infrastructure" + ], + "update_frequency": "monthly", + "tags": [ + "国家邮政局", + "state-post-bureau", + "快递统计", + "express-delivery-statistics", + "邮政业务", + "postal-services", + "快件业务量", + "parcel-volume", + "电商物流", + "e-commerce-logistics", + "快递行业", + "courier-industry", + "跨境快递", + "cross-border-express", + "spb", + "业务收入", + "postal-revenue", + "配送网络", + "delivery-network", + "邮政行业", + "postal-industry" + ], + "data_content": { + "en": [ + "Monthly express delivery volume: total number of parcels handled, year-on-year growth rates", + "Postal and express revenue statistics: total industry revenue, breakdown by service type", + "Enterprise data: number of postal and express delivery enterprises by type and region", + "Cross-border e-commerce logistics: international express parcel volumes and key trade lanes", + "Delivery network capacity: courier stations, delivery vehicles, employees, and sorting center data", + "Regional parcel statistics: express volume and revenue by province and major cities", + "Postal savings bank and financial services data", + "Complaint and service quality reports: consumer complaint statistics, delivery timeliness rates", + "China Postal Industry Annual Report: comprehensive annual review of the postal and courier sector" + ], + "zh": [ + "月度快递业务量:处理快件总量及同比增长率", + "邮政和快递收入统计:行业总收入及按服务类型分类数据", + "企业数据:各类型和地区的邮政和快递企业数量", + "跨境电商物流:国际快递包裹量及主要贸易通道数据", + "配送网络能力:快递网点、配送车辆、从业人员及分拣中心数据", + "各地区快递统计:各省市快递业务量及收入", + "邮政储蓄银行及金融服务数据", + "申诉及服务质量报告:消费者投诉统计、配送时效率", + "中国邮政行业年度报告:邮政和快递行业综合年度回顾" + ] + }, + "has_api": false, + "file_path": "china/infrastructure/china-spb.json" + }, + { + "id": "ceic-china-urbanization", + "name": { + "en": "CEIC Data - China Urbanization Rate", + "zh": "CEIC数据库 - 中国城镇化率" + }, + "description": { + "en": "CEIC provides comprehensive historical urbanization rate data for China, covering both usual residence and household registration statistics from 1949 to 2025. The database includes national-level urbanization rates as well as provincial and prefecture-level breakdowns, sourced from the National Bureau of Statistics of China. CEIC is a leading economic data platform serving economists, analysts, and researchers worldwide.", + "zh": "CEIC提供中国全面的历史城镇化率数据,涵盖1949年至2025年的常住人口和户籍人口统计数据。数据库包括国家级城镇化率以及省级和地级市的详细数据,数据来源于国家统计局。CEIC是服务全球经济学家、分析师和研究人员的领先经济数据平台。" + }, + "website": "https://www.ceicdata.com", + "data_url": "https://www.ceicdata.com/zh-hans/china/population-urbanization-rate", + "api_url": "https://info.ceicdata.com/api-and-data-feed-solution", + "authority_level": "commercial", + "country": "CN", + "domains": [ + "demographics", + "economics", + "social", + "urbanization" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "china", + "urbanization", + "城镇化率", + "population", + "人口统计", + "demographics", + "social-development", + "社会发展", + "常住人口", + "户籍人口", + "usual-residence", + "household-registration", + "provincial-data", + "省级数据", + "nbs", + "国家统计局", + "ceic", + "economic-data", + "经济数据" + ], + "data_content": { + "en": [ + "National Urbanization Rate (Usual Residence) - Annual data from 1982 to 2025, measuring the percentage of population living in urban areas based on usual residence", + "National Urbanization Rate (Household Registration) - Annual data from 1949 to 2023, measuring the percentage of population with urban household registration (hukou)", + "Provincial Urbanization Rates - Provincial-level urbanization statistics covering all provinces and autonomous regions in China", + "Prefecture-level City Urbanization Data - Detailed urbanization rates for major cities and prefecture-level administrative divisions", + "Historical Time Series - Long-term urbanization trends showing China's urban transformation from 21.1% (1982) to 67.9% (2025)", + "Dual Metrics Comparison - Comparison between usual residence and household registration urbanization rates, highlighting the urban-rural divide" + ], + "zh": [ + "全国城镇化率(常住人口) - 1982年至2025年的年度数据,衡量基于常住地的城镇人口占总人口的百分比", + "全国城镇化率(户籍人口) - 1949年至2023年的年度数据,衡量拥有城镇户籍人口占总人口的百分比", + "省级城镇化率 - 涵盖中国所有省份和自治区的省级城镇化统计数据", + "地级市城镇化数据 - 主要城市和地级行政区划的详细城镇化率数据", + "历史时间序列 - 展示中国城镇化进程的长期趋势,从21.1%(1982年)到67.9%(2025年)", + "双重指标对比 - 常住人口与户籍人口城镇化率的对比,反映城乡二元结构特征" + ] + }, + "has_api": true, + "file_path": "china/national/ceic-china-urbanization.json" + }, + { + "id": "china-acwf", + "name": { + "en": "All-China Women's Federation", + "zh": "中华全国妇女联合会" + }, + "description": { + "en": "The All-China Women's Federation (ACWF) is China's national women's organization operating under the Chinese Communist Party. It publishes research reports, periodic surveys, and statistics on the social status of women, gender equality, women's employment, marriage and family trends, and women's rights protection across China.", + "zh": "中华全国妇女联合会(全国妇联)是在中国共产党领导下的全国性妇女组织,发布有关中国妇女社会地位、性别平等、妇女就业、婚姻家庭动态和妇女权益保护的研究报告、定期调查和统计资料。" + }, + "website": "https://www.women.org.cn", + "data_url": "https://www.women.org.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "social", + "demographics", + "gender-equality" + ], + "geographic_scope": "national", + "update_frequency": "irregular", + "tags": [ + "women", + "gender", + "gender-equality", + "social-status", + "marriage", + "family", + "employment", + "妇女", + "性别平等", + "妇联", + "社会地位", + "women-rights", + "china" + ], + "data_content": { + "en": [ + "Chinese Women's Social Status Survey (periodic national survey)", + "Women's employment and labor market participation statistics", + "Marriage and family structure data", + "Women's education attainment statistics", + "Domestic violence and rights protection reports", + "Women's health and reproductive rights data", + "Gender gap indicators across provinces" + ], + "zh": [ + "中国妇女社会地位调查(定期全国调查)", + "妇女就业和劳动参与率统计", + "婚姻和家庭结构数据", + "妇女受教育程度统计", + "家庭暴力和权益保护报告", + "妇女健康和生育权利数据", + "各省性别差距指标" + ] + }, + "has_api": false, + "file_path": "china/national/china-acwf.json" + }, + { + "id": "china-cncaprc", + "name": { + "en": "China National Committee on Ageing", + "zh": "中国老龄协会" + }, + "description": { + "en": "The China National Committee on Ageing (CNCAPRC), also known as China Association of Gerontology and Geriatrics, is the government-affiliated national organization overseeing ageing affairs in China. It publishes authoritative data on China's ageing population including demographic statistics, elderly care services, pension coverage, health status of older adults, and policy research on population ageing.", + "zh": "中国老龄协会(CNCAPRC)是负责中国老龄事业管理的政府关联全国性组织,发布中国老龄人口权威数据,包括人口统计数据、养老服务、养老金覆盖情况、老年人健康状况及人口老龄化政策研究报告。" + }, + "website": "https://www.cncaprc.gov.cn", + "data_url": "https://www.cncaprc.gov.cn", + "api_url": null, + "country": "CN", + "domains": [ + "demographics", + "health", + "social", + "government" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "china", + "ageing", + "elderly", + "demographics", + "pension" + ], + "data_content": { + "en": [ + "Ageing Population Statistics - Comprehensive data on China's elderly population size, growth, and distribution", + "Elderly Care Services - Data on nursing homes, community care facilities, and home care coverage", + "Pension System Coverage - Statistics on urban and rural pension enrollment and benefit levels", + "Health Status of Older Adults - Chronic disease prevalence, disability rates, and mental health data", + "Ageing Policy Research - Reports on social security reform, long-term care insurance, and ageing in place", + "China Report on Ageing - Annual flagship report on the state of China's ageing population" + ], + "zh": [ + "老龄人口统计 - 中国老年人口规模、增长及分布综合数据", + "养老服务数据 - 养老院、社区养老设施及居家养老覆盖情况", + "养老金体系覆盖 - 城乡养老保险参保及待遇水平统计", + "老年人健康状况 - 慢性病患病率、残疾率及心理健康数据", + "老龄政策研究 - 社会保障改革、长期护理保险及居家养老报告", + "中国老龄事业发展报告 - 中国老龄人口状况年度旗舰报告" + ] + }, + "authority_level": "government", + "has_api": false, + "file_path": "china/national/china-cncaprc.json" + }, + { + "id": "china-cta", + "name": { + "en": "China Tourism Academy", + "zh": "中国旅游研究院" + }, + "description": { + "en": "The China Tourism Academy (CTA) is the national-level research institution under the Ministry of Culture and Tourism, serving as China's authoritative think tank for tourism industry data and policy research. CTA publishes comprehensive statistical reports on domestic and inbound tourism, including visitor numbers, tourism revenue, hotel occupancy rates, destination rankings, travel patterns, and consumer spending. Its annual China Tourism Statistical Bulletin and thematic reports on rural tourism, red tourism, and international visitor flows are official primary sources for understanding China's tourism economy and industry trends.", + "zh": "中国旅游研究院是文化和旅游部直属的国家级研究机构,是中国旅游行业数据和政策研究的权威智库。研究院发布国内旅游和入境旅游的综合统计报告,涵盖游客数量、旅游收入、酒店入住率、目的地排名、出行规律和消费支出等数据。年度《中国旅游统计公报》及乡村旅游、红色旅游和入境客流等专题报告,是了解中国旅游经济和行业趋势的官方一手数据来源。" + }, + "website": "https://www.ctaweb.org.cn", + "data_url": "https://www.ctaweb.org.cn/index.php?m=home&c=Lists&a=index&tid=21", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "tourism", + "economics", + "statistics", + "consumer-behavior" + ], + "update_frequency": "quarterly", + "tags": [ + "china", + "tourism", + "travel", + "visitor-statistics", + "hotel", + "domestic-tourism", + "inbound-tourism", + "outbound-tourism", + "destination", + "旅游统计", + "旅游收入", + "旅游研究院", + "国内旅游", + "入境旅游", + "出境旅游", + "乡村旅游", + "文化旅游" + ], + "data_content": { + "en": [ + "Domestic Tourism Statistics - Annual and quarterly domestic visitor trips, tourism revenue, and average spending per trip", + "Inbound Tourism - International visitor arrivals by country of origin, purpose of visit, and port of entry", + "Outbound Tourism - Chinese outbound travelers, top destination countries, and spending abroad", + "Hotel Industry - Star-rated hotel occupancy rates, revenue per available room (RevPAR), and regional hotel performance", + "Destination Rankings - Top domestic tourist destinations by visitor volume, revenue, and satisfaction index", + "Rural and Red Tourism - Statistics on rural tourism revenue, visitors, and employment impact; red tourism site visit data", + "Tourism Economy Forecast - Quarterly and annual forecasts for China's tourism industry growth and recovery indicators" + ], + "zh": [ + "国内旅游统计 - 年度和季度国内旅游人次、旅游收入和人均消费", + "入境旅游 - 按客源地、出行目的和入境口岸分类的国际游客入境情况", + "出境旅游 - 中国出境旅游人数、热门目的地国家和境外消费情况", + "住宿业 - 星级酒店入住率、每间可售房收入(RevPAR)和各地区酒店业绩", + "目的地排名 - 按游客量、旅游收入和满意度指数排名的国内热门旅游目的地", + "乡村和红色旅游 - 乡村旅游收入、游客数量和就业带动统计;红色旅游景区参观数据", + "旅游经济预测 - 中国旅游行业增长与复苏指标的季度和年度预测" + ] + }, + "has_api": false, + "file_path": "china/national/china-cta.json" + }, + { + "id": "china-mca", + "name": { + "en": "Ministry of Civil Affairs of China", + "zh": "中华人民共和国民政部", + "native": "中华人民共和国民政部" + }, + "description": { + "en": "The Ministry of Civil Affairs (MCA) is responsible for social welfare, social organization management, grassroots governance, administrative divisions, marriage registration, and disaster relief in China. It publishes comprehensive statistical data through the China Civil Affairs Statistical Yearbook and quarterly statistical bulletins, covering social services, social organizations, community governance, and welfare institutions.", + "zh": "中华人民共和国民政部负责社会福利、社会组织管理、基层治理、行政区划、婚姻登记和救灾救济等工作。通过《中国民政统计年鉴》和季度统计公报发布全面的统计数据,涵盖社会服务、社会组织、社区治理和福利机构等领域。" + }, + "website": "https://www.mca.gov.cn", + "data_url": "https://www.mca.gov.cn/n156/n2679/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "social", + "demographics", + "governance" + ], + "geographic_scope": "national", + "update_frequency": "quarterly", + "tags": [ + "民政部", + "civil-affairs", + "社会福利", + "social-welfare", + "社会组织", + "social-organizations", + "行政区划", + "administrative-divisions", + "婚姻登记", + "marriage-registration", + "救灾", + "disaster-relief", + "养老", + "elderly-care", + "社区治理", + "community-governance", + "低保", + "minimum-living-standard", + "ngo", + "民间组织", + "mca", + "china" + ], + "data_content": { + "en": [ + "Social service statistics - Total expenditures, institutions, beds, and personnel in social services", + "Social organizations - Registration and management of social groups, foundations, and private non-enterprise units", + "Community governance - Urban and rural community statistics, residents' committees, villagers' committees", + "Administrative divisions - County-level and above administrative division codes and changes", + "Marriage registration - Marriage and divorce registration statistics by region", + "Disaster relief - Natural disaster statistics, affected populations, relief expenditures", + "Elderly care services - Nursing homes, elderly care institutions, beds, and residents", + "Minimum living standard guarantee (Dibao) - Urban and rural subsistence allowance recipients and expenditures", + "Orphan care and child welfare - Child welfare institutions, orphans, and adoption statistics", + "Funeral and burial services - Cremation rates, funeral service institutions" + ], + "zh": [ + "社会服务统计 - 社会服务事业费支出、机构数、床位数和从业人员", + "社会组织 - 社会团体、基金会和民办非企业单位的登记管理统计", + "社区治理 - 城乡社区统计、居委会、村委会数据", + "行政区划 - 县级以上行政区划代码和变更情况", + "婚姻登记 - 分地区结婚和离婚登记统计", + "救灾 - 自然灾害统计、受灾人口、救灾支出", + "养老服务 - 养老院、养老机构、床位数和入住人数", + "最低生活保障(低保) - 城乡低保对象人数和支出", + "孤儿和儿童福利 - 儿童福利机构、孤儿和收养统计", + "殡葬服务 - 火化率、殡葬服务机构统计" + ] + }, + "has_api": false, + "file_path": "china/national/china-mca.json" + }, + { + "id": "china-mps", + "name": { + "en": "Ministry of Public Security of China", + "zh": "中华人民共和国公安部" + }, + "description": { + "en": "The Ministry of Public Security (MPS) of the People's Republic of China is the principal government department responsible for public security, law enforcement, and household registration (hukou) management. MPS publishes statistical data on population registration, migration, public safety, traffic management, and crime statistics. Its household registration data is a primary source for China's population demographics and urbanization metrics.", + "zh": "中华人民共和国公安部是负责公共安全、执法和户籍管理的主要政府部门。公安部发布人口登记、人口迁移、公共安全、交通管理和犯罪统计数据。其户籍登记数据是中国人口统计和城镇化指标的主要来源之一。" + }, + "website": "https://www.mps.gov.cn", + "data_url": "https://www.mps.gov.cn/n6557558/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "demographics", + "public-safety", + "migration", + "social" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "population", + "hukou", + "public-safety", + "migration", + "urbanization", + "crime-statistics", + "traffic", + "demographics", + "household-registration" + ], + "data_content": { + "en": [ + "Household Registration (Hukou) Statistics - Registered population by province, urban/rural classification, and demographic characteristics", + "Population Migration Data - Inter-provincial and intra-provincial population movements, temporary residence registrations", + "Urbanization Metrics - Hukou-based urbanization rates by province, urban population growth trends", + "Public Safety Statistics - Crime rates, case filing and resolution statistics by category", + "Traffic Management Data - Motor vehicle registrations, driver's license statistics, traffic accident data", + "Exit and Entry Statistics - Passport issuance, visa processing, cross-border travel volumes", + "Cybersecurity Data - Internet security incidents, cybercrime statistics and enforcement actions", + "Fire Safety Statistics - Fire incidents, casualties, property losses, and fire department response data" + ], + "zh": [ + "户籍登记统计 - 按省份、城乡分类和人口特征的户籍人口数据", + "人口迁移数据 - 省际和省内人口流动、暂住登记", + "城镇化指标 - 按省份分类的户籍城镇化率、城镇人口增长趋势", + "公共安全统计 - 犯罪率、按类别分类的立案和破案统计", + "交通管理数据 - 机动车保有量、驾驶证统计、交通事故数据", + "出入境统计 - 护照签发、签证办理、跨境出行量", + "网络安全数据 - 网络安全事件、网络犯罪统计和执法行动", + "消防安全统计 - 火灾事故、伤亡人数、财产损失和消防救援数据" + ] + }, + "has_api": false, + "file_path": "china/national/china-mps.json" + }, + { + "id": "cnki-population-census", + "name": { + "en": "CNKI China Population Census Database", + "zh": "中国人口普查数据库" + }, + "description": { + "en": "A comprehensive database based on official census materials from Chinese government statistical departments since 1953. It serves as both a full-text database and census data analysis system, publishing census materials in original full-text and Excel formats. The database contains 196 types of materials (411 volumes), 56,838 census indicators, and 7,651,466 statistical data points covering demographics, education, employment, migration, housing, and social security.", + "zh": "基于1953年以来中国政府统计部门历次人口普查资料的综合数据库,既是普查资料全文数据库也是普查数据分析系统。以原版全文和Excel数据两种形式出版中国政府统计部门历次人口普查资料,目前共计196种、411册,包含人口普查条目56,838个、统计数据7,651,466笔,涵盖人口统计、教育程度、就业职业、迁移流动、住房情况和社会保障等领域。" + }, + "website": "https://www.cnki.net/", + "data_url": "https://data.cnki.net/npcd", + "api_url": null, + "authority_level": "commercial", + "country": "CN", + "domains": [ + "demographics", + "social", + "education", + "employment", + "housing" + ], + "geographic_scope": "national", + "update_frequency": "irregular", + "tags": [ + "china", + "census", + "人口普查", + "demographics", + "人口统计", + "population", + "cnki", + "中国知网", + "statistical-yearbook", + "统计年鉴", + "government-data", + "政府数据", + "migration", + "迁移流动", + "housing", + "住房", + "employment", + "就业", + "education", + "受教育程度" + ], + "data_content": { + "en": [ + "Original Census Reports - Full-text publications of official census reports from 1953 to present (196 types, 411 volumes)", + "Census Statistical Data - Structured Excel data with 56,838 census indicators and 7,651,466 data points", + "Demographic Statistics - Gender, age, ethnicity, population distribution by province and administrative region", + "Education Statistics - Educational attainment levels, literacy rates, school enrollment data", + "Employment and Occupation - Labor force statistics, industry classification, occupational distribution", + "Migration and Mobility - Population migration patterns, urban-rural mobility, floating population statistics", + "Social Security - Social insurance coverage, pension participation, healthcare coverage", + "Marriage and Fertility - Marriage statistics, birth rates, family planning data, mortality rates", + "Housing Conditions - Housing stock, living space, housing ownership, residential conditions", + "Academic Research Papers - Scholarly articles analyzing census data and demographic trends" + ], + "zh": [ + "原版普查公报 - 1953年至今历次人口普查官方报告全文(196种、411册)", + "普查统计数据 - 结构化Excel数据,包含56,838个普查指标和7,651,466笔数据", + "人口统计 - 性别、年龄、民族、按省级行政区划的人口分布", + "教育统计 - 受教育程度、识字率、在校学生数据", + "就业与职业 - 劳动力统计、行业分类、职业分布", + "迁移流动 - 人口迁移模式、城乡流动、流动人口统计", + "社会保障 - 社会保险覆盖、养老金参保、医疗保险覆盖", + "婚姻生育 - 婚姻统计、出生率、计划生育数据、死亡率", + "住房情况 - 住房存量、居住面积、住房所有权、居住条件", + "学术论文 - 分析人口普查数据和人口趋势的学术研究文章" + ] + }, + "has_api": false, + "file_path": "china/national/cnki-population-census.json" + }, + { + "id": "china-cma", + "name": { + "en": "China Meteorological Administration", + "zh": "中国气象局" + }, + "description": { + "en": "The China Meteorological Administration (CMA) is the national meteorological authority responsible for weather monitoring, climate research, and meteorological services. Through its National Meteorological Information Center and China Meteorological Data Service Centre (data.cma.cn), it provides comprehensive weather observations, climate datasets, satellite imagery, and environmental monitoring data.", + "zh": "中国气象局是国家气象主管机构,负责天气监测、气候研究和气象服务。通过国家气象信息中心和中国气象数据网(data.cma.cn),提供全面的气象观测、气候数据集、卫星影像和环境监测数据。" + }, + "website": "https://www.cma.gov.cn", + "data_url": "https://data.cma.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "meteorology", + "climate", + "environment", + "earth-science" + ], + "update_frequency": "daily", + "tags": [ + "china", + "weather", + "climate", + "meteorology", + "satellite", + "environment", + "气象", + "天气", + "气候", + "气象数据", + "卫星遥感" + ], + "data_content": { + "en": [ + "Surface Observations - Temperature, precipitation, humidity, wind, pressure from 2000+ weather stations nationwide", + "Climate Data - Historical climate records, climate normals, extreme weather events, and climate change indicators", + "Satellite Data - FY-series meteorological satellite imagery, cloud products, and remote sensing data", + "Radar Data - Weather radar observations covering precipitation, severe weather detection", + "Climate Projections - Regional climate model outputs, climate change scenarios, and impact assessments", + "Agrometeorological Data - Crop weather conditions, soil moisture, growing season data for agricultural planning" + ], + "zh": [ + "地面观测 - 全国2000+气象站的温度、降水、湿度、风速、气压数据", + "气候数据 - 历史气候记录、气候标准值、极端天气事件和气候变化指标", + "卫星数据 - 风云系列气象卫星影像、云产品和遥感数据", + "雷达数据 - 覆盖降水、强对流天气的气象雷达观测", + "气候预估 - 区域气候模式输出、气候变化情景和影响评估", + "农业气象 - 作物气象条件、土壤湿度、生长季数据" + ] + }, + "has_api": false, + "file_path": "china/national/meteorology/china-cma.json" + }, + { + "id": "china-ncc", + "name": { + "en": "National Climate Center of China (NCC-CMA)", + "zh": "国家气候中心" + }, + "description": { + "en": "The National Climate Center (NCC) under the China Meteorological Administration (CMA) is China's authoritative research and service institution for climate monitoring, prediction, climate change assessment, and climate applications. It provides national climate bulletins, seasonal outlooks, climate change monitoring products, and historical climate data.", + "zh": "国家气候中心隶属于中国气象局,是中国气候监测、预测、气候变化评估与气候应用的权威研究与业务机构。提供国家气候公报、季节气候预测、气候变化监测产品及历史气候数据。" + }, + "website": "https://www.ncc-cma.net", + "data_url": "https://cmdp.ncc-cma.net", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "climate", + "meteorology", + "environment" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "climate", + "气候", + "climate-change", + "气候变化", + "climate-monitoring", + "气候监测", + "climate-prediction", + "气候预测", + "china-climate", + "中国气候", + "NCC", + "CMA" + ], + "data_content": { + "en": [ + "National climate bulletins and annual climate assessment reports", + "Seasonal and monthly climate outlook products", + "Climate change monitoring indicators (temperature, precipitation, extreme events)", + "Historical climate datasets and drought/flood records", + "Climate system diagnostic products (ENSO, monsoon, teleconnections)" + ], + "zh": [ + "国家气候公报和年度气候评估报告", + "季节和月度气候预测产品", + "气候变化监测指标(气温、降水、极端事件)", + "历史气候数据集和旱涝灾害记录", + "气候系统诊断产品(ENSO、季风、遥相关)" + ] + }, + "has_api": false, + "file_path": "china/national/meteorology/china-ncc.json" + }, + { + "id": "china-nmc", + "name": { + "en": "National Meteorological Centre of China", + "zh": "中央气象台" + }, + "description": { + "en": "The National Meteorological Centre (NMC) is China's national weather forecasting and meteorological service center, operating under the China Meteorological Administration (CMA). NMC is responsible for issuing official national weather forecasts, severe weather warnings, and meteorological disaster early warnings covering the entire Chinese territory. It provides real-time weather observation data from thousands of ground stations, ocean buoys, weather balloons, and satellites. NMC operates China's numerical weather prediction (NWP) models and produces the authoritative daily and extended-range weather forecasts. Key products include national weather charts, precipitation forecasts, temperature trend predictions, typhoon tracks, drought and flood monitoring, and seasonal climate outlooks. NMC's data feeds directly into agriculture, transportation, disaster prevention, public health, and energy sector planning across China.", + "zh": "中央气象台是中国国家气象局(中国气象局)下属的国家级天气预报和气象服务中心。中央气象台负责发布覆盖全国的官方天气预报、强对流天气预警和气象灾害预警。提供来自全国数千个地面气象站、海洋浮标、探空气球和气象卫星的实时气象观测数据。中央气象台运行中国数值天气预报(NWP)模式,制作权威的日常天气预报和中长期天气预报。主要产品包括全国天气图、降水预报、气温趋势预测、台风路径预报、旱涝监测和季节气候展望。中央气象台数据直接服务于全国农业、交通运输、防灾减灾、公共卫生和能源规划。" + }, + "website": "https://www.nmc.cn", + "data_url": "https://www.nmc.cn/publish/observations.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "meteorology", + "climate", + "environment", + "disaster-prevention" + ], + "update_frequency": "real-time", + "tags": [ + "中央气象台", + "nmc", + "national-meteorological-centre", + "天气预报", + "weather-forecast", + "气象预警", + "meteorological-warning", + "实时气象", + "real-time-weather", + "气象观测", + "weather-observation", + "台风", + "typhoon", + "暴雨预警", + "rainstorm-warning", + "数值天气预报", + "numerical-weather-prediction", + "旱涝监测", + "drought-flood-monitoring", + "气候预测", + "climate-prediction", + "中国气象局", + "china-meteorological-administration" + ], + "data_content": { + "en": [ + "Real-time national weather observations: surface data from thousands of ground stations across China including temperature, precipitation, wind speed, humidity, and air pressure", + "Official national weather forecasts: daily and extended-range (10-day) forecasts for all provinces, cities, and counties in China", + "Severe weather warnings: official color-coded alerts for rainstorms, typhoons, high winds, snowstorms, frost, fog, haze, thunderstorms, and other extreme events", + "Typhoon tracking and forecasts: real-time path predictions, intensity forecasts, and landfall risk assessments for tropical cyclones affecting China", + "Precipitation and drought monitoring: nationwide maps of rainfall distribution, accumulated precipitation anomalies, and drought severity indices", + "Climate outlook products: monthly, seasonal, and annual climate trend forecasts including temperature and precipitation anomaly predictions", + "Numerical weather prediction model outputs: analysis fields, forecast fields, and ensemble prediction data from CMA's operational NWP systems", + "Radar and satellite data: composite radar reflectivity maps, satellite cloud imagery, and derived meteorological products for the national domain" + ], + "zh": [ + "全国实时气象观测:来自全国数千个地面站的地面数据,包括气温、降水、风速、湿度和气压", + "官方全国天气预报:全国各省市县的逐日和中期(10天)天气预报", + "强对流天气预警:暴雨、台风、大风、暴雪、霜冻、大雾、霾、雷暴等极端天气事件的官方色码预警", + "台风路径追踪和预报:影响中国的热带气旋实时路径预测、强度预报和登陆风险评估", + "降水与旱涝监测:全国降雨分布图、累积降水距平图和干旱严重程度指数", + "气候展望产品:月度、季节和年度气候趋势预报,包括气温和降水距平预测", + "数值天气预报模式产品:中国气象局业务NWP系统的分析场、预报场和集合预报数据", + "雷达和卫星数据:全国合成雷达反射率图、气象卫星云图及衍生气象产品" + ] + }, + "has_api": false, + "file_path": "china/national/meteorology/china-nmc.json" + }, + { + "id": "china-nmic", + "name": { + "en": "National Meteorological Information Center", + "zh": "国家气象信息中心" + }, + "description": { + "en": "The National Meteorological Information Center (NMIC), operating under the China Meteorological Administration, is China's primary hub for meteorological data collection, processing, archiving, and distribution. Its public platform, the China Meteorological Data Service Centre (data.cma.cn), provides open and authorized access to decades of surface observations, upper-air soundings, satellite products, radar mosaics, ocean-atmosphere data, and climate reanalysis datasets. Researchers, government agencies, and enterprises can register for tiered data access ranging from free public datasets to professional-grade high-resolution archives. NMIC maintains the National Basic Meteorological Dataset, which records over 2,400 national stations and more than 60,000 automatic weather stations. The center also hosts agrometeorological, marine meteorological, and global exchange datasets from WMO partner nations.", + "zh": "国家气象信息中心是中国气象局下属专业机构,负责全国气象数据的采集、加工、存档和分发。其公众服务平台——中国气象数据网(data.cma.cn)提供从免费公开数据到专业级高分辨率档案的分级开放访问。数据内容涵盖数十年地面观测、高空探测、卫星产品、雷达拼图、海气观测和气候再分析数据集。国家基本气象数据集记录了全国2400余个国家站和6万余个自动气象站的观测数据。中心还托管农业气象、海洋气象及世界气象组织成员国交换数据集,是中国气象科研和业务的核心数据枢纽。" + }, + "website": "https://data.cma.cn", + "data_url": "https://data.cma.cn/data/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "meteorology", + "climate", + "environment", + "agriculture", + "earth-science" + ], + "update_frequency": "daily", + "tags": [ + "国家气象信息中心", + "nmic", + "中国气象数据网", + "weather-data", + "meteorology", + "climate-data", + "气象数据", + "天气", + "气候", + "地面观测", + "surface-observation", + "高空探测", + "upper-air-sounding", + "卫星数据", + "satellite-data", + "雷达", + "radar", + "再分析", + "reanalysis", + "农业气象", + "agrometeorological", + "自动气象站", + "automatic-weather-station", + "气候变化", + "climate-change", + "降水", + "precipitation", + "温度", + "temperature", + "风速", + "wind" + ], + "data_content": { + "en": [ + "Surface Observations: Temperature, precipitation, humidity, wind, pressure, and visibility from 2,400+ national stations and 60,000+ automatic weather stations", + "Upper-Air Soundings: Radiosonde profiles of temperature, humidity, and wind at pressure levels from the global upper-air network", + "Satellite Products: FY-series meteorological satellite imagery including cloud products, precipitation estimation, land surface temperature, and sea surface temperature", + "Radar Mosaics: Nationwide composite weather radar reflectivity and doppler wind products", + "Climate Reanalysis: Long-term atmospheric reanalysis datasets for climate research and model validation", + "Ocean-Atmosphere Data: Marine meteorological observations including sea surface parameters and wave data", + "Agrometeorological Data: Crop phenology, soil moisture, growing degree days, and agricultural weather indices", + "Global Exchange Data: Meteorological datasets received from WMO Global Telecommunication System partner countries" + ], + "zh": [ + "地面观测:全国2400余个国家站和6万余个自动气象站的温度、降水、湿度、风速、气压、能见度数据", + "高空探测:探空仪测量各气压层的温度、湿度和风场廓线", + "卫星产品:风云系列气象卫星云产品、降水估算、地表温度和海面温度", + "雷达拼图:全国天气雷达反射率合成图及多普勒风场产品", + "气候再分析:供气候研究和模型验证的长期大气再分析数据集", + "海洋气象:海面气象观测、海浪等海气界面参数", + "农业气象:作物物候、土壤水分、积温和农业天气指数", + "全球交换数据:通过世界气象组织全球电信系统接收的各国气象数据集" + ] + }, + "has_api": false, + "file_path": "china/national/meteorology/china-nmic.json" + }, + { + "id": "china-nsmc", + "name": { + "en": "National Satellite Meteorological Center of China", + "zh": "国家卫星气象中心" + }, + "description": { + "en": "The National Satellite Meteorological Center (NSMC), under the China Meteorological Administration, is responsible for operating China's FengYun (FY) series of meteorological satellites and providing satellite-derived meteorological and environmental data products. NSMC operates both geostationary satellites (FY-2, FY-4) and polar-orbiting satellites (FY-1, FY-3), providing global and regional data for weather forecasting, climate monitoring, disaster warning, and environmental surveillance.", + "zh": "国家卫星气象中心(NSMC)隶属于中国气象局,负责运营中国风云系列气象卫星并提供卫星遥感气象与环境数据产品。中心运营静止轨道卫星(风云二号、风云四号)和极轨卫星(风云一号、风云三号),为天气预报、气候监测、灾害预警和环境监测提供全球和区域数据。" + }, + "website": "https://www.nsmc.org.cn", + "data_url": "https://www.nsmc.org.cn/nsmc/cn/satellite/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "global", + "domains": [ + "meteorology", + "climate", + "remote-sensing" + ], + "update_frequency": "daily", + "tags": [ + "风云卫星", + "fengyun", + "气象卫星", + "meteorological-satellite", + "卫星遥感", + "satellite-remote-sensing", + "气象数据", + "weather-data", + "气候监测", + "climate-monitoring", + "灾害预警", + "disaster-warning", + "fy-2", + "fy-3", + "fy-4", + "nsmc", + "国家卫星气象中心", + "云图", + "satellite-imagery", + "大气探测", + "atmospheric-sounding" + ], + "data_content": { + "en": [ + "FengYun Satellite Products - Real-time and archived satellite imagery from FY-2, FY-3, and FY-4 series", + "Cloud Analysis Products - Cloud top temperature, cloud type classification, and cloud cover maps", + "Precipitation Estimation - Satellite-derived rainfall and snowfall estimates at national and global scale", + "Land Surface Temperature - Daily and composite land surface temperature products", + "Sea Surface Temperature - Ocean surface temperature monitoring using FY satellite data", + "Vegetation Index (NDVI) - National and global vegetation health monitoring products", + "Snow and Ice Cover - Extent and depth monitoring for polar and mountain regions", + "Atmospheric Motion Vectors - Upper-level wind field data derived from consecutive satellite images", + "Fire Detection Products - Active fire points and burned area estimates from satellite thermal channels", + "Dust and Aerosol Products - Sand-dust storm tracking, aerosol optical depth mapping", + "Typhoon Monitoring - Real-time typhoon track, intensity, and structural analysis" + ], + "zh": [ + "风云卫星产品 - 风云二号、三号、四号系列卫星实时和存档遥感图像", + "云分析产品 - 云顶温度、云型分类和云覆盖图", + "降水估算 - 国家和全球尺度卫星遥感降雨和降雪估算", + "地表温度 - 日产品和合成地表温度产品", + "海面温度 - 基于风云卫星数据的海洋表面温度监测", + "植被指数(NDVI)- 国家和全球植被健康监测产品", + "雪冰覆盖 - 极地和山区雪冰范围与厚度监测", + "大气运动矢量 - 基于连续卫星图像的高层风场数据", + "火点探测产品 - 卫星热通道主动火点和过火面积估算", + "沙尘与气溶胶产品 - 沙尘暴路径追踪、气溶胶光学厚度制图", + "台风监测 - 台风路径、强度和结构实时分析" + ] + }, + "has_api": false, + "file_path": "china/national/meteorology/china-nsmc.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": "https://www.stats.gov.cn", + "data_url": "https://www.stats.gov.cn/sj/", + "api_url": "http://data.stats.gov.cn/api.htm", + "country": "CN", + "domains": [ + "economics", + "social", + "demographics", + "industry", + "agriculture", + "services" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "china", + "statistics", + "national-accounts", + "gdp", + "population", + "census", + "official", + "government" + ], + "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": "china-cabr", + "name": { + "en": "China Academy of Building Research", + "zh": "中国建筑科学研究院有限公司" + }, + "description": { + "en": "The China Academy of Building Research (CABR) is China's top comprehensive research and development institution in the field of engineering construction, founded in 1953 and formerly under the Ministry of Housing and Urban-Rural Development (MOHURD). CABR is the primary technical body responsible for drafting and revising China's national and industry standards for construction, including the national Building Code (GB 50010), Seismic Design Code, Energy Efficiency Standards, and Fire Protection Code. The academy operates multiple national laboratories and testing centers, and maintains authoritative databases on building energy performance, structural safety, fire resistance ratings, and building materials quality. CABR has led the development of China's green building evaluation standard (GB/T 50378) and publishes research on building technology, energy efficiency, indoor environment quality, and smart buildings. It is the national technical authority that supports MOHURD policies and urban-rural construction regulation.", + "zh": "中国建筑科学研究院有限公司(中国建研院,CABR)成立于1953年,是中国工程建设领域顶级综合性科学研究开发机构,原属住房和城乡建设部管理。CABR是负责起草和修订中国建筑国家标准和行业标准的主要技术机构,包括《混凝土结构设计标准》(GB 50010)、抗震设计规范、建筑节能标准和消防规范。学院运营多个国家实验室和检测中心,维护建筑能效、结构安全、防火性能等级和建筑材料质量权威数据库。CABR主导制定了中国绿色建筑评价标准(GB/T 50378),并发布建筑技术、节能、室内环境质量和智慧建筑研究成果,是支撑住建部政策和城乡建设监管的国家技术权威机构。" + }, + "website": "https://www.cabr.cn", + "data_url": "https://www.cabr.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "construction", + "engineering", + "science", + "environment" + ], + "update_frequency": "irregular", + "tags": [ + "中国建筑科学研究院", + "cabr", + "建筑标准", + "construction-standards", + "建筑规范", + "building-code", + "抗震设计", + "seismic-design", + "建筑节能", + "building-energy-efficiency", + "绿色建筑", + "green-building", + "gb-50010", + "gb/t-50378", + "结构安全", + "structural-safety", + "防火性能", + "fire-resistance", + "建筑材料", + "building-materials", + "室内环境", + "indoor-environment", + "智慧建筑", + "smart-buildings", + "住房和城乡建设部", + "mohurd", + "国家实验室", + "national-laboratory", + "工程建设", + "engineering-construction", + "城乡建设", + "urban-rural-construction" + ], + "data_content": { + "en": [ + "Construction standards and codes database: full texts and technical interpretations of major national and industry standards drafted by CABR, including structural design codes (GB 50010 concrete, GB 50017 steel), seismic design standards, fire protection codes, and building energy efficiency standards", + "Building energy performance data: research datasets on energy consumption benchmarks for residential and public buildings across different climate zones in China, supporting the implementation of mandatory energy efficiency standards and green building certification", + "Structural safety testing results: laboratory test data on concrete, steel, composite structures, and building materials under static, dynamic, and extreme loading conditions, underpinning national standard development", + "Green building evaluation data: assessment results from China's Green Building Label certification program (GB/T 50378), including energy, water, material, indoor environment, and site management performance indicators for certified buildings", + "Indoor environment quality research: datasets on indoor air quality, thermal comfort, acoustics, and lighting in Chinese buildings, informing national health and safety standards for construction", + "Construction technology research outputs: technical reports, engineering case studies, and data on innovative construction technologies including prefabricated buildings, BIM applications, and smart building systems published by CABR research institutes" + ], + "zh": [ + "建筑标准和规范数据库:CABR起草的主要国家标准和行业标准全文及技术解读,包括结构设计规范(GB 50010混凝土、GB 50017钢结构)、抗震设计标准、消防规范和建筑节能标准", + "建筑能效数据:中国不同气候区住宅和公共建筑能耗基准研究数据集,支持强制性节能标准实施和绿色建筑认证", + "结构安全测试数据:混凝土、钢材、组合结构和建筑材料在静态、动态和极端荷载条件下的实验室测试数据,支撑国家标准制定", + "绿色建筑评估数据:中国绿色建筑标识认证项目(GB/T 50378)的评估结果,包括认证建筑的能源、水资源、材料、室内环境和场地管理绩效指标", + "室内环境质量研究:中国建筑室内空气质量、热舒适度、声学和照明数据集,为建筑健康与安全国家标准提供依据", + "建筑技术研究成果:CABR各研究院所发布的技术报告、工程案例研究以及装配式建筑、BIM应用和智慧建筑系统等创新建筑技术数据" + ] + }, + "has_api": false, + "file_path": "china/research/china-cabr.json" + }, + { + "id": "china-cae", + "name": { + "en": "Chinese Academy of Engineering", + "zh": "中国工程院" + }, + "description": { + "en": "The Chinese Academy of Engineering (CAE) is China's highest honorary and consultative academic institution in the field of engineering and technology sciences. Founded in 1994, CAE comprises over 900 elected academicians across nine disciplinary divisions including mechanical and vehicle engineering, information and electronics, chemical and metallurgical engineering, construction and environment, energy and mining, agriculture, medicine and health, and management engineering. CAE publishes the annual China Engineering Science and Technology Development Report (蓝皮书) for key industrial sectors, strategic research reports on national engineering and technology priorities, and the Engineering (工程) academic journal. CAE's advisory reports directly inform national industrial policy, major infrastructure decisions, and technology development roadmaps.", + "zh": "中国工程院是中国工程技术领域最高荣誉性和咨询性学术机构,成立于1994年,现有院士900余名,分布于机械与运载、信息与电子、化工冶金与材料、建筑环境与土木、能源与矿业、农业、医药卫生、工程管理等九个学部。中国工程院发布分行业年度《中国工程科技发展报告》(蓝皮书)、国家工程科技重大战略研究报告,主办《Engineering》学术期刊。工程院的咨询报告直接服务于国家产业政策制定、重大基础设施决策和技术发展路线图规划。" + }, + "website": "https://www.cae.cn/", + "data_url": "https://www.cae.cn/cae/html/main/col73/column_73_1.html", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "science", + "research", + "technology" + ], + "update_frequency": "annual", + "tags": [ + "中国工程院", + "cae", + "chinese-academy-of-engineering", + "工程院院士", + "cae-academicians", + "工程科技蓝皮书", + "engineering-bluebook", + "工程技术", + "engineering-technology", + "战略研究", + "strategic-research", + "产业政策", + "industrial-policy", + "重大工程", + "major-engineering-projects", + "技术路线图", + "technology-roadmap", + "中国制造", + "made-in-china", + "智能制造", + "intelligent-manufacturing", + "新材料", + "new-materials", + "新能源", + "new-energy", + "国家重大战略", + "national-major-strategy" + ], + "data_content": { + "en": [ + "China Engineering Science and Technology Development Report (blue books): annual sector-specific reports on engineering advances in manufacturing, information technology, energy, agriculture, medicine, and construction", + "CAE strategic research reports: advisory studies on national engineering and technology priorities submitted to the State Council, covering AI, semiconductors, advanced manufacturing, and green energy transitions", + "Academician elections: biennial list of newly elected CAE academicians by discipline, institution affiliation, and research field", + "Engineering journal publications: peer-reviewed research articles in the CAE's flagship English-language journal covering major engineering disciplines", + "National major engineering project assessments: technical reviews and recommendations on large-scale infrastructure, aerospace, and industrial projects", + "Science and technology foresight studies: technology trend forecasting and emerging field identification reports", + "Engineering talent statistics: data on engineering workforce, graduate education trends, and R&D personnel in China's engineering sectors" + ], + "zh": [ + "中国工程科技发展报告(蓝皮书):制造业、信息技术、能源、农业、医学和建筑等领域工程技术进展年度分行业报告", + "中国工程院战略研究报告:向国务院提交的国家工程科技重大战略咨询研究,涵盖人工智能、半导体、先进制造和绿色能源转型", + "院士增选:按学科、所在机构和研究领域分类的双年度新增选院士名单", + "《Engineering》期刊成果:工程院旗舰英文期刊发表的涵盖主要工程学科的同行评审研究论文", + "国家重大工程项目评估:大型基础设施、航空航天和工业项目技术评审及建议", + "工程科技前瞻研究:技术趋势预测和新兴领域识别报告", + "工程人才统计:中国工程领域工程技术人员队伍、研究生教育动态及研发人员数据" + ] + }, + "has_api": false, + "file_path": "china/research/china-cae.json" + }, + { + "id": "china-caict", + "name": { + "en": "China Academy of Information and Communications Technology", + "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年,秉承\"国家高端专业智库 产业创新发展平台\"的发展定位。主要从事信息通信领域的研究工作,发布权威白皮书、行业报告和发展指数,涵盖云计算、算力发展、数字经济、人工智能、信息通信等领域。" + }, + "website": "http://www.caict.ac.cn/", + "data_url": "http://www.caict.ac.cn/kxyj/qwfb/", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "technology", + "telecommunications", + "digital-economy", + "cloud-computing", + "artificial-intelligence" + ], + "update_frequency": "irregular", + "tags": [ + "caict", + "中国信通院", + "云计算", + "cloud-computing", + "算力发展指数", + "computing-power-index", + "ICT产业", + "ict-industry", + "数字经济", + "digital-economy", + "白皮书", + "white-paper", + "蓝皮书", + "blue-book", + "信息通信", + "telecommunications", + "人工智能", + "artificial-intelligence", + "工信部", + "miit", + "行业报告", + "industry-report" + ], + "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": "china-cas", + "name": { + "en": "Chinese Academy of Sciences - Science Data Bank", + "zh": "中国科学院科学数据库" + }, + "description": { + "en": "The Chinese Academy of Sciences (CAS) is China's highest academic institution and national comprehensive research center for natural sciences, with over 100 research institutes across disciplines. CAS operates the CAS Science Data Bank (scidb.cn), a national open science data repository that aggregates research datasets from CAS institutes covering earth sciences, astronomy, physics, chemistry, biology, ecology, materials science, and ocean sciences. The platform provides free access to peer-reviewed scientific datasets produced by China's premier research institutions, supporting reproducibility of published findings and enabling data-driven research across disciplines. CAS also publishes the annual China Science and Technology Development Report and manages several domain-specific data centers recognized as national scientific data centers.", + "zh": "中国科学院是中国自然科学领域最高学术机构和国家综合性科研中心,设有100余个研究院所。中科院运营科学数据库(scidb.cn),这是一个汇聚各研究院所科研数据集的国家开放科学数据仓储平台,覆盖地球科学、天文学、物理、化学、生物、生态、材料科学和海洋科学等领域。平台提供中国顶尖科研机构产出的同行评审数据集免费访问服务,支持已发表成果的可重复性验证,促进跨学科数据驱动研究。中科院同时发布年度《中国科学技术发展报告》,并管理多个被认定为国家科学数据中心的专题数据中心。" + }, + "website": "https://www.cas.cn/", + "data_url": "https://www.scidb.cn/", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "science", + "research", + "environment" + ], + "update_frequency": "irregular", + "tags": [ + "中国科学院", + "cas", + "chinese-academy-of-sciences", + "科学数据库", + "science-data-bank", + "scidb", + "科研数据", + "research-data", + "开放科学", + "open-science", + "地球科学", + "earth-science", + "生态数据", + "ecological-data", + "天文数据", + "astronomical-data", + "材料科学", + "materials-science", + "海洋科学", + "ocean-science", + "国家科学数据中心", + "national-science-data-center", + "可重复性", + "reproducibility", + "中国科研", + "china-research", + "基础研究", + "basic-research" + ], + "data_content": { + "en": [ + "Earth and environmental science datasets: atmospheric chemistry, soil surveys, watershed hydrology, glacier monitoring, and land use change data from CAS field stations", + "Astronomy and space science data: observational data from NAOC telescopes, space mission telemetry from NSSC, and sky survey catalogs", + "Biological and ecological datasets: species distribution records, biodiversity surveys, ecosystem monitoring from China's Ecosystem Research Network (CERN)", + "Materials science data: crystallographic databases, materials properties datasets from CAS institutes including NIMTE and IMR", + "Ocean science datasets: observational data from South China Sea Institute, deep-sea survey data, and marine biogeochemistry records", + "Physics and chemistry research data: experimental datasets from major CAS research facilities and national laboratories", + "China Science and Technology Development Report: annual statistical report on R&D investment, patent output, publication counts, and technology transfer", + "National scientific data center outputs: domain-specific curated datasets from CAS-managed centers for high-energy physics, genomics, and remote sensing" + ], + "zh": [ + "地球与环境科学数据集:大气化学、土壤调查、流域水文、冰川监测及来自中科院野外台站的土地利用变化数据", + "天文与空间科学数据:国家天文台望远镜观测数据、国家空间科学中心空间任务遥测及巡天星表", + "生物与生态数据集:物种分布记录、生物多样性调查及中国生态系统研究网络(CERN)生态系统监测数据", + "材料科学数据:晶体学数据库,以及来自宁波材料技术与工程研究所、金属研究所等中科院院所的材料性能数据集", + "海洋科学数据集:南海海洋研究所观测数据、深海调查数据及海洋生物地球化学记录", + "物理与化学研究数据:来自中科院重大科研装置和国家实验室的实验数据集", + "中国科学技术发展报告:研发投入、专利产出、论文发表量及技术转移情况年度统计报告", + "国家科学数据中心成果:高能物理、基因组学、遥感等中科院管理的专题数据中心精选数据集" + ] + }, + "has_api": false, + "file_path": "china/research/china-cas.json" + }, + { + "id": "china-casm", + "name": { + "en": "Chinese Academy of Surveying and Mapping", + "zh": "中国测绘科学研究院" + }, + "description": { + "en": "The Chinese Academy of Surveying and Mapping (CASM) is the national research institution for surveying, mapping, and geoinformation under China's Ministry of Natural Resources. Founded in 1959, CASM conducts cutting-edge research on geodesy, cartography, remote sensing, geographic information systems (GIS), and spatial data infrastructure. It is responsible for developing national surveying and mapping standards, technical norms, and theoretical frameworks for China's geospatial information industry. CASM maintains and produces key national geodetic datasets, digital elevation models, topographic maps, and geospatial reference frameworks. It also conducts research on satellite navigation and positioning (BeiDou/GNSS), photogrammetry, and marine surveying technologies, contributing to national spatial data infrastructure development and international mapping cooperation.", + "zh": "中国测绘科学研究院(CASM)是自然资源部下属的测绘、地图制图和地理信息国家级研究机构,成立于1959年。中心在大地测量、地图制图、遥感、地理信息系统(GIS)和空间数据基础设施领域开展前沿研究,负责制定中国测绘行业国家标准、技术规范和理论框架。中心维护和生产国家大地测量数据集、数字高程模型、地形图和地理空间参考框架,并在卫星导航定位(北斗/GNSS)、摄影测量和海洋测绘技术领域开展研究,推动国家空间数据基础设施建设和国际测绘合作。" + }, + "website": "https://www.casm.ac.cn", + "data_url": "https://www.casm.ac.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "geography", + "remote-sensing", + "infrastructure", + "technology" + ], + "update_frequency": "irregular", + "tags": [ + "中国测绘科学研究院", + "casm", + "chinese-academy-of-surveying-and-mapping", + "测绘", + "surveying-and-mapping", + "大地测量", + "geodesy", + "地图制图", + "cartography", + "地理信息", + "geographic-information", + "gis", + "遥感", + "remote-sensing", + "空间数据", + "spatial-data", + "数字高程模型", + "dem", + "digital-elevation-model", + "地形图", + "topographic-map", + "北斗", + "beidou", + "gnss", + "摄影测量", + "photogrammetry", + "测绘标准", + "mapping-standards", + "地理空间", + "geospatial" + ], + "data_content": { + "en": [ + "Geodetic datasets: national geodetic control networks, reference frames, and precise coordinate data for surveying benchmarks across China", + "Digital elevation models: national DEM products at various resolutions derived from topographic surveys and remote sensing", + "Topographic maps: digital and paper topographic map series covering mainland China at multiple scales", + "Geospatial standards: national standards and technical specifications for surveying, mapping, and geographic information systems in China", + "Remote sensing data products: processed satellite and airborne remote sensing imagery for mapping and change detection applications", + "BeiDou/GNSS positioning: research datasets and technical documentation related to China's BeiDou Navigation Satellite System applications", + "Marine surveying data: bathymetric charts and coastal zone survey datasets from China's territorial waters" + ], + "zh": [ + "大地测量数据集:全国大地控制网、参考框架及遍布中国的测量基准精密坐标数据", + "数字高程模型:由地形测量和遥感数据生成的多分辨率国家DEM产品", + "地形图:覆盖中国大陆多比例尺的数字及纸质地形图系列", + "地理空间标准:中国测绘和地理信息系统领域的国家标准和技术规范", + "遥感数据产品:用于测绘和变化检测的星载及机载遥感影像处理产品", + "北斗/GNSS定位:与中国北斗卫星导航系统应用相关的研究数据集及技术文档", + "海洋测绘数据:中国领海区域水深图和海岸带测量数据集" + ] + }, + "has_api": false, + "file_path": "china/research/china-casm.json" + }, + { + "id": "china-cass", + "name": { + "en": "Chinese Academy of Social Sciences", + "zh": "中国社会科学院" + }, + "description": { + "en": "The Chinese Academy of Social Sciences (CASS) is China's highest academic institution and national-level comprehensive research center in philosophy and social sciences. Founded in 1977 as a spin-off from the Chinese Academy of Sciences, CASS operates more than 40 research institutes covering economics, sociology, political science, law, history, literature, philosophy, international studies, regional studies, and ethnic studies. CASS publishes the authoritative China Social Sciences yearbook and numerous research reports that inform national policy. Its affiliated institutes produce major economic forecasts, social development assessments, and international relations analyses. CASS data and publications are widely referenced in government policymaking and academic research both within China and internationally.", + "zh": "中国社会科学院是中国哲学社会科学领域最高学术机构和综合性全国研究中心,1977年从中国科学院独立组建。社科院下设40余个研究所,覆盖经济学、社会学、政治学、法学、历史学、文学、哲学、国际问题、区域研究和民族学等领域。社科院发布权威性的《中国社会科学年鉴》及大量研究报告,直接服务国家政策制定。各附属研究所出具重要的经济预测、社会发展评估和国际关系分析报告,研究成果在国内外政府决策和学术研究中被广泛引用。" + }, + "website": "http://www.cass.ac.cn", + "data_url": "http://www.cass.ac.cn/list/zw_sscp.html", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "economics", + "social", + "political-science", + "law", + "history" + ], + "update_frequency": "irregular", + "tags": [ + "中国社会科学院", + "cass", + "chinese-academy-of-social-sciences", + "社会科学", + "social-sciences", + "哲学", + "philosophy", + "经济学", + "economics", + "社会学", + "sociology", + "政治学", + "political-science", + "法学", + "law", + "历史学", + "history", + "国际问题", + "international-studies", + "区域研究", + "regional-studies", + "社科院蓝皮书", + "cass-bluebook", + "社会科学年鉴", + "social-sciences-yearbook", + "中国经济形势分析", + "china-economic-outlook", + "社会发展报告", + "social-development-report" + ], + "data_content": { + "en": [ + "China Social Sciences Yearbook: comprehensive annual overview of developments across all social science disciplines in China", + "Economic outlook reports: macroeconomic forecasts and analysis of China's economic trends, growth drivers, and structural transformation", + "Social development blue books: annual assessments of social stability, inequality, urbanization, public services, and quality of life in China", + "International relations research: analytical reports on China's foreign policy, bilateral relations, and global geopolitical dynamics", + "Legal studies publications: research on Chinese law, judicial system, and law reform covering civil, criminal, commercial, and constitutional law", + "Historical research data: archives, primary sources, and research output covering Chinese and world history", + "Ethnic and regional studies: data and research on minority nationalities, regional development, and border area studies", + "Philosophy and cultural research: studies on Chinese and comparative philosophy, literary theory, and cultural policy" + ], + "zh": [ + "《中国社会科学年鉴》:中国各社会科学学科年度发展综合概览", + "经济形势报告:中国宏观经济预测分析,涵盖经济趋势、增长动力和结构转型", + "社会发展蓝皮书:社会稳定、不平等、城镇化、公共服务和生活质量年度评估", + "国际问题研究:中国外交政策、双边关系和全球地缘政治动态分析报告", + "法学研究出版物:涵盖民商法、刑法、宪法和法制改革的中国法律与司法制度研究", + "历史研究资料:中国史与世界史档案、原始史料和研究成果", + "民族与区域研究:少数民族、区域发展和边疆研究数据与研究成果", + "哲学与文化研究:中国哲学、比较哲学、文艺理论和文化政策研究" + ] + }, + "has_api": false, + "file_path": "china/research/china-cass.json" + }, + { + "id": "china-cast", + "name": { + "en": "China Association for Science and Technology", + "zh": "中国科学技术协会" + }, + "description": { + "en": "The China Association for Science and Technology (CAST) is China's largest national mass organization of scientific and technological workers, with over 10 million individual members and more than 200 affiliated national-level academic societies. CAST plays a central role in bridging the scientific community with government policymaking, publishing annual science and technology policy reports, assessments of disciplinary frontiers, and surveys of scientific talent. CAST's affiliated societies publish peer-reviewed journals, discipline-specific statistics, and research benchmark data across engineering, natural sciences, agriculture, and medicine. CAST also produces the annual China Science and Technology Development Report, surveys the status of scientific literacy among the Chinese public, and manages the Blue Book series on science and technology policy. It coordinates international scientific exchanges and jointly produces comparative datasets with UNESCO and major global science organizations.", + "zh": "中国科学技术协会(科协)是中国规模最大的科技工作者全国性群众团体,拥有逾千万名个人会员和200余个全国性学会。科协在科技界与政府决策之间发挥重要桥梁作用,出版年度科技政策报告、学科前沿评估和科技人才调查报告。科协所属学会在工程、自然科学、农业和医学等领域出版学术期刊、学科统计数据和研究基准数据。科协还出版年度《中国科技发展报告》,开展全国公民科学素质调查,管理科技政策蓝皮书系列,协调国际科技交流,并与联合国教科文组织及全球主要科学组织联合制作比较数据集。" + }, + "website": "https://www.cast.org.cn/", + "data_url": "https://www.cast.org.cn/xw/", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "technology", + "research", + "science", + "education" + ], + "update_frequency": "annual", + "tags": [ + "中国科学技术协会", + "cast", + "china-association-for-science-and-technology", + "科技政策", + "science-and-technology-policy", + "科学素质", + "scientific-literacy", + "科技人才", + "scientific-talent", + "学术学会", + "academic-societies", + "科技报告", + "science-report", + "学科前沿", + "research-frontiers", + "蓝皮书", + "blue-book", + "中国科研", + "china-research", + "科技创新", + "science-and-technology-innovation", + "学术期刊", + "academic-journals", + "国际科技合作", + "international-science-cooperation", + "公民科学", + "citizen-science" + ], + "data_content": { + "en": [ + "China Science and Technology Development Report: annual statistical overview of R&D investment, patent filings, scientific publications, and technology transfer outcomes", + "Scientific literacy surveys: nationally representative survey data on public understanding of science and technology, conducted every five years", + "Science and technology workforce: surveys of scientists, engineers, and technical workers by sector, age group, gender, and geographic distribution", + "Disciplinary frontier assessments: annual reports identifying breakthrough research areas and emerging fields across key scientific disciplines", + "Academic society statistics: membership counts, journal output, conference activity, and citation metrics for CAST's 200+ affiliated national societies", + "Science policy blue books: policy analysis and recommendations on innovation ecosystems, talent development, and technology transfer", + "International science indicators: comparative data on China's global research output, collaboration networks, and citation impact benchmarked against major countries", + "Youth science education data: participation rates in science competitions, technology activity engagement, and STEM education outcomes" + ], + "zh": [ + "中国科技发展报告:研发投入、专利申请、科学论文发表及技术转移成果的年度统计综述", + "科学素质调查:每五年开展一次的全国公民科学技术素质代表性调查数据", + "科技人才状况:按行业、年龄、性别和地域分布的科学家、工程师及技术人员调查数据", + "学科前沿评估:各重点科学领域突破性研究方向和新兴领域的年度报告", + "学术学会统计:科协200余个所属全国学会的会员人数、期刊产出、会议活动及引用指标", + "科技政策蓝皮书:关于创新生态系统、人才培养和技术转移的政策分析与建议", + "国际科学指标:与主要国家基准比较的中国全球科研产出、合作网络及引用影响力数据", + "青少年科学教育数据:科技竞赛参与率、科技活动参与情况和STEM教育成果" + ] + }, + "has_api": false, + "file_path": "china/research/china-cast.json" + }, + { + "id": "china-casted", + "name": { + "en": "China Academy of Science and Technology for Development", + "zh": "中国科学技术发展战略研究院" + }, + "description": { + "en": "The China Academy of Science and Technology for Development (CASTED) is a government-affiliated research institute under the Ministry of Science and Technology. It serves as a national think tank specializing in science and technology policy research, innovation system analysis, and technology development strategy. CASTED produces the National Innovation Index, technology competitiveness rankings, R&D investment analysis reports, innovation ecosystem assessments, and science policy evaluations. Its annual publications on China's regional innovation capacity and global science and technology competitiveness are widely referenced by policymakers, researchers, and international organizations.", + "zh": "中国科学技术发展战略研究院是科学技术部下属的政府直属研究机构,专注于科技政策研究、创新体系分析和技术发展战略,是国家级科技政策智库。研究院编制国家创新指数、技术竞争力排名、研发投入分析报告、创新生态系统评估和科学政策评价,每年发布的中国区域创新能力和全球科技竞争力系列报告被政策制定者、研究人员和国际组织广泛引用。" + }, + "website": "http://www.casted.org.cn", + "data_url": "http://www.casted.org.cn/channel/", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "science-technology", + "innovation", + "research", + "economics", + "statistics" + ], + "update_frequency": "annual", + "tags": [ + "china", + "science-technology", + "innovation", + "r&d", + "technology-policy", + "national-innovation-index", + "research-development", + "science-policy", + "competitiveness", + "科技政策", + "创新指数", + "研发投入", + "科技竞争力", + "区域创新", + "科技发展战略", + "科技部" + ], + "data_content": { + "en": [ + "National Innovation Index - Composite index measuring China's overall innovation capabilities and global ranking trends", + "R&D Investment Analysis - Gross expenditure on R&D (GERD), R&D intensity, sectoral and regional breakdowns", + "Regional Innovation Capacity - Province-level rankings of innovation inputs, outputs, and ecosystem quality", + "Technology Competitiveness - China's position in global technology rankings, patent analysis, and scientific output metrics", + "Science and Technology Statistics - Basic S&T statistics on personnel, funding, outputs, and enterprise innovation", + "Innovation Policy Evaluation - Assessment of major science and technology policies and their implementation outcomes", + "Global S&T Comparison - Benchmarking China's innovation performance against major economies" + ], + "zh": [ + "国家创新指数 - 衡量中国整体创新能力的综合指数及全球排名趋势", + "研发投入分析 - 研发总支出(GERD)、研发强度、行业和区域分类数据", + "区域创新能力 - 省级创新投入、产出和生态系统质量排名", + "科技竞争力 - 中国在全球科技排名中的地位、专利分析和科学产出指标", + "科技统计数据 - 关于科技人才、经费、产出和企业创新的基础科技统计数据", + "创新政策评价 - 重大科技政策及其实施成效的评估", + "全球科技对比 - 中国创新绩效与主要经济体的基准比较" + ] + }, + "has_api": false, + "file_path": "china/research/china-casted.json" + }, + { + "id": "china-catarc", + "name": { + "en": "China Automotive Technology and Research Center", + "zh": "中国汽车技术研究中心" + }, + "description": { + "en": "The China Automotive Technology and Research Center (CATARC) is a national-level research institution under SASAC, providing automotive industry testing, certification, standards development, and policy research. It publishes vehicle sales data, new energy vehicle statistics, and automotive safety reports.", + "zh": "中国汽车技术研究中心(中汽中心)是国资委直属的国家级研究机构,提供汽车行业测试、认证、标准制定和政策研究服务。发布汽车销量数据、新能源汽车统计和汽车安全报告。" + }, + "data_content": { + "en": [ + "vehicle sales statistics", + "new energy vehicle data", + "automotive safety reports", + "emission standards data", + "vehicle certification records" + ], + "zh": [ + "汽车销量统计", + "新能源汽车数据", + "汽车安全报告", + "排放标准数据", + "车辆认证记录" + ] + }, + "country": "CN", + "authority_level": "research", + "geographic_scope": "national", + "website": "https://www.catarc.ac.cn", + "data_url": "https://www.catarc.ac.cn", + "domains": [ + "transportation", + "manufacturing" + ], + "tags": [ + "automotive", + "vehicles", + "new-energy", + "safety", + "certification", + "sasac" + ], + "update_frequency": "monthly", + "has_api": false, + "file_path": "china/research/china-catarc.json" + }, + { + "id": "china-cciee", + "name": { + "en": "China Center for International Economic Exchanges", + "zh": "中国国际经济交流中心" + }, + "description": { + "en": "The China Center for International Economic Exchanges (CCIEE) is a high-level government think tank established in 2009 under the State Council's Development Research Center, led by senior government officials and economists. CCIEE conducts strategic policy research on major international and domestic economic issues, publishes influential research reports on global economic governance, trade policy, the Belt and Road Initiative, financial opening, and China's macroeconomic outlook. It hosts the annual China Development Forum supplement sessions and produces widely cited macroeconomic forecasts and policy recommendations. CCIEE serves as a key advisory body for China's economic policymaking and international economic diplomacy, and its research outputs are used by government agencies, international organizations, and financial institutions.", + "zh": "中国国际经济交流中心(CCIEE)是2009年成立的高级别国家智库,隶属于国务院发展研究中心,由资深政府官员和经济学家领导。CCIEE就重大国际和国内经济问题开展战略政策研究,发布全球经济治理、贸易政策、一带一路、金融开放及中国宏观经济展望等方面的权威研究报告。CCIEE主办中国发展论坛配套会议,发布广泛引用的宏观经济预测及政策建议。作为中国经济决策和国际经济外交的重要咨询机构,其研究成果被政府机构、国际组织和金融机构广泛使用。" + }, + "website": "https://www.cciee.org.cn", + "data_url": "https://www.cciee.org.cn/ktcglistall.aspx?clmId=650", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "economics", + "trade", + "finance" + ], + "update_frequency": "irregular", + "tags": [ + "中国经济", + "china-economy", + "宏观经济", + "macroeconomics", + "经济预测", + "economic-forecast", + "全球经济治理", + "global-economic-governance", + "贸易政策", + "trade-policy", + "一带一路", + "belt-and-road", + "bri", + "金融开放", + "financial-opening", + "中国发展论坛", + "china-development-forum", + "政策研究", + "policy-research", + "国际贸易", + "international-trade", + "人民币国际化", + "rmb-internationalization", + "智库", + "think-tank", + "cciee", + "国务院智库" + ], + "data_content": { + "en": [ + "Macroeconomic forecasts: quarterly and annual forecasts for China's GDP growth, inflation, trade balance, and key economic indicators", + "Policy research reports: strategic analysis on trade policy, financial regulation, industrial policy, and international economic cooperation", + "Belt and Road Initiative research: investment flows, infrastructure project data, and economic impact assessments along BRI corridors", + "Global economic governance: analysis of G20, WTO, IMF, and other multilateral economic governance frameworks from a Chinese perspective", + "Financial opening research: reports on capital account liberalization, RMB internationalization, and China's financial sector reform", + "Blue book publications: annual China economic outlook and strategic economic reports", + "Conference proceedings: summaries and keynote content from CCIEE-hosted international economic forums" + ], + "zh": [ + "宏观经济预测:中国GDP增长、通货膨胀、贸易差额及主要经济指标的季度和年度预测", + "政策研究报告:贸易政策、金融监管、产业政策及国际经济合作战略分析", + "一带一路研究:沿线投资流量、基础设施项目数据及经济影响评估", + "全球经济治理:从中国视角分析G20、WTO、IMF等多边经济治理框架", + "金融开放研究:资本账户自由化、人民币国际化及中国金融部门改革报告", + "蓝皮书出版物:年度中国经济展望及战略经济报告", + "会议文集:CCIEE主办国际经济论坛的摘要及主旨内容" + ] + }, + "has_api": false, + "file_path": "china/research/china-cciee.json" + }, + { + "id": "china-ccs-crop", + "name": { + "en": "Chinese Crop Science Society", + "zh": "中国作物学会" + }, + "description": { + "en": "The Chinese Crop Science Society (CCSS) is the national academic society for crop science under the China Association for Science and Technology (CAST), established in 1978. Representing researchers, breeders, and agronomists across China, CCSS is the authoritative academic body for crop genetics, breeding, cultivation, and production research. The society administers the National Crop Variety Data Platform, which provides data on varieties approved through the national examination and approval process, including variety characteristics, adaptability regions, cultivation guidelines, and yield benchmarks. CCSS publishes leading academic journals including Acta Agronomica Sinica and Crops, and compiles crop production statistics, germplasm resource data, and national trial datasets for major field crops including rice, wheat, maize, soybean, cotton, and rapeseed. Its data serves as the authoritative reference for agricultural R&D, seed industry regulation, and food production capacity assessment.", + "zh": "中国作物学会(CCSS)是中国科学技术协会下属的作物科学全国性学术社团,成立于1978年。学会代表全国作物遗传、育种、栽培和生产领域的研究人员,是作物遗传育种、栽培技术及生产研究的权威学术机构。学会管理全国作物品种数据平台,提供通过国家审定和登记的品种特征特性、适宜种植区域、栽培技术规程及产量基准数据。学会出版《作物学报》《作物杂志》等权威学术期刊,汇编作物生产统计数据、种质资源数据及水稻、小麦、玉米、大豆、棉花、油菜等主要大田作物国家试验数据集。其数据是农业科研、种子行业监管及粮食生产能力评估的权威参考依据。" + }, + "website": "https://www.chinacrops.org", + "data_url": "https://www.chinacrops.org", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "agriculture", + "research", + "food-security" + ], + "update_frequency": "annual", + "tags": [ + "ccss", + "中国作物学会", + "作物科学", + "作物育种", + "农作物", + "品种审定", + "粮食生产", + "crop-science", + "crop-breeding", + "agriculture", + "food-security", + "rice", + "wheat", + "maize", + "种质资源" + ], + "data_content": { + "en": [ + "National crop variety approval and registration database", + "Variety characteristic data (yield, quality, disease resistance, regional adaptability)", + "Germplasm resource catalog for major field crops", + "National crop variety trial datasets (DUS and VCU trials)", + "Crop production statistics and regional yield benchmarks", + "Cultivation technical guidelines by variety and region", + "Annual crop science research progress reports" + ], + "zh": [ + "全国农作物品种审定与登记数据库", + "品种特征特性数据(产量、品质、抗病性、适宜种植区域)", + "主要大田作物种质资源目录", + "全国农作物品种试验数据集(DUS测试和VCU试验)", + "作物生产统计及区域产量基准数据", + "按品种和区域的栽培技术规程", + "作物科学研究年度进展报告" + ] + }, + "has_api": false, + "file_path": "china/research/china-ccs-crop.json" + }, + { + "id": "china-cdrf", + "name": { + "en": "China Development Research Foundation (CDRF)", + "zh": "中国发展研究基金会" + }, + "description": { + "en": "The China Development Research Foundation (CDRF) is a public fundraising foundation established in 1997 under the State Council, affiliated with the Development Research Center of the State Council (DRC). CDRF focuses on policy research and practical interventions in areas including early childhood development, poverty alleviation, social safety nets, education equity, and sustainable development. It organizes the annual China Development Forum (CDF), China's premier high-level economic dialogue between Chinese government leaders and global business and academic figures. CDRF publishes the China Development Report — an influential annual publication covering China's urbanization, population dynamics, social policy, and inclusive growth challenges. CDRF data and reports provide authoritative analysis of China's social policy evolution, human capital development, rural-urban migration trends, and the intersection of government policy with economic transformation. Its research informs domestic policy and is widely cited in international development economics literature.", + "zh": "中国发展研究基金会(发展基金会)是1997年经国务院批准成立的公募基金会,隶属于国务院发展研究中心。基金会聚焦早期儿童发展、扶贫减贫、社会保障、教育公平和可持续发展领域的政策研究和实践干预。基金会主办年度《中国发展高层论坛》—中国政府与全球工商界及学术界领袖的高级别对话平台。基金会出版《中国发展报告》,是涵盖中国城镇化、人口动态、社会政策和包容性增长挑战的重要年度读本。基金会数据和报告为中国社会政策演变、人力资本发展、城乡流动趋势及政府政策与经济转型交汇提供权威分析,对国内政策制定和国际发展经济学研究均有重要参考价值。" + }, + "website": "https://www.cdrf.org.cn", + "data_url": "https://www.cdrf.org.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "economics", + "social", + "education" + ], + "update_frequency": "annual", + "tags": [ + "中国发展研究基金会", + "cdrf", + "china-development-research-foundation", + "中国发展高层论坛", + "china-development-forum", + "中国发展报告", + "china-development-report", + "社会政策", + "social-policy", + "城镇化", + "urbanization", + "扶贫", + "poverty-alleviation", + "早期儿童发展", + "early-childhood-development", + "人力资本", + "human-capital", + "包容性增长", + "inclusive-growth", + "农村", + "rural-development" + ], + "data_content": { + "en": [ + "China Development Report: annual flagship publication covering urbanization, population aging, education, health, and social protection policy", + "China Development Forum proceedings: speeches and policy positions from Chinese government ministers, global CEOs, and leading economists", + "Early childhood development studies: longitudinal data on preschool access, nutrition interventions, and cognitive development outcomes in rural China", + "Poverty alleviation research: household survey data, program evaluations of targeted poverty relief, and post-poverty transition challenges", + "Social safety net analysis: coverage rates, benefit levels, and equity gaps in pension, unemployment insurance, and medical insurance systems", + "Education equity reports: access to quality education across urban-rural and regional divides, compulsory education completion rates", + "Population and labor market studies: migration patterns, aging society projections, and workforce skills gap analyses", + "Sustainable development assessments: SDG progress tracking for China, green finance policy research, and carbon transition social impact" + ], + "zh": [ + "《中国发展报告》:年度旗舰出版物,涵盖城镇化、人口老龄化、教育、卫生和社会保障政策", + "中国发展高层论坛成果:中国政府部长、全球企业CEO和知名经济学家的演讲及政策立场", + "早期儿童发展研究:农村地区学前教育普及率、营养干预和认知发展成果追踪数据", + "扶贫研究:住户调查数据、精准扶贫项目评估及后扶贫时代转型挑战", + "社会保障体系分析:养老保险、失业保险和医疗保险的覆盖率、待遇水平及公平差距", + "教育公平报告:城乡和地区间优质教育获得差距、义务教育完成率", + "人口和劳动力市场研究:人口迁移规律、老龄化社会预测及劳动力技能缺口分析", + "可持续发展评估:中国SDG进展追踪、绿色金融政策研究及碳转型社会影响" + ] + }, + "has_api": false, + "file_path": "china/research/china-cdrf.json" + }, + { + "id": "china-cf40", + "name": { + "en": "China Finance 40 Forum (CF40)", + "zh": "中国金融四十人论坛" + }, + "description": { + "en": "The China Finance 40 Forum (CF40) is one of China's most influential non-governmental, non-profit financial think tanks, established in 2008 and composed of 40 prominent Chinese economists and financial professionals aged 40 and under at the time of admission. CF40 focuses on policy research in economics and finance and has grown into a strategic think tank family including CF40 Institute, Shanghai Institute of Finance and Development (SIFD), Beijing Wealth Management Institute (BWMI), China Pension Finance 50 Forum (CAFF50), and New Finance 50 Forum (NFF50). CF40 publishes authoritative research on monetary policy, financial regulation, capital markets, exchange rate, international finance, fintech, and wealth management. Its members include current and former senior officials from the People's Bank of China, State Administration of Foreign Exchange, China Securities Regulatory Commission, and leading economists. CF40 reports directly inform Chinese economic policymaking and its annual Bund Summit is one of Asia's top-tier financial conferences.", + "zh": "中国金融四十人论坛(CF40)是中国最具影响力的非官方、非营利性金融专业智库之一,2008年成立,由40位杰出的中青年金融经济学家和金融从业者组成(入会时年龄不超过40岁)。CF40聚焦经济金融领域的政策研究,已发展成为涵盖CF40研究院、上海金融与发展实验室(SIFD)、北京大学国家发展研究院、中国养老金融50人论坛(CAFF50)、新金融50人论坛(NFF50)等在内的战略智库家族。CF40在货币政策、金融监管、资本市场、汇率、国际金融、金融科技及财富管理等领域发布权威研究成果。其成员包括中国人民银行、国家外汇管理局、中国证监会等机构的现任和前任高级官员以及顶尖经济学家。CF40的研究报告直接服务于中国经济决策,年度“外滩金融峰会”为亚洲顶级金融会议。" + }, + "website": "https://www.cf40.com/", + "data_url": "https://www.cf40.com/research", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "economics", + "research" + ], + "update_frequency": "weekly", + "tags": [ + "中国金融四十人论坛", + "cf40", + "金融智库", + "financial-think-tank", + "货币政策", + "monetary-policy", + "金融监管", + "financial-regulation", + "资本市场", + "capital-markets", + "汇率政策", + "exchange-rate", + "人民币国际化", + "rmb-internationalization", + "金融科技", + "fintech", + "财富管理", + "wealth-management", + "宏观经济", + "macroeconomics", + "国际金融", + "international-finance", + "养老金融", + "pension-finance", + "外滩金融峰会", + "bund-summit", + "新金融", + "new-finance", + "金融改革", + "financial-reform" + ], + "data_content": { + "en": [ + "Research reports: policy analysis on monetary policy, financial regulation, exchange rate, and capital account opening", + "Macroeconomic outlook: quarterly and annual forecasts on China's GDP, inflation, trade, and key economic indicators", + "Working papers and briefings: member-authored analytical papers on current economic and financial policy issues", + "Bund Summit publications: proceedings, keynote speeches, and analytical outputs from the annual Bund Financial Summit in Shanghai", + "China Financial Reform Report: annual assessment of China's financial sector reform progress", + "RMB internationalization research: studies on RMB's role in global payments, reserves, and bond markets", + "Fintech research: reports on digital currency, blockchain, mobile payments, and financial inclusion", + "Pension finance research: policy studies on China's pension system, retirement investing, and longevity finance via CAFF50", + "Wealth management research: outputs from the Beijing Wealth Management Institute on asset management industry trends", + "Podcast and video content: expert interviews and policy discussions from CF40 members" + ], + "zh": [ + "研究报告:货币政策、金融监管、汇率及资本账户开放的政策分析", + "宏观经济展望:中国GDP、通货膨胀、贸易及主要经济指标的季度和年度预测", + "工作论文与简报:成员撰写的当前经济金融政策分析论文", + "外滩金融峰会出版物:年度上海外滩金融峰会的会议文集、主旨演讲与分析成果", + "《中国金融改革报告》:中国金融业改革进展年度评估", + "人民币国际化研究:人民币在全球支付、储备及债券市场角色的研究", + "金融科技研究:数字货币、区块链、移动支付及普惠金融的研究报告", + "养老金融研究:CAFF50发布的中国养老金体系、养老投资及长寿金融政策研究", + "财富管理研究:北京大学国家发展研究院北京大学汇丰商学院财富管理研究中心关于资产管理行业趋势的成果", + "播客与视频内容:CF40成员的专家访谈和政策讨论" + ] + }, + "has_api": false, + "file_path": "china/research/china-cf40.json" + }, + { + "id": "china-cfps", + "name": { + "en": "China Family Panel Studies (CFPS)", + "zh": "中国家庭追踪调查(CFPS)" + }, + "description": { + "en": "The China Family Panel Studies (CFPS) is a nationally representative longitudinal survey of Chinese communities, families, and individuals, conducted biennially by the Institute of Social Science Survey (ISSS) at Peking University. Launched in 2010, CFPS tracks approximately 15,000 households across 25 provinces and collects multi-dimensional data on economic activities, education, health, and family dynamics. CFPS is one of China's most influential household panel surveys, freely accessible to registered academic users via Peking University's Open Research Data platform.", + "zh": "中国家庭追踪调查(CFPS)是由北京大学中国社会科学调查中心(ISSS)负责执行的全国性、综合性大型追踪调查,每两年开展一次,追踪约15000户家庭,涵盖全国25个省份。CFPS自2010年启动,收集经济活动、教育、健康和家庭动态等多维度数据,是中国最具影响力的家庭追踪调查之一,通过北京大学开放研究数据平台向注册学术用户免费开放。" + }, + "website": "https://www.isss.pku.edu.cn/cfps/", + "data_url": "https://opendata.pku.edu.cn/dataverse/CFPS", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "social", + "economics", + "health", + "education", + "demographics" + ], + "update_frequency": "irregular", + "tags": [ + "家庭追踪调查", + "cfps", + "panel-study", + "追踪调查", + "北京大学", + "peking-university", + "household-panel", + "家庭调查", + "longitudinal-survey", + "education", + "教育", + "health", + "健康", + "income", + "收入", + "migration", + "人口流动", + "intergenerational", + "代际", + "family-dynamics", + "家庭动态", + "child-development", + "儿童发展", + "cognitive-ability", + "认知能力" + ], + "data_content": { + "en": [ + "Individual and household economic data: income, assets, liabilities, expenditures", + "Education: school enrollment, educational attainment, cognitive assessments for children and adults", + "Health: physical health, mental health, chronic disease, disability, healthcare access", + "Family dynamics: marriage, fertility, intergenerational transfers, parenting", + "Labor market: employment, wages, job characteristics, labor market transitions", + "Subjective well-being and life satisfaction measures", + "Social relationships and networks: trust, social participation, community ties", + "Migration and residential history: urban-rural migration, return migration", + "Community-level data: local infrastructure, public services, economic environment", + "Survey waves: 2010, 2012, 2014, 2016, 2018, 2020 (biennial, covering 25 provinces)" + ], + "zh": [ + "个人和家庭经济数据:收入、资产、负债、消费支出", + "教育:在校情况、教育程度、儿童和成人认知能力测试", + "健康:身体健康、心理健康、慢性病、残障、医疗卫生服务获取", + "家庭动态:婚姻、生育、代际转移、育儿行为", + "劳动力市场:就业状况、工资收入、工作特征、职业转换", + "主观幸福感和生活满意度测量", + "社会关系与网络:社会信任、社会参与、社区联系", + "流动与居住历史:城乡流动、回流迁移", + "社区层面数据:基础设施、公共服务、经济环境", + "调查波次:2010、2012、2014、2016、2018、2020年(每两年一次,覆盖25个省份)" + ] + }, + "has_api": false, + "file_path": "china/research/china-cfps.json" + }, + { + "id": "china-cgss", + "name": { + "en": "Chinese General Social Survey (CGSS)", + "zh": "中国综合社会调查(CGSS)" + }, + "description": { + "en": "The Chinese General Social Survey (CGSS) is China's first nationally representative, continuous academic social survey, conducted annually by the National Survey Research Center at Renmin University of China (NSRC@RUC). Launched in 2003, CGSS collects data from over 10,000 households across urban and rural China on demographic characteristics, economic behavior, social attitudes, education, employment, health, political participation, family structure, and values. The survey is freely available to registered academic researchers and is widely cited in Chinese social science research.", + "zh": "中国综合社会调查(CGSS)是中国第一个全国性、综合性、连续性学术调查项目,由中国人民大学中国调查与数据中心(NSRC@RUC)负责执行。CGSS自2003年起每年对全国城乡1万余户家庭开展调查,收集人口特征、经济行为、社会态度、教育就业、健康状况、政治参与、家庭结构和价值观念等数据,是中国社会科学研究中被引用最广泛的数据集之一,向注册学术用户免费开放。" + }, + "website": "http://cgss.ruc.edu.cn/", + "data_url": "http://cgss.ruc.edu.cn/", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "social", + "demographics", + "economics", + "health", + "education" + ], + "update_frequency": "annual", + "tags": [ + "综合社会调查", + "cgss", + "social-survey", + "社会调查", + "人民大学", + "renmin-university", + "household-survey", + "家庭调查", + "social-attitudes", + "社会态度", + "education", + "教育", + "employment", + "就业", + "income", + "收入", + "social-stratification", + "社会分层", + "political-participation", + "政治参与", + "family-structure", + "家庭结构", + "panel-data", + "longitudinal", + "中国社会" + ], + "data_content": { + "en": [ + "Demographic data: age, gender, ethnicity, marital status, household composition", + "Education: highest education level attained, educational history, school type", + "Employment: employment status, occupation, work unit type, income sources", + "Income and consumption: household income, expenditure, savings, assets", + "Health: self-rated health, chronic conditions, disability, healthcare utilization", + "Social attitudes: trust in institutions, subjective well-being, political attitudes, values", + "Religion and culture: religious beliefs, cultural practices, media consumption", + "Migration: residential history, rural-to-urban migration patterns", + "Social networks: social capital, community participation, voluntary associations", + "Annual survey waves from 2003 to present covering all provinces of China" + ], + "zh": [ + "人口学数据:年龄、性别、民族、婚姻状况、家庭成员构成", + "教育:最高学历、教育经历、就读学校类型", + "就业:就业状况、职业类型、工作单位性质、收入来源", + "收入与消费:家庭收入、支出、储蓄、资产", + "健康:自评健康状况、慢性病、残疾、医疗服务利用", + "社会态度:对机构的信任、主观幸福感、政治态度、价值观念", + "宗教与文化:宗教信仰、文化习俗、媒体使用", + "人口流动:居住历史、农村人口城镇化迁移", + "社会网络:社会资本、社区参与、志愿组织", + "2003年至今各年度调查波次数据,覆盖全国各省份" + ] + }, + "has_api": false, + "file_path": "china/research/china-cgss.json" + }, + { + "id": "china-chfs", + "name": { + "en": "China Household Finance Survey (CHFS)", + "zh": "中国家庭金融调查(CHFS)" + }, + "description": { + "en": "The China Household Finance Survey (CHFS) is a large-scale, nationally representative longitudinal survey conducted by the Survey and Research Center for China Household Finance at Southwestern University of Finance and Economics (SWUFE). Launched in 2011, CHFS covers approximately 40,000 households across 29 provinces and provides comprehensive data on household assets, liabilities, income, consumption, insurance, and financial behavior. CHFS is China's leading household finance dataset and is freely accessible to qualified academic researchers, widely used to analyze wealth distribution, financial inclusion, and housing market dynamics in China.", + "zh": "中国家庭金融调查(CHFS)是由西南财经大学中国家庭金融调查与研究中心负责执行的大规模全国性追踪调查,自2011年启动,覆盖全国29个省约40000户家庭,收集家庭资产、负债、收入、消费、保险和金融行为等综合数据。CHFS是中国最权威的家庭金融数据集,向合格的学术研究者免费开放,广泛用于研究中国财富分配、普惠金融和房地产市场动态。" + }, + "website": "https://chfs.swufe.edu.cn", + "data_url": "https://chfs.swufe.edu.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "economics", + "social", + "housing" + ], + "update_frequency": "irregular", + "tags": [ + "家庭金融调查", + "chfs", + "household-finance", + "家庭金融", + "西南财经大学", + "swufe", + "household-wealth", + "家庭财富", + "asset-allocation", + "资产配置", + "housing", + "住房", + "real-estate", + "房地产", + "income-distribution", + "收入分配", + "wealth-inequality", + "财富不平等", + "financial-inclusion", + "普惠金融", + "insurance", + "保险", + "savings", + "储蓄", + "debt", + "负债", + "investment", + "投资" + ], + "data_content": { + "en": [ + "Household assets: financial assets (stocks, bonds, deposits, funds), real estate, business assets, durable goods", + "Household liabilities: mortgage loans, consumer loans, business loans, informal borrowing", + "Income: wage income, business income, transfer income, investment returns by source", + "Consumption expenditure: food, education, healthcare, housing, and major categories", + "Financial behavior: stock market participation, insurance purchase, wealth management products", + "Housing: ownership status, purchase price, mortgage details, rental income", + "Social security and insurance: pension participation, medical insurance, commercial insurance coverage", + "Demographic characteristics: age, education, employment, household structure", + "Wealth distribution and Gini coefficient analysis at provincial and national level", + "Survey waves: 2011, 2013, 2015, 2017, 2019, 2021 covering 29 provinces" + ], + "zh": [ + "家庭资产:金融资产(股票、债券、存款、基金)、房产、工商业资产、耐用品", + "家庭负债:住房贷款、消费贷款、工商业贷款、民间借贷", + "收入:工资性收入、工商业收入、转移性收入、投资性收入", + "消费支出:食品、教育、医疗、住房及主要类别消费", + "金融行为:股市参与、保险购买、理财产品投资", + "住房:拥有状况、购买价格、贷款详情、租金收入", + "社会保障与保险:养老金参保、医疗保险、商业保险覆盖情况", + "人口特征:年龄、教育程度、就业状况、家庭结构", + "省级和全国财富分布与基尼系数分析", + "调查波次:2011、2013、2015、2017、2019、2021年,覆盖29个省份" + ] + }, + "has_api": false, + "file_path": "china/research/china-chfs.json" + }, + { + "id": "china-ciecc", + "name": { + "en": "China International Engineering Consulting Corporation", + "zh": "中国国际工程咨询有限公司" + }, + "description": { + "en": "The China International Engineering Consulting Corporation (CIECC) is a state-owned consulting firm under the State Council, providing engineering consulting, project evaluation, and policy research services. It publishes investment analysis reports and infrastructure development assessments for national-level projects.", + "zh": "中国国际工程咨询有限公司是国务院国资委直属的国有咨询企业,提供工程咨询、项目评估和政策研究服务。发布投资分析报告和国家级项目基础设施发展评估。" + }, + "data_content": { + "en": [ + "infrastructure project evaluations", + "investment analysis reports", + "engineering consulting data", + "policy research publications", + "economic feasibility studies" + ], + "zh": [ + "基础设施项目评估", + "投资分析报告", + "工程咨询数据", + "政策研究出版物", + "经济可行性研究" + ] + }, + "country": "CN", + "authority_level": "government", + "geographic_scope": "national", + "website": "https://www.ciecc.com.cn", + "data_url": "https://www.ciecc.com.cn", + "domains": [ + "infrastructure", + "economics" + ], + "tags": [ + "engineering", + "consulting", + "infrastructure", + "investment", + "state-council" + ], + "update_frequency": "irregular", + "has_api": false, + "file_path": "china/research/china-ciecc.json" + }, + { + "id": "china-cipd", + "name": { + "en": "China Population and Development Research Center", + "zh": "中国人口与发展研究中心" + }, + "description": { + "en": "The China Population and Development Research Center (CPDRC) is a national-level research institution under the National Health Commission, focusing on population dynamics, demographic trends, family planning evaluation, and population forecasting models for policy support.", + "zh": "中国人口与发展研究中心是国家卫健委直属的国家级研究机构,专注于人口动态、人口趋势、计划生育评估和人口预测模型等领域的研究,为政策制定提供支撑。" + }, + "data_content": { + "en": [ + "population statistics", + "demographic projections", + "fertility surveys", + "family planning data", + "population development reports" + ], + "zh": [ + "人口统计数据", + "人口预测", + "生育调查", + "计划生育数据", + "人口发展报告" + ] + }, + "country": "CN", + "authority_level": "research", + "geographic_scope": "national", + "website": "https://www.cpirc.org.cn", + "data_url": "https://www.cpirc.org.cn", + "domains": [ + "demographics", + "health" + ], + "tags": [ + "population", + "demographics", + "fertility", + "family-planning", + "health-commission" + ], + "update_frequency": "irregular", + "has_api": false, + "file_path": "china/research/china-cipd.json" + }, + { + "id": "china-cisri", + "name": { + "en": "China Iron & Steel Research Institute Group", + "zh": "中国钢研科技集团有限公司" + }, + "description": { + "en": "The China Iron & Steel Research Institute Group (CISRI), formerly the Iron and Steel Research Institute, is China's premier state-owned research institution specializing in metallurgy, advanced steel materials, and new materials technology. Founded in 1952 and affiliated with the State-owned Assets Supervision and Administration Commission (SASAC), CISRI is the national authority for steel and metallic materials research, testing, and standardization. It operates the National Steel Quality Supervision and Inspection Center and maintains reference material databases for Chinese metallurgical standards. CISRI publishes authoritative technical data on steel grades, material properties, failure analysis, and corrosion behavior, serving as the technical backbone for China's iron and steel industry. The institute develops national and industry standards for steel products and contributes to international standards bodies including ISO TC17 (steel). CISRI's research spans special steels for aerospace, energy, transportation, and defense applications, as well as environmental metallurgy and recycling.", + "zh": "中国钢研科技集团有限公司(中国钢研)原为冶金研究院,是中国顶级冶金、先进钢铁材料和新材料技术领域的国有研究机构,1952年创建,隶属国务院国有资产监督管理委员会(国资委)。中国钢研是钢铁和金属材料研究、检测和标准化领域的国家权威机构,运营国家钢铁质量监督检验中心,维护中国冶金标准标准物质数据库。公司发布钢铁牌号、材料性能、失效分析和腐蚀行为权威技术数据,是中国钢铁工业技术支撑核心。研究所制定钢铁产品国家和行业标准,并参与ISO TC17(钢铁)等国际标准化机构。中国钢研的研究涵盖航空、能源、交通和国防应用的特种钢,以及环境冶金和再生利用。" + }, + "website": "https://www.cisri.com.cn", + "data_url": "https://www.cisri.com.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "industry", + "science", + "technology" + ], + "update_frequency": "irregular", + "tags": [ + "中国钢研科技集团", + "cisri", + "china-iron-steel-research-institute", + "冶金", + "metallurgy", + "钢铁", + "steel", + "金属材料", + "metallic-materials", + "特种钢", + "special-steel", + "钢铁标准", + "steel-standards", + "材料性能", + "material-properties", + "失效分析", + "failure-analysis", + "腐蚀", + "corrosion", + "标准物质", + "reference-materials", + "国家钢铁质量监督检验", + "steel-quality-inspection", + "新材料", + "new-materials", + "航空材料", + "aerospace-materials", + "iso-tc17", + "国资委", + "sasac", + "环境冶金", + "environmental-metallurgy" + ], + "data_content": { + "en": [ + "Steel grade standards database: comprehensive records of Chinese national steel grade classifications (GB standards), chemical composition specifications, and mechanical property requirements for thousands of steel products", + "Material property databases: tensile strength, yield strength, hardness, impact toughness, fatigue life, and creep data for carbon steels, alloy steels, stainless steels, and tool steels under various conditions", + "Failure analysis case data: metallurgical failure investigation reports for industrial accidents, equipment failures, and product defects, supporting industry safety and quality improvement", + "Corrosion behavior data: electrochemical corrosion, stress corrosion cracking, and environmentally-assisted cracking data for steels in atmospheric, marine, and industrial environments", + "Reference materials: certified standard reference materials for spectrochemical analysis of iron and steel, providing traceability for quality control in steel production", + "Special and advanced materials research: data on high-strength steels, heat-resistant steels, electrical steels, bearing steels, and tool steels for aerospace, energy, and defense applications", + "Steel production process data: research outputs on iron and steelmaking technologies, continuous casting, rolling, heat treatment, and surface treatment optimization", + "Environmental metallurgy and recycling: scrap steel characterization data, secondary metallurgy research, and life cycle assessment for steel production processes" + ], + "zh": [ + "钢铁牌号标准数据库:数千种钢铁产品的中国国家钢铁牌号分类(GB标准)、化学成分规范和力学性能要求综合记录", + "材料性能数据库:碳钢、合金钢、不锈钢和工具钢在各种条件下的抗拉强度、屈服强度、硬度、冲击韧性、疲劳寿命和蠕变数据", + "失效分析案例数据:工业事故、设备故障和产品缺陷的冶金失效调查报告,支持行业安全和质量改进", + "腐蚀行为数据:钢铁在大气、海洋和工业环境中的电化学腐蚀、应力腐蚀开裂和环境辅助开裂数据", + "标准物质:钢铁光谱化学分析认证标准物质,为钢铁生产质量控制提供溯源性依据", + "特种和先进材料研究:航空、能源和国防应用的高强度钢、耐热钢、电工钢、轴承钢和工具钢数据", + "钢铁生产工艺数据:炼铁炼钢技术、连铸、轧制、热处理和表面处理优化的研究成果", + "环境冶金和再生利用:废钢特征化数据、二次冶金研究和钢铁生产工艺的生命周期评估" + ] + }, + "has_api": false, + "file_path": "china/research/china-cisri.json" + }, + { + "id": "china-cncbd", + "name": { + "en": "China National Center for Biotechnology Development", + "zh": "中国生物技术发展中心" + }, + "description": { + "en": "The China National Center for Biotechnology Development (CNCBD) is a public institution under the Ministry of Science and Technology, responsible for biotechnology policy research, project management, and biosafety assessment. It publishes annual biotechnology development reports and manages national key biotech programs.", + "zh": "中国生物技术发展中心是科技部直属事业单位,负责生物技术政策研究、项目管理和生物安全评估。发布年度生物技术发展报告,管理国家重点生物技术计划。" + }, + "data_content": { + "en": [ + "biotechnology development reports", + "biosafety assessments", + "biotech project data", + "pharmaceutical R&D statistics", + "gene technology policies" + ], + "zh": [ + "生物技术发展报告", + "生物安全评估", + "生物技术项目数据", + "医药研发统计", + "基因技术政策" + ] + }, + "country": "CN", + "authority_level": "government", + "geographic_scope": "national", + "website": "https://www.cncbd.org.cn", + "data_url": "https://www.cncbd.org.cn", + "domains": [ + "science", + "health" + ], + "tags": [ + "biotechnology", + "biosafety", + "pharmaceutical", + "most", + "science-policy" + ], + "update_frequency": "annual", + "has_api": false, + "file_path": "china/research/china-cncbd.json" + }, + { + "id": "china-csic", + "name": { + "en": "Institute of Sociology, Chinese Academy of Social Sciences", + "zh": "中国社会科学院社会学研究所" + }, + "description": { + "en": "The Institute of Sociology at the Chinese Academy of Social Sciences (CASS) is China's leading research institution for sociological studies. It conducts large-scale national surveys and publishes authoritative reports on social stratification, urbanization, family dynamics, and social governance.", + "zh": "中国社会科学院社会学研究所是中国社会学研究的核心机构,开展大规模全国性调查并发布社会分层、城镇化、家庭变迁和社会治理等领域的权威报告。" + }, + "data_content": { + "en": [ + "social stratification surveys", + "urbanization research data", + "family dynamics studies", + "social governance reports", + "community development data" + ], + "zh": [ + "社会分层调查", + "城镇化研究数据", + "家庭变迁研究", + "社会治理报告", + "社区发展数据" + ] + }, + "country": "CN", + "authority_level": "research", + "geographic_scope": "national", + "website": "https://sociology.cssn.cn", + "data_url": "https://sociology.cssn.cn", + "domains": [ + "social-sciences" + ], + "tags": [ + "sociology", + "social-sciences", + "surveys", + "urbanization", + "cass" + ], + "update_frequency": "irregular", + "has_api": false, + "file_path": "china/research/china-csic.json" + }, + { + "id": "china-cste", + "name": { + "en": "China Society for Technology Economics", + "zh": "中国技术经济学会" + }, + "description": { + "en": "The China Society for Technology Economics (CSTE) is a national academic society founded in 1981, affiliated with the China Association for Science and Technology and supervised by the National Development and Reform Commission (NDRC). It is China's leading professional organization specializing in the intersection of technology and economic analysis, focusing on technology innovation economics, science and technology investment evaluation, industrial policy research, and the economic impact of technological progress. CSTE publishes research reports, policy analyses, and academic papers on innovation-driven development, technology commercialization, and the economic returns of R&D investment in China.", + "zh": "中国技术经济学会(CSTE)成立于1981年,是中国科学技术协会所属、国家发展和改革委员会指导的全国性学术团体,是中国技术与经济交叉分析领域最重要的专业机构,专注于技术创新经济学、科技投资评估、产业政策研究及技术进步的经济影响。学会发布创新驱动发展、技术商业化及中国研发投资经济效益等方面的研究报告、政策分析和学术论文。" + }, + "data_content": { + "en": [ + "technology innovation economics research reports", + "science and technology investment evaluation data", + "industrial technology policy analysis", + "R&D investment returns and efficiency studies", + "technology commercialization statistics", + "innovation-driven development indicators", + "technology economics academic publications", + "enterprise technology innovation surveys" + ], + "zh": [ + "技术创新经济学研究报告", + "科技投资评估数据", + "产业技术政策分析", + "研发投资回报与效率研究", + "技术商业化统计数据", + "创新驱动发展指标", + "技术经济学学术出版物", + "企业技术创新调查" + ] + }, + "country": "CN", + "authority_level": "research", + "geographic_scope": "national", + "website": "https://www.cste.org.cn", + "data_url": "https://www.cste.org.cn", + "api_url": null, + "domains": [ + "economics", + "science" + ], + "tags": [ + "technology-economics", + "innovation", + "r&d", + "科技经济", + "技术创新", + "技术经济", + "创新经济学", + "ndrc", + "cste", + "中国技术经济学会", + "industrial-policy", + "science-technology-policy" + ], + "update_frequency": "irregular", + "has_api": false, + "file_path": "china/research/china-cste.json" + }, + { + "id": "china-cstr", + "name": { + "en": "China Science & Technology Resource Identifier Platform", + "zh": "科技资源标识服务平台" + }, + "description": { + "en": "The China Science and Technology Resource Identifier (CSTR) Platform is China's national persistent identifier system for scientific data resources, operated by the National Science and Technology Infrastructure Center (NSTIC) under the Ministry of Science and Technology. Analogous to DOIs for publications, CSTR assigns permanent, resolvable identifiers to scientific datasets, instruments, specimens, and other research resources managed by China's major scientific data centers. The platform serves as the authoritative registry and resolution service for scientific resources from institutions including the Chinese Academy of Sciences, national key laboratories, and data centers under the National Science and Technology Basic Conditions Platform. Through CSTR, users can discover, cite, and access standardized scientific data across disciplines such as earth sciences, life sciences, materials, astronomy, and social sciences.", + "zh": "科技资源标识服务平台(CSTR)是中国科技部国家科技基础条件平台中心运营的国家级科学数据资源持久标识体系。类似于学术出版物的DOI,CSTR为中国主要科学数据中心管理的数据集、仪器设备、标本和其他研究资源分配永久可解析标识符。平台作为科学院、国家重点实验室和国家科技基础条件平台下属数据中心科学资源的权威注册和解析服务,支持跨地球科学、生命科学、材料科学、天文学和社会科学等领域的科学数据发现、引用和访问。" + }, + "website": "https://cstr.cn", + "data_url": "https://cstr.cn/resreg", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "science", + "earth-science", + "biology", + "materials", + "astronomy" + ], + "update_frequency": "irregular", + "tags": [ + "科技资源标识", + "cstr", + "科学数据", + "scientific-data", + "数据标识", + "data-identifier", + "持久标识", + "persistent-identifier", + "doi", + "科学数据中心", + "scientific-data-center", + "国家科技基础条件平台", + "national-science-infrastructure", + "中国科学院", + "chinese-academy-of-sciences", + "地球科学", + "earth-science", + "生命科学", + "life-science", + "材料科学", + "materials-science", + "天文学", + "astronomy", + "数据共享", + "data-sharing", + "科研数据管理", + "research-data-management", + "开放科学", + "open-science", + "数据仓库", + "data-repository" + ], + "data_content": { + "en": [ + "Scientific Dataset Registry: Persistent identifiers linking to datasets from China's national scientific data centers across all major disciplines", + "Earth and Environment Data: Geoscience, climate, ecology, and environmental observation datasets from CAS institutes and national observatories", + "Life Science Data: Biological specimen collections, genomics, biodiversity, and biomedical research datasets", + "Materials Science Data: Crystallography, materials properties, and experimental materials datasets from national labs", + "Astronomy and Space Data: Observational astronomy data, space science mission products, and cosmological datasets", + "Social Science Data: Survey and census data from social science research centers and population studies institutes", + "Instrument and Facility Registry: Records of major scientific instruments and facilities available to the research community", + "Cross-domain Discovery: Unified search and citation system for all CSTR-identified resources across participating data centers" + ], + "zh": [ + "科学数据集注册:链接至中国各主要学科国家科学数据中心数据集的持久标识符", + "地球与环境数据:来自中科院研究所和国家观测站的地球科学、气候、生态和环境观测数据集", + "生命科学数据:生物标本馆藏、基因组学、生物多样性和生物医学研究数据集", + "材料科学数据:来自国家实验室的晶体学、材料性质和实验材料数据集", + "天文与空间数据:天文观测数据、航天任务产品和宇宙学数据集", + "社会科学数据:社会科学研究中心和人口研究所的调查和普查数据", + "仪器设备注册:向科研界开放的大型科学仪器和设施信息", + "跨领域发现:面向各参与数据中心所有CSTR标识资源的统一检索和引用系统" + ] + }, + "has_api": false, + "file_path": "china/research/china-cstr.json" + }, + { + "id": "china-cufe-iigf", + "name": { + "en": "International Institute of Green Finance (IIGF), Central University of Finance and Economics", + "zh": "中央财经大学绿色金融国际研究院" + }, + "description": { + "en": "The International Institute of Green Finance (IIGF) at the Central University of Finance and Economics (CUFE) is China's leading academic research institute dedicated to green finance, sustainable finance, and climate finance research. Established in 2016, IIGF conducts policy research, develops green finance indices, and publishes authoritative reports on green bonds, ESG investing, climate risk, carbon markets, and sustainable development. The institute provides technical support to the People's Bank of China (PBOC), the China Securities Regulatory Commission (CSRC), the Ministry of Ecology and Environment, and other regulators in designing China's green finance framework. IIGF hosts the annual China Green Finance Development Report, publishes the IIGF Green Bond Index, and maintains databases on China's green bond issuance, carbon market transactions, and ESG ratings of listed companies. It is a founding partner of the Green Finance Committee of the China Society for Finance and Banking and collaborates with UN Environment, Climate Bonds Initiative, and other global sustainability organizations.", + "zh": "中央财经大学绿色金融国际研究院(IIGF)是中国领先的绿色金融、可持续金融和气候金融学术研究机构,2016年成立。IIGF开展政策研究,开发绿色金融指数,并发布绿色债券、ESG投资、气候风险、碳市场及可持续发展等领域的权威报告。研究院为中国人民银行、中国证监会、生态环境部等监管机构提供绿色金融框架设计的技术支持。IIGF每年发布《中国绿色金融发展报告》,编制IIGF绿色债券指数,并维护中国绿色债券发行、碳市场交易及上市公司ESG评级的数据库。作为中国金融学会绿色金融专业委员会的创始成员,IIGF与联合国环境署、气候债券倡议组织等全球可持续发展机构保持长期合作。" + }, + "website": "https://iigf.cufe.edu.cn/", + "data_url": "https://iigf.cufe.edu.cn/yjcg/yjbg.htm", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "environment", + "climate", + "economics", + "research" + ], + "update_frequency": "monthly", + "tags": [ + "中央财经大学绿色金融国际研究院", + "iigf", + "cufe", + "绿色金融", + "green-finance", + "可持续金融", + "sustainable-finance", + "气候金融", + "climate-finance", + "esg", + "ESG投资", + "esg-investing", + "绿色债券", + "green-bonds", + "碳市场", + "carbon-market", + "碳金融", + "carbon-finance", + "气候风险", + "climate-risk", + "转型金融", + "transition-finance", + "可持续发展", + "sustainable-development", + "气候债券", + "climate-bonds", + "绿色金融指数", + "green-finance-index", + "气候投资", + "climate-investment", + "低碳经济", + "low-carbon-economy" + ], + "data_content": { + "en": [ + "China green bond database: issuance data, issuers, use of proceeds, third-party verification, and market analytics for China's green bond market", + "IIGF Green Bond Index: performance index tracking the returns and yield of labeled and unlabeled green bonds in China's interbank and exchange markets", + "Annual China Green Finance Development Report: comprehensive review of policy, market development, product innovation, and international comparison", + "ESG research reports: ESG ratings methodology, Chinese listed companies' ESG disclosure analysis, ESG investing trends", + "Carbon market analysis: trading data from national and pilot carbon markets, carbon price projections, CCER market tracking", + "Climate risk assessment: physical and transition climate risk analysis for Chinese financial institutions and corporates", + "Green finance policy research: analysis of central bank green finance policies, green taxonomy development, mandatory climate disclosure rules", + "International green finance research: Belt and Road green investment tracking, China-EU taxonomy alignment, G20 sustainable finance initiatives", + "Industry databases: green industry classification, green credit statistics, green insurance products, green funds", + "Technical reports and working papers: peer-reviewed academic research and policy briefings" + ], + "zh": [ + "中国绿色债券数据库:中国绿色债券市场的发行数据、发行人、资金用途、第三方认证及市场分析", + "IIGF绿色债券指数:跟踪中国银行间和交易所市场贴标与未贴标绿色债券回报率与收益率的表现指数", + "《中国绿色金融发展报告》年度报告:政策、市场发展、产品创新及国际比较的全面综述", + "ESG研究报告:ESG评级方法论、中国上市公司ESG信息披露分析、ESG投资趋势", + "碳市场分析:全国和试点碳市场交易数据、碳价预测、CCER市场跟踪", + "气候风险评估:中国金融机构及企业的物理性和转型气候风险分析", + "绿色金融政策研究:央行绿色金融政策、绿色分类目录发展、强制性气候信息披露规则分析", + "国际绿色金融研究:一带一路绿色投资追踪、中欧分类目录对接、G20可持续金融倡议", + "行业数据库:绿色产业分类、绿色信贷统计、绿色保险产品、绿色基金", + "技术报告与工作论文:同行评议学术研究与政策简报" + ] + }, + "has_api": false, + "file_path": "china/research/china-cufe-iigf.json" + }, + { + "id": "china-drc", + "name": { + "en": "Development Research Center of the State Council of China", + "zh": "国务院发展研究中心" + }, + "description": { + "en": "The Development Research Center of the State Council (DRC) is China's premier government think tank, directly under the State Council. Founded in 1981, DRC conducts policy research and provides strategic advisory services on macroeconomics, rural development, industry and technology, market economy, social development, regional economy, open economy, and resource and environmental policy. DRC publishes influential research reports including the China Development Report, annual economic outlook assessments, and sector-specific policy analyses that directly inform national economic planning and State Council decision-making. Its research covers medium- and long-term development strategies, major reform initiatives, and international economic trends.", + "zh": "国务院发展研究中心是国务院直属的综合性政策研究机构,成立于1981年,承担宏观经济、农村发展、产业与技术、市场经济、社会发展、区域经济、开放经济、资源与环境政策等领域的研究工作,为国务院决策提供战略咨询服务。发展研究中心发布《中国发展报告》、年度经济形势研判报告及行业政策分析,直接服务于国家经济规划和国务院重大决策。研究领域涵盖中长期发展战略、重大改革举措和国际经济形势。" + }, + "website": "https://www.drc.gov.cn", + "data_url": "https://www.drc.gov.cn/yjcg.htm", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "economics", + "governance", + "environment", + "agriculture", + "science" + ], + "update_frequency": "monthly", + "tags": [ + "国务院发展研究中心", + "drc", + "development-research-center", + "国家智库", + "national-think-tank", + "中国发展报告", + "china-development-report", + "宏观经济", + "macroeconomics", + "经济政策", + "economic-policy", + "农村发展", + "rural-development", + "产业政策", + "industrial-policy", + "区域经济", + "regional-economy", + "资源环境政策", + "resource-environmental-policy", + "改革研究", + "reform-research", + "中长期发展战略", + "medium-long-term-development-strategy", + "国际经济", + "international-economy", + "经济形势", + "economic-outlook" + ], + "data_content": { + "en": [ + "China Development Report: annual comprehensive assessment of China's economic and social development progress, challenges, and policy recommendations", + "Macroeconomic outlook reports: quarterly and annual economic growth forecasts, inflation analysis, and fiscal and monetary policy assessments", + "Rural development research: reports on agricultural modernization, rural income, land policy, and urbanization trends", + "Industrial policy studies: sector-specific analyses on manufacturing transformation, strategic emerging industries, and industrial upgrade strategies", + "Regional economic research: studies on balanced regional development, urbanization, and major regional strategies such as the Belt and Road Initiative", + "Resource and environmental policy: research on energy transition, carbon neutrality pathways, green development, and ecological civilization policies", + "Reform policy assessments: evaluations of major reform initiatives in state-owned enterprises, financial systems, and market regulation", + "International economic analysis: research on global economic trends, trade policy, and China's foreign economic relations", + "Social development studies: research on income distribution, social security systems, pension reform, and public services" + ], + "zh": [ + "中国发展报告:中国经济社会发展进展、挑战及政策建议年度综合评估", + "宏观经济形势报告:季度和年度经济增长预测、通胀分析及财政货币政策评估", + "农村发展研究:农业现代化、农村居民收入、土地政策和城镇化趋势研究", + "产业政策研究:制造业转型、战略性新兴产业和产业升级策略的行业专项分析", + "区域经济研究:区域协调发展、城镇化及「一带一路」等重大区域战略研究", + "资源与环境政策:能源转型、碳中和路径、绿色发展和生态文明政策研究", + "改革政策评估:国有企业、金融体系和市场监管等重大改革举措评估", + "国际经济分析:全球经济形势、贸易政策及中国对外经济关系研究", + "社会发展研究:收入分配、社会保障体系、养老金改革和公共服务研究" + ] + }, + "has_api": false, + "file_path": "china/research/china-drc.json" + }, + { + "id": "china-giec", + "name": { + "en": "Guangzhou Institute of Energy Conversion, Chinese Academy of Sciences", + "zh": "中国科学院广州能源研究所" + }, + "description": { + "en": "The Guangzhou Institute of Energy Conversion (GIEC) under the Chinese Academy of Sciences (CAS) is one of China's premier national research institutions focused on renewable energy, energy efficiency, and clean energy technology. Founded in 1978 and headquartered in Guangzhou, GIEC conducts comprehensive research on solar energy, wind energy, biomass energy, hydrogen energy, marine energy, and natural gas hydrates. As a key national research base for new and renewable energy, GIEC operates multiple national-level key laboratories including the State Key Lab for Combustion, the Guangdong New Energy Engineering Technology Research Center, and key labs for renewable energy and gas hydrates. GIEC publishes widely cited research outputs on energy conversion technologies, energy storage, carbon capture, and clean fuel production. Its research directly supports China's energy transition and carbon neutrality policy goals. GIEC also manages China's strategic research program on natural gas hydrate (methane hydrate) extraction from the South China Sea, a critical emerging energy resource.", + "zh": "中国科学院广州能源研究所(GIEC)是中国科学院下属的顶级国家科研机构,专注于可再生能源、节能和清洁能源技术研究。1978年成立,总部位于广州。GIEC开展太阳能、风能、生物质能、氢能、海洋能和天然气水合物的综合研究,是国家新能源与可再生能源重要研究基地,建有燃烧国家重点实验室、广东省新能源工程技术研究中心、可再生能源和天然气水合物重点实验室。GIEC在能源转换技术、储能、碳捕集和清洁燃料生产领域发表了大量引用广泛的研究成果,研究直接支撑中国能源转型和碳中和政策目标。GIEC还负责中国南海天然气水合物(甲烷水合物)开采战略研究项目,这是一种重要的新兴能源资源。" + }, + "website": "http://www.giec.ac.cn", + "data_url": "http://www.giec.ac.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "energy", + "environment", + "technology", + "climate" + ], + "update_frequency": "irregular", + "tags": [ + "中国科学院广州能源研究所", + "giec", + "guangzhou-institute-of-energy-conversion", + "中国科学院", + "chinese-academy-of-sciences", + "可再生能源", + "renewable-energy", + "太阳能", + "solar-energy", + "生物质能", + "biomass-energy", + "氢能", + "hydrogen-energy", + "海洋能", + "marine-energy", + "天然气水合物", + "gas-hydrate", + "甲烷水合物", + "methane-hydrate", + "碳捕集", + "carbon-capture", + "储能", + "energy-storage", + "清洁能源", + "clean-energy", + "节能", + "energy-efficiency", + "碳中和", + "carbon-neutrality" + ], + "data_content": { + "en": [ + "Renewable energy technology research publications: peer-reviewed studies on solar photovoltaics, concentrated solar power, biomass conversion, wind energy systems, and marine current energy", + "Gas hydrate (methane clathrate) research: exploration data, extraction technology research, and resource assessment reports for natural gas hydrates in China's South China Sea", + "Energy conversion efficiency data: experimental results and performance metrics for fuel cells, heat pumps, thermochemical energy storage, and advanced combustion systems", + "Hydrogen energy research: hydrogen production, storage, transportation, and fuel cell technology data from GIEC's hydrogen energy program", + "Biomass energy data: gasification efficiency, biogas yield, bio-oil properties, and biofuel conversion research outputs from China's agricultural and forestry residues", + "Carbon capture and utilization research: CO2 capture efficiency, conversion pathways, and carbon fixation technology assessments", + "Energy policy and transition analysis: technical assessments supporting China's renewable energy development plans and carbon neutrality roadmaps", + "National key laboratory outputs: research results from the State Key Laboratory on Combustion and affiliated renewable energy research platforms" + ], + "zh": [ + "可再生能源技术研究成果:太阳能光伏、聚光太阳能、生物质转化、风能系统和海洋潮流能同行评审研究", + "天然气水合物(甲烷笼合物)研究:中国南海天然气水合物勘探数据、开采技术研究和资源评估报告", + "能源转换效率数据:燃料电池、热泵、热化学储能和先进燃烧系统实验结果和性能指标", + "氢能研究:GIEC氢能计划中氢气制备、储存、运输和燃料电池技术数据", + "生物质能数据:中国农林废弃物气化效率、沼气产率、生物油性质和生物燃料转化研究成果", + "碳捕集与利用研究:CO2捕集效率、转化路径和固碳技术评估", + "能源政策与转型分析:支撑中国可再生能源发展规划和碳中和路线图的技术评估", + "国家重点实验室产出:燃烧国家重点实验室及附属可再生能源研究平台的研究成果" + ] + }, + "has_api": false, + "file_path": "china/research/china-giec.json" + }, + { + "id": "china-gscloud", + "name": { + "en": "Geospatial Data Cloud - Computer Network Information Center, CAS", + "zh": "地理空间数据云(中国科学院计算机网络信息中心)" + }, + "description": { + "en": "The Geospatial Data Cloud (GSCloud) is China's premier free geospatial and remote sensing data platform, operated by the Computer Network Information Center (CNIC) of the Chinese Academy of Sciences (CAS). It provides global and China-specific satellite imagery, digital elevation models, land cover data, and environmental remote sensing datasets. Key datasets include Landsat series (1-9), Sentinel-1/2, MODIS, NOAA satellite data, ASTER Global DEM, SRTM DEM, and China-specific high-resolution imagery from domestic satellites. GSCloud serves over 2 million registered users globally and is the primary access point for freely available geospatial data in China. It supports research in land use change, urban expansion, disaster monitoring, agricultural assessment, climate change, and ecosystem monitoring.", + "zh": "地理空间数据云(GSCloud)是中国领先的免费地理空间和遥感数据平台,由中国科学院计算机网络信息中心(CNIC)运营。平台提供全球及中国特定地区的卫星影像、数字高程模型、土地覆盖数据及环境遥感数据集。主要数据集包括Landsat系列(1-9)、Sentinel-1/2、MODIS、NOAA卫星数据、ASTER全球数字高程模型、SRTM数字高程模型及国产卫星高分辨率影像。GSCloud全球注册用户超200万,是中国免费地理空间数据的主要获取渠道,支持土地利用变化、城市扩张、灾害监测、农业评估、气候变化和生态系统监测研究。" + }, + "website": "https://www.gscloud.cn", + "data_url": "https://www.gscloud.cn/search", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "global", + "domains": [ + "environment", + "science", + "geography", + "climate", + "research" + ], + "update_frequency": "daily", + "tags": [ + "地理空间数据云", + "gscloud", + "遥感数据", + "remote-sensing", + "卫星影像", + "satellite-imagery", + "landsat", + "sentinel", + "modis", + "数字高程模型", + "dem", + "土地覆盖", + "land-cover", + "lucc", + "中科院", + "cas", + "cnic", + "计算机网络信息中心", + "土地利用", + "land-use", + "城市扩张", + "urban-expansion", + "生态监测", + "ecosystem-monitoring", + "气候变化", + "climate-change", + "灾害监测", + "disaster-monitoring", + "免费数据", + "free-data" + ], + "data_content": { + "en": [ + "Landsat imagery series (1-9): historical and current 30-meter resolution multispectral satellite imagery dating back to 1972, global coverage", + "Sentinel-1 and Sentinel-2: ESA Copernicus satellite data including SAR and multispectral imagery at 10-meter resolution", + "MODIS datasets: daily, 8-day, and monthly global land surface products including NDVI, land surface temperature, and fire detection", + "Digital Elevation Models: SRTM (30m/90m), ASTER GDEM, and TanDEM-X global elevation datasets", + "NOAA satellite data: weather and environmental monitoring data from NOAA meteorological satellites", + "China high-resolution imagery: data from China's domestic earth observation satellites including HJ, GF series", + "Land use and land cover change (LUCC): China and global LUCC datasets at multiple spatial resolutions and time periods", + "Hydrological data: river basin boundaries, watershed delineations, and hydrological remote sensing products" + ], + "zh": [ + "Landsat系列影像(1-9):全球覆盖、30米分辨率多光谱卫星影像,历史数据追溯至1972年", + "Sentinel-1和Sentinel-2:欧空局哥白尼卫星数据,包括10米分辨率SAR和多光谱影像", + "MODIS数据集:日度、8天和月度全球陆地产品,包含NDVI、地表温度和火点监测", + "数字高程模型:SRTM(30m/90m)、ASTER GDEM及TanDEM-X全球高程数据集", + "NOAA卫星数据:来自NOAA气象卫星的天气和环境监测数据", + "中国高分辨率影像:环境卫星(HJ)、高分(GF)系列等国产对地观测卫星数据", + "土地利用/覆盖变化(LUCC):中国及全球多空间分辨率和时间序列的土地利用变化数据集", + "水文数据:流域边界、集水区划定及水文遥感产品" + ] + }, + "has_api": false, + "file_path": "china/research/china-gscloud.json" + }, + { + "id": "china-iap", + "name": { + "en": "Institute of Atmospheric Physics, Chinese Academy of Sciences", + "zh": "中国科学院大气物理研究所" + }, + "description": { + "en": "The Institute of Atmospheric Physics (IAP) under the Chinese Academy of Sciences is China's premier research institution for atmospheric science and climate change. Founded in 1928 and reorganized under CAS in 1950, IAP leads China's research in atmospheric dynamics, physical climatology, atmospheric chemistry, boundary layer meteorology, and middle atmosphere research. IAP operates key observational facilities including China's tallest meteorological tower in Beijing and contributes to multiple international climate observation networks. The institute develops and maintains China's leading climate models, produces authoritative climate change assessments, and publishes major research findings on global warming, East Asian monsoon dynamics, air pollution meteorology, and atmospheric composition. IAP's data products are widely used in IPCC assessments and international climate science.", + "zh": "中国科学院大气物理研究所是中国大气科学和气候变化领域的最高研究机构,1928年创建,1950年并入中国科学院。大气所在大气动力学、物理气候学、大气化学、边界层气象和中层大气研究方面引领中国研究前沿,运营北京325米气象铁塔等核心观测设施,参与多个国际气候观测网络。研究所开发维护中国主流气候模式,发布气候变化权威评估报告,在全球变暖、东亚季风动力学、大气污染气象学和大气成分等方面发表重要研究成果。大气所数据产品被IPCC评估报告和国际气候科学界广泛引用。" + }, + "website": "https://www.iap.ac.cn", + "data_url": "https://www.iap.ac.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "climate", + "environment", + "science", + "weather" + ], + "update_frequency": "irregular", + "tags": [ + "中国科学院大气物理研究所", + "iap", + "institute-of-atmospheric-physics", + "大气物理", + "atmospheric-physics", + "气候变化", + "climate-change", + "大气科学", + "atmospheric-science", + "东亚季风", + "east-asian-monsoon", + "气候模式", + "climate-model", + "全球变暖", + "global-warming", + "大气化学", + "atmospheric-chemistry", + "边界层气象", + "boundary-layer-meteorology", + "大气污染", + "air-pollution-meteorology", + "气象观测", + "meteorological-observation", + "ipcc", + "气候评估", + "climate-assessment", + "中层大气", + "middle-atmosphere", + "海洋热含量", + "ocean-heat-content" + ], + "data_content": { + "en": [ + "Climate model output: simulation data from IAP's Earth System Models (CAS-ESM) contributed to CMIP6 for global and East Asian climate projections", + "Atmospheric observation data: long-term measurements from Beijing 325m meteorological tower including temperature, humidity, wind profiles, and turbulence", + "Ocean heat content datasets: authoritative global ocean warming records maintained by IAP, widely referenced for tracking long-term climate change", + "East Asian monsoon research: historical and projected changes in monsoon onset, intensity, precipitation patterns, and teleconnections", + "Atmospheric chemistry data: observations and model outputs on aerosol composition, trace gas concentrations, and air quality impacts on climate", + "Climate change assessment reports: China National Assessment Reports on Climate Change and contributions to IPCC Working Group I assessment reports", + "Stratosphere and middle atmosphere data: observations of ozone layer, upper atmosphere dynamics, and solar-climate interactions", + "Boundary layer meteorology data: surface energy budget, turbulent flux measurements, and urban heat island research" + ], + "zh": [ + "气候模式输出:大气所地球系统模式(CAS-ESM)参与CMIP6的全球及东亚气候预测模拟数据", + "大气观测数据:北京325米气象铁塔长期气温、湿度、风廓线及湍流观测数据", + "海洋热含量数据集:大气所维护的全球海洋变暖权威记录,被广泛用于长期气候变化追踪", + "东亚季风研究:季风开始时间、强度、降水型态和遥相关的历史变化及预测研究", + "大气化学数据:气溶胶成分、微量气体浓度和大气污染对气候影响的观测与模拟数据", + "气候变化评估报告:《中国气候变化国家评估报告》及参与IPCC第一工作组评估报告", + "平流层与中层大气数据:臭氧层、高层大气动力学和太阳-气候相互作用观测", + "边界层气象数据:地表能量收支、湍流通量观测和城市热岛研究" + ] + }, + "has_api": false, + "file_path": "china/research/china-iap.json" + }, + { + "id": "china-ibcas", + "name": { + "en": "Institute of Botany, Chinese Academy of Sciences", + "zh": "中国科学院植物研究所" + }, + "description": { + "en": "The Institute of Botany (IBCAS) under the Chinese Academy of Sciences is China's flagship research institution for plant science, established in 1928. IBCAS maintains the China National Herbarium (PE), one of the world's largest plant specimen repositories, housing over 2.8 million voucher specimens representing China's extraordinary plant diversity. The institute operates the Beijing Botanical Garden and the China Specimen Information System, and contributes to international flora databases. IBCAS leads research in plant systematics and evolution, plant ecology, plant physiology, and molecular biology of plants. It coordinates the Flora of China project—a landmark collaboration with Missouri Botanical Garden—and publishes the authoritative Chinese Flora records. IBCAS manages critical plant diversity databases including the Chinese Virtual Herbarium and China Species Information Service, providing foundational data for biodiversity conservation, ecological restoration, and phytochemistry research.", + "zh": "中国科学院植物研究所是中国植物科学领域的旗舰研究机构,1928年建立。植物所保管中国国家植物标本馆(PE),是世界上最大的植物标本库之一,收藏280余万份植物标本,代表中国卓越的植物多样性。研究所运营北京植物园和中国标本信息系统,并为国际植物志数据库做出重要贡献。植物所在植物系统学与进化、植物生态学、植物生理学和植物分子生物学领域引领全国研究,与密苏里植物园合作主持《中国植物志》英文版项目,发布权威中国植物志记录。植物所管理中国虚拟植物标本馆和中国物种信息服务等重要植物多样性数据库,为生物多样性保护、生态修复和植物化学研究提供基础数据。" + }, + "website": "https://www.ibcas.ac.cn", + "data_url": "https://www.ibcas.ac.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "biology", + "environment", + "science" + ], + "update_frequency": "irregular", + "tags": [ + "中国科学院植物研究所", + "ibcas", + "institute-of-botany", + "植物学", + "botany", + "植物多样性", + "plant-diversity", + "生物多样性", + "biodiversity", + "植物标本", + "plant-herbarium", + "中国国家植物标本馆", + "china-national-herbarium", + "pe", + "flora-of-china", + "中国植物志", + "植物系统学", + "plant-systematics", + "植物进化", + "plant-evolution", + "植物生态学", + "plant-ecology", + "中国科学院", + "chinese-academy-of-sciences", + "cas", + "北京植物园", + "beijing-botanical-garden", + "种质资源", + "germplasm-resources", + "植物化学", + "phytochemistry", + "生态修复", + "ecological-restoration", + "中国虚拟植物标本馆", + "chinese-virtual-herbarium" + ], + "data_content": { + "en": [ + "China National Herbarium (PE) specimen database: 2.8+ million digitized plant voucher specimens with geographic coordinates, collection dates, taxonomic identifications, and high-resolution images", + "Flora of China records: comprehensive taxonomic treatments of approximately 31,000 Chinese vascular plant species, including descriptions, distribution maps, and synonymy", + "Chinese Virtual Herbarium: aggregated specimen data from major Chinese herbaria, enabling species distribution modeling and gap analysis for biodiversity conservation", + "China Species Information Service: authoritative species name lists, threat status assessments, and distribution data for Chinese plant species aligned with IUCN Red List criteria", + "Plant ecology datasets: vegetation survey data, plant community composition studies, phenological records, and ecosystem productivity measurements across Chinese biomes", + "Molecular phylogenetics data: DNA sequence databases and phylogenetic trees for Chinese plant families, supporting evolutionary biology research and species delimitation", + "Germplasm and conservation data: records of endangered plant species, in-situ and ex-situ conservation status, and genetic diversity assessments for priority conservation species", + "Phytochemistry research data: secondary metabolite databases, bioactive compound screening results, and ethnobotanical records of medicinal plants in China" + ], + "zh": [ + "中国国家植物标本馆(PE)标本数据库:280余万份数字化植物凭证标本,含地理坐标、采集日期、分类鉴定和高分辨率图像", + "中国植物志记录:约31,000种中国维管植物的综合分类处理,包括描述、分布图和异名", + "中国虚拟植物标本馆:整合中国主要植物标本馆标本数据,支持物种分布模型和生物多样性保护空缺分析", + "中国物种信息服务:中国植物物种权威名录、受威胁状态评估和分布数据,与IUCN红色名录标准对接", + "植物生态学数据集:覆盖中国各生物群系的植被调查、植物群落组成研究、物候记录和生态系统生产力测量", + "分子系统学数据:中国植物科的DNA序列数据库和系统发育树,支持进化生物学研究和物种界定", + "种质和保护数据:濒危植物物种记录、就地与迁地保护状态和优先保护物种遗传多样性评估", + "植物化学研究数据:次生代谢产物数据库、生物活性化合物筛选结果和中国药用植物民族植物学记录" + ] + }, + "has_api": false, + "file_path": "china/research/china-ibcas.json" + }, + { + "id": "china-igsnrr", + "name": { + "en": "Institute of Geographic Sciences and Natural Resources Research, Chinese Academy of Sciences", + "zh": "中国科学院地理科学与资源研究所" + }, + "description": { + "en": "The Institute of Geographic Sciences and Natural Resources Research (IGSNRR) is a leading research institution under the Chinese Academy of Sciences, focusing on geography, natural resources, and ecosystem studies. It provides open datasets on land use, remote sensing, population distribution, and natural resource assessments across China.", + "zh": "中国科学院地理科学与资源研究所(地理资源所)是中国科学院下属的重要研究机构,专注于地理学、自然资源和生态系统研究。研究所提供土地利用、遥感、人口分布和自然资源评估等领域的开放数据集。" + }, + "data_content": { + "en": [ + "land use and land cover data", + "remote sensing datasets", + "population distribution data", + "natural resource assessments", + "ecosystem observation data", + "geographic information datasets" + ], + "zh": [ + "土地利用与地表覆盖数据", + "遥感数据集", + "人口分布数据", + "自然资源评估", + "生态系统观测数据", + "地理信息数据集" + ] + }, + "country": "CN", + "authority_level": "research", + "geographic_scope": "national", + "website": "http://www.igsnrr.ac.cn", + "data_url": "http://www.igsnrr.ac.cn", + "domains": [ + "geography", + "environment", + "remote-sensing" + ], + "tags": [ + "geography", + "natural-resources", + "land-use", + "remote-sensing", + "ecosystem", + "chinese-academy-of-sciences" + ], + "update_frequency": "irregular", + "has_api": false, + "file_path": "china/research/china-igsnrr.json" + }, + { + "id": "china-imcas", + "name": { + "en": "Institute of Microbiology, Chinese Academy of Sciences", + "zh": "中国科学院微生物研究所" + }, + "description": { + "en": "The Institute of Microbiology (IMCAS) under the Chinese Academy of Sciences is China's premier research institution for microbiology, mycology, and microbial resources. Founded in 1958, IMCAS maintains the China General Microbiological Culture Collection Center (CGMCC), one of Asia's largest biological resource centers, housing hundreds of thousands of microbial strains, fungi, and viruses. The institute leads research in pathogenic microbiology, industrial microbiology, environmental microbiology, and bioinformatics. IMCAS publishes authoritative datasets on microbial diversity, antimicrobial resistance, and fungal taxonomy, contributing to global biological resource databases. Its research supports national biosafety, food fermentation industry, agricultural biocontrol, and pharmaceutical bioproduction. The institute is a key node in international microbial culture collection networks including WFCC and ECCO.", + "zh": "中国科学院微生物研究所是中国微生物学、真菌学和微生物资源领域的最高研究机构,1958年建立。微生物所维护中国普通微生物菌种保藏管理中心(CGMCC),是亚洲最大的生物资源库之一,保藏数十万株微生物菌株、真菌和病毒。研究所在病原微生物学、工业微生物学、环境微生物学和生物信息学领域引领全国研究,发布微生物多样性、抗微生物耐药性和真菌分类学权威数据集,为全球生物资源数据库贡献重要内容。其研究支撑国家生物安全、食品发酵产业、农业生物防治和医药生物生产。微生物所是世界菌种联合会(WFCC)和ECCO等国际微生物菌种保藏网络的重要节点。" + }, + "website": "https://www.im.cas.cn", + "data_url": "https://www.im.cas.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "biology", + "health", + "science" + ], + "update_frequency": "irregular", + "tags": [ + "中国科学院微生物研究所", + "imcas", + "institute-of-microbiology", + "微生物学", + "microbiology", + "真菌学", + "mycology", + "菌种保藏", + "microbial-culture-collection", + "cgmcc", + "中国普通微生物菌种保藏管理中心", + "微生物多样性", + "microbial-diversity", + "抗微生物耐药性", + "antimicrobial-resistance", + "amr", + "生物安全", + "biosafety", + "工业微生物", + "industrial-microbiology", + "病原微生物", + "pathogenic-microbiology", + "真菌分类", + "fungal-taxonomy", + "环境微生物", + "environmental-microbiology", + "中国科学院", + "chinese-academy-of-sciences", + "cas", + "微生物资源", + "microbial-resources" + ], + "data_content": { + "en": [ + "Microbial strain collections: CGMCC holds hundreds of thousands of authenticated bacterial, fungal, and viral strains available for research and industrial applications", + "Microbial diversity databases: catalogues of microbial species diversity across Chinese ecosystems, soil, marine, and extreme environments", + "Fungal taxonomy data: comprehensive records of fungal species classification, nomenclature, and morphological descriptions maintained by the Mycological Society of China", + "Antimicrobial resistance (AMR) monitoring: research datasets on drug-resistant pathogens, resistance gene databases, and surveillance reports", + "Genome sequence data: whole-genome sequences of bacteria, fungi, and viruses deposited in national and international databases", + "Industrial microbiology data: fermentation process parameters, enzyme databases, and biotransformation research for food, pharmaceutical, and agricultural applications", + "Environmental microbiology surveys: microbial community composition in soil, wastewater, and atmospheric environments across China", + "Biosafety research: risk assessment data for pathogenic microorganisms and containment standards for laboratory biosafety" + ], + "zh": [ + "微生物菌种保藏:CGMCC保藏数十万株经鉴定的细菌、真菌和病毒菌株,供研究和工业应用", + "微生物多样性数据库:覆盖中国生态系统、土壤、海洋和极端环境的微生物物种多样性目录", + "真菌分类数据:中国菌物学会维护的真菌物种分类、命名和形态描述综合记录", + "抗微生物耐药性(AMR)监测:耐药病原体研究数据集、耐药基因数据库和监测报告", + "基因组序列数据:存入国内外数据库的细菌、真菌和病毒全基因组序列", + "工业微生物数据:食品、制药和农业应用的发酵工艺参数、酶数据库和生物转化研究", + "环境微生物调查:中国土壤、废水和大气环境中微生物群落组成", + "生物安全研究:病原微生物风险评估数据和实验室生物安全的防控标准" + ] + }, + "has_api": false, + "file_path": "china/research/china-imcas.json" + }, + { + "id": "china-ioz", + "name": { + "en": "Institute of Zoology, Chinese Academy of Sciences", + "zh": "中国科学院动物研究所" + }, + "description": { + "en": "The Institute of Zoology (IOZ) under the Chinese Academy of Sciences is a leading research institution focused on animal taxonomy, evolutionary biology, reproductive biology, and pest management. It maintains major biodiversity databases and species catalogues.", + "zh": "中国科学院动物研究所是从事动物分类学、进化生物学、生殖生物学和害虫防治研究的顶级机构。维护重要的生物多样性数据库和物种名录。" + }, + "data_content": { + "en": [ + "species catalogues", + "biodiversity surveys", + "animal genome data", + "pest monitoring data", + "evolutionary biology research" + ], + "zh": [ + "物种名录", + "生物多样性调查", + "动物基因组数据", + "害虫监测数据", + "进化生物学研究" + ] + }, + "country": "CN", + "authority_level": "research", + "geographic_scope": "national", + "website": "http://www.ioz.ac.cn", + "data_url": "http://www.ioz.ac.cn", + "domains": [ + "biology", + "environment" + ], + "tags": [ + "zoology", + "biodiversity", + "species", + "genome", + "cas" + ], + "update_frequency": "irregular", + "has_api": false, + "file_path": "china/research/china-ioz.json" + }, + { + "id": "china-istic", + "name": { + "en": "Institute of Scientific and Technical Information of China", + "zh": "中国科学技术信息研究所" + }, + "description": { + "en": "The Institute of Scientific and Technical Information of China (ISTIC), founded in 1956 and operating under the Ministry of Science and Technology, is China's leading government agency for scientific and technical information research and data publishing. ISTIC produces authoritative bibliometric analyses, including the Chinese Science Citation Database (CSCD), Chinese Scientific Journal Citation Reports, and annual rankings of China's most-cited journals and researchers. It publishes the Chinese S&T Journal Impact Factor (中国科技期刊引证报告), the ISTIC Discipline Assessment Reports, and China's performance in global scientific publications. ISTIC data is essential for evaluating research output, journal quality, academic influence, and China's position in the global science system.", + "zh": "中国科学技术信息研究所(中信所,ISTIC)成立于1956年,隶属科学技术部,是中国权威的科技信息研究与数据发布机构。中信所承担中文科学引文数据库(CSCD)建设、中国科技期刊引证报告编制及年度高被引期刊和研究者排名发布。主要出版物包括《中国科技期刊引证报告》(核心版)、学科评价报告以及中国在全球科学出版物中的表现分析。中信所数据是评估科研产出、期刊质量、学术影响力及中国在全球科学体系中地位的重要依据。" + }, + "website": "https://www.istic.ac.cn", + "data_url": "https://www.istic.ac.cn/", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "science", + "research", + "education", + "statistics" + ], + "update_frequency": "annual", + "tags": [ + "中信所", + "istic", + "科技信息", + "scientific-information", + "科学引文", + "science-citation", + "cscd", + "中文科学引文数据库", + "chinese-science-citation-database", + "期刊引证", + "journal-citation", + "影响因子", + "impact-factor", + "科技期刊", + "scientific-journal", + "学术评价", + "academic-evaluation", + "科研产出", + "research-output", + "高被引", + "highly-cited", + "科技部", + "ministry-of-science-and-technology", + "中国科技", + "china-science-and-technology" + ], + "data_content": { + "en": [ + "Chinese S&T Journal Citation Reports: impact factors, total citations, and h-index for thousands of Chinese scientific journals", + "CSCD database: comprehensive citation index for China's core scientific journals across all disciplines", + "Annual journal rankings: top Chinese journals by impact factor, citation frequency, and international influence", + "Chinese researcher citation analysis: highly cited Chinese scientists and their publication metrics", + "China's global scientific output: comparison of China's publications and citations with major scientific nations", + "Discipline assessment reports: bibliometric analysis by academic discipline and research institution", + "Science and technology information resources: statistical reports on library collections and digital resources in China", + "National sci-tech award statistics: data on China's national science and technology prize winners and research areas" + ], + "zh": [ + "中国科技期刊引证报告:数千种中国科技期刊的影响因子、总被引频次及h指数", + "CSCD数据库:覆盖各学科的中国核心科技期刊综合引文索引", + "年度期刊排名:按影响因子、被引频次和国际影响力排列的中国顶级期刊", + "中国学者被引分析:高被引中国科学家及其发表成果计量指标", + "中国全球科学产出:中国论文发表和引文数量与主要科学大国的比较", + "学科评价报告:按学术学科和科研机构的文献计量分析", + "科技信息资源:中国图书馆馆藏和数字资源统计报告", + "国家科技奖励统计:国家科学技术奖获奖者及研究领域数据" + ] + }, + "has_api": false, + "file_path": "china/research/china-istic.json" + }, + { + "id": "china-ncsti", + "name": { + "en": "National Center for Science and Technology Information", + "zh": "中国科学技术信息研究所" + }, + "description": { + "en": "NCSTI is a national research institution under the Ministry of Science and Technology, providing science and technology information services, bibliometric analysis, and S&T statistics including the Chinese Science Citation Database.", + "zh": "中国科学技术信息研究所是科技部直属国家级科技信息研究机构,提供科技信息服务、文献计量分析和科技统计数据,包括中国科技论文统计数据库。" + }, + "data_content": { + "en": [ + "science citation database", + "bibliometric analysis", + "S&T statistics", + "technology transfer data", + "research output reports" + ], + "zh": [ + "科技论文统计数据库", + "文献计量分析", + "科技统计数据", + "技术转移数据", + "科研产出报告" + ] + }, + "country": "CN", + "authority_level": "research", + "geographic_scope": "national", + "website": "https://www.ncsti.gov.cn", + "data_url": "https://www.ncsti.gov.cn", + "domains": [ + "science", + "technology" + ], + "tags": [ + "bibliometrics", + "citation", + "research-output", + "most" + ], + "update_frequency": "annual", + "has_api": false, + "file_path": "china/research/china-ncsti.json" + }, + { + "id": "china-ngeos", + "name": { + "en": "National Earth System Science Data Center", + "zh": "国家地球系统科学数据中心" + }, + "description": { + "en": "The National Earth System Science Data Center (NGEOS) is one of China's 20 national science data centers, hosted by the Institute of Geographic Sciences and Natural Resources Research at the Chinese Academy of Sciences (CAS). NGEOS is the primary national repository for earth system science datasets in China, integrating multidisciplinary data on the atmosphere, hydrosphere, lithosphere, biosphere, and cryosphere. It provides open access to climate, hydrology, ecology, land use, remote sensing, and socioeconomic data for China and the Asia-Pacific region, supporting research on global change, carbon cycles, disaster risk, and sustainable development. NGEOS serves as a hub for sharing field observation data from research stations across China.", + "zh": "国家地球系统科学数据中心(NGEOS)是中国20个国家科学数据中心之一,依托中国科学院地理科学与资源研究所建设。该中心是中国地球系统科学数据的主要国家存储库,整合大气圈、水圈、岩石圈、生物圈和冰冻圈多学科数据。开放共享中国及亚太地区气候、水文、生态、土地利用、遥感和社会经济数据,支持全球变化、碳循环、灾害风险和可持续发展研究。中心是汇聚全国各地野外观测站实地观测数据共享的重要平台。" + }, + "website": "https://www.geodata.cn", + "data_url": "https://www.geodata.cn/data/", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "environmental-science", + "earth-science", + "climate" + ], + "update_frequency": "irregular", + "tags": [ + "地球系统科学", + "earth-system-science", + "气候数据", + "climate-data", + "水文数据", + "hydrological-data", + "生态数据", + "ecological-data", + "土地利用", + "land-use", + "遥感数据", + "remote-sensing-data", + "碳循环", + "carbon-cycle", + "全球变化", + "global-change", + "冰冻圈", + "cryosphere", + "中国科学院", + "chinese-academy-of-sciences", + "野外台站", + "field-research-station", + "开放数据", + "open-data", + "资源环境", + "resources-and-environment", + "可持续发展", + "sustainable-development", + "ngeos" + ], + "data_content": { + "en": [ + "Climate and meteorological datasets: long-term surface temperature, precipitation, wind speed, humidity, and solar radiation records from China's meteorological observation network, including gridded datasets at multiple resolutions from 1951 to present", + "Hydrological data: river discharge, groundwater levels, lake area and depth, evapotranspiration, and basin-scale water balance datasets for China's major river systems including Yangtze, Yellow, Pearl, and inland rivers", + "Land use and land cover change data: multi-temporal national land use classification at 100m and 1km resolutions from 1980-2020, tracking urbanization, deforestation, wetland loss, and agricultural land changes across China", + "Ecological and biodiversity datasets: vegetation coverage (NDVI) time series, species distribution models, forest biomass, grassland productivity, and biodiversity indices for China's major ecosystems", + "Cryosphere data: glacier area and volume changes, permafrost distribution and active layer depth, snow cover extent and snow water equivalent from the Qinghai-Tibetan Plateau and high-altitude regions", + "Socioeconomic geographic data: spatial datasets on population distribution, GDP per capita by county, poverty mapping, agricultural production zones, and infrastructure accessibility across China", + "Carbon flux and greenhouse gas data: ecosystem carbon uptake and release measurements from flux tower networks, soil respiration rates, and methane emissions from wetlands and rice paddies across China", + "Remote sensing satellite products: derived Earth observation products from Chinese satellites (FY, HJ, GF series) including land surface temperature, vegetation indices, aerosol optical depth, and soil moisture" + ], + "zh": [ + "气候和气象数据集:来自中国气象观测网络的长期地表温度、降水量、风速、湿度和太阳辐射记录,包含1951年至今不同分辨率的格网化数据集", + "水文数据:长江、黄河、珠江及内陆河等中国主要流域的河流径流量、地下水位、湖泊面积和深度、蒸散量及流域水量平衡数据集", + "土地利用与土地覆盖变化数据:1980—2020年100米和1千米分辨率的全国多时相土地利用分类,追踪全国城镇化、森林减少、湿地消失和农业用地变化", + "生态和生物多样性数据集:植被覆盖度(NDVI)时间序列、物种分布模型、森林生物量、草地生产力及中国主要生态系统生物多样性指数", + "冰冻圈数据:青藏高原和高海拔地区冰川面积和体积变化、多年冻土分布及活动层深度、积雪范围和雪水当量", + "社会经济地理数据:全国人口分布、各县GDP、贫困地图、农业生产区划和基础设施可达性空间数据集", + "碳通量和温室气体数据:通量塔网络生态系统碳吸收和释放测量值、土壤呼吸速率及全国湿地和稻田甲烷排放量", + "遥感卫星产品:中国卫星(风云、环境、高分系列)衍生的地球观测产品,包括地表温度、植被指数、气溶胶光学厚度和土壤湿度" + ] + }, + "has_api": false, + "file_path": "china/research/china-ngeos.json" + }, + { + "id": "china-nigpas", + "name": { + "en": "Nanjing Institute of Geology and Palaeontology, Chinese Academy of Sciences", + "zh": "中国科学院南京地质古生物研究所" + }, + "description": { + "en": "The Nanjing Institute of Geology and Palaeontology (NIGPAS), established in 1951 under the Chinese Academy of Sciences, is China's only dedicated institution for palaeontology and stratigraphy research. NIGPAS maintains one of the world's largest fossil collections with over 200,000 specimens covering invertebrate palaeontology, palaeobotany, micropaleontology, and biostratigraphy. The institute operates the Nanjing Museum of Palaeontology and manages comprehensive databases of fossil specimens, stratigraphic sections, and geological time calibration data. NIGPAS plays a central role in establishing China's biostratigraphic framework and contributes to international efforts in geological time scale calibration. Its research data supports studies in Earth's life evolution, mass extinction events, palaeoclimate reconstruction, and petroleum exploration stratigraphy.", + "zh": "中国科学院南京地质古生物研究所成立于1951年,是中国唯一专门从事古生物学和地层学研究的机构。NIGPAS维护着世界上最大的化石收藏之一,拥有超过20万件标本,涵盖无脊椎古生物学、古植物学、微体古生物学和生物地层学。研究所运营南京古生物博物馆,管理化石标本、地层剖面和地质年代标定数据的综合数据库。NIGPAS在建立中国生物地层学框架中发挥核心作用,并为国际地质年代表标定工作作出贡献。其研究数据支持地球生命演化、大灭绝事件、古气候重建和石油勘探地层学等领域的研究。" + }, + "website": "http://www.nigpas.ac.cn", + "data_url": "http://www.nigpas.ac.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "science", + "geology" + ], + "update_frequency": "irregular", + "tags": [ + "古生物", + "palaeontology", + "paleontology", + "地层学", + "stratigraphy", + "化石", + "fossil", + "nigpas", + "南京地质古生物研究所", + "地质年代", + "geological-time", + "古植物", + "palaeobotany", + "微体古生物", + "micropaleontology", + "生物地层", + "biostratigraphy", + "大灭绝", + "mass-extinction", + "古气候", + "palaeoclimate", + "中国科学院", + "cas", + "标本", + "specimen" + ], + "data_content": { + "en": [ + "Fossil specimen database: taxonomic records, locality data, geological age, and imaging for over 200,000 fossil specimens in the NIGPAS collection", + "Stratigraphic section data: measured sections with lithological descriptions, biostratigraphic zonation, and chronostratigraphic correlation across China", + "Geological time scale calibration: high-resolution age data from GSSP (Global Boundary Stratotype Section and Point) candidates studied by NIGPAS", + "Palaeobotanical records: fossil plant morphology, taxonomy, and distribution data from Palaeozoic through Cenozoic periods", + "Micropaleontological datasets: conodont, foraminifer, and other microfossil biostratigraphic range data", + "Mass extinction event data: geochemical, isotopic, and fossil occurrence records for major Phanerozoic extinction boundaries" + ], + "zh": [ + "化石标本数据库:NIGPAS收藏的超过20万件化石标本的分类记录、产地数据、地质年代和影像资料", + "地层剖面数据:中国各地实测剖面的岩性描述、生物地层带划分和年代地层对比", + "地质年代表标定:NIGPAS研究的GSSP(全球界线层型剖面和点位)候选剖面高分辨率年龄数据", + "古植物学记录:古生代至新生代化石植物形态学、分类学和分布数据", + "微体古生物数据集:牙形石、有孔虫及其他微体化石生物地层延限数据", + "大灭绝事件数据:显生宙主要灭绝界线的地球化学、同位素和化石产出记录" + ] + }, + "has_api": false, + "file_path": "china/research/china-nigpas.json" + }, + { + "id": "china-nsfc", + "name": { + "en": "National Natural Science Foundation of China", + "zh": "国家自然科学基金委员会" + }, + "description": { + "en": "The National Natural Science Foundation of China (NSFC) is the primary government agency responsible for funding basic and applied research in natural sciences in China. Established in 1986, NSFC manages over 40 billion RMB in annual grants across disciplines including mathematics, physics, chemistry, life sciences, earth sciences, engineering, information sciences, and management. NSFC publishes comprehensive annual reports detailing funded projects, grant recipients, research outcomes, and strategic funding priorities. Its project database covers hundreds of thousands of funded research grants since inception, serving as a key indicator of China's scientific research investment, emerging disciplines, and talent development in academia. NSFC also collaborates with foreign counterparts to fund bilateral research programs, producing comparative data on international science cooperation.", + "zh": "国家自然科学基金委员会(自然科学基金委)是负责资助中国自然科学基础研究和应用基础研究的主要政府机构,成立于1986年。基金委每年管理超过400亿元人民币的资助经费,覆盖数学、物理、化学、生命科学、地球科学、工程科学、信息科学和管理科学等学科。基金委发布详尽的年度报告,包括资助项目、获资助研究人员、研究成果及战略资助重点。其项目数据库收录自成立以来数十万个资助研究项目,是衡量中国科研投入、新兴学科发展和学术人才培养的重要指标。基金委还与境外同行合作开展双边研究资助计划,产出国际科技合作比较数据。" + }, + "website": "https://www.nsfc.gov.cn/", + "data_url": "https://www.nsfc.gov.cn/p1/2961/2964/3655/cg.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "research", + "science", + "technology", + "education" + ], + "update_frequency": "annual", + "tags": [ + "国家自然科学基金", + "nsfc", + "national-natural-science-foundation-of-china", + "自然科学基金", + "natural-science-fund", + "科研立项", + "research-grants", + "基础研究", + "basic-research", + "应用基础研究", + "applied-basic-research", + "科学资助", + "science-funding", + "立项数据", + "project-database", + "科研人才", + "research-talent", + "学科前沿", + "disciplinary-frontiers", + "中国科研投入", + "china-r&d-investment", + "国际合作", + "international-cooperation", + "年度报告", + "annual-report", + "杰出青年基金", + "outstanding-young-scientist-fund", + "重大项目", + "major-projects" + ], + "data_content": { + "en": [ + "Annual funded projects database: searchable records of all NSFC-funded grants by year, discipline, institution, and principal investigator", + "Science funding statistics: total annual appropriations, grant counts, and funding rates by discipline and grant type (General Program, Key Program, Major Program, etc.)", + "Talent development data: statistics on funded young scientists, outstanding youth, and distinguished senior researchers", + "Research outcomes: publication counts, patents, and other outputs attributed to NSFC-funded projects", + "Institutional rankings: university and research institute performance in NSFC funding competition by discipline", + "International cooperation projects: bilateral grant programs with foreign funding agencies including NSF, DFG, ANR, and others", + "Annual reports: comprehensive yearly overview of NSFC strategy, priorities, funded science, and policy direction", + "Disciplinary planning: medium and long-term development plans for each major scientific discipline funded by NSFC" + ], + "zh": [ + "年度资助项目数据库:按年度、学科、承担单位和项目负责人可检索的全部资助项目记录", + "科学资助统计:按学科和项目类型(面上项目、重点项目、重大项目等)分列的年度总经费、资助数量和资助率", + "人才培养数据:青年科学家、优秀青年科学基金和杰出青年科学基金获资助者统计", + "研究成果:归属于基金委资助项目的论文发表数量、专利及其他产出", + "机构排名:各高校和科研院所按学科在基金委资助竞争中的表现", + "国际合作项目:与美国NSF、德国DFG、法国ANR等境外资助机构开展的双边资助计划", + "年度报告:基金委战略、重点、资助科学和政策方向的全面年度综述", + "学科规划:基金委各重大资助科学学科的中长期发展规划" + ] + }, + "has_api": false, + "file_path": "china/research/china-nsfc.json" + }, + { + "id": "china-nsii", + "name": { + "en": "National Specimen Information Infrastructure of China", + "zh": "中国国家标本资源平台" + }, + "description": { + "en": "The National Specimen Information Infrastructure of China (NSII) is a national scientific data platform established by the Ministry of Science and Technology and jointly built by major Chinese natural history museums, herbaria, and biological research institutions of the Chinese Academy of Sciences. NSII digitizes and integrates biological specimen data—including plants, animals, fungi, and microorganisms—collected across China's diverse ecosystems. The platform aggregates over 30 million specimen records from more than 100 partner institutions, representing one of the world's largest regional biodiversity specimen databases. NSII data is used in biodiversity conservation research, species distribution modeling, ecological baseline assessments, invasive species tracking, and environmental impact evaluations. It contributes data to global biodiversity informatics initiatives including the Global Biodiversity Information Facility (GBIF) and supports China's obligations under the Convention on Biological Diversity (CBD).", + "zh": "中国国家标本资源平台(NSII)是由科学技术部主导建立、中国科学院各大自然历史博物馆、植物标本馆和生物研究机构共同参与建设的国家科学数据平台。NSII对中国多样生态系统中采集的生物标本数据进行数字化整合,涵盖植物、动物、真菌和微生物。平台汇聚来自100余家合作机构的逾3000万条标本记录,是全球规模最大的区域性生物多样性标本数据库之一。NSII数据广泛用于生物多样性保护研究、物种分布建模、生态基线评估、入侵物种追踪和环境影响评价,并向全球生物多样性信息网络(GBIF)贡献数据,支持中国履行《生物多样性公约》(CBD)相关义务。" + }, + "website": "https://www.nsii.org.cn/", + "data_url": "https://www.nsii.org.cn/2017/home.php", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "ecology", + "biodiversity", + "natural-history", + "science" + ], + "update_frequency": "irregular", + "tags": [ + "生物标本", + "biological-specimen", + "生物多样性", + "biodiversity", + "植物标本", + "herbarium", + "动物标本", + "zoological-specimen", + "物种分布", + "species-distribution", + "入侵物种", + "invasive-species", + "生态学", + "ecology", + "自然历史", + "natural-history", + "中国科学院", + "chinese-academy-of-sciences", + "gbif", + "生物多样性公约", + "convention-on-biological-diversity", + "cbd", + "国家标本资源", + "natural-specimen-resources", + "博物馆数字化", + "museum-digitization" + ], + "data_content": { + "en": [ + "Plant specimen records: over 10 million herbarium specimens from Chinese botanical gardens and herbaria, with geographic coordinates, collection date, and taxonomic classification", + "Zoological specimen database: vertebrate and invertebrate specimen records from natural history museums across China including mammals, birds, reptiles, amphibians, fish, and insects", + "Fungal and microbial specimens: culture collection records and field samples for fungi, bacteria, and other microorganisms from Chinese ecosystems", + "Species occurrence data: geospatially referenced occurrence records enabling species distribution modeling and habitat assessment across China's major biomes", + "Invasive alien species records: distribution data and occurrence history for invasive plant and animal species threatening native Chinese biodiversity", + "Endangered and protected species data: specimen records and occurrence points for species listed under China's national wildlife protection law and IUCN Red List", + "Historical collection data: digitized specimen records from legacy collections spanning over 100 years, enabling long-term ecological change analysis", + "Image and morphological data: high-resolution specimen photographs and morphological measurements linked to individual specimen records", + "Regional and ecosystem surveys: specimen data from targeted biodiversity surveys in key ecological function zones and biodiversity hotspots" + ], + "zh": [ + "植物标本记录:来自中国各植物园和植物标本馆的逾1000万份腊叶标本,含地理坐标、采集日期和分类信息", + "动物标本数据库:全国自然历史博物馆脊椎动物和无脊椎动物标本记录,涵盖哺乳类、鸟类、爬行类、两栖类、鱼类和昆虫", + "真菌和微生物标本:中国生态系统真菌、细菌和其他微生物的菌种保藏记录和野外采集样本", + "物种分布数据:带地理参考的物种出现记录,支持中国主要生物群系的物种分布建模和栖息地评估", + "入侵外来物种记录:威胁中国本土生物多样性的入侵植物和动物物种分布数据和历史记录", + "濒危和受保护物种数据:列入中国野生动物保护法和IUCN红色名录物种的标本记录和出现点位", + "历史馆藏数据:逾百年历史馆藏的数字化标本记录,支持长时序生态变化分析", + "图像和形态数据:与个体标本记录关联的高分辨率标本照片和形态测量数据", + "区域和生态系统调查:重点生态功能区和生物多样性热点地区专项生物多样性调查标本数据" + ] + }, + "has_api": false, + "file_path": "china/research/china-nsii.json" + }, + { + "id": "china-nssdc", + "name": { + "en": "National Space Science Data Center", + "zh": "国家空间科学数据中心" + }, + "description": { + "en": "The National Space Science Data Center (NSSDC) is one of China's 20 national science data centers, managed by the National Space Science Center of the Chinese Academy of Sciences. NSSDC serves as the authoritative repository for space science mission data in China, providing long-term preservation, curation, and open sharing of data from China's space science satellite programs including DAMPE (Wukong), HXMT (Insight), EP (Einstein Probe), QUESS (Mozi), and other missions. The center also archives solar-terrestrial space environment monitoring data, geomagnetic field observations, and cosmic ray measurements. NSSDC offers standardized data access services with DOI-based data citation, supporting domestic and international researchers in space physics, astrophysics, planetary science, and space weather forecasting.", + "zh": "国家空间科学数据中心是中国20个国家科学数据中心之一,由中国科学院国家空间科学中心管理。NSSDC是中国空间科学任务数据的权威存储库,提供来自悟空号、慧眼号、爱因斯坦探针、墨子号等中国空间科学卫星项目数据的长期保存、整理和开放共享服务。中心还归档日地空间环境监测数据、地磁场观测和宇宙线测量数据。NSSDC提供基于DOI数据引用的标准化数据访问服务,支持国内外研究人员在空间物理、天体物理、行星科学和空间天气预报等领域的研究。" + }, + "website": "https://www.nssdc.ac.cn", + "data_url": "https://www.nssdc.ac.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "science", + "space" + ], + "update_frequency": "irregular", + "tags": [ + "空间科学", + "space-science", + "nssdc", + "国家科学数据中心", + "national-science-data-center", + "卫星数据", + "satellite-data", + "悟空号", + "dampe", + "慧眼号", + "hxmt", + "爱因斯坦探针", + "einstein-probe", + "墨子号", + "quess", + "空间天气", + "space-weather", + "宇宙线", + "cosmic-ray", + "地磁场", + "geomagnetic-field", + "天体物理", + "astrophysics", + "中国科学院", + "cas" + ], + "data_content": { + "en": [ + "Space science satellite mission data: calibrated scientific data products from DAMPE, HXMT, EP, QUESS, and other Chinese space science missions", + "Solar-terrestrial environment monitoring: solar wind parameters, interplanetary magnetic field measurements, and magnetospheric observation data", + "Geomagnetic field observations: ground-based geomagnetic station network data including geomagnetic indices and field component measurements", + "Cosmic ray measurement data: ground-based and space-based cosmic ray flux, energy spectrum, and composition observations", + "Space weather forecasting data: real-time and archival space environment condition data for solar activity and geomagnetic storm prediction", + "Planetary science data: lunar and Mars exploration mission data products from Chang'e and Tianwen programs" + ], + "zh": [ + "空间科学卫星任务数据:悟空号、慧眼号、爱因斯坦探针、墨子号等中国空间科学任务的定标科学数据产品", + "日地环境监测:太阳风参数、行星际磁场测量及磁层观测数据", + "地磁场观测:地面地磁台站网络数据,包括地磁指数和磁场分量测量", + "宇宙线测量数据:地面和空间宇宙线通量、能谱和成分观测数据", + "空间天气预报数据:用于太阳活动和地磁暴预报的实时与存档空间环境状态数据", + "行星科学数据:嫦娥和天问系列月球与火星探测任务数据产品" + ] + }, + "has_api": false, + "file_path": "china/research/china-nssdc.json" + }, + { + "id": "china-nstl", + "name": { + "en": "National Science and Technology Library of China", + "zh": "国家科技图书文献中心" + }, + "description": { + "en": "The National Science and Technology Library (NSTL) is China's national-level science and technology document resource sharing service institution, established by the Ministry of Science and Technology. NSTL provides authoritative access to global scientific and technological literature including journal articles, conference papers, dissertations, standards, and patents. It maintains one of China's largest collections of foreign-language scientific literature, with over 24 million records. NSTL serves as a critical data source for China's science and technology information system, supporting research institutions, universities, and government agencies with comprehensive bibliographic and full-text document services.", + "zh": "国家科技图书文献中心(NSTL)是科学技术部建立的国家级科技文献资源共享服务机构,提供涵盖期刊论文、会议论文、学位论文、标准及专利的全球科技文献权威检索服务。NSTL是中国规模最大的外文科技文献馆藏之一,收录超过2400万条记录,是中国科技信息体系的核心数据来源,为科研机构、高校及政府部门提供全面的文献检索和全文服务。" + }, + "website": "https://www.nstl.gov.cn/", + "data_url": "https://www.nstl.gov.cn/search.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "science", + "technology", + "research", + "education" + ], + "update_frequency": "daily", + "tags": [ + "科技文献", + "science-and-technology-literature", + "期刊论文", + "journal-articles", + "学位论文", + "dissertations", + "专利文献", + "patent-literature", + "技术标准", + "technical-standards", + "科技信息", + "s&t-information", + "文献检索", + "document-retrieval", + "外文文献", + "foreign-language-literature", + "科研数据", + "research-data", + "科技部", + "ministry-of-science-and-technology" + ], + "data_content": { + "en": [ + "Journal articles: full-text and bibliographic access to international and Chinese scientific journals", + "Conference papers: proceedings from major scientific and engineering conferences worldwide", + "Dissertations: Chinese and selected international doctoral and master's theses", + "Technical standards: national and international standards (GB, ISO, ANSI, etc.)", + "Patent documents: Chinese and international patent databases and full texts", + "Science and technology statistics: R&D expenditure, publication counts, and citation metrics for China", + "Research reports: government-commissioned S&T research and evaluation reports", + "Foreign-language literature collection: over 24 million records from global publications", + "Preprints and working papers: emerging research documents across scientific disciplines", + "Annual S&T Document Resource Report: summary of national scientific literature acquisition" + ], + "zh": [ + "期刊论文:国内外科技期刊全文及文献检索服务", + "会议论文:全球主要科技工程会议论文集", + "学位论文:中国及部分国际博士、硕士学位论文", + "技术标准:国家及国际标准(GB、ISO、ANSI等)", + "专利文献:中国及国际专利数据库及全文", + "科技统计:中国研发经费、论文发表数量及引用指标", + "科研报告:政府委托科技研究及评估报告", + "外文馆藏:来自全球出版物的2400余万条文献记录", + "预印本及工作文件:各科学领域最新研究文档", + "科技文献资源年报:国家科技文献资源采集年度综述" + ] + }, + "has_api": false, + "file_path": "china/research/china-nstl.json" + }, + { + "id": "china-pku-opendata", + "name": { + "en": "Peking University Open Research Data Platform", + "zh": "北京大学开放研究数据平台" + }, + "description": { + "en": "The Peking University Open Research Data Platform (PKU Open Data) is China's first comprehensive institutional open research data repository, built on the Harvard Dataverse framework and launched by Peking University Library. The platform enables PKU researchers and affiliated institutions to deposit, share, and cite research datasets across all disciplines, including social sciences, economics, public health, environmental studies, humanities, and natural sciences. Datasets are assigned DOI identifiers and linked to published papers, promoting reproducibility and open science. PKU Open Data hosts unique surveys, longitudinal studies, and experimental datasets from one of China's leading universities, making primary research data accessible to the global scholarly community.", + "zh": "北京大学开放研究数据平台是中国第一个综合性机构开放研究数据库,由北京大学图书馆依托哈佛大学Dataverse框架建立。平台支持北大研究人员及附属机构在社会科学、经济学、公共卫生、环境研究、人文学科和自然科学等各领域的数据集存档、共享和引用。数据集被分配DOI标识符并与发表论文关联,推动可重复研究和开放科学。平台托管了来自中国顶尖高校的独特调查、纵向研究和实验数据集,向全球学术界开放原始研究数据。" + }, + "website": "https://opendata.pku.edu.cn", + "data_url": "https://opendata.pku.edu.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "social", + "economics", + "health", + "environment", + "science" + ], + "update_frequency": "irregular", + "tags": [ + "北京大学", + "peking-university", + "pku", + "开放数据", + "open-data", + "研究数据", + "research-data", + "数据仓库", + "data-repository", + "dataverse", + "社会科学数据", + "social-science-data", + "调查数据", + "survey-data", + "纵向研究", + "longitudinal-study", + "doi", + "开放科学", + "open-science", + "可重复研究", + "reproducibility", + "经济数据", + "economic-data", + "公共卫生", + "public-health", + "环境数据", + "environmental-data", + "中国学术", + "chinese-academia", + "北大图书馆" + ], + "data_content": { + "en": [ + "Social Science Datasets: Surveys, experiments, and longitudinal studies on Chinese society, demographics, labor markets, and social behavior", + "Economic Research Data: Firm-level datasets, economic experiments, trade data, and financial market studies from PKU economics research", + "Public Health Data: Epidemiological surveys, clinical study datasets, and population health monitoring data", + "Environmental Science Data: Ecological observations, pollution monitoring, and environmental impact assessment datasets", + "Humanities and Cultural Data: Historical records, digital humanities datasets, and cultural heritage documentation", + "Natural Sciences Data: Experimental datasets from physics, chemistry, biology, and materials science research", + "Multidisciplinary Survey Data: Cross-disciplinary surveys on topics such as education, poverty, inequality, and governance in China" + ], + "zh": [ + "社会科学数据集:关于中国社会、人口、劳动力市场和社会行为的调查、实验和纵向研究", + "经济研究数据:来自北大经济学研究的企业级数据集、经济实验、贸易数据和金融市场研究", + "公共卫生数据:流行病学调查、临床研究数据集和人口健康监测数据", + "环境科学数据:生态观测、污染监测和环境影响评估数据集", + "人文与文化数据:历史档案、数字人文数据集和文化遗产记录", + "自然科学数据:物理、化学、生物和材料科学研究实验数据集", + "多学科调查数据:涵盖中国教育、贫困、不平等和治理等主题的跨学科调查" + ] + }, + "has_api": false, + "file_path": "china/research/china-pku-opendata.json" + }, + { + "id": "china-plant-csdb", + "name": { + "en": "China Plant Thematic Database (CAS Science Database)", + "zh": "中国植物主题数据库" + }, + "description": { + "en": "The China Plant Thematic Database is part of the Chinese Academy of Sciences Science Database (CSDB) system, maintained by CAS and accessible through plant.csdb.cn. It is one of China's most comprehensive authoritative databases for plant taxonomy, distribution, and botanical information. The database integrates data from major herbaria, botanical gardens, and field surveys across China, covering vascular plants, bryophytes, algae, fungi, and lichens found in China. It provides species occurrence records, taxonomic classification, morphological descriptions, distribution maps, ecological habitat information, and nomenclature references. The China Plant Thematic Database is a key resource for biodiversity conservation planning, ecological impact assessments, and floristic research on China's exceptionally rich plant diversity — China harbors approximately 35,000 higher plant species, the third highest in the world.", + "zh": "中国植物主题数据库是中国科学院科学数据库(CSDB)体系的重要组成部分,由中科院维护,通过plant.csdb.cn访问,是中国最全面的权威植物分类学、分布和植物学信息综合数据库之一。该数据库整合了中国各大标本馆、植物园和野外调查的数据,收录中国产维管束植物、苔藓植物、藻类、真菌和地衣。数据库提供物种分布记录、分类学归属、形态描述、分布图、生态生境信息和命名参考资料,是生物多样性保护规划、生态影响评估和中国丰富植物多样性区系研究的关键资源。中国约有高等植物35,000种,位居全球第三。" + }, + "website": "https://www.plant.csdb.cn", + "data_url": "https://www.plant.csdb.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "biodiversity", + "environment", + "science", + "ecology" + ], + "update_frequency": "irregular", + "tags": [ + "中国植物主题数据库", + "china-plant-database", + "植物分类学", + "plant-taxonomy", + "植物多样性", + "plant-diversity", + "中国科学院", + "chinese-academy-of-sciences", + "csdb", + "科学数据库", + "science-database", + "维管束植物", + "vascular-plants", + "苔藓植物", + "bryophytes", + "物种分布", + "species-distribution", + "植物标本", + "herbarium-specimens", + "植物区系", + "flora", + "生物多样性", + "biodiversity", + "植物园", + "botanical-garden", + "濒危植物", + "endangered-plants", + "植物命名", + "plant-nomenclature", + "生态调查", + "ecological-survey" + ], + "data_content": { + "en": [ + "Plant species records: taxonomic information for vascular plants, mosses, algae, fungi, and lichens native to or naturalized in China, with scientific names, synonyms, and authority citations", + "Species distribution data: georeferenced occurrence records and distribution maps showing plant species ranges across China's provinces and ecological zones", + "Morphological descriptions: standardized botanical descriptions of plant families, genera, and species including diagnostic characters, growth forms, and phenological data", + "Herbarium specimen data: digitized specimen records from major Chinese herbaria including the PE Herbarium of the Institute of Botany CAS, with collection localities, dates, and collectors", + "Ecological habitat information: vegetation community associations, altitudinal ranges, soil preferences, and biome affiliations for plant species", + "Conservation status data: information on nationally protected plant species, IUCN Red List assessments, and endemic species of China", + "Floristic diversity statistics: species richness data by region, family, and ecosystem type across China's 31 provinces and major ecological regions", + "Economic and medicinal plant data: records of plants with documented economic, medicinal, or agricultural significance in China" + ], + "zh": [ + "植物物种记录:中国原产或归化的维管束植物、苔藓、藻类、真菌和地衣分类信息,含学名、异名和命名引证", + "物种分布数据:带地理坐标的物种分布记录和分布图,呈现植物物种在各省和生态区的分布范围", + "形态描述:植物科、属、种的标准化植物学描述,包括鉴别特征、生长型和物候数据", + "标本数据:中国各大标本馆(含中科院植物研究所PE标本馆)的数字化标本记录,含采集地、采集日期和采集人", + "生态生境信息:植物物种的植被群落关联、海拔范围、土壤偏好和生物群系归属", + "保护状况数据:国家保护植物物种信息、IUCN红色名录评估和中国特有植物", + "植物区系多样性统计:中国31个省及主要生态区的物种丰富度分科、按生态系统类型统计数据", + "经济与药用植物数据:具有记录在案经济、药用或农业价值的中国植物记录" + ] + }, + "has_api": false, + "file_path": "china/research/china-plant-csdb.json" + }, + { + "id": "china-pmo", + "name": { + "en": "Purple Mountain Observatory, Chinese Academy of Sciences", + "zh": "中国科学院紫金山天文台" + }, + "description": { + "en": "The Purple Mountain Observatory (PMO), established in 1934 and located in Nanjing, is one of China's oldest and most prestigious astronomical research institutions under the Chinese Academy of Sciences. PMO is renowned for its pioneering work in asteroid discovery and tracking, solar physics, and space exploration. The observatory operates multiple observation stations across China and manages key research programs in near-Earth object monitoring, millimeter-wave astronomy, and dark matter detection. PMO has discovered numerous asteroids and comets, and maintains authoritative datasets on minor planet orbits. As a leading institution in Chinese astronomy, PMO publishes research data including asteroid ephemerides, solar activity observations, and astronomical catalogs that serve both the scientific community and national space situational awareness programs.", + "zh": "紫金山天文台成立于1934年,位于南京,是中国科学院下属最悠久、最具声望的天文研究机构之一。紫台在小行星发现与跟踪、太阳物理学和空间探测领域享有盛誉。天文台在全国运营多个观测站,管理近地天体监测、毫米波天文学和暗物质探测等关键研究项目。紫台已发现众多小行星和彗星,维护着权威的小行星轨道数据集。作为中国天文学的领军机构,紫台发布包括小行星星历表、太阳活动观测和天文星表在内的研究数据,服务于科学界和国家空间态势感知项目。" + }, + "website": "http://www.pmo.ac.cn", + "data_url": "http://www.pmo.ac.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "science", + "astronomy" + ], + "update_frequency": "irregular", + "tags": [ + "紫金山天文台", + "purple-mountain-observatory", + "pmo", + "天文学", + "astronomy", + "小行星", + "asteroid", + "近地天体", + "near-earth-object", + "太阳物理", + "solar-physics", + "暗物质", + "dark-matter", + "毫米波", + "millimeter-wave", + "星表", + "astronomical-catalog", + "中国科学院", + "cas", + "南京", + "nanjing", + "天文观测", + "astronomical-observation" + ], + "data_content": { + "en": [ + "Asteroid and minor planet data: orbital elements, ephemerides, and discovery records for asteroids discovered and tracked by PMO", + "Near-Earth object monitoring: tracking data and orbit calculations for potentially hazardous asteroids", + "Solar observation data: solar activity monitoring records including sunspot counts, solar flare events, and chromospheric observations", + "Millimeter-wave astronomical observations: spectral line survey data from the PMO 13.7m radio telescope at Delingha station", + "Dark matter detection experiment data: results from the DAMPE (Dark Matter Particle Explorer) satellite mission", + "Comet discovery and observation records: astrometric and photometric data for comets discovered by PMO astronomers" + ], + "zh": [ + "小行星和小天体数据:紫台发现和跟踪的小行星轨道根数、星历表及发现记录", + "近地天体监测:潜在危险小行星的跟踪数据和轨道计算", + "太阳观测数据:太阳活动监测记录,包括太阳黑子计数、太阳耀斑事件和色球观测", + "毫米波天文观测:德令哈观测站13.7米射电望远镜谱线巡天数据", + "暗物质探测实验数据:悟空号(暗物质粒子探测卫星)任务成果数据", + "彗星发现与观测记录:紫台天文学家发现的彗星天体测量和测光数据" + ] + }, + "has_api": false, + "file_path": "china/research/china-pmo.json" + }, + { + "id": "china-polar-service", + "name": { + "en": "China Polar Operations Service Platform (CHINARE Data)", + "zh": "中国极地业务服务平台" + }, + "description": { + "en": "The China Polar Operations Service Platform (chinare.org.cn) is the official operational data and service platform for China's National Arctic and Antarctic Expeditions (CHINAREs), managed by the Chinese Arctic and Antarctic Administration (CAA) under the Ministry of Natural Resources. The platform provides public access to observational data, expedition records, and scientific datasets collected during China's polar expeditions across Antarctica and the Arctic. China has maintained a continuous presence in Antarctica since 1985, with research stations including Zhongshan Station, Great Wall Station, Kunlun Station, and Taishan Station, plus Yellow River Station in the Arctic (Svalbard). The platform hosts multi-disciplinary polar science data including atmospheric observations, ice and snow data, marine environment monitoring, geological surveys, ecology datasets, and expedition logistics records spanning over 40 years of Chinese polar exploration. This data is critical for global climate change research, sea-level rise assessment, and understanding Earth's cryosphere.", + "zh": "中国极地业务服务平台(chinare.org.cn)是中国南北极科学考察(CHINARE)的官方业务数据与服务平台,由自然资源部中国极地研究中心(国家海洋局极地考察办公室)管理。平台向公众提供中国南北极历次科考的观测数据、科考记录和科学数据集。自1985年起,中国在南极建立了中山站、长城站、昆仑站和泰山站,并在北极斯瓦尔巴群岛建立了黄河站,保持长期科学考察。平台汇聚了跨越40余年中国极地探索的多学科极地科学数据,涵盖大气观测、冰雪数据、海洋环境监测、地质调查、生态数据集和科考后勤记录。这些数据对全球气候变化研究、海平面上升评估和地球冰冻圈研究至关重要。" + }, + "website": "https://www.chinare.org.cn/", + "data_url": "https://www.chinare.org.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "global", + "domains": [ + "environment", + "climate", + "ocean", + "science" + ], + "update_frequency": "irregular", + "tags": [ + "中国极地业务服务平台", + "chinare", + "中国南极科学考察", + "china-antarctic-expedition", + "中国北极科学考察", + "china-arctic-expedition", + "南极", + "antarctica", + "北极", + "arctic", + "极地", + "polar", + "中山站", + "zhongshan-station", + "长城站", + "great-wall-station", + "昆仑站", + "kunlun-station", + "黄河站", + "yellow-river-station", + "冰川", + "glacier", + "冰盖", + "ice-sheet", + "海冰", + "sea-ice", + "气候变化", + "climate-change", + "冰冻圈", + "cryosphere", + "海平面", + "sea-level", + "极地大气", + "polar-atmosphere", + "自然资源部", + "ministry-of-natural-resources", + "极地科学数据", + "polar-science-data" + ], + "data_content": { + "en": [ + "Atmospheric observations: meteorological data from Antarctic and Arctic stations including temperature, pressure, humidity, wind, solar radiation, and ozone measurements", + "Ice and snow data: snow accumulation, ice thickness, glacier dynamics, and cryosphere change datasets from ground surveys and remote sensing", + "Marine environment monitoring: oceanographic data collected during expeditions including sea ice extent, salinity, current measurements, and marine biological surveys", + "Geological surveys: geological mapping, bedrock topography, and geophysical data from Antarctic ice sheet surveys", + "Ecology and biology datasets: records of Antarctic marine ecosystems, krill populations, penguin colonies, and microbial ecology studies", + "Expedition records: logistics and scientific records from over 40 Chinese Antarctic (CHINARE) and Arctic expeditions", + "Remote sensing imagery: satellite-derived data products for polar ice, snow cover, and surface change monitoring", + "Permafrost and geothermal data: subsurface temperature and permafrost thickness measurements from polar stations" + ], + "zh": [ + "大气观测:南极和北极站点的气象数据,包括气温、气压、湿度、风速、太阳辐射和臭氧测量", + "冰雪数据:地面调查和遥感获取的积雪累积量、冰层厚度、冰川动力学和冰冻圈变化数据集", + "海洋环境监测:科考期间采集的海洋学数据,包括海冰范围、盐度、洋流测量和海洋生物调查", + "地质调查:南极冰盖地质制图、基岩地形和地球物理数据", + "生态与生物数据集:南极海洋生态系统、磷虾种群、企鹅种群和微生物生态学研究记录", + "科考记录:40余次中国南极(CHINARE)和北极科学考察的后勤和科研记录", + "遥感影像:用于极地冰雪、积雪覆盖和地表变化监测的卫星衍生数据产品", + "永久冻土和地热数据:极地站点的地下温度和多年冻土厚度测量数据" + ] + }, + "has_api": false, + "file_path": "china/research/china-polar-service.json" + }, + { + "id": "china-pric", + "name": { + "en": "Polar Research Institute of China", + "zh": "中国极地研究中心" + }, + "description": { + "en": "The Polar Research Institute of China (PRIC), also known as the Chinese Arctic and Antarctic Administration Research Institute, is China's principal organization for polar research under the Ministry of Natural Resources. PRIC operates and maintains China's polar research stations including Zhongshan Station and Great Wall Station in Antarctica, and Yellow River Station in the Arctic (Svalbard, Norway). PRIC manages the National Cryosphere Desert Data Center, which provides multi-decadal observational datasets on ice sheet dynamics, sea ice extent, permafrost, glacier mass balance, polar meteorology, and atmospheric chemistry in both polar regions. PRIC also coordinates China's National Arctic and Antarctic Expeditions (CHINAREs), archiving expedition data, biological samples, ice core records, and oceanographic observations spanning over 40 years of polar exploration. The institute publishes annual Chinese Antarctic Expedition Reports and Arctic Research Progress Reports that are primary references for global polar science.", + "zh": "中国极地研究中心(PRIC,又称中国极地研究所)是自然资源部下属的极地研究主体机构,负责建设和维护中国在南极的中山站、长城站以及北极黄河站(位于挪威斯瓦尔巴群岛)。中心管理国家冰冻圈沙漠数据中心,提供南北极冰盖动力学、海冰范围、多年冻土、冰川物质平衡、极地气象及大气化学的多年代际观测数据集。PRIC还统筹协调中国南北极科学考察(CHINAREs),归档跨越40余年极地探索的科考数据、生物样本、冰芯记录及海洋观测资料。中心发布年度中国南极考察报告和北极研究进展报告,是全球极地科学研究的重要参考来源。" + }, + "website": "https://www.pric.org.cn/", + "data_url": "https://www.pric.org.cn/", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "global", + "domains": [ + "environment", + "climate", + "ocean", + "science" + ], + "update_frequency": "annual", + "tags": [ + "中国极地研究中心", + "pric", + "polar-research-institute-of-china", + "南极", + "antarctica", + "北极", + "arctic", + "冰盖", + "ice-sheet", + "海冰", + "sea-ice", + "多年冻土", + "permafrost", + "冰川", + "glacier", + "极地气象", + "polar-meteorology", + "中山站", + "zhongshan-station", + "长城站", + "great-wall-station", + "黄河站", + "yellow-river-station", + "中国南极科学考察", + "chinare", + "冰芯", + "ice-core", + "极地海洋", + "polar-ocean", + "气候变化", + "climate-change", + "冰冻圈", + "cryosphere", + "自然资源部", + "ministry-of-natural-resources" + ], + "data_content": { + "en": [ + "Sea ice extent data: long-term records of Arctic and Antarctic sea ice area, concentration, and thickness derived from satellite remote sensing and in-situ observations", + "Ice sheet dynamics: mass balance measurements, ice velocity, and surface elevation change data for Antarctic ice sheets from Chinese expedition surveys", + "Polar meteorological observations: surface and upper-atmosphere temperature, pressure, wind, humidity, and radiation data from China's polar stations dating back to 1985", + "Glacier and snow datasets: glacier mass balance, snow depth, and snowpack water equivalent measurements from polar and high-altitude monitoring programs", + "Permafrost data: active layer thickness, permafrost temperature profiles, and thaw settlement measurements from Arctic and sub-Antarctic sites", + "Ice core records: chemical, isotopic, and physical properties of ice cores from Antarctic inland drilling projects, providing paleoclimate proxies spanning centuries", + "Oceanographic observations: water temperature, salinity, current, and biogeochemical profiles from polar ocean expedition cruises", + "Atmospheric chemistry: trace gas (CO2, CH4, N2O) and aerosol data from polar stations, contributing to global baseline monitoring", + "Annual Antarctic expedition reports: comprehensive documentation of each Chinese National Antarctic Research Expedition including scientific findings, logistics, and environmental data", + "Polar biodiversity: biological sample data from Antarctic marine ecosystems, penguins, krill populations, and microbial communities" + ], + "zh": [ + "海冰范围数据:基于卫星遥感和现场观测的南北极海冰面积、密集度和厚度长时间序列记录", + "冰盖动力学:中国科考队对南极冰盖物质平衡测量、冰流速度及表面高程变化数据", + "极地气象观测:中国极地考察站1985年以来的地面和高空温度、气压、风速、湿度及辐射数据", + "冰川和积雪数据集:极地及高海拔监测项目的冰川物质平衡、雪深和雪水当量测量数据", + "多年冻土数据:北极和亚南极地区活动层厚度、冻土温度剖面及融化沉降测量", + "冰芯记录:南极内陆钻探项目冰芯的化学、同位素和物理特性数据,提供跨越数百年的古气候代用指标", + "海洋观测:极地科考航次的水温、盐度、洋流和生物地球化学剖面数据", + "大气化学:极地考察站温室气体(CO2、CH4、N2O)和气溶胶数据,为全球基线监测提供贡献", + "年度南极科考报告:中国历次南极科学考察的科学发现、后勤保障和环境数据综合记录", + "极地生物多样性:南极海洋生态系统、企鹅、磷虾种群及微生物群落生物样本数据" + ] + }, + "has_api": false, + "file_path": "china/research/china-pric.json" + }, + { + "id": "china-resdc", + "name": { + "en": "Resource and Environment Science and Data Center, Chinese Academy of Sciences", + "zh": "中国科学院资源环境科学与数据中心" + }, + "description": { + "en": "The Resource and Environment Science and Data Center (RESDC), operated by the Institute of Geographic Sciences and Natural Resources Research, Chinese Academy of Sciences, provides authoritative geospatial and environmental datasets for China and East Asia. It covers land use, natural resources, environmental quality, and socioeconomic spatial data.", + "zh": "中国科学院资源环境科学与数据中心由中国科学院地理科学与资源研究所运维,提供中国及东亚地区的权威地理空间和环境数据集,涵盖土地利用、自然资源、环境质量和社会经济空间数据。" + }, + "website": "https://www.resdc.cn", + "data_url": "https://www.resdc.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "earth-science", + "environment", + "natural-resources", + "geospatial" + ], + "update_frequency": "irregular", + "tags": [ + "china", + "land-use", + "remote-sensing", + "natural-resources", + "environment", + "geospatial", + "资源环境", + "土地利用", + "遥感", + "地理空间" + ], + "data_content": { + "en": [ + "Land Use/Cover - Multi-temporal land use classification data for China at 1km and 30m resolution from 1980s to present", + "Natural Resources - Datasets on water resources, mineral resources, soil types, and vegetation distribution", + "Environmental Quality - Air quality, water quality, and ecological environment assessment data", + "Socioeconomic Spatial Data - GDP spatial distribution, population density grids, and urbanization data", + "Climate and Meteorology - Spatial interpolation datasets of temperature, precipitation, and other climate variables" + ], + "zh": [ + "土地利用/覆盖 - 1980年代至今中国1km和30m分辨率的多时相土地利用分类数据", + "自然资源 - 水资源、矿产资源、土壤类型和植被分布数据", + "环境质量 - 大气质量、水质和生态环境评估数据", + "社会经济空间数据 - GDP空间分布、人口密度格网和城镇化数据", + "气候气象 - 温度、降水等气候要素的空间插值数据集" + ] + }, + "has_api": false, + "file_path": "china/research/china-resdc.json" + }, + { + "id": "china-sass", + "name": { + "en": "Shanghai Academy of Social Sciences", + "zh": "上海社会科学院" + }, + "description": { + "en": "The Shanghai Academy of Social Sciences (SASS) is one of China's premier comprehensive research institutions in philosophy and social sciences, and among the oldest and most influential provincial-level academies. Founded in 1958, SASS operates over 15 research institutes covering economics, world economy, finance and development, urban and demographic studies, sociology, law, history, international relations, literature, philosophy, and religious studies. As a leading think tank focused on China's international gateway city, SASS produces the influential Shanghai Urban Development Report, Shanghai International Financial Center Index, Yangtze River Delta Integration reports, and annual World Economy Yellow Book. SASS research directly informs municipal and national policymaking on megacity governance, economic opening-up, and Yangtze River Delta regional integration.", + "zh": "上海社会科学院(SASS)是中国首屈一指的哲学社会科学综合性研究机构之一,是历史最悠久、影响力最大的省级社会科学院之一,成立于1958年。上海社科院设有15个以上研究所,覆盖经济学、世界经济、金融与发展、城市与人口研究、社会学、法学、历史学、国际关系、文学、哲学和宗教研究等领域。作为聚焦中国国际门户城市的领先智库,上海社科院发布具有影响力的《上海城市发展报告》《上海国际金融中心指数》《长三角一体化报告》和年度《世界经济黄皮书》。研究成果直接服务于上海市和国家在超大城市治理、经济开放和长三角区域一体化方面的决策。" + }, + "website": "https://www.sass.org.cn", + "data_url": "https://www.sass.org.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "social", + "economics", + "urban-studies", + "international-relations", + "finance", + "regional-development" + ], + "update_frequency": "irregular", + "tags": [ + "上海社会科学院", + "sass", + "shanghai-academy-of-social-sciences", + "社科院", + "academy-of-social-sciences", + "智库", + "think-tank", + "世界经济", + "world-economy", + "城市发展", + "urban-development", + "长三角", + "yangtze-river-delta", + "国际金融中心", + "international-financial-center", + "蓝皮书", + "bluebook", + "黄皮书", + "yellowbook", + "上海研究", + "shanghai-studies" + ], + "data_content": { + "en": [ + "Shanghai Urban Development Report: annual bluebook analyzing Shanghai's economic growth, demographic change, social governance, and global city indicators", + "World Economy Yellow Book: annual forecasts and analyses of global economic trends, trade dynamics, and major economies' macroeconomic performance", + "International Financial Center Index: proprietary ranking and evaluation of Shanghai and other global financial centers with financial market data", + "Yangtze River Delta integration reports: regional economic, transportation, innovation, and environmental integration assessments for the YRD megaregion", + "Urban and demographic studies: research on megacity population aging, migration, urbanization patterns, and housing affordability", + "Economic research papers: working papers and monographs on macroeconomic policy, industrial upgrading, and opening-up strategy", + "International relations analyses: studies on China-US relations, BRI research, and comparative regional studies" + ], + "zh": [ + "《上海城市发展报告》:年度蓝皮书,分析上海经济增长、人口变化、社会治理和全球城市指标", + "《世界经济黄皮书》:全球经济趋势、贸易动态和主要经济体宏观经济表现的年度预测和分析", + "国际金融中心指数:上海及其他全球金融中心的专属排名和评估,含金融市场数据", + "长三角一体化报告:长三角都市圈区域经济、交通、创新和环境一体化评估", + "城市与人口研究:超大城市人口老龄化、迁移、城镇化模式和住房可负担性研究", + "经济研究论文:宏观经济政策、产业升级和开放战略的工作论文与专著", + "国际关系分析:中美关系、一带一路研究和比较区域研究" + ] + }, + "has_api": false, + "file_path": "china/research/china-sass.json" + }, + { + "id": "china-scidb", + "name": { + "en": "Science Data Bank (ScienceDB)", + "zh": "中国科学数据银行" + }, + "description": { + "en": "Science Data Bank (ScienceDB) is China's premier general-purpose open research data repository, operated by the Computer Network Information Center of the Chinese Academy of Sciences (CAS). Established to support the FAIR data principles (Findable, Accessible, Interoperable, Reusable), ScienceDB accepts research data submissions from researchers across all disciplines including earth science, life science, physics, chemistry, social science, and humanities. The platform assigns persistent identifiers (DOI and CSTR) to datasets, supports data peer review, and provides long-term preservation. As of 2024, ScienceDB hosts hundreds of thousands of datasets from thousands of research organizations worldwide and is recognized by major international publishers including Nature, Science, and PLOS as a trusted data repository. ScienceDB serves as the backbone of China's national research data infrastructure and is recommended by funders such as the National Natural Science Foundation of China (NSFC) and the Chinese Academy of Sciences.", + "zh": "中国科学数据银行(ScienceDB)是由中国科学院计算机网络信息中心运营的国家级综合性开放科学数据存储库,基于FAIR数据原则(可发现、可访问、可互操作、可重用)建设。该平台接受来自所有学科研究者的数据提交,涵盖地球科学、生命科学、物理、化学、社会科学和人文等领域。ScienceDB为数据集分配持久性标识符(DOI和CSTR),支持数据同行评议,并提供长期保存。截至2024年,平台已存储数十万数据集,涵盖全球数千家研究机构,被Nature、Science、PLOS等国际主流出版商列为可信数据仓储。ScienceDB是中国国家科学数据基础设施的重要组成部分,得到国家自然科学基金委员会(NSFC)和中国科学院的推荐支持。" + }, + "website": "https://www.scidb.cn/", + "data_url": "https://www.scidb.cn/list?type=all", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "global", + "domains": [ + "science", + "research", + "earth-science", + "life-science", + "environment", + "health", + "social-sciences" + ], + "update_frequency": "daily", + "tags": [ + "中国科学数据银行", + "sciencedb", + "科学数据", + "scientific-data", + "开放数据", + "open-data", + "数据仓储", + "data-repository", + "FAIR原则", + "fair-principles", + "中国科学院", + "chinese-academy-of-sciences", + "cas", + "计算机网络信息中心", + "cnic", + "doi", + "cstr", + "数据集", + "datasets", + "数据发布", + "data-publication", + "科研数据", + "research-data", + "国家自然科学基金", + "nsfc", + "数据共享", + "data-sharing", + "持久标识符", + "persistent-identifier" + ], + "data_content": { + "en": [ + "Earth and environmental science datasets: climate observations, remote sensing data, geological surveys, biodiversity records", + "Life science datasets: genomics data, proteomics, clinical trial data, microbiology sequences, ecological observations", + "Physics and chemistry datasets: experimental physics data, materials science, chemical analysis, spectroscopy", + "Social science and humanities datasets: survey data, economic indicators, demographic data, historical records", + "Engineering and technology datasets: computer science benchmarks, machine learning training data, engineering measurements", + "Data citation services: DOI and CSTR persistent identifier assignment for research datasets", + "Dataset search and metadata: searchable catalog with rich metadata, subject classification, and temporal-spatial indexing", + "Data peer review: quality-assessed datasets with community review processes", + "Long-term preservation: versioned archival storage with disaster recovery backup", + "API access: programmatic data retrieval for large-scale data analytics" + ], + "zh": [ + "地球与环境科学数据集:气候观测、遥感数据、地质调查、生物多样性记录", + "生命科学数据集:基因组学数据、蛋白质组学、临床试验数据、微生物序列、生态观测", + "物理与化学数据集:实验物理数据、材料科学、化学分析、光谱学", + "社会科学与人文数据集:调查数据、经济指标、人口统计数据、历史档案", + "工程与技术数据集:计算机科学基准、机器学习训练数据、工程测量", + "数据引用服务:为科研数据集分配DOI和CSTR持久性标识符", + "数据集检索与元数据:具有丰富元数据、学科分类和时空索引的可检索目录", + "数据同行评议:经社区评审的高质量数据集", + "长期保存:带灾难恢复备份的版本化归档存储", + "API接入:支持大规模数据分析的程序化数据调用" + ] + }, + "has_api": false, + "file_path": "china/research/china-scidb.json" + }, + { + "id": "china-tpdc", + "name": { + "en": "National Tibetan Plateau Data Center", + "zh": "国家青藏高原科学数据中心" + }, + "description": { + "en": "The National Tibetan Plateau Data Center (TPDC), hosted by the Institute of Tibetan Plateau Research, Chinese Academy of Sciences, is a national-level scientific data center focused on the Tibetan Plateau and surrounding regions. It provides open access to datasets on glaciology, hydrology, ecology, atmospheric science, and geoscience for the Third Pole region.", + "zh": "国家青藏高原科学数据中心由中国科学院青藏高原研究所运维,是面向青藏高原及周边区域的国家级科学数据中心。提供冰川学、水文学、生态学、大气科学和地球科学等领域的开放数据。" + }, + "website": "https://data.tpdc.ac.cn", + "data_url": "https://data.tpdc.ac.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "regional", + "domains": [ + "earth-science", + "climate", + "ecology", + "glaciology", + "hydrology" + ], + "update_frequency": "irregular", + "tags": [ + "china", + "tibetan-plateau", + "third-pole", + "glaciers", + "climate", + "ecology", + "geoscience", + "青藏高原", + "冰川", + "生态", + "第三极" + ], + "data_content": { + "en": [ + "Glaciology - Glacier inventories, ice thickness, mass balance, and permafrost distribution for the Tibetan Plateau and High Mountain Asia", + "Hydrology - River discharge, lake levels, water resources, and watershed data for major Asian river headwaters", + "Ecology - Vegetation indices, land cover, biodiversity surveys, and ecosystem monitoring on the plateau", + "Atmospheric Science - Meteorological observations, radiation data, and atmospheric composition from high-altitude stations", + "Remote Sensing Products - Satellite-derived datasets including snow cover, land surface temperature, and terrain models" + ], + "zh": [ + "冰川学 - 青藏高原和高亚洲的冰川编目、冰厚度、物质平衡和冻土分布", + "水文学 - 亚洲主要河流源区的河流径流、湖泊水位、水资源和流域数据", + "生态学 - 高原植被指数、土地覆盖、生物多样性调查和生态系统监测", + "大气科学 - 高海拔站点的气象观测、辐射数据和大气成分", + "遥感产品 - 卫星衍生数据集,包括积雪覆盖、地表温度和地形模型" + ] + }, + "has_api": false, + "file_path": "china/research/china-tpdc.json" + }, + { + "id": "china-wanfang", + "name": { + "en": "Wanfang Data", + "zh": "万方数据" + }, + "description": { + "en": "Wanfang Data is one of China's largest academic and scientific information databases, operated by Wanfang Data Co., Ltd. (a subsidiary of the China Institute of Scientific and Technical Information, ISTIC). It aggregates millions of academic journals, dissertations, conference papers, patents, standards, and scientific reports from Chinese institutions. Wanfang is widely used by researchers, universities, and enterprises for literature retrieval and scientific intelligence across all major disciplines.", + "zh": "万方数据是中国最大的学术和科技信息数据库之一,由万方数据股份有限公司(中国科学技术信息研究所旗下子公司)运营,汇聚了来自中国各科研机构的数百万篇学术期刊论文、学位论文、会议论文、专利、标准和科技报告,广泛服务于高校、科研院所和企业的文献检索与科技情报工作。" + }, + "website": "https://www.wanfangdata.com.cn/", + "data_url": "https://www.wanfangdata.com.cn/", + "api_url": null, + "authority_level": "commercial", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "education", + "research", + "science", + "technology" + ], + "update_frequency": "daily", + "tags": [ + "万方数据", + "wanfang", + "academic-database", + "学术数据库", + "chinese-journals", + "中文期刊", + "dissertations", + "学位论文", + "scientific-literature", + "科技文献", + "patents", + "专利", + "conference-papers", + "会议论文", + "istic", + "中国科学技术信息研究所", + "research-database", + "科研数据库" + ], + "data_content": { + "en": [ + "Academic journals: over 8,000 Chinese academic periodicals covering science, engineering, medicine, agriculture, humanities, and social sciences", + "Dissertations: doctoral and master's theses from Chinese universities and research institutions, dating back to 1980", + "Conference papers: proceedings from major Chinese and international conferences held in or related to China", + "Patents: Chinese patent documents including invention patents, utility models, and design patents", + "Standards: Chinese national standards (GB), industry standards, local standards, and some international standards", + "Scientific and technical reports: research reports from Chinese government agencies and research institutes", + "Science and technology achievements: records of technology awards, registered scientific achievements, and transformation outcomes" + ], + "zh": [ + "学术期刊:涵盖理工、医学、农业、人文和社会科学的8000余种中文学术期刊", + "学位论文:1980年至今中国高校及科研机构的博士、硕士学位论文", + "会议论文:在中国举办或与中国相关的重大国内外会议论文集", + "专利文献:中国发明专利、实用新型专利和外观设计专利文件", + "标准文献:中国国家标准(GB)、行业标准、地方标准及部分国际标准", + "科技报告:中国政府部门和科研院所的研究报告", + "科技成果:科技奖励记录、登记科技成果及成果转化情况" + ] + }, + "has_api": false, + "file_path": "china/research/china-wanfang.json" + }, + { + "id": "china-ngdc", + "name": { + "en": "National Genomics Data Center", + "zh": "国家基因组科学数据中心" + }, + "description": { + "en": "The National Genomics Data Center (NGDC) is China's national repository for genomics and bioinformatics data, operated by the Beijing Institute of Genomics, Chinese Academy of Sciences (China National Center for Bioinformation). It hosts the Genome Sequence Archive (GSA), BIG Data Center databases, and provides comprehensive resources for genomic sequences, gene expression, population genetics, and related omics data from Chinese and international research projects.", + "zh": "国家基因组科学数据中心(NGDC)是中国国家级基因组与生物信息学数据仓库,由中国科学院北京基因组研究所(国家生物信息中心)运营。托管基因组序列档案(GSA)和BIG数据中心数据库,为来自中国及国际研究项目的基因组序列、基因表达、群体遗传学及相关组学数据提供全面资源支持。" + }, + "website": "https://ngdc.cncb.ac.cn", + "data_url": "https://ngdc.cncb.ac.cn/gsub/", + "api_url": "https://ngdc.cncb.ac.cn/api/", + "authority_level": "research", + "country": "CN", + "domains": [ + "health", + "science", + "research" + ], + "geographic_scope": "national", + "update_frequency": "irregular", + "tags": [ + "china", + "genomics", + "bioinformatics", + "dna-sequence", + "gene-expression", + "population-genetics", + "omics", + "cas", + "gsa", + "genome-archive", + "国家基因组科学数据中心", + "中国科学院", + "基因组学", + "生物信息学", + "基因序列", + "基因表达", + "群体遗传", + "组学数据", + "生命科学", + "ncbi-equivalent" + ], + "data_content": { + "en": [ + "Genome Sequence Archive (GSA) - Raw sequencing data repository for nucleotide sequences from China and globally", + "BioProject - Project-level metadata for genomic research studies", + "BioSample - Biological sample metadata linked to sequence data", + "Gene Expression Nebulas (GEN) - Single-cell and bulk RNA-seq gene expression datasets", + "Genome Variation Map (GVM) - Human genomic variation data including SNPs and structural variants", + "GWAS Atlas - Curated genome-wide association study data and results", + "Integrated Microbial Genomes - Microbial genome sequences and functional annotation", + "Population Genomics Data - Large-scale human population sequencing datasets from Chinese cohort studies", + "Proteomics and Metabolomics - Mass spectrometry-based protein and metabolite datasets" + ], + "zh": [ + "基因组序列档案(GSA) - 来自中国及全球的核苷酸序列原始数据仓库", + "BioProject - 基因组研究项目的项目级元数据", + "BioSample - 与序列数据关联的生物样本元数据", + "基因表达星云(GEN) - 单细胞和bulk RNA-seq基因表达数据集", + "基因组变异图谱(GVM) - 人类基因组变异数据,包括SNP和结构变异", + "GWAS图集 - 已审编的全基因组关联研究数据及结果", + "整合微生物基因组 - 微生物基因组序列和功能注释", + "群体基因组数据 - 来自中国队列研究的大规模人群测序数据集", + "蛋白质组与代谢组 - 基于质谱的蛋白质和代谢物数据集" + ] + }, + "has_api": true, + "file_path": "china/research/ngdc.json" + }, + { + "id": "china-caea", + "name": { + "en": "China National Nuclear Safety Administration", + "zh": "国家原子能机构" + }, + "description": { + "en": "The China National Nuclear Safety Administration (CAEA), known as the National Atomic Energy Agency, is the government authority responsible for managing China's nuclear energy and atomic energy affairs. It publishes official data on nuclear power generation, radioactive materials management, nuclear safety inspections, uranium resources, and China's nuclear industry development.", + "zh": "国家原子能机构(CAEA)是负责管理中国核能与原子能事务的政府主管部门,发布核电发电量、放射性材料管理、核安全监察、铀资源及中国核工业发展等方面的权威数据。" + }, + "website": "https://www.caea.gov.cn", + "data_url": "https://www.caea.gov.cn", + "api_url": null, + "country": "CN", + "domains": [ + "energy", + "environment", + "industry" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "china", + "nuclear", + "atomic-energy", + "nuclear-power" + ], + "data_content": { + "en": [ + "Nuclear Power Generation - Annual electricity output from China's nuclear power plants", + "Nuclear Reactors - Status and capacity data for operational and under-construction reactors", + "Uranium Resources - Domestic uranium exploration, mining, and reserves data", + "Nuclear Safety Reports - Annual safety inspection results and incident reports", + "Radioactive Waste Management - Statistics on radioactive material classification and disposal", + "Nuclear Industry Development - China's nuclear technology exports and international cooperation" + ], + "zh": [ + "核电发电量 - 中国核电站年度发电量统计", + "核反应堆 - 在运及在建反应堆状态与容量数据", + "铀资源 - 国内铀矿勘探、开采及储量数据", + "核安全报告 - 年度安全监察结果及事件报告", + "放射性废物管理 - 放射性材料分类与处置统计", + "核工业发展 - 中国核技术出口及国际合作情况" + ] + }, + "authority_level": "government", + "has_api": false, + "file_path": "china/resources/china-caea.json" + }, + { + "id": "china-chnenergy", + "name": { + "en": "China Energy Investment Corporation (CHN Energy)", + "zh": "国家能源投资集团有限责任公司" + }, + "description": { + "en": "China Energy Investment Corporation (CHN Energy, 国家能源集团) is the world's largest coal producer and one of China's largest power generation groups, formed in 2017 through the merger of China Shenhua Group and China Guodian Corporation. As a central state-owned enterprise, CHN Energy operates across coal mining, coal-fired power, hydropower, wind power, solar power, chemical industry, railway, and port logistics. With over 200 GW of installed power generation capacity and annual coal output exceeding 600 million tonnes, CHN Energy is central to understanding China's energy security, coal market dynamics, and the transition toward clean energy. The corporation publishes annual reports, coal production and sales statistics, power generation data by energy type, carbon emission reduction reports, and renewable energy expansion disclosures. CHN Energy data is indispensable for global coal market analysis, China's energy mix transition tracking, and assessing progress toward peak carbon emissions.", + "zh": "国家能源投资集团有限责任公司(国家能源集团)是全球最大的煤炭生产商之一,也是中国最大的发电集团之一,于2017年由中国神华集团与中国国电集团合并组建。作为中央国有企业,集团业务横跨煤炭开采、火力发电、水电、风电、光伏、煤化工、铁路和港口物流。集团装机超2亿千瓦,年产煤炭逾6亿吨,是了解中国能源安全、煤炭市场动态和清洁能源转型的核心数据主体。集团发布年度报告、煤炭产销统计、分能源品类发电量数据、碳减排报告及可再生能源扩展披露。国家能源集团数据是全球煤炭市场分析、中国能源结构转型追踪及碳达峰进展评估的必备参考。" + }, + "website": "https://www.chnenergy.com.cn", + "data_url": "https://www.chnenergy.com.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "energy", + "economics", + "environment" + ], + "update_frequency": "annual", + "tags": [ + "国家能源集团", + "chnenergy", + "china-energy-investment", + "煤炭", + "coal", + "发电", + "power-generation", + "神华", + "shenhua", + "国电", + "guodian", + "风电", + "wind-power", + "清洁能源", + "clean-energy", + "能源安全", + "energy-security", + "碳排放", + "carbon-emission", + "煤化工", + "coal-chemical", + "能源转型", + "energy-transition" + ], + "data_content": { + "en": [ + "Annual reports: consolidated financial statements, operational KPIs, coal production volumes, and power generation breakdown by energy type", + "Coal production statistics: annual and quarterly raw coal output by mining region (Shendong, Zhungeer, Wuhai, etc.), sales volumes, and coal quality grades", + "Power generation data: installed capacity and actual generation by thermal, wind, solar, and hydropower assets; utilization hours", + "Carbon emissions and reduction: scope 1 and scope 2 emissions data, carbon intensity per MWh, and carbon reduction commitments", + "Renewable energy expansion: new wind and solar capacity additions by year and province, offshore wind deployment progress", + "Coal price indices: reference prices for Shenhua brand thermal coal, a benchmark for domestic coal market pricing", + "Railway and port logistics: Shuohuang Railway freight volume, Huanghua and Tianjin port throughput for coal export", + "Coal chemical production: coal-to-liquids, coal-to-gas, and methanol output statistics from Ningxia and Inner Mongolia bases" + ], + "zh": [ + "年度报告:合并财务报表、运营KPI、煤炭产量及分能源品类发电量明细", + "煤炭产量统计:神东、准格尔、乌海等矿区年度及季度原煤产量、销量及煤质等级", + "发电量数据:火电、风电、光伏、水电资产装机容量和实际发电量;利用小时数", + "碳排放与减碳:范围1和范围2排放数据、每兆瓦时碳强度及碳减排承诺", + "可再生能源扩展:年度及省级风电、光伏新增装机容量,海上风电开发进展", + "煤炭价格指数:神华品牌动力煤参考价格,国内煤市基准定价参考", + "铁路与港口物流:朔黄铁路货运量、黄骅港和天津港煤炭出港吞吐量", + "煤化工产量:宁夏、内蒙古基地的煤制油、煤制气和甲醇产量统计" + ] + }, + "has_api": false, + "file_path": "china/resources/china-chnenergy.json" + }, + { + "id": "china-cnooc", + "name": { + "en": "China National Offshore Oil Corporation", + "zh": "中国海洋石油集团有限公司" + }, + "description": { + "en": "China National Offshore Oil Corporation (CNOOC) is China's largest offshore oil and gas producer and a central state-owned enterprise. It publishes annual reports, sustainability reports, offshore oil and gas production data, deepwater exploration results, LNG import and terminal operation statistics, and marine environmental protection reports. Note: some sub-sections use server-side redirects that loop for non-browser clients; landing page (root) is stable and lists all reports.", + "zh": "中国海洋石油集团有限公司(中国海油)是中国最大的海上油气生产商,中央企业。发布年度报告、可持续发展报告、海上油气产量数据、深水勘探成果、LNG进口及接收站运营统计和海洋环境保护报告。" + }, + "website": "https://www.cnooc.com.cn", + "data_url": "https://www.cnooc.com.cn", + "api_url": null, + "country": "CN", + "domains": [ + "energy", + "petroleum", + "maritime" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "china", + "cnooc", + "offshore-oil", + "natural-gas", + "lng", + "deepwater", + "marine-energy", + "state-owned-enterprise", + "中国海油", + "中海油", + "海上石油", + "天然气", + "液化天然气", + "深水", + "央企" + ], + "data_content": { + "en": [ + "Annual Reports - Financial performance, production, and reserves data", + "Offshore Production - Crude oil and natural gas production from offshore fields", + "Deepwater Exploration - Deepwater and ultra-deepwater exploration discoveries and results", + "LNG Operations - LNG import volumes, receiving terminal throughput, and trade data", + "Reserves Reports - Proven and probable offshore oil and gas reserves", + "Sustainability Reports - Marine environmental protection, carbon emissions, and ESG metrics" + ], + "zh": [ + "年度报告 - 财务业绩、产量和储量数据", + "海上生产 - 海上油田原油和天然气产量", + "深水勘探 - 深水和超深水勘探发现及成果", + "LNG业务 - LNG进口量、接收站吞吐量和贸易数据", + "储量报告 - 探明和概算海上油气储量", + "可持续发展报告 - 海洋环境保护、碳排放和ESG指标" + ] + }, + "authority_level": "government", + "has_api": false, + "file_path": "china/resources/china-cnooc.json" + }, + { + "id": "china-cnpc", + "name": { + "en": "China National Petroleum Corporation", + "zh": "中国石油天然气集团有限公司" + }, + "description": { + "en": "China National Petroleum Corporation (CNPC) is the largest state-owned oil and gas company in China and one of the world's largest energy companies. It publishes annual reports, sustainability reports, oil and gas production statistics, reserves data, and energy market analyses covering crude oil, natural gas, refining, and petrochemical operations. Note: site is behind a WAF and may return HTTP 412 to automated requests; content accessible via standard browsers.", + "zh": "中国石油天然气集团有限公司(中国石油)是中国最大的国有油气企业,也是全球最大的能源企业之一。发布年度报告、可持续发展报告、油气产量统计、储量数据及能源市场分析,涵盖原油、天然气、炼化及石化业务。" + }, + "website": "https://www.cnpc.com.cn", + "data_url": "https://www.cnpc.com.cn/cnpc/nybg/common_index.shtml", + "api_url": null, + "country": "CN", + "domains": [ + "energy", + "petroleum", + "natural-gas" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "china", + "cnpc", + "petrochina", + "oil", + "gas", + "petroleum", + "crude-oil", + "natural-gas", + "energy", + "state-owned-enterprise", + "中国石油", + "中石油", + "原油", + "天然气", + "油气", + "央企" + ], + "data_content": { + "en": [ + "Annual Reports - Financial performance, production, and operational statistics", + "Oil and Gas Production - Crude oil and natural gas output by region and field", + "Reserves Data - Proven and probable oil and gas reserves", + "Sustainability Reports - Environmental, social, and governance (ESG) metrics", + "Refining and Petrochemical Output - Processed crude oil volume and chemical product yields", + "Energy Market Analysis - Domestic and international oil and gas market trends" + ], + "zh": [ + "年度报告 - 财务业绩、产量及运营统计", + "油气产量 - 按地区和油田分类的原油和天然气产出", + "储量数据 - 探明和概算油气储量", + "可持续发展报告 - 环境、社会和治理(ESG)指标", + "炼化产出 - 原油加工量和化工产品产量", + "能源市场分析 - 国内外油气市场趋势" + ] + }, + "authority_level": "government", + "has_api": false, + "file_path": "china/resources/china-cnpc.json" + }, + { + "id": "china-ctg", + "name": { + "en": "China Three Gorges Corporation (CTG)", + "zh": "中国长江三峡集团有限公司" + }, + "description": { + "en": "China Three Gorges Corporation (CTG) is a central state-owned enterprise and the world's largest hydropower company by installed capacity and generation. CTG operates the Three Gorges Dam — the world's largest power station — along with the Gezhouba, Xiluodu, Xiangjiaba, and Baihetan hydropower plants, the latter being the world's second-largest hydropower station. With total installed capacity exceeding 100 GW (including hydropower, wind, solar, and other clean energy), CTG is a cornerstone of China's clean energy transition strategy. The corporation publishes annual reports, hydropower generation statistics, renewable energy capacity data, carbon reduction metrics, Yangtze River ecological conservation reports, and international clean energy investment disclosures. CTG's data is authoritative for global hydropower capacity analysis, China's carbon neutrality progress tracking, Yangtze River basin water management, and Belt and Road clean energy investment trends.", + "zh": "中国长江三峡集团有限公司(三峡集团)是中央国有企业,是全球装机容量和发电量最大的水电企业。集团管理三峡水电站(全球最大发电站)、葛洲坝、溪洛渡、向家坝、白鹤滩(全球第二大水电站)等巨型水电工程。集团清洁能源总装机超1亿千瓦(含水电、风电、光伏等),是中国清洁能源转型战略的重要支柱。集团发布年度报告、水电发电量统计、可再生能源装机数据、碳减排指标、长江生态保护报告及国际清洁能源投资披露。三峡集团数据是全球水电装机分析、中国碳中和进展追踪、长江流域水资源管理及一带一路清洁能源投资趋势研究的权威参考。" + }, + "website": "https://www.ctg.com.cn", + "data_url": "https://www.ctg.com.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "energy", + "environment", + "economics" + ], + "update_frequency": "annual", + "tags": [ + "中国长江三峡集团", + "ctg", + "china-three-gorges", + "三峡大坝", + "three-gorges-dam", + "水电", + "hydropower", + "清洁能源", + "clean-energy", + "可再生能源", + "renewable-energy", + "长江", + "yangtze-river", + "碳中和", + "carbon-neutrality", + "风电", + "wind-power", + "光伏", + "solar-power", + "白鹤滩", + "baihetan", + "能源转型", + "energy-transition" + ], + "data_content": { + "en": [ + "Annual reports: comprehensive financial statements, operational performance, and clean energy capacity expansion data", + "Hydropower generation statistics: annual and quarterly power generation by plant, including Three Gorges, Baihetan, Xiluodu, Xiangjiaba, and Gezhouba", + "Renewable energy capacity: installed wind, solar, and pumped-storage capacity by region and year", + "Carbon reduction metrics: CO2 emissions avoided through clean power generation, carbon footprint data", + "Yangtze River ecological conservation: fish migration passage data, water quality monitoring results, and ecological flow release records", + "International investment data: overseas clean energy project portfolio (Africa, South America, Europe), financing structures, and capacity additions", + "Energy storage projects: pumped-storage and battery storage deployment statistics", + "Flood control and water regulation: Three Gorges reservoir water level management and flood season discharge data" + ], + "zh": [ + "年度报告:完整财务报表、运营业绩及清洁能源装机扩展数据", + "水电发电量统计:三峡、白鹤滩、溪洛渡、向家坝、葛洲坝各电站年度及季度发电量", + "可再生能源装机:按地区和年份统计的风电、光伏及抽水蓄能装机容量", + "碳减排指标:清洁发电避免的二氧化碳排放量及碳足迹数据", + "长江生态保护:鱼类过鱼通道数据、水质监测结果及生态流量下泄记录", + "国际投资数据:境外清洁能源项目组合(非洲、南美、欧洲)、融资结构和装机新增", + "储能项目:抽水蓄能和电池储能部署统计", + "防洪调度:三峡水库水位管理及汛期泄洪数据" + ] + }, + "has_api": false, + "file_path": "china/resources/china-ctg.json" + }, + { + "id": "china-guangdong-nr", + "name": { + "en": "Guangdong Provincial Department of Natural Resources", + "zh": "广东省自然资源厅" + }, + "description": { + "en": "The Guangdong Provincial Department of Natural Resources is the provincial government agency responsible for managing land, mineral, marine, and other natural resources in Guangdong Province, one of China's most economically significant regions and the core of the Greater Bay Area. It publishes data on land use planning, real estate land supply, mineral resource reserves, geological surveys, and marine resource management. The department releases annual land use change surveys, construction land approval data, land transaction records, and geographic information. Its data is essential for understanding land market dynamics, urban planning, and resource allocation in the Pearl River Delta region.", + "zh": "广东省自然资源厅是负责管理广东省土地、矿产、海洋等自然资源的省级政府部门。广东是中国经济最发达的省份之一,也是粤港澳大湾区的核心区域。该厅发布土地利用规划、房地产用地供应、矿产资源储量、地质调查及海洋资源管理等数据,定期公布年度土地利用变更调查、建设用地审批、土地交易记录及地理信息数据。其数据对了解珠三角地区土地市场动态、城市规划和资源配置具有重要参考价值。" + }, + "website": "https://nr.gd.gov.cn", + "data_url": "https://nr.gd.gov.cn/zwgknew/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "natural-resources", + "land-use", + "geology", + "real-estate" + ], + "update_frequency": "monthly", + "tags": [ + "广东自然资源", + "guangdong-natural-resources", + "广东土地", + "guangdong-land", + "土地供应", + "land-supply", + "矿产资源", + "mineral-resources", + "建设用地", + "construction-land", + "土地出让", + "land-transfer", + "粤港澳大湾区", + "greater-bay-area", + "地质调查", + "geological-survey", + "不动产登记", + "real-estate-registration", + "海洋资源", + "marine-resources" + ], + "data_content": { + "en": [ + "Land use planning: provincial land use master plans, annual land use change surveys, and spatial planning data", + "Construction land approval: annual and monthly construction land approval records by city and project type", + "Land transactions: land auction results, transfer records, and price statistics for Guangdong Province", + "Mineral resources: mineral resource reserves, exploration permits, and mining rights data", + "Geological surveys: geological hazard monitoring, groundwater surveys, and geological environment reports", + "Marine resources: coastal zone management, marine area use permits, and marine economic statistics", + "Geographic information: provincial geographic information data and surveying achievements", + "Real estate land supply: residential and commercial land supply plans and execution data" + ], + "zh": [ + "土地利用规划:全省土地利用总体规划、年度土地利用变更调查及国土空间规划数据", + "建设用地审批:按城市和项目类型分类的年度和月度建设用地审批记录", + "土地交易:广东省土地拍卖结果、出让记录和价格统计", + "矿产资源:矿产资源储量、勘探许可和采矿权数据", + "地质调查:地质灾害监测、地下水调查和地质环境报告", + "海洋资源:海岸带管理、海域使用许可和海洋经济统计", + "地理信息:全省地理信息数据和测绘成果", + "房地产用地供应:住宅和商业用地供应计划及执行数据" + ] + }, + "has_api": false, + "file_path": "china/resources/china-guangdong-nr.json" + }, + { + "id": "china-huaneng", + "name": { + "en": "China Huaneng Group", + "zh": "中国华能集团有限公司" + }, + "description": { + "en": "China Huaneng Group (CHNG) is one of China's five major state-owned power generation groups and a central enterprise under SASAC. It operates thermal, hydro, wind, solar, and nuclear power assets across China and internationally, with total installed capacity exceeding 300 GW. CHNG publishes annual reports, sustainability reports, power generation statistics, renewable energy deployment data, carbon emission indicators, and R&D outcomes, serving as an authoritative source for China's power sector capacity, energy transition progress, and clean energy development benchmarks.", + "zh": "中国华能集团有限公司(华能集团)是中国五大发电央企之一,为国务院国资委直属中央企业。集团拥有遍布中国及海外的火电、水电、风电、光伏及核电资产,总装机容量超3亿千瓦。华能集团发布年度报告、可持续发展报告、发电量统计、可再生能源布局数据、碳排放指标及科研成果,是了解中国电力行业装机规模、能源转型进展和清洁能源发展基准的权威数据来源。" + }, + "website": "https://www.chng.com.cn", + "data_url": "https://www.chng.com.cn", + "api_url": null, + "authority_level": "commercial", + "country": "CN", + "geographic_scope": "national", + "update_frequency": "annual", + "domains": [ + "energy", + "electricity", + "renewable-energy", + "climate" + ], + "tags": [ + "china", + "huaneng", + "chng", + "中国华能", + "energy", + "能源", + "power-generation", + "发电", + "thermal-power", + "火电", + "renewable-energy", + "可再生能源", + "carbon-emissions", + "碳排放", + "央企" + ], + "data_content": { + "en": [ + "Annual Reports - Total installed capacity, power generation output, revenue, and profit breakdown by energy type", + "Sustainability Reports - Carbon dioxide emissions, coal consumption, water usage, and green development KPIs", + "Renewable Energy Statistics - Wind, solar, and hydropower capacity additions and generation output", + "Nuclear Power Data - Operating status and performance of Shidaowan nuclear power plant", + "R&D Achievements - Technology innovations in clean coal, carbon capture, energy storage, and smart grid" + ], + "zh": [ + "年度报告 - 总装机容量、发电量、营收及按能源类型分类的利润", + "可持续发展报告 - 二氧化碳排放量、煤炭消耗、用水量及绿色发展KPI", + "可再生能源统计 - 风电、光伏及水电新增装机与发电量", + "核电数据 - 石岛湾核电站运营状态及生产绩效", + "科研成果 - 清洁煤、碳捕集、储能及智能电网技术创新" + ] + }, + "has_api": false, + "file_path": "china/resources/china-huaneng.json" + }, + { + "id": "china-landchina", + "name": { + "en": "China Land Market Network", + "zh": "中国土地市场网" + }, + "description": { + "en": "The China Land Market Network is the official land transaction information platform operated under the supervision of the Ministry of Natural Resources. It provides comprehensive data on land supply plans, land auction listings (zhaopaihua), transaction results, benchmark land prices, and land use rights transfers across China. The platform is the authoritative source for tracking national and regional land market dynamics, including residential, commercial, and industrial land transactions. It serves as a critical data infrastructure for real estate market analysis, urban development research, and land policy evaluation. Note: The website may return HTTP 418 due to WAF (Web Application Firewall) protection; access from mainland China is typically unaffected.", + "zh": "中国土地市场网是在自然资源部监管下运营的官方土地交易信息平台,提供全国土地供应计划、土地招拍挂公告、成交结果、基准地价和土地使用权出让等全面数据。该平台是追踪全国及地区土地市场动态的权威数据源,覆盖住宅、商业和工业用地交易信息,是房地产市场分析、城市发展研究和土地政策评估的重要数据基础设施。注意:该网站可能因WAF(Web应用防火墙)保护返回HTTP 418状态码,境内访问通常不受影响。" + }, + "website": "https://www.landchina.com", + "data_url": "https://www.landchina.com/default.aspx?tabid=226", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "real-estate", + "land-resources", + "urban-development" + ], + "update_frequency": "daily", + "tags": [ + "land-market", + "land-transfer", + "land-auction", + "land-supply", + "land-transaction", + "benchmark-land-price", + "ministry-of-natural-resources", + "real-estate", + "land-use-rights", + "residential-land", + "commercial-land", + "industrial-land", + "urban-land" + ], + "data_content": { + "en": [ + "Land supply plans: annual and quarterly land supply plans by city and land use type", + "Land auction announcements: detailed listings for land parcels available through bidding, auction, and listing processes (zhaopaihua)", + "Transaction results: completed land transactions including price, area, buyer, and land use type", + "Benchmark land prices: government-assessed baseline land values by region and land classification", + "Land use rights transfers: records of land rights transfers between entities", + "Regional land market analysis: aggregate statistics on land market activity by province and city", + "Land supply structure: breakdown of residential, commercial, industrial, and public land allocation" + ], + "zh": [ + "土地供应计划:按城市和用地类型分类的年度和季度土地供应计划", + "土地招拍挂公告:通过招标、拍卖和挂牌方式出让的地块详细公告信息", + "成交结果:已完成的土地交易信息,包括价格、面积、受让方和用途", + "基准地价:按区域和地类分类的政府评估基准地价", + "土地使用权转让:企业间土地使用权转让记录", + "区域土地市场分析:按省市分类的土地市场活动汇总统计", + "供地结构:住宅、商业、工业和公共用地供应分配情况" + ] + }, + "has_api": false, + "file_path": "china/resources/china-landchina.json" + }, + { + "id": "china-ngcc", + "name": { + "en": "National Geomatics Center of China", + "zh": "国家基础地理信息中心" + }, + "description": { + "en": "The National Geomatics Center of China (NGCC) is the primary national agency responsible for surveying, mapping, and maintaining China's national geographic information infrastructure. Under the Ministry of Natural Resources, NGCC manages the National Basic Geographic Database, the most authoritative source of fundamental geographic data in China, including topographic maps, digital elevation models (DEM), satellite imagery, administrative boundaries, and land use data. NGCC provides public access to standardized geographic datasets at multiple scales (1:50,000 to 1:1,000,000) used in urban planning, environmental monitoring, disaster response, infrastructure development, and national census operations. It also coordinates China's geodetic reference systems and national mapping standards.", + "zh": "国家基础地理信息中心是负责中国国家地理信息基础设施测绘、制图和维护的主要国家机构,隶属于自然资源部。中心管理国家基础地理信息数据库,是全国最权威的基础地理数据来源,包括地形图、数字高程模型(DEM)、卫星影像、行政区划边界和土地利用数据。中心提供多比例尺(1:5万至1:100万)标准化地理数据集,广泛应用于城市规划、环境监测、灾害救援、基础设施建设和全国人口普查。同时负责协调中国大地测量参考系统和全国测绘标准。" + }, + "website": "https://www.ngcc.cn", + "data_url": "https://www.ngcc.cn/dlxxzy/gjjcdlxxsjk/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "geography", + "environmental-science", + "infrastructure" + ], + "update_frequency": "annual", + "tags": [ + "基础地理信息", + "basic-geographic-information", + "国家地理数据库", + "national-geographic-database", + "数字高程模型", + "digital-elevation-model", + "地形图", + "topographic-map", + "行政区划", + "administrative-boundary", + "土地利用", + "land-use", + "地理信息系统", + "gis", + "测绘", + "surveying-and-mapping", + "卫星影像", + "satellite-imagery", + "国家测绘", + "national-mapping", + "空间数据", + "spatial-data", + "大地测量", + "geodesy", + "ngcc", + "自然资源部", + "ministry-of-natural-resources" + ], + "data_content": { + "en": [ + "National Basic Geographic Database: fundamental geographic datasets at 1:50,000, 1:250,000, and 1:1,000,000 scales including terrain, hydrography, transportation networks, settlements, and administrative boundaries for all of China", + "Digital elevation model (DEM) data: national digital terrain models derived from topographic surveys and satellite imagery, providing elevation data at 25m and 90m resolutions for terrain analysis and hydrological modeling", + "Administrative boundary data: official authoritative datasets of county-level, prefecture-level, and provincial administrative boundaries with regularly updated polygon and line features for China's 34 provincial-level units", + "Satellite and aerial imagery archives: multi-temporal satellite image datasets for China including optical and synthetic aperture radar (SAR) imagery used for land cover classification and change detection", + "Land use and land cover data: national land use classification datasets at 1:50,000 scale including cultivated land, forest, grassland, water bodies, built-up areas, and unused land based on remote sensing interpretation", + "Geodetic reference network data: China's national coordinate reference system (CGCS2000), gravity network benchmarks, and height datum information supporting precise positioning and engineering surveys", + "Urban geographic database: large-scale urban geographic datasets at 1:2,000 and 1:5,000 scales for major cities, including building footprints, road networks, utility infrastructure, and points of interest", + "Geographic names database: national standardized database of geographic place names including mountains, rivers, lakes, villages, and administrative areas with official Chinese and romanized designations" + ], + "zh": [ + "国家基础地理信息数据库:1:5万、1:25万、1:100万比例尺全国基础地理数据集,包含地形、水系、交通网络、居民地和行政区划要素", + "数字高程模型(DEM)数据:基于地形测量和卫星影像生成的全国数字地形模型,提供25米和90米分辨率高程数据,用于地形分析和水文建模", + "行政区划数据:县级、地级和省级行政区划的权威官方数据集,含定期更新的34个省级行政单位矢量面和线要素", + "卫星和航空影像档案:全国多时相卫星影像数据集,包括光学和合成孔径雷达(SAR)影像,用于土地覆盖分类和变化检测", + "土地利用和土地覆盖数据:1:5万比例尺全国土地利用分类数据,基于遥感解译,涵盖耕地、林地、草地、水体、建设用地和未利用地", + "大地测量参考网数据:中国国家坐标参考系(CGCS2000)、重力网基准点和高程基准信息,支持精密定位和工程测量", + "城市地理数据库:主要城市1:2000和1:5000比例尺大比例尺城市地理数据集,含建筑轮廓、道路网络、公共设施基础设施和兴趣点", + "地名数据库:全国标准化地名数据库,包含山脉、河流、湖泊、村庄和行政区的官方中文及罗马化名称" + ] + }, + "has_api": false, + "file_path": "china/resources/china-ngcc.json" + }, + { + "id": "china-shenzhen-pnr", + "name": { + "en": "Shenzhen Municipal Planning and Natural Resources Bureau", + "zh": "深圳市规划和自然资源局" + }, + "description": { + "en": "The Shenzhen Municipal Planning and Natural Resources Bureau oversees urban planning, land management, natural resource administration, and spatial development in Shenzhen. It publishes land supply plans, land auction and transfer data, urban master plans, construction land statistics, and geographic information. As the primary authority for land resource allocation in one of China's most land-scarce cities, its data is essential for real estate market analysis, urban development research, and land use policy studies.", + "zh": "深圳市规划和自然资源局负责深圳市城市规划、土地管理、自然资源管理和空间发展。发布土地供应计划、土地出让数据、城市总体规划、建设用地统计和地理信息。作为中国土地资源最稀缺城市之一的土地资源配置主管部门,其数据对房地产市场分析、城市发展研究和土地使用政策研究至关重要。" + }, + "website": "https://pnr.sz.gov.cn", + "data_url": "https://pnr.sz.gov.cn/xxgk/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "land-use", + "urban-planning", + "natural-resources", + "real-estate" + ], + "geographic_scope": "subnational", + "update_frequency": "monthly", + "tags": [ + "shenzhen", + "land", + "planning", + "natural-resources" + ], + "data_content": { + "en": [ + "Land Supply Plans - Annual and quarterly land supply plans for residential, commercial, and industrial use", + "Land Auction Data - Land transfer prices, floor prices, and transaction records", + "Urban Master Plans - City-level spatial development plans and zoning regulations", + "Construction Land Statistics - Approved construction land area and utilization data", + "Geographic Information - Surveying and mapping data, geographic information services", + "Natural Resource Surveys - Land resource surveys and mineral resource assessments" + ], + "zh": [ + "土地供应计划 - 住宅、商业和工业用地年度及季度供应计划", + "土地出让数据 - 土地成交价格、楼面地价和交易记录", + "城市总体规划 - 城市空间发展规划和分区规定", + "建设用地统计 - 已批建设用地面积和利用数据", + "地理信息 - 测绘数据和地理信息服务", + "自然资源调查 - 土地资源调查和矿产资源评估" + ] + }, + "has_api": false, + "file_path": "china/resources/china-shenzhen-pnr.json" + }, + { + "id": "china-sinopec", + "name": { + "en": "China Petrochemical Corporation (Sinopec Group)", + "zh": "中国石油化工集团有限公司" + }, + "description": { + "en": "China Petrochemical Corporation (Sinopec Group) is one of the world's largest integrated energy and chemical companies and a central state-owned enterprise of China. It publishes annual reports, sustainability reports, refining and chemical production statistics, oil and gas exploration data, and energy transition progress reports covering upstream, midstream, and downstream operations. Note: HTTPS endpoint is not reliably reachable from some networks; HTTP works.", + "zh": "中国石油化工集团有限公司(中国石化)是全球最大的综合性能源化工企业之一,中国中央企业。发布年度报告、可持续发展报告、炼化生产统计、油气勘探数据及能源转型进展报告,涵盖上游、中游和下游业务。" + }, + "website": "http://www.sinopecgroup.com", + "data_url": "http://www.sinopecgroup.com/group/xhtml/shzr/", + "api_url": null, + "country": "CN", + "domains": [ + "energy", + "petroleum", + "petrochemical" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "china", + "sinopec", + "petrochemical", + "oil", + "refining", + "chemical", + "energy", + "state-owned-enterprise", + "中国石化", + "中石化", + "石油化工", + "炼化", + "化工", + "央企" + ], + "data_content": { + "en": [ + "Annual Reports - Financial and operational performance data", + "Refining Output - Crude oil processing volume and refined product output", + "Chemical Production - Ethylene, synthetic resin, synthetic fiber, and other chemical product yields", + "Oil and Gas Exploration - Upstream exploration and production statistics", + "Sustainability Reports - Carbon emissions, environmental protection, and ESG data", + "Retail Network Statistics - Gas station network and fuel sales volume" + ], + "zh": [ + "年度报告 - 财务和运营业绩数据", + "炼油产出 - 原油加工量和成品油产量", + "化工生产 - 乙烯、合成树脂、合成纤维及其他化工产品产量", + "油气勘探 - 上游勘探开发生产统计", + "可持续发展报告 - 碳排放、环境保护和ESG数据", + "零售网络统计 - 加油站网络和成品油销售量" + ] + }, + "authority_level": "government", + "has_api": false, + "file_path": "china/resources/china-sinopec.json" + }, + { + "id": "china-chinacoal", + "name": { + "en": "China National Coal Group Corporation", + "zh": "中国中煤能源集团有限公司" + }, + "description": { + "en": "China National Coal Group Corporation (China Coal / ChinaCoal) is a major state-owned coal mining and energy enterprise directly administered by SASAC of the State Council. Established in 1982 and listed on both the Shanghai Stock Exchange (601898.SH) and Hong Kong Stock Exchange (01898.HK) through its flagship China Coal Energy Company Ltd., the Group is among the top five coal producers in China. It publishes authoritative operational and industry data covering raw coal production and commercial coal sales, coal washing and processing output, coal chemical products (methanol, olefins, urea, fertilizers), coal-fired power generation, coal-mining equipment manufacturing, major mine safety indicators, R&D spending on clean coal technology and carbon capture pilots, and internal supply contracts with power plants and steel mills. China Coal's monthly production announcements, annual reports, ESG reports, and investor communications are widely used by energy analysts, commodity traders, and researchers tracking China's coal supply-demand balance, energy transition, and the pace of clean-coal decarbonization.", + "zh": "中国中煤能源集团有限公司(中煤集团)是国务院国资委直接监管的大型国有煤炭能源企业,成立于1982年,其旗舰上市平台中国中煤能源股份有限公司在上海证券交易所(601898.SH)和香港联合交易所(01898.HK)两地上市,是中国排名前五的煤炭生产企业。集团发布权威的经营和行业数据,涵盖原煤产量和商品煤销售量、洗精煤与煤炭加工产量、煤化工产品(甲醇、烯烃、尿素、化肥)、煤电发电量、煤机装备制造、重大矿井安全指标、清洁煤技术和碳捕集试点研发投入,以及与电厂和钢厂的长协供应数据。中煤集团的月度生产公告、年报、ESG报告和投资者沟通材料,广泛被能源分析师、大宗商品交易员以及研究中国煤炭供需平衡、能源转型和清洁煤低碳化进展的研究者引用。" + }, + "website": "https://www.chinacoal.com", + "data_url": "https://www.chinacoal.com", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "energy", + "mining", + "coal" + ], + "update_frequency": "monthly", + "tags": [ + "china-coal", + "中煤集团", + "中国中煤", + "coal-mining", + "煤炭", + "原煤产量", + "煤化工", + "coal-chemical", + "methanol", + "olefins", + "sasac", + "601898", + "01898-hk", + "state-owned-enterprise", + "清洁煤" + ], + "data_content": { + "en": [ + "Monthly raw coal production and commercial coal sales volumes", + "Coal washing and processing output statistics", + "Coal chemical products output (methanol, olefins, urea, fertilizers)", + "Coal-fired power generation statistics", + "Coal-mining equipment manufacturing data", + "Major mine safety indicators", + "R&D spending on clean coal and carbon capture technologies", + "Annual reports, ESG reports and sustainability disclosures", + "Long-term supply contracts with power plants and steel mills" + ], + "zh": [ + "月度原煤产量与商品煤销售量", + "洗精煤与煤炭加工产量统计", + "煤化工产品产量(甲醇、烯烃、尿素、化肥)", + "煤电发电量统计", + "煤机装备制造数据", + "重大矿井安全指标", + "清洁煤技术与碳捕集研发投入", + "年度报告、ESG报告和可持续发展披露", + "与电厂和钢厂的长期供应合同" + ] + }, + "has_api": false, + "file_path": "china/resources/energy/china-chinacoal.json" + }, + { + "id": "china-csg", + "name": { + "en": "China Southern Power Grid", + "zh": "中国南方电网有限责任公司" + }, + "description": { + "en": "China Southern Power Grid Co., Ltd. (CSG) is one of the two major state-owned grid enterprises in China, responsible for investment, construction and operation of the power grid in five southern provinces (Guangdong, Guangxi, Yunnan, Guizhou, and Hainan) and cross-border power trade with Vietnam, Laos, and Myanmar within the Greater Mekong Subregion. Headquartered in Guangzhou and directly administered by SASAC of the State Council, CSG publishes authoritative data covering electricity generation and consumption in southern China, peak load and grid reliability indicators, west-to-east power transmission volumes, renewable energy integration (solar, wind, hydro), smart grid and UHV transmission projects, power market trading statistics in the Southern Regional Electricity Market, electric vehicle charging infrastructure, and carbon emission reduction from clean energy substitution. Its annual social responsibility report, sustainability report, and operational bulletins are primary references for tracking southern China's energy transition, new power system construction, and grid-level decarbonization progress.", + "zh": "中国南方电网有限责任公司(南方电网/南网)是中国两大国有电网企业之一,负责广东、广西、云南、贵州、海南五省区电网的投资建设与运营,同时承担与越南、老挝、缅甸的跨境电力交易及大湄公河次区域合作。南网总部位于广州,由国务院国资委直接监管。公司发布权威数据,涵盖南方五省区发电量、全社会用电量、最高负荷和电网可靠性指标、西电东送输送电量、新能源(光伏、风电、水电)消纳、智能电网与特高压输电工程、南方区域电力市场交易数据、电动汽车充电基础设施,以及清洁能源替代带来的碳减排量。其年度社会责任报告、可持续发展报告和运行简报是追踪南方区域能源转型、新型电力系统建设和电网级低碳发展的重要参考。" + }, + "website": "https://www.csg.cn", + "data_url": "https://www.csg.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "energy", + "electricity", + "infrastructure" + ], + "update_frequency": "annual", + "tags": [ + "csg", + "中国南方电网", + "南方电网", + "南网", + "electricity", + "power-grid", + "发电量", + "用电量", + "west-to-east-power", + "西电东送", + "renewable-energy", + "新能源", + "smart-grid", + "sasac", + "南方五省区" + ], + "data_content": { + "en": [ + "Electricity generation and consumption data for five southern provinces", + "Peak load and grid reliability indicators", + "West-to-East Electricity Transmission volumes", + "Renewable energy (solar, wind, hydro) integration statistics", + "Smart grid and UHV transmission project data", + "Southern Regional Electricity Market trading statistics", + "EV charging infrastructure deployment", + "Carbon emission reduction from clean energy substitution", + "Annual social responsibility and sustainability reports" + ], + "zh": [ + "南方五省区发电量与全社会用电量数据", + "最高负荷与电网可靠性指标", + "西电东送输送电量统计", + "新能源(光伏、风电、水电)消纳数据", + "智能电网与特高压输电工程数据", + "南方区域电力市场交易统计", + "电动汽车充电基础设施部署情况", + "清洁能源替代带来的碳减排量", + "年度社会责任报告与可持续发展报告" + ] + }, + "has_api": false, + "file_path": "china/resources/energy/china-csg.json" + }, + { + "id": "china-cace", + "name": { + "en": "China Association of Circular Economy", + "zh": "中国循环经济协会" + }, + "description": { + "en": "The China Association of Circular Economy (CACE) is a national industry organization approved by the Ministry of Civil Affairs, evolved from the former China Resources Comprehensive Utilization Association. It represents China's circular economy sector, encompassing recycling, waste resource utilization, urban mining, and low-carbon industrial transformation. CACE publishes annual development reports on circular economy, including data on resource recycling volumes, waste utilization rates, urban mining output, industrial symbiosis, and policy implementation progress. It also releases thematic reports on specific sectors such as waste textiles, electronic waste, and renewable resources. As China pursues carbon neutrality by 2060, CACE's data is essential for tracking progress in circular economy transitions, green manufacturing, and resource efficiency across China's industrial landscape.", + "zh": "中国循环经济协会是经民政部批准,由原中国资源综合利用协会更名成立的全国性社团组织,代表中国循环经济行业,涵盖再生资源利用、废物资源化、城市矿产和低碳产业转型等领域。协会发布循环经济年度发展报告,包括再生资源回收量、废物利用率、城市矿产产量、产业共生及政策落实进展等数据,同时发布废旧纺织品、电子废物、再生资源等专题报告。在中国实现2060年碳中和目标的进程中,中国循环经济协会的数据是追踪循环经济转型、绿色制造和工业资源效率进展的重要依据。" + }, + "website": "https://www.chinacace.org/", + "data_url": "https://www.chinacace.org/patents/cycle_economy_report/", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "environment", + "industry", + "economics", + "energy" + ], + "update_frequency": "annual", + "tags": [ + "循环经济", + "circular-economy", + "再生资源", + "renewable-resources", + "废物利用", + "waste-utilization", + "城市矿产", + "urban-mining", + "碳中和", + "carbon-neutrality", + "绿色制造", + "green-manufacturing", + "资源回收", + "resource-recycling", + "废旧纺织品", + "waste-textiles", + "电子废物", + "e-waste", + "产业共生", + "industrial-symbiosis", + "cace", + "资源综合利用", + "comprehensive-resource-utilization", + "低碳", + "low-carbon" + ], + "data_content": { + "en": [ + "China Circular Economy Development Report: annual assessment of national circular economy progress, policy implementation, and key performance indicators", + "Resource recycling volumes: statistics on collection and processing of scrap metals, waste paper, plastics, glass, and rubber", + "Urban mining output: secondary resource recovery from electronic waste, end-of-life vehicles, and construction demolition", + "Waste textile utilization: production, collection, and reuse rates for waste clothing and fiber materials", + "Industrial symbiosis data: resource exchange and waste heat utilization within industrial parks", + "Circular economy enterprise directory: registered companies engaged in recycling and resource recovery businesses", + "Policy tracking reports: implementation of national circular economy promotion laws and five-year plan targets", + "Carbon reduction contributions: estimated emissions reductions attributable to circular economy activities" + ], + "zh": [ + "中国循环经济发展报告:循环经济国家进展年度评估、政策落实情况及关键绩效指标", + "再生资源回收量:废金属、废纸、废塑料、废玻璃和废橡胶的回收和加工统计数据", + "城市矿产产量:来自电子废物、报废汽车和建筑拆除的再生资源回收情况", + "废旧纺织品利用:废旧服装和纤维材料的产量、回收量和再利用率", + "产业共生数据:工业园区内的资源交换和余热利用情况", + "循环经济企业名录:从事再生资源回收利用业务的注册企业信息", + "政策追踪报告:国家循环经济促进法及五年规划目标的落实进展", + "碳减排贡献:循环经济活动带来的温室气体减排量估算" + ] + }, + "has_api": false, + "file_path": "china/resources/environment/china-cace.json" + }, + { + "id": "china-caep", + "name": { + "en": "Chinese Academy of Environmental Planning", + "zh": "生态环境部环境规划院" + }, + "description": { + "en": "The Chinese Academy of Environmental Planning (CAEP) is a national-level research institute directly under China's Ministry of Ecology and Environment (MEE). Founded in 2001 and headquartered in Beijing, CAEP is the primary institution responsible for environmental planning, environmental economics, and policy research supporting China's national ecological and environmental governance. CAEP provides technical support for China's national environmental five-year plans, pollution prevention and control action plans, and carbon neutrality strategies. Key research areas include environmental economic accounting (green GDP), pollution source census data, environmental carrying capacity assessment, ecological redline mapping, and integrated watershed management. CAEP publishes the authoritative 'China Environmental Economic Accounting' reports and manages key environmental planning databases. It plays a central role in designing China's ecological compensation mechanisms, emission trading systems, and environmental impact assessment frameworks.", + "zh": "生态环境部环境规划院(CAEP)是生态环境部直属的国家级科研机构,2001年成立,总部位于北京。CAEP是支撑中国国家生态环境治理的环境规划、环境经济学和政策研究首要机构,为国家环境五年规划、污染防治行动计划和碳中和战略提供技术支撑。主要研究方向包括环境经济核算(绿色GDP)、污染源普查数据、环境承载力评估、生态保护红线划定和流域综合管理。CAEP发布权威的《中国环境经济核算》报告,管理重要的环境规划数据库,在设计中国生态补偿机制、排污权交易制度和环境影响评价体系中发挥核心作用。" + }, + "website": "http://www.caep.org.cn", + "data_url": "http://www.caep.org.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "environment", + "climate", + "economics", + "governance" + ], + "update_frequency": "annual", + "tags": [ + "生态环境部环境规划院", + "caep", + "chinese-academy-of-environmental-planning", + "环境规划", + "environmental-planning", + "环境经济核算", + "environmental-economic-accounting", + "绿色GDP", + "green-gdp", + "污染源普查", + "pollution-source-census", + "环境承载力", + "environmental-carrying-capacity", + "生态保护红线", + "ecological-redline", + "碳中和", + "carbon-neutrality", + "生态补偿", + "ecological-compensation", + "排污权交易", + "emission-trading", + "环境影响评价", + "environmental-impact-assessment", + "生态环境部", + "ministry-of-ecology-and-environment" + ], + "data_content": { + "en": [ + "China Environmental Economic Accounting (CEEA): annual green GDP accounting reports quantifying the economic value of environmental services and the cost of environmental degradation across China", + "Pollution source census data: national surveys of industrial, agricultural, and domestic pollution sources with discharge volumes, types, and geographic distribution", + "Environmental carrying capacity assessments: analysis of regional resource and environmental limits supporting land use planning and industrial layout decisions", + "Ecological redline mapping: technical data and spatial datasets for China's national ecological conservation redlines protecting critical ecosystems", + "National environmental five-year plan technical support: baseline data, target indicators, and evaluation frameworks for China's environmental planning cycles", + "Carbon emission accounting and neutrality research: sector-level carbon emission inventories, mitigation scenario modeling, and carbon neutrality pathway analysis for China", + "Ecological compensation policy research: data and evaluation frameworks for China's payment for ecosystem services and inter-regional ecological compensation systems", + "Watershed integrated management: water environment quality data, pollution load models, and total pollutant control plans for major Chinese river basins" + ], + "zh": [ + "中国环境经济核算(CEEA):量化中国环境服务经济价值和环境退化成本的年度绿色GDP核算报告", + "污染源普查数据:全国工业、农业和生活污染源的排放量、排放类型和地理分布调查数据", + "环境承载力评估:支撑土地利用规划和产业布局决策的区域资源环境承载力分析", + "生态保护红线划定:保护重要生态系统的全国生态保护红线技术数据和空间数据集", + "国家环境五年规划技术支撑:中国环境规划周期的基线数据、目标指标和评估框架", + "碳排放核算与碳中和研究:中国分部门碳排放清单、减排情景模拟和碳中和路径分析", + "生态补偿政策研究:中国生态系统服务付费和区域间生态补偿制度的数据与评估框架", + "流域综合管理:主要流域水环境质量数据、污染负荷模型和总量控制方案" + ] + }, + "has_api": false, + "file_path": "china/resources/environment/china-caep.json" + }, + { + "id": "china-ceads", + "name": { + "en": "Carbon Emission Accounts and Datasets for China (CEADs)", + "zh": "中国碳排放核算数据库(CEADs)" + }, + "description": { + "en": "The Carbon Emission Accounts and Datasets (CEADs) for China is a leading open-access research database providing comprehensive, peer-reviewed carbon dioxide (CO2) and greenhouse gas emission inventories for China. Developed by a consortium of Chinese universities and research institutions, CEADs offers province-level, city-level, and sector-level CO2 emission estimates, consumption-based carbon accounts, and multi-regional input-output tables for China. It is widely used in climate policy research, environmental economics, and carbon neutrality target analysis.", + "zh": "中国碳排放核算数据库(CEADs)是由中国多所高校和科研机构联合开发的开放获取碳排放数据库,提供经过同行评审的中国CO2及温室气体排放清单。CEADs涵盖省级、城市级和行业级CO2排放估算、基于消费的碳账户以及中国多区域投入产出表,广泛应用于气候政策研究、环境经济学分析以及碳中和目标研究。" + }, + "website": "https://www.ceads.net.cn", + "data_url": "https://ceads.net.cn/data/", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "environment", + "climate", + "energy", + "economics" + ], + "update_frequency": "annual", + "tags": [ + "碳排放", + "carbon-emissions", + "co2", + "温室气体", + "greenhouse-gas", + "碳核算", + "carbon-accounting", + "省级排放", + "provincial-emissions", + "城市碳排放", + "city-level-emissions", + "投入产出", + "input-output", + "能源消费", + "energy-consumption", + "碳中和", + "carbon-neutrality", + "气候变化", + "climate-change", + "双碳", + "net-zero", + "emission-inventory", + "排放清单", + "ceads" + ], + "data_content": { + "en": [ + "National and provincial CO2 emission inventories by energy type and economic sector (1997–present)", + "City-level carbon emission estimates for 340+ Chinese prefecture-level cities", + "Consumption-based carbon accounts: emissions embedded in domestic trade and final demand", + "China multi-regional input-output (MRIO) tables for emissions attribution analysis", + "Sector-level emissions: industry, transport, residential, agriculture, and waste", + "Energy balance tables: fossil fuel consumption, electricity generation, and energy mix", + "CO2 emission factors for Chinese energy products and industrial processes", + "Emission data supporting China's NDC and carbon peaking/neutrality commitments", + "Peer-reviewed datasets published in Nature, Science, and high-impact journals" + ], + "zh": [ + "全国及省级分能源类型和经济部门CO2排放清单(1997年至今)", + "340余个地级城市的碳排放估算数据", + "基于消费的碳账户:国内贸易和最终需求中隐含的碳排放", + "中国多区域投入产出(MRIO)表,用于碳排放归因分析", + "分部门排放:工业、交通、居民、农业和废弃物", + "能源平衡表:化石燃料消费、发电量和能源结构", + "中国能源产品和工业过程的CO2排放因子", + "支撑中国国家自主贡献(NDC)和碳达峰碳中和目标的排放数据", + "发表于《自然》、《科学》等高影响力期刊的同行评审数据集" + ] + }, + "has_api": false, + "file_path": "china/resources/environment/china-ceads.json" + }, + { + "id": "china-cern", + "name": { + "en": "Chinese Ecosystem Research Network (CERN)", + "zh": "中国生态系统研究网络" + }, + "description": { + "en": "The Chinese Ecosystem Research Network (CERN) is a national ecosystem monitoring and research network operated by the Chinese Academy of Sciences. Established in 1988, CERN comprises over 40 ecosystem research stations distributed across China's major biomes including forests, grasslands, wetlands, croplands, deserts, and coastal ecosystems. Each station conducts systematic, long-term monitoring of soil, water, atmosphere, and biodiversity, following standardized protocols for cross-site comparability. CERN data are accessible through its dedicated data sharing platform, providing researchers with decades of ecosystem dynamics records. The network is China's primary source for integrated terrestrial ecosystem observation data, supporting national carbon sink assessments, biodiversity conservation planning, land degradation monitoring, and responses to climate change. CERN collaborates with global networks including ILTER (International Long-Term Ecological Research) and FLUXNET.", + "zh": "中国生态系统研究网络(CERN)是由中国科学院主管的国家生态系统监测与研究网络,成立于1988年,由分布于中国各主要生态系统类型(包括森林、草地、湿地、农田、荒漠和海岸带)的40余个生态系统研究站组成。各站点按照统一规范对土壤、水体、大气和生物多样性进行系统性长期监测,确保跨站点数据的可比性。CERN通过专属数据共享平台开放数据,为研究人员提供数十年的生态系统动态记录。CERN是中国陆地生态系统综合观测数据的主要来源,支持国家碳汇评估、生物多样性保护规划、土地退化监测和气候变化响应研究。CERN参与国际长期生态研究(ILTER)和FLUXNET等全球监测网络合作。" + }, + "website": "https://cern.ac.cn", + "data_url": "https://cern.ac.cn/0index/index.asp", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "environment", + "ecology", + "biodiversity", + "climate" + ], + "update_frequency": "annual", + "tags": [ + "中国生态系统研究网络", + "cern", + "生态监测", + "ecosystem-monitoring", + "长期生态研究", + "long-term-ecological-research", + "土壤数据", + "soil-data", + "碳通量", + "carbon-flux", + "生物多样性", + "biodiversity", + "草地生态", + "grassland-ecology", + "森林生态", + "forest-ecology", + "湿地", + "wetland", + "荒漠化", + "desertification", + "气候变化", + "climate-change", + "ilter", + "fluxnet", + "中国科学院", + "chinese-academy-of-sciences", + "碳汇", + "carbon-sink" + ], + "data_content": { + "en": [ + "Soil monitoring data: soil organic carbon, nitrogen, phosphorus, bulk density, moisture, and texture from 40+ stations", + "Water quality and hydrology: streamflow, groundwater level, water chemistry, precipitation chemistry at each station", + "Atmosphere: precipitation amount and chemistry, air temperature, humidity, wind speed, net radiation, CO2 concentration", + "Biological community data: plant biomass, species diversity, phenology, leaf area index across major biome types", + "Carbon and energy flux: eddy covariance measurements of carbon, water, and energy exchange between ecosystems and atmosphere", + "Land use and vegetation change: long-term time series of vegetation structure and land cover at station sites", + "Desert and dryland ecosystem data: wind erosion, sand transport, soil crusting processes from arid zone stations", + "Cropland ecosystem data: crop yield, nutrient cycling, irrigation water use, soil health from agricultural stations", + "Coastal and marine ecosystem data: coastal erosion, mangrove, and seagrass dynamics from coastal stations", + "Synthesis datasets: integrated multi-station trend analyses for China's national ecosystem assessments" + ], + "zh": [ + "土壤监测数据:40余个站点的土壤有机碳、氮、磷、容重、水分和质地", + "水质与水文:各站点的径流量、地下水位、水体化学成分和降水化学", + "大气数据:降水量及化学组成、气温、湿度、风速、净辐射、CO2浓度", + "生物群落数据:主要生态系统类型的植物生物量、物种多样性、物候和叶面积指数", + "碳与能量通量:生态系统与大气之间碳、水和能量交换的涡度协方差测量", + "土地利用与植被变化:站点尺度的植被结构和土地覆盖长期时间序列", + "荒漠及旱地生态系统数据:来自干旱区站点的风蚀、沙尘输运和土壤结皮过程", + "农田生态系统数据:来自农业站点的作物产量、养分循环、灌溉用水和土壤健康", + "海岸带与海洋生态系统数据:来自海岸站点的海岸侵蚀、红树林和海草动态", + "综合数据集:面向全国生态系统评估的多站点综合趋势分析" + ] + }, + "has_api": false, + "file_path": "china/resources/environment/china-cern.json" + }, + { + "id": "china-cigem", + "name": { + "en": "China Institute of Geo-Environment Monitoring", + "zh": "中国地质环境监测院" + }, + "description": { + "en": "The China Institute of Geo-Environment Monitoring (CIGEM) is the national authority for geological environment monitoring in China, operating under the China Geological Survey (Ministry of Natural Resources). Established to safeguard public safety and natural resource management, CIGEM maintains the country's most comprehensive network for monitoring geological hazards (landslides, debris flows, ground subsidence, karst collapse), groundwater dynamics, and geological environment quality. The institute produces authoritative annual reports on China's geological hazard situation, groundwater resources, and land subsidence, and operates the national early-warning system for geological disasters.", + "zh": "中国地质环境监测院(CIGEM)是中国地质调查局(自然资源部)下属的国家地质环境监测权威机构。CIGEM建立了全国最完善的地质灾害监测网络,覆盖滑坡、泥石流、地面沉降及岩溶塌陷等灾害类型,同时监测地下水动态和地质环境质量。该机构发布权威的年度地质灾害通报、地下水资源报告和地面沉降报告,并运营全国地质灾害气象预警系统。" + }, + "website": "http://www.cigem.cgs.gov.cn/", + "data_url": "http://www.cigem.cgs.gov.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "geology", + "environment", + "earth-sciences", + "water" + ], + "update_frequency": "annual", + "tags": [ + "地质环境", + "geo-environment", + "地质灾害", + "geological-hazards", + "滑坡", + "landslide", + "泥石流", + "debris-flow", + "地面沉降", + "land-subsidence", + "地下水", + "groundwater", + "岩溶", + "karst", + "地质灾害预警", + "early-warning", + "地质环境监测", + "geological-monitoring", + "地质环境年报", + "geological-environment-report", + "中国地质调查局", + "china-geological-survey" + ], + "data_content": { + "en": [ + "Geological hazard inventory: comprehensive database of landslides, debris flows, collapses, and ground fissures across China", + "Groundwater monitoring: water table levels, quality, and dynamic changes in major aquifer systems", + "Land subsidence: deformation measurements for major cities including Beijing, Shanghai, and Xi'an", + "Karst collapse: distribution and occurrence data for karst geological collapse events", + "Geological disaster meteorological early warning: risk forecasting data by region and season", + "Annual China Geological Hazard Bulletin: national assessment of geological disaster occurrence and losses", + "Mine geological environment: monitoring data for mining-induced geological changes and restoration", + "Geo-environment quality assessment: regional evaluations of geological environment conditions", + "Soil erosion: data on water-induced and wind-induced soil loss by watershed", + "Geological environment database: integrated GIS data on national geo-environment status" + ], + "zh": [ + "地质灾害数据库:全国滑坡、泥石流、崩塌及地裂缝综合数据库", + "地下水监测:主要含水层系统的水位、水质及动态变化", + "地面沉降:北京、上海、西安等主要城市形变监测数据", + "岩溶塌陷:岩溶地质塌陷事件的分布与发生数据", + "地质灾害气象预警:分地区、分季节的风险预报数据", + "中国地质灾害通报:全国地质灾害发生及损失年度评估", + "矿山地质环境:采矿引发地质变化及修复监测数据", + "地质环境质量评估:区域地质环境状况综合评价", + "水土流失:各流域水力与风力侵蚀土壤流失数据", + "地质环境数据库:全国地质环境状况综合GIS数据" + ] + }, + "has_api": false, + "file_path": "china/resources/environment/china-cigem.json" + }, + { + "id": "china-cnemc", + "name": { + "en": "China National Environmental Monitoring Centre", + "zh": "中国环境监测总站" + }, + "description": { + "en": "The China National Environmental Monitoring Centre (CNEMC) is the national technical support agency under the Ministry of Ecology and Environment (MEE), responsible for operating China's national environmental monitoring network. CNEMC publishes real-time and historical data on air quality, surface water quality, soil, and acoustic environment across more than 1,600 monitoring stations nationwide. It provides authoritative environmental quality data supporting policy decisions, public health protection, and pollution control enforcement.", + "zh": "中国环境监测总站(CNEMC)是生态环境部下属的国家环境监测技术支撑机构,负责运营覆盖全国1600余个站点的国家环境监测网络。发布空气质量、地表水质、土壤和声环境的实时及历史监测数据,为政策决策、公众健康保护和污染防治执法提供权威环境质量数据。" + }, + "website": "https://www.cnemc.cn", + "data_url": "https://www.cnemc.cn/sssj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "environment", + "public-health" + ], + "update_frequency": "real-time", + "tags": [ + "环境监测", + "environmental-monitoring", + "空气质量", + "air-quality", + "aqi", + "pm2.5", + "pm10", + "水质监测", + "water-quality", + "地表水", + "surface-water", + "土壤监测", + "soil-monitoring", + "声环境", + "noise-monitoring", + "实时数据", + "real-time-data", + "cnemc", + "中国环境监测总站", + "生态环境部", + "国控站", + "national-monitoring-station", + "污染", + "pollution", + "六项污染物", + "six-pollutants" + ], + "data_content": { + "en": [ + "Real-time Air Quality Index (AQI) - Hourly AQI values for 338+ cities and 1,600+ monitoring stations nationwide", + "Six Criteria Pollutants - Real-time concentrations of PM2.5, PM10, SO2, NO2, CO, and O3", + "Air Quality Rankings - Daily and monthly city rankings by air quality", + "Historical Air Quality Data - Hourly, daily, and monthly historical pollutant data by city and station", + "Surface Water Quality - Real-time monitoring at key river basins including Yangtze, Yellow, Pearl, and Hai Rivers", + "Groundwater Quality - Monitoring data from national groundwater quality assessment network", + "Drinking Water Source Quality - Surveillance data for municipal drinking water sources", + "Acoustic Environment Monitoring - Urban noise levels at functional zone monitoring points", + "Annual Environmental Quality Bulletins - Comprehensive national environmental quality reports", + "Soil Pollution Monitoring - Results from national soil pollution status surveys" + ], + "zh": [ + "实时空气质量指数(AQI)- 全国338个城市及1600余个监测站的逐时AQI数据", + "六项大气污染物 - PM2.5、PM10、SO2、NO2、CO、O3实时浓度", + "空气质量排名 - 城市日排名和月排名", + "历史空气质量数据 - 按城市和站点的逐时、日均、月均历史污染物数据", + "地表水水质 - 长江、黄河、珠江、海河等重点流域实时监测", + "地下水水质 - 国家地下水水质评估网络监测数据", + "集中式饮用水水源地水质 - 城市饮用水水源地监测数据", + "声环境监测 - 各功能区城市噪声监测数据", + "年度环境质量公报 - 综合性国家环境质量年度报告", + "土壤污染监测 - 全国土壤污染状况详查结果" + ] + }, + "has_api": false, + "file_path": "china/resources/environment/china-cnemc.json" + }, + { + "id": "china-cnesa", + "name": { + "en": "China Energy Storage Alliance", + "zh": "中关村储能产业技术联盟" + }, + "description": { + "en": "The China Energy Storage Alliance (CNESA), officially the Zhongguancun Energy Storage Industry Technology Alliance, is China's leading national industry organization for the energy storage sector, established in 2011. CNESA publishes authoritative annual white papers and market reports tracking the deployment of grid-scale, commercial, and residential energy storage systems, covering electrochemical batteries (lithium-ion, flow batteries), pumped hydro, thermal storage, and compressed air energy storage. As China is the world's largest and fastest-growing energy storage market, CNESA's Global Energy Storage Database and annual market reports are primary references for energy transition research, investment analysis, and policy development.", + "zh": "中关村储能产业技术联盟(CNESA)是中国储能行业领先的全国性行业组织,成立于2011年。联盟发布权威年度白皮书和市场报告,追踪电网侧、用户侧和户用储能系统的装机情况,涵盖电化学储能(锂离子、液流电池)、抽水蓄能、热储能和压缩空气储能。中国是全球最大、增速最快的储能市场,CNESA全球储能数据库和年度市场报告是能源转型研究、投资分析和政策制定的重要参考来源。" + }, + "website": "https://www.cnesa.org", + "data_url": "https://www.cnesa.org", + "api_url": null, + "country": "CN", + "domains": [ + "energy", + "technology", + "environment", + "industry" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "china", + "energy-storage", + "储能", + "中关村储能联盟", + "cnesa", + "battery", + "电池", + "lithium-ion", + "锂离子", + "grid-storage", + "电网储能", + "pumped-hydro", + "抽水蓄能", + "renewable-energy", + "可再生能源", + "energy-transition", + "能源转型" + ], + "data_content": { + "en": [ + "China Energy Storage Market Annual White Paper - Comprehensive annual market data on installed capacity by technology and application", + "Global Energy Storage Database - Worldwide project-level energy storage installation data", + "Electrochemical Storage Statistics - Lithium-ion, flow battery, and sodium-ion deployment data", + "Grid-Scale Storage Data - Utility-scale storage projects by province, capacity, and grid function", + "Commercial and Industrial Storage Reports - Behind-the-meter storage deployment and economics", + "Policy Research Reports - Analysis of energy storage incentive policies and market mechanisms", + "Cost and Performance Tracking - Battery cost trends and technology performance benchmarks" + ], + "zh": [ + "中国储能市场年度白皮书 - 按技术和应用分类的年度装机容量市场数据", + "全球储能数据库 - 全球储能项目级装机数据", + "电化学储能统计 - 锂离子、液流电池、钠离子电池装机数据", + "电网侧储能数据 - 按省份、容量和电网功能分类的电网侧储能项目", + "工商业储能报告 - 工商业用户侧储能装机量和经济性", + "政策研究报告 - 储能激励政策和市场机制分析", + "成本和性能跟踪 - 电池成本趋势和技术性能基准" + ] + }, + "authority_level": "other", + "has_api": false, + "file_path": "china/resources/environment/china-cnesa.json" + }, + { + "id": "china-craes", + "name": { + "en": "Chinese Research Academy of Environmental Sciences", + "zh": "中国环境科学研究院" + }, + "description": { + "en": "The Chinese Research Academy of Environmental Sciences (CRAES), affiliated with the Ministry of Ecology and Environment, is China's highest-level national environmental research institution. Established in 1978, CRAES leads applied research on environmental pollution control, ecological protection, and environmental standards development. It provides critical technical support for national environmental management decisions, operates key environmental monitoring programs, and maintains authoritative environmental databases. CRAES has developed and revised hundreds of national environmental standards and technical guidelines, including those for water pollution control, air quality, soil remediation, and solid waste management. The academy is responsible for China's national ecological function zoning, environmental capacity assessments, and supporting major environmental policy documents including the Five-Year Plans for ecological environment protection.", + "zh": "中国环境科学研究院(环科院)隶属生态环境部,是国家最高级别的环境研究机构,1978年建立。环科院在环境污染治理、生态保护和环境标准制定等应用研究领域处于全国领先地位,为国家环境管理决策提供关键技术支撑,运营重要的环境监测项目,维护权威环境数据库。环科院主持制修订数百项国家环境标准和技术规范,涵盖水污染控制、空气质量、土壤修复和固体废物管理。研究院负责全国生态功能区划、环境容量评估工作,并为生态环境保护五年规划等重要环境政策文件提供技术支持。" + }, + "website": "https://www.craes.cn", + "data_url": "https://www.craes.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "environment", + "science", + "policy" + ], + "update_frequency": "irregular", + "tags": [ + "中国环境科学研究院", + "craes", + "chinese-research-academy-of-environmental-sciences", + "环境污染", + "environmental-pollution", + "生态保护", + "ecological-protection", + "环境标准", + "environmental-standards", + "水污染", + "water-pollution", + "空气质量", + "air-quality", + "土壤修复", + "soil-remediation", + "固体废物", + "solid-waste", + "生态功能区划", + "ecological-function-zoning", + "环境容量", + "environmental-capacity", + "生态环境部", + "ministry-of-ecology-and-environment", + "环境监测", + "environmental-monitoring", + "污染控制", + "pollution-control", + "环境政策", + "environmental-policy", + "五年规划", + "five-year-plan" + ], + "data_content": { + "en": [ + "Environmental standards and technical guidelines: hundreds of national environmental standards (GB/HJ series) covering water, air, soil, noise, and solid waste developed or co-developed by CRAES", + "Environmental capacity assessments: national and regional estimates of pollutant carrying capacity for major river basins, air sheds, and soil environments", + "Ecological function zoning data: national ecological function zone maps, ecosystem service evaluations, and biodiversity protection area delineations", + "Water environment research data: datasets on river and lake water quality, sediment contamination, aquatic ecosystem health assessments, and pollution source inventories", + "Soil and groundwater pollution data: contaminated site surveys, remediation technology assessments, and national soil pollution status reports", + "Air pollution control research: emission factor databases, source apportionment studies, atmospheric dispersion modeling data, and control technology effectiveness evaluations", + "Solid waste and hazardous materials: waste characterization data, disposal technology assessments, and industrial hazardous waste inventories", + "Environmental health risk assessments: exposure pathway studies, toxicological reference data for Chinese populations, and environmental health risk evaluation frameworks" + ], + "zh": [ + "环境标准和技术规范:环科院主持或参与制定数百项国家环境标准(GB/HJ系列),涵盖水、气、土、噪声和固体废物", + "环境容量评估:主要流域、大气区和土壤环境的全国及区域污染物承载能力评估", + "生态功能区划数据:全国生态功能区划图、生态系统服务价值评估和生物多样性保护区划定", + "水环境研究数据:河湖水质、底泥污染、水生生态系统健康评估和污染源清单", + "土壤和地下水污染数据:污染地块调查、修复技术评估和全国土壤污染状况报告", + "大气污染控制研究:排放因子数据库、来源解析研究、大气扩散模型数据和控制技术效果评估", + "固体废物和危险化学品:废物特征化数据、处置技术评估和工业危险废物清单", + "环境健康风险评估:暴露途径研究、中国人群毒理学参考数据和环境健康风险评估框架" + ] + }, + "has_api": false, + "file_path": "china/resources/environment/china-craes.json" + }, + { + "id": "china-crra", + "name": { + "en": "China Association of Circular Economy", + "zh": "中国再生资源回收利用协会" + }, + "description": { + "en": "The China Association of Circular Economy (CRRA), formally known as the China Renewable Resources Recycling Association, is the national industry organization for China's recycling and circular economy sector. CRRA publishes annual reports and statistics on the recovery and recycling of key materials including scrap metal (steel, copper, aluminum), waste paper, waste plastics, waste rubber, waste glass, and electronic waste. As China is the world's largest producer and recycler of secondary materials, CRRA data provides essential insights into global commodity supply chains, resource sustainability, and China's transition to a circular economy.", + "zh": "中国再生资源回收利用协会是中国再生资源回收利用行业的全国性行业组织,发布废钢铁、废铜铝、废纸、废塑料、废橡胶、废玻璃、电子废弃物等主要再生资源的回收量和利用量年度统计报告。中国是全球最大的再生资源生产国和利用国,协会数据对全球大宗商品供应链、资源可持续性以及中国循环经济转型研究具有重要参考价值。" + }, + "website": "https://www.crra.org.cn", + "data_url": "https://www.crra.org.cn", + "api_url": null, + "country": "CN", + "domains": [ + "environment", + "circular-economy", + "industry", + "resources" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "china", + "recycling", + "再生资源", + "循环经济", + "circular-economy", + "废旧物资", + "waste-recycling", + "scrap-metal", + "废钢铁", + "waste-paper", + "废纸", + "plastics-recycling", + "废塑料", + "e-waste", + "电子废弃物", + "sustainability", + "资源化利用" + ], + "data_content": { + "en": [ + "Recycling Volume Statistics - Annual recovery volumes for major secondary materials by type and region", + "Scrap Metal Data - Collection, processing, and utilization of waste steel, copper, and aluminum", + "Waste Paper and Plastics - Recovery rates and utilization for paper, plastics, and rubber", + "Electronic Waste Statistics - Collection and recycling data for end-of-life electronics", + "China Recycling Industry Annual Report - Comprehensive review of sector scale, structure, and development", + "Market Price Monitoring - Price trends for major recycled materials", + "Policy Research Reports - Analysis of circular economy policies and regulatory developments" + ], + "zh": [ + "再生资源回收量统计 - 按品种和地区分类的主要再生资源年度回收量", + "废金属数据 - 废钢铁、废铜、废铝的回收、加工和利用情况", + "废纸和废塑料 - 废纸、废塑料、废橡胶回收率和利用情况", + "电子废弃物统计 - 废旧电器电子产品回收和拆解利用数据", + "中国再生资源行业年度报告 - 行业规模、结构和发展全面综述", + "市场价格监测 - 主要再生资源品种价格走势", + "政策研究报告 - 循环经济政策和监管动态分析" + ] + }, + "authority_level": "other", + "has_api": false, + "file_path": "china/resources/environment/china-crra.json" + }, + { + "id": "china-ipe", + "name": { + "en": "Institute of Public & Environmental Affairs", + "zh": "公众环境研究中心" + }, + "description": { + "en": "The Institute of Public & Environmental Affairs (IPE) is a leading Chinese environmental NGO founded in 2006. It operates China's most comprehensive open environmental data platform, aggregating and visualizing government-sourced pollution records, emission data, and compliance information across air, water, soil, radiation, and climate domains. IPE's flagship products include the Blue Map (污染地图) pollution database, the Green Supply Chain CITI Index for supplier environmental performance, and the Corporate Climate Action Index. IPE collects data from the Ministry of Ecology and Environment, local environmental agencies, and listed companies' environmental disclosures to create interactive maps, provincial carbon indexes, and supply chain environmental risk ratings used by multinational corporations, investors, and policymakers worldwide.", + "zh": "公众环境研究中心(IPE)成立于2006年,是中国领先的环保非政府组织,运营着中国最全面的开放环境数据平台。该平台整合并可视化来自政府的污染记录、排放数据和合规信息,覆盖大气、水体、土壤、辐射和气候等领域。主要产品包括蔚蓝地图污染数据库、供应链CITI指数(企业环境信息透明度指数)和企业气候行动指数。IPE从生态环境部、地方环保部门和上市公司环境披露中采集数据,生成交互式地图、省级双碳指数和供应链环境风险评级,被跨国企业、投资机构和政策制定者广泛使用。" + }, + "website": "https://www.ipe.org.cn", + "data_url": "https://www.ipe.org.cn/AirMap_fxy/AirMap.html", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "environment", + "climate", + "pollution", + "corporate-governance", + "sustainability" + ], + "update_frequency": "daily", + "tags": [ + "公众环境研究中心", + "ipe", + "蔚蓝地图", + "blue-map", + "pollution", + "污染", + "air-quality", + "空气质量", + "water-pollution", + "水污染", + "soil-contamination", + "土壤污染", + "carbon-emissions", + "碳排放", + "双碳", + "dual-carbon", + "supply-chain", + "供应链", + "CITI指数", + "green-supply-chain", + "绿色供应链", + "environmental-disclosure", + "环境信息披露", + "esg", + "corporate-sustainability", + "企业碳中和", + "biodiversity", + "生物多样性", + "provincial-carbon-index", + "省级双碳指数", + "climate-action", + "气候行动" + ], + "data_content": { + "en": [ + "Air Quality Database: Real-time and historical air pollution records (PM2.5, PM10, SO2, NOx, CO, O3) from thousands of monitoring stations across all Chinese cities", + "Water Pollution Records: Enterprise wastewater discharge violations, river basin water quality assessments, and drinking water source protection data", + "Soil Contamination: Industrial pollution sources, contaminated site records, and soil remediation progress", + "Carbon & Energy Maps: Provincial carbon emission indexes, energy transition tracking, photovoltaic installation mapping, and enterprise carbon disclosure", + "Supply Chain CITI Index: Environmental transparency and compliance ratings for thousands of Chinese suppliers used by global brands", + "Corporate Climate Action Index: Assessment of listed companies' climate commitments, emission reduction targets, and green investment", + "Biodiversity Data: Natural reserve mapping, ecological red-line areas, and species diversity monitoring", + "Radiation Monitoring: Nuclear facility radiation monitoring data from environmental protection agencies" + ], + "zh": [ + "空气质量数据库:全国城市数千个监测站的PM2.5、PM10、SO2、NOx、CO、O3实时和历史数据", + "水污染记录:企业废水排放违规记录、流域水质评估和饮用水源保护数据", + "土壤污染:工业污染源、污染地块台账和土壤修复进展", + "碳排放与能源地图:省级双碳指数、能源转型追踪、光伏装机地图和企业碳披露", + "供应链CITI指数:全球品牌使用的数千家中国供应商的环境透明度和合规评级", + "企业气候行动指数:上市公司气候承诺、减排目标和绿色投资评估", + "生物多样性:自然保护区地图、生态红线范围和物种多样性监测", + "辐射监测:环保部门核设施周边辐射监测数据" + ] + }, + "has_api": false, + "file_path": "china/resources/environment/china-ipe.json" + }, + { + "id": "china-mee", + "name": { + "en": "Ministry of Ecology and Environment of China - Environmental Data", + "zh": "生态环境部环境数据" + }, + "description": { + "en": "Official environmental monitoring and statistical data from China's Ministry of Ecology and Environment (MEE). Covers air quality, water quality, soil contamination, pollutant emissions, noise monitoring, nuclear safety, and ecological assessments. Provides real-time monitoring data, monthly/quarterly/annual environmental quality reports, national pollutant census results, and environmental impact assessment information. The ministry is responsible for nationwide ecological and environmental protection, pollution prevention, and nuclear and radiation safety oversight.", + "zh": "中国生态环境部发布的官方环境监测与统计数据,涵盖空气质量、水环境质量、土壤污染、污染物排放、噪声监测、核安全和生态评估等领域。提供实时监测数据、月度/季度/年度环境质量报告、全国污染源普查结果和环境影响评价信息。该部负责全国生态环境保护、污染防治和核与辐射安全监管工作。" + }, + "website": "https://www.mee.gov.cn/", + "data_url": "https://www.mee.gov.cn/hjzl/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "environment", + "climate", + "public-health" + ], + "update_frequency": "monthly", + "tags": [ + "环境", + "environment", + "生态", + "ecology", + "空气质量", + "air-quality", + "aqi", + "pm2.5", + "水质", + "water-quality", + "污染物排放", + "pollutant-emissions", + "土壤污染", + "soil-contamination", + "噪声监测", + "noise-monitoring", + "核安全", + "nuclear-safety", + "环境影响评价", + "environmental-impact-assessment", + "eia", + "生态环境部", + "mee", + "碳排放", + "carbon-emissions", + "环境质量报告", + "environmental-quality-report" + ], + "data_content": { + "en": [ + "Real-time and historical air quality monitoring data (AQI, PM2.5, PM10, SO2, NO2, CO, O3) for cities nationwide", + "Surface water quality monitoring for major rivers, lakes, and reservoirs across China", + "National soil contamination survey and monitoring results", + "Industrial and municipal pollutant discharge statistics (wastewater, waste gas, solid waste)", + "Annual environmental statistics bulletin with national and provincial breakdowns", + "Environmental noise monitoring reports for cities", + "Nuclear and radiation safety monitoring and incident reports", + "Ecological red line delineation and nature reserve assessment data", + "National pollutant census data (conducted periodically)", + "Environmental impact assessment approval records and public announcements", + "Central environmental inspection reports and enforcement actions", + "Carbon emission trading and climate change related statistics" + ], + "zh": [ + "全国城市实时及历史空气质量监测数据(AQI、PM2.5、PM10、SO2、NO2、CO、O3)", + "全国主要河流、湖泊、水库地表水水质监测数据", + "全国土壤污染状况调查与监测结果", + "工业和城镇污染物排放统计(废水、废气、固体废物)", + "年度生态环境统计公报(含全国及分省数据)", + "城市环境噪声监测报告", + "核与辐射安全监测及事件报告", + "生态保护红线划定与自然保护区评估数据", + "全国污染源普查数据(定期开展)", + "环境影响评价审批记录与公示公告", + "中央生态环境保护督察报告与执法行动", + "碳排放权交易与应对气候变化相关统计" + ] + }, + "has_api": false, + "file_path": "china/resources/environment/china-mee.json" + }, + { + "id": "china-ncsc", + "name": { + "en": "National Center for Climate Change Strategy and International Cooperation", + "zh": "国家应对气候变化战略研究和国际合作中心" + }, + "description": { + "en": "The National Center for Climate Change Strategy and International Cooperation (NCSC) is a specialized think tank under China's Ministry of Ecology and Environment (MEE), established in 2012. NCSC serves as China's primary policy research institution on climate change, responsible for strategic research on national greenhouse gas emissions reduction, carbon market policy, climate finance, and international climate negotiations. It supports China's participation in UNFCCC negotiations and conducts research on the Paris Agreement implementation. NCSC produces annual China's Policies and Actions for Addressing Climate Change reports, emissions inventory studies, low-carbon transition pathway analyses, and carbon pricing mechanism research that directly inform China's climate governance and policy formulation.", + "zh": "国家应对气候变化战略研究和国际合作中心(NCSC)是生态环境部下属专业智库,成立于2012年,是中国应对气候变化领域主要政策研究机构。NCSC负责国家温室气体减排、碳市场政策、气候融资和国际气候谈判战略研究,支持中国参与《联合国气候变化框架公约》谈判,并就《巴黎协定》实施开展研究。中心每年发布《中国应对气候变化的政策与行动》年度报告,开展温室气体排放清单研究、低碳转型路径分析和碳定价机制研究,直接支撑中国气候治理和政策制定。" + }, + "website": "http://www.ncsc.org.cn", + "data_url": "http://www.ncsc.org.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "climate", + "environment", + "energy", + "economics" + ], + "update_frequency": "irregular", + "tags": [ + "国家应对气候变化战略研究和国际合作中心", + "ncsc", + "national-center-for-climate-change-strategy", + "气候变化", + "climate-change", + "温室气体", + "greenhouse-gas", + "碳市场", + "carbon-market", + "碳排放", + "carbon-emissions", + "低碳", + "low-carbon", + "气候政策", + "climate-policy", + "巴黎协定", + "paris-agreement", + "unfccc", + "碳中和", + "carbon-neutrality", + "双碳", + "dual-carbon", + "气候融资", + "climate-finance", + "国际气候谈判", + "international-climate-negotiations", + "碳定价", + "carbon-pricing", + "排放清单", + "emissions-inventory" + ], + "data_content": { + "en": [ + "China's climate action annual reports: comprehensive annual assessment of China's policies and actions for addressing climate change", + "Greenhouse gas emissions inventory: national and sectoral GHG emissions data and inventory methodologies", + "Carbon market research: analysis of China's national emissions trading scheme (ETS), allowance allocation, and market performance", + "Low-carbon transition pathways: scenario analyses and roadmaps for decarbonizing China's energy, industry, and transport sectors", + "International climate negotiation positions: policy briefs and analysis on China's stance in UNFCCC and Paris Agreement negotiations", + "Climate finance data: research on green finance flows, climate investment, and mobilization of private capital for low-carbon development", + "Carbon pricing mechanism studies: comparative analysis of carbon taxes, ETS designs, and policy effectiveness across countries" + ], + "zh": [ + "中国气候行动年度报告:中国应对气候变化政策与行动的综合年度评估报告", + "温室气体排放清单:国家和分行业温室气体排放数据及清单方法学", + "碳市场研究:中国全国碳排放权交易市场(ETS)、配额分配和市场运行分析", + "低碳转型路径:中国能源、工业和交通部门脱碳情景分析和路线图", + "国际气候谈判立场:中国参与UNFCCC和《巴黎协定》谈判的政策简报和分析", + "气候融资数据:绿色金融流量、气候投资及低碳发展私人资本动员研究", + "碳定价机制研究:各国碳税、碳交易机制设计和政策效果比较分析" + ] + }, + "has_api": false, + "file_path": "china/resources/environment/china-ncsc.json" + }, + { + "id": "china-ndrcc", + "name": { + "en": "National Disaster Reduction Center of China", + "zh": "国家减灾中心" + }, + "description": { + "en": "The National Disaster Reduction Center of China (NDRCC) is a key technical and operational institution under the Ministry of Emergency Management (MEM), responsible for comprehensive disaster risk assessment, satellite-based disaster monitoring, and disaster information management at the national level. NDRCC operates the National Disaster Reduction and Relief Coordination Platform and integrates data from multiple hazard monitoring systems to provide authoritative disaster statistics, risk maps, and impact assessments. It manages the national disaster loss assessment system, conducts post-disaster rapid assessment using satellite remote sensing, and publishes disaster risk and vulnerability data for all provinces and counties in China. NDRCC also supports China's international disaster reduction cooperation under the Sendai Framework for Disaster Risk Reduction.", + "zh": "国家减灾中心是应急管理部下属负责综合灾害风险评估、卫星灾情监测和国家级灾害信息管理的重要技术与业务机构。国家减灾中心运行国家减灾救灾综合协调平台,整合多灾种监测系统数据,提供权威灾害统计数据、风险区划图和影响评估报告。其职责包括管理国家自然灾害损失评估体系、利用卫星遥感开展灾后快速评估,并发布全国省县两级灾害风险和脆弱性数据。国家减灾中心亦支持中国在《仙台减灾框架》下开展的国际减灾合作。" + }, + "website": "https://www.ndrcc.org.cn/", + "data_url": "https://www.ndrcc.org.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "environment", + "governance", + "statistics", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "国家减灾中心", + "ndrcc", + "national-disaster-reduction-center", + "灾害风险", + "disaster-risk", + "自然灾害", + "natural-disaster", + "减灾救灾", + "disaster-reduction", + "卫星遥感", + "satellite-remote-sensing", + "灾情监测", + "disaster-monitoring", + "灾害损失评估", + "disaster-loss-assessment", + "灾害风险区划", + "disaster-risk-zoning", + "应急管理部", + "mem", + "防灾减灾", + "disaster-prevention", + "灾害数据", + "disaster-data", + "仙台框架", + "sendai-framework", + "综合减灾", + "integrated-disaster-reduction" + ], + "data_content": { + "en": [ + "National natural disaster statistics: monthly and annual loss data for all major disaster types including floods, droughts, earthquakes, geological hazards, and typhoons, with breakdowns by region", + "Disaster risk assessment maps: national and provincial risk maps for multiple hazard types, including hazard exposure, vulnerability, and composite risk indices", + "Satellite disaster monitoring reports: near-real-time satellite remote sensing analysis of disaster-affected areas, crop damage, and infrastructure impacts", + "Disaster loss assessment reports: post-disaster rapid assessment results for major events, including affected population, casualties, economic losses, and damaged infrastructure", + "County-level disaster risk data: fine-scale risk and vulnerability metrics for all counties in China used for disaster prevention planning", + "Disaster event database: historical records of significant disaster events in China with standardized damage and loss data", + "Agricultural disaster statistics: crop loss data and farmland damage statistics by disaster type and growing season", + "Housing damage records: data on collapsed and damaged residential structures following major disasters by province", + "Emergency relocation data: statistics on displaced populations requiring emergency resettlement and shelter assistance", + "International disaster reduction cooperation reports: documentation of China's participation in Sendai Framework monitoring and bilateral disaster risk reduction partnerships" + ], + "zh": [ + "全国自然灾害统计:各类主要灾害(洪涝、干旱、地震、地质灾害、台风等)月度和年度损失数据,按地区细分", + "灾害风险评估区划图:多灾种全国和省级风险图,包括致灾因子危险性、承灾体脆弱性及综合风险指数", + "卫星灾情监测报告:对灾害受损区域、农作物受损及基础设施影响的近实时卫星遥感分析", + "灾害损失评估报告:重大灾害事件的快速评估结果,包括受灾人口、人员伤亡、经济损失及基础设施受损情况", + "县级灾害风险数据:用于防灾规划的全国各县细粒度风险和脆弱性指标", + "灾害事件数据库:中国重大灾害事件历史记录及标准化受损数据", + "农业灾害统计:按灾害类型和农时季节分类的农作物损失及耕地受损数据", + "住房受损记录:省级重大灾害后倒塌和损坏民房数据", + "应急转移安置数据:需紧急转移安置和临时庇护援助受灾人口统计", + "国际减灾合作报告:中国参与仙台框架监测及双边减灾合作的文件记录" + ] + }, + "has_api": false, + "file_path": "china/resources/environment/china-ndrcc.json" + }, + { + "id": "china-nesdc", + "name": { + "en": "National Ecosystem Science Data Center", + "zh": "国家生态科学数据中心" + }, + "description": { + "en": "The National Ecosystem Science Data Center (NESDC) is one of China's 20 national science data centers, managed by the Institute of Geographic Sciences and Natural Resources Research (IGSNRR) of the Chinese Academy of Sciences. NESDC serves as the authoritative national platform for ecosystem science data sharing, integrating long-term ecological monitoring data from the Chinese Ecosystem Research Network (CERN) and other field station networks. The center provides standardized datasets covering terrestrial, aquatic, and urban ecosystems including carbon flux measurements, biodiversity surveys, soil properties, water quality monitoring, vegetation dynamics, and meteorological observations. NESDC supports ecological research, environmental policy making, and ecosystem service valuation by offering curated, quality-controlled datasets with metadata standards and DOI-based data citation services.", + "zh": "国家生态科学数据中心是中国20个国家科学数据中心之一,由中国科学院地理科学与资源研究所管理。NESDC是生态科学数据共享的国家权威平台,整合中国生态系统研究网络(CERN)等野外台站网络的长期生态监测数据。中心提供覆盖陆地、水域和城市生态系统的标准化数据集,包括碳通量测量、生物多样性调查、土壤特性、水质监测、植被动态和气象观测等。NESDC通过提供经质量控制的数据集及元数据标准和基于DOI的数据引用服务,支持生态学研究、环境政策制定和生态系统服务价值评估。" + }, + "website": "https://www.nesdc.org.cn", + "data_url": "https://www.nesdc.org.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "environment", + "ecology" + ], + "update_frequency": "irregular", + "tags": [ + "生态科学", + "ecosystem-science", + "nesdc", + "国家科学数据中心", + "national-science-data-center", + "生态系统", + "ecosystem", + "cern", + "中国生态系统研究网络", + "生物多样性", + "biodiversity", + "碳通量", + "carbon-flux", + "土壤", + "soil", + "水质", + "water-quality", + "植被", + "vegetation", + "生态监测", + "ecological-monitoring", + "中国科学院", + "cas", + "野外台站", + "field-station" + ], + "data_content": { + "en": [ + "Carbon flux measurement data: eddy covariance tower observations of CO2, water vapor, and energy fluxes from CERN and ChinaFLUX network stations", + "Biodiversity survey datasets: species inventories, vegetation quadrat surveys, and animal population monitoring records from ecosystem research stations", + "Soil property databases: physical, chemical, and biological soil properties including organic carbon content, nutrient levels, and microbial community data", + "Water quality monitoring: dissolved oxygen, nutrient concentrations, pH, and pollutant levels from freshwater lake and river monitoring stations", + "Vegetation remote sensing products: NDVI, LAI, land cover classification, and vegetation phenology datasets derived from satellite imagery", + "Long-term ecological monitoring: multi-decade time series of meteorological variables, primary productivity, and ecosystem structure from CERN stations" + ], + "zh": [ + "碳通量测量数据:CERN和ChinaFLUX网络台站涡度协方差塔观测的CO2、水汽和能量通量数据", + "生物多样性调查数据集:生态系统研究站的物种清单、植被样方调查和动物种群监测记录", + "土壤特性数据库:土壤物理、化学和生物性质,包括有机碳含量、养分水平和微生物群落数据", + "水质监测:淡水湖泊和河流监测站的溶解氧、营养盐浓度、pH值和污染物水平数据", + "植被遥感产品:卫星影像衍生的NDVI、LAI、土地覆盖分类和植被物候数据集", + "长期生态监测:CERN台站数十年气象变量、初级生产力和生态系统结构时间序列" + ] + }, + "has_api": false, + "file_path": "china/resources/environment/china-nesdc.json" + }, + { + "id": "china-nies", + "name": { + "en": "Nanjing Institute of Environmental Sciences, MEE", + "zh": "生态环境部南京环境科学研究所" + }, + "description": { + "en": "The Nanjing Institute of Environmental Sciences (NIES) is a national-level environmental research institute directly affiliated with China's Ministry of Ecology and Environment (MEE). Founded in 1978, NIES is one of China's most comprehensive environmental research institutions, focusing on biodiversity conservation, rural environmental protection, soil pollution prevention and remediation, chemical safety management, hazardous waste management, ecological environment planning, and international environmental treaty implementation. NIES is the designated national technical support center for biodiversity monitoring, the Stockholm Convention on Persistent Organic Pollutants (POPs), the Basel Convention on hazardous waste, and the National Nature Reserve Management Bureau. The institute publishes authoritative environmental monitoring reports, biodiversity baseline surveys, and rural environmental assessments that inform China's ecological civilization construction policies.", + "zh": "生态环境部南京环境科学研究所(NIES)是生态环境部直属的国家级环境研究机构,成立于1978年,是中国最综合性的环境研究机构之一,重点研究生物多样性保护、农村环境保护、土壤污染防治与修复、化学品安全管理、危险废物管理、生态环境规划和国际环境公约履约等领域。南京所是生物多样性监测、《斯德哥尔摩公约》持久性有机污染物(POPs)、《巴塞尔公约》危险废物管理和国家自然保护区管理局的指定国家级技术支持中心。研究所发布权威的环境监测报告、生物多样性本底调查和农村环境评估,直接服务于中国生态文明建设政策。" + }, + "website": "https://www.nies.org", + "data_url": "https://www.nies.org", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "environment", + "biodiversity", + "soil-pollution", + "rural-environment", + "chemical-safety", + "hazardous-waste" + ], + "update_frequency": "irregular", + "tags": [ + "南京环境科学研究所", + "nies", + "nanjing-institute-of-environmental-sciences", + "生态环境部", + "mee", + "ministry-of-ecology-and-environment", + "生物多样性", + "biodiversity", + "农村环境", + "rural-environment", + "土壤污染", + "soil-pollution", + "化学品管理", + "chemicals-management", + "危险废物", + "hazardous-waste", + "pops", + "持久性有机污染物", + "persistent-organic-pollutants", + "自然保护区", + "nature-reserves" + ], + "data_content": { + "en": [ + "Biodiversity baseline survey data: national and provincial surveys of species distribution, habitat conditions, and ecosystem health in key protected areas", + "Rural environmental monitoring reports: assessments of agricultural non-point source pollution, rural drinking water quality, and village sanitation", + "Soil pollution investigation data: site-specific soil contamination surveys and remediation technology evaluations for agricultural and industrial land", + "Chemical risk assessment reports: hazard and exposure assessments of new and existing chemicals under China's chemical management regulations", + "POPs monitoring and inventory: national monitoring data for persistent organic pollutants under Stockholm Convention implementation", + "Hazardous waste management studies: technical reports on transboundary movement, inventory, and treatment of hazardous waste per Basel Convention", + "Nature reserve management assessments: effectiveness evaluations and biodiversity status reports for national nature reserves" + ], + "zh": [ + "生物多样性本底调查数据:重点保护区物种分布、生境状况和生态系统健康的国家和省级调查", + "农村环境监测报告:农业面源污染、农村饮用水质量和村镇环境卫生评估", + "土壤污染调查数据:农用地和工业用地场地特异性土壤污染调查及修复技术评估", + "化学品风险评估报告:中国化学品管理条例下新化学物质和现有化学物质的危害和暴露评估", + "持久性有机污染物(POPs)监测和清单:《斯德哥尔摩公约》履约的国家POPs监测数据", + "危险废物管理研究:《巴塞尔公约》下危险废物越境转移、清单和处置的技术报告", + "自然保护区管理评估:国家级自然保护区的管护成效评估和生物多样性状况报告" + ] + }, + "has_api": false, + "file_path": "china/resources/environment/china-nies.json" + }, + { + "id": "china-nfga", + "name": { + "en": "National Forestry and Grassland Administration of China", + "zh": "国家林业和草原局" + }, + "description": { + "en": "Official forestry, grassland, wetland, and wildlife data from China's National Forestry and Grassland Administration (NFGA). Covers national forest resources inventory results, forest coverage rates, grassland quality and degradation monitoring, wetland area and health assessments, wildlife population surveys, desert and desertification monitoring, nature reserve and national park data, carbon sequestration estimates, and forestry economic statistics. The NFGA, established in 2018, also oversees national parks and manages China's first national park system.", + "zh": "国家林业和草原局发布的官方林业、草地、湿地与野生动植物数据,涵盖全国森林资源清查结果、森林覆盖率、草地质量与退化监测、湿地面积与健康评估、野生动植物种群调查、荒漠化监测、自然保护区与国家公园数据、碳汇估算及林业经济统计。国家林业和草原局于2018年组建,同时负责国家公园体制建设和管理工作。" + }, + "website": "https://www.forestry.gov.cn/", + "data_url": "https://www.forestry.gov.cn/gjlcj/5462/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "environment", + "climate", + "agriculture" + ], + "update_frequency": "annual", + "tags": [ + "林业", + "forestry", + "草原", + "grassland", + "湿地", + "wetland", + "森林资源", + "forest-resources", + "森林覆盖率", + "forest-coverage-rate", + "野生动物", + "wildlife", + "国家公园", + "national-park", + "荒漠化", + "desertification", + "自然保护区", + "nature-reserve", + "碳汇", + "carbon-sink", + "生物多样性", + "biodiversity", + "nfga", + "国家林草局", + "沙漠化", + "砍伐", + "deforestation" + ], + "data_content": { + "en": [ + "National forest resources inventory: forest area, forest stock volume, forest coverage rate by province", + "Grassland resources and condition monitoring: grassland area, quality grades, utilization and degradation rates", + "Wetland survey data: wetland area, types, ecosystem health assessments, and changes over time", + "Desert and desertification monitoring: desertified land area, sandy land dynamics, restoration progress", + "Wildlife population surveys: key protected species counts, habitat assessments (giant panda, Siberian tiger, etc.)", + "Nature reserve and national park statistics: reserve counts, areas, management effectiveness", + "Forestry economic data: timber production, non-timber forest products output, forestry GDP contribution", + "Forest carbon sequestration estimates: annual CO2 absorption by forest ecosystems", + "Afforestation and ecological restoration data: planted forest area, survival rates, key ecological programs", + "Forest fire statistics: fire incidents, affected area, suppression outcomes" + ], + "zh": [ + "全国森林资源清查:各省森林面积、蓄积量及森林覆盖率", + "草地资源与状况监测:草地面积、质量等级、利用与退化率", + "湿地调查数据:湿地面积、类型、生态系统健康评估及动态变化", + "荒漠化监测:沙化土地面积、沙地动态及治理进展", + "野生动植物种群调查:重点保护物种数量及栖息地评估(大熊猫、东北虎等)", + "自然保护区与国家公园统计:保护区数量、面积及管理成效", + "林业经济数据:木材产量、非木质林产品产量及林业GDP贡献", + "森林碳汇估算:森林生态系统年度CO2吸收量", + "造林与生态修复数据:人工造林面积、成活率及重点生态工程", + "森林火灾统计:火灾起数、受害面积及扑救情况" + ] + }, + "has_api": false, + "file_path": "china/resources/forestry/china-nfga.json" + }, + { + "id": "china-cgas", + "name": { + "en": "China Geological Survey", + "zh": "中国地质调查局" + }, + "description": { + "en": "The China Geological Survey (CGS) is the national geological survey agency under the Ministry of Natural Resources, responsible for conducting systematic geological investigations across China's territory and exclusive economic zone. CGS carries out national basic geological surveys, regional geological mapping at 1:250,000 scale, mineral resource exploration, hydrogeological assessments, and geological hazard surveys. It manages the National Geological Data Repository and publishes authoritative data on land resources, geological hazards, groundwater, mineral resource potential, and geochemical distribution. CGS findings directly support national land use planning, mineral resource policy, disaster prevention, and environmental protection strategies.", + "zh": "中国地质调查局是自然资源部直属的国家地质调查机构,承担全国陆域及专属经济区系统性地质调查工作。负责开展国家基础地质调查、1:25万区域地质测量、矿产资源勘查、水文地质评价和地质灾害调查,管理全国地质资料馆,发布土地资源、地质灾害、地下水、矿产资源潜力和地球化学分布等权威数据。中国地质调查局成果直接支撑国家国土空间规划、矿产资源政策、灾害防治和环境保护战略。" + }, + "website": "https://www.cgs.gov.cn/", + "data_url": "https://www.cgs.gov.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "resources", + "environment", + "science" + ], + "update_frequency": "annual", + "tags": [ + "中国地质调查局", + "china-geological-survey", + "cgs", + "地质调查", + "geological-survey", + "矿产资源勘查", + "mineral-exploration", + "地质灾害", + "geological-hazards", + "地下水", + "groundwater", + "水文地质", + "hydrogeology", + "区域地质", + "regional-geology", + "全国地质资料馆", + "national-geological-data-repository", + "土地资源", + "land-resources", + "地球化学", + "geochemistry", + "地质图", + "geological-map", + "地质构造", + "tectonic-structure", + "自然资源部", + "ministry-of-natural-resources" + ], + "data_content": { + "en": [ + "National basic geological surveys: systematic coverage of China's territory including regional geological mapping at 1:250,000 scale and 1:50,000 scale for key economic zones", + "Mineral resource potential assessments: evaluation reports on national mineral resource potential, reserve grades, and exploration findings organized by commodity type", + "Geological hazard inventory: national database of landslides, mudflows, collapses, ground subsidence, and land erosion risk zones by county", + "Hydrogeological surveys: groundwater resource assessments, aquifer mapping, spring discharge data, and groundwater quality monitoring results", + "Environmental geology reports: geological impacts on soil contamination, land degradation, coastal erosion, and urban geological risk assessment", + "National geological data repository (NGAC): comprehensive archive of geological survey data, drilling logs, geophysical exploration results, and geological maps accessible online", + "Geochemical baseline surveys: systematic soil and stream sediment geochemical data across 73 major drainage basins covering economic development zones", + "Marine geological surveys: seafloor topography, sediment distribution, gas hydrates, and marine mineral resource assessments in China's exclusive economic zone" + ], + "zh": [ + "国家基础地质调查:系统覆盖全国国土的地质调查,包括1:25万区域地质测量和重点经济区1:5万测量", + "矿产资源潜力评价:按矿种组织的全国矿产资源潜力、储量品级和勘查成果评价报告", + "地质灾害清单:按县分类的全国滑坡、泥石流、崩塌、地面沉降和水土流失风险区数据库", + "水文地质调查:地下水资源评价、含水层分布、泉流量数据和地下水水质监测结果", + "环境地质报告:土壤污染、土地退化、海岸侵蚀地质影响及城市地质风险评估", + "全国地质资料馆(NGAC):地质调查资料、钻孔记录、地球物理勘探成果和地质图在线综合档案", + "地球化学基准调查:覆盖73个主要流域和经济发展区的土壤及水系沉积物地球化学系统数据", + "海洋地质调查:中国专属经济区海底地形、沉积物分布、天然气水合物和海洋矿产资源评价" + ] + }, + "has_api": false, + "file_path": "china/resources/mineral/china-cgas.json" + }, + { + "id": "china-chinalco", + "name": { + "en": "Aluminum Corporation of China (Chinalco)", + "zh": "中国铝业集团有限公司" + }, + "description": { + "en": "The Aluminum Corporation of China (Chinalco, 中国铝业集团) is a central state-owned enterprise under SASAC and the world's largest aluminium producer by capacity. Founded in 2001, Chinalco manages the full aluminium value chain from bauxite mining and alumina refining to aluminium smelting, processing, and downstream manufacturing, as well as diversified metals including copper, rare earths, and gallium. The group operates major mines and smelters in over 20 provinces and holds international assets in Guinea, Peru, Australia, and other countries. Chinalco's annual reports, production statistics, and sustainability disclosures provide authoritative data on China's aluminium and bauxite output, alumina refining capacity, electrolysis power consumption, and the country's position in global non-ferrous metal supply chains.", + "zh": "中国铝业集团有限公司(中铝集团)是国务院国资委直属中央企业,也是全球最大的铝生产商之一。成立于2001年,中铝集团管理铝产业全链条,涵盖铝土矿采矿、氧化铝精炼、电解铝冶炼、铝加工及下游制造,以及铜、稀土、镓等多元化金属业务。集团在国内20余个省份拥有大型矿山和冶炼设施,并在几内亚、秘鲁、澳大利亚等国持有国际资产。中铝集团的年度报告、生产统计和可持续发展披露提供了有关中国铝和铝土矿产量、氧化铝精炼产能、电解槽电耗及中国在全球有色金属供应链中地位的权威数据。" + }, + "website": "https://www.chinalco.com.cn", + "data_url": "https://www.chinalco.com.cn", + "api_url": null, + "authority_level": "commercial", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "resources", + "industry", + "economics" + ], + "update_frequency": "annual", + "tags": [ + "中国铝业", + "chinalco", + "铝", + "aluminium", + "铝土矿", + "bauxite", + "氧化铝", + "alumina", + "电解铝", + "electrolytic-aluminium", + "有色金属", + "nonferrous-metals", + "稀土", + "rare-earth", + "铜", + "copper", + "央企", + "central-soe", + "矿业", + "mining" + ], + "data_content": { + "en": [ + "Annual reports - financial results, production volumes, capital expenditure, and strategic outlook for Chinalco Group", + "Aluminium production statistics - smelting capacity, output of primary aluminium, alumina, and bauxite by region and facility", + "Electrolysis energy consumption - power consumption per tonne of aluminium, efficiency improvement targets and outcomes", + "Copper and diversified metals data - copper cathode production, rare earth output, and gallium/indium recoveries", + "Bauxite reserve and mine data - domestic and international bauxite reserve grades, mining volumes, and mine life estimates", + "Sustainability reports - carbon footprint, green electricity usage, water consumption, and waste reduction per unit of production", + "International asset portfolio - operational status and production data for overseas mining investments in Guinea, Peru, and Australia", + "Downstream processing statistics - aluminium foil, sheet, plate, and extrusion production for automotive, aerospace, and packaging applications", + "Research and innovation disclosures - R&D investment in low-carbon aluminium technology, inert anode development, and recycling" + ], + "zh": [ + "年度报告 - 中铝集团财务业绩、产量、资本支出和战略展望", + "铝产量统计 - 各地区和设施的冶炼产能及原铝、氧化铝、铝土矿产量", + "电解槽能耗 - 吨铝电耗及节能降耗目标和成果", + "铜及多元化金属数据 - 阴极铜产量、稀土产出及镓铟回收情况", + "铝土矿储量及矿山数据 - 国内外铝土矿储量品位、采矿量和矿山寿命预测", + "可持续发展报告 - 碳排放足迹、绿色电力使用、水耗及单位产品减废情况", + "海外资产组合 - 几内亚、秘鲁、澳大利亚等境外矿业投资的运营状况和产量数据", + "下游加工统计 - 铝箔、铝板、铝带和铝型材在汽车、航空航天和包装领域的产量", + "研发与创新披露 - 低碳铝技术、惰性阳极研发和再生铝回收的研发投入" + ] + }, + "has_api": false, + "file_path": "china/resources/mineral/china-chinalco.json" + }, + { + "id": "china-cnia", + "name": { + "en": "China Nonferrous Metals Industry Association", + "zh": "中国有色金属工业协会" + }, + "description": { + "en": "The China Nonferrous Metals Industry Association (CNIA) is the national industry association representing China's nonferrous metals sector, the world's largest producer of aluminium, copper, zinc, lead, nickel, tin, and rare earths. CNIA publishes authoritative monthly and annual statistics on production volumes, consumption, imports and exports, prices, and enterprise performance for 10 major nonferrous metals. It tracks smelting capacity, energy consumption per unit of output, and environmental compliance across the sector. CNIA's data is essential for global commodity pricing, supply chain analysis, EV battery materials tracking, and green energy transition research.", + "zh": "中国有色金属工业协会是代表中国有色金属行业的全国性行业组织。中国是全球最大的铝、铜、锌、铅、镍、锡和稀土生产国。协会发布10种主要有色金属的产量、消费量、进出口量、价格及企业运营情况等权威月度和年度统计数据,并追踪全行业冶炼产能、单位产品能耗和环保合规情况。协会数据对全球大宗商品定价、供应链分析、新能源汽车电池材料追踪及绿色能源转型研究具有重要价值。" + }, + "website": "https://www.chinania.org.cn/", + "data_url": "https://www.chinania.org.cn/html/hangyetongji/chanyeshuju/", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "resources", + "industry", + "economics" + ], + "update_frequency": "monthly", + "tags": [ + "中国有色金属工业协会", + "cnia", + "china-nonferrous-metals-industry-association", + "有色金属", + "nonferrous-metals", + "铝", + "aluminium", + "铜", + "copper", + "锌", + "zinc", + "铅", + "lead", + "镍", + "nickel", + "锡", + "tin", + "稀土", + "rare-earth", + "钴", + "cobalt", + "锂", + "lithium", + "新能源电池", + "ev-battery-materials", + "冶炼产能", + "smelting-capacity", + "有色金属价格", + "nonferrous-metal-prices", + "大宗商品", + "commodity" + ], + "data_content": { + "en": [ + "Monthly production statistics - output of 10 major nonferrous metals: aluminium, copper, zinc, lead, nickel, tin, antimony, magnesium, titanium, and cobalt", + "Consumption data - domestic consumption of nonferrous metals by end-use sector (construction, electronics, automotive, packaging)", + "Import and export volumes - trade data for primary metals, alloys, scrap, and semi-finished products", + "Price indices - SHFE spot prices, long-term contract prices, and CNIA price benchmarks", + "Enterprise performance - revenue, profit, and capacity utilization of major smelters and fabricators", + "Energy consumption - unit energy intensity per tonne of metal produced, electrolysis efficiency", + "Environmental compliance - emissions, solid waste, and wastewater discharge statistics by sub-sector", + "Rare earth production and export quotas - monthly output by compound type and producing region", + "Lithium and battery materials - lithium carbonate, cobalt, and nickel sulfate supply chain data", + "Annual China Nonferrous Metals Industry Yearbook (中国有色金属工业年鉴)" + ], + "zh": [ + "月度产量统计 - 铝、铜、锌、铅、镍、锡、锑、镁、钛、钴等10种主要有色金属产量", + "消费数据 - 按最终用途行业(建筑、电子、汽车、包装)分类的有色金属国内消费量", + "进出口量 - 原生金属、合金、废料和半成品贸易数据", + "价格指数 - 上期所现货价格、长期合同价格及中国有色金属工业协会价格基准", + "企业运营 - 主要冶炼商和加工商的营业收入、利润及产能利用率", + "能耗数据 - 单位金属产品能耗强度、电解槽效率", + "环保合规 - 按子行业分类的排放量、固体废物及废水排放统计", + "稀土产量及出口配额 - 按化合物类型和产区分类的月度产量", + "锂和电池材料 - 碳酸锂、钴、硫酸镍供应链数据", + "中国有色金属工业年鉴" + ] + }, + "has_api": false, + "file_path": "china/resources/mineral/china-cnia.json" + }, + { + "id": "china-miit-rare-earth", + "name": { + "en": "MIIT Rare Earth Office - Rare Earth Industry Regulation and Production Quotas", + "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": "工业和信息化部原材料工业司稀土办公室负责稀土行业管理,包括生产配额分配、行业规范标准、总量调控管理以及产品追溯。发布《稀土管理条例》,实施稀土开采和冶炼分离总量调控管理暂行办法,运营稀土产品追溯信息系统。" + }, + "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": "CN", + "domains": [ + "resources", + "mineral", + "industry" + ], + "geographic_scope": "national", + "update_frequency": "irregular", + "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" + ], + "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": "china-mnr-minerals", + "name": { + "en": "Ministry of Natural Resources - Mineral Resources Data", + "zh": "自然资源部矿产资源数据" + }, + "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%),重稀土资源主要分布在广东、江西、福建、广西、湖南等南方省份。" + }, + "website": "https://www.mnr.gov.cn/", + "data_url": "https://www.mnr.gov.cn/sj/sjfw/kc_19263/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "resources", + "minerals", + "economics", + "environment" + ], + "update_frequency": "annual", + "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" + ], + "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日起施行)", + "全球矿产信息:全球地质矿产信息系统访问", + "地质资料数据:全国地质资料馆及网络订单服务平台" + ] + }, + "has_api": false, + "file_path": "china/resources/mineral/china-mnr-minerals.json" + }, + { + "id": "china-nmsa", + "name": { + "en": "National Mine Safety Administration of China", + "zh": "国家矿山安全监察局" + }, + "description": { + "en": "China's National Mine Safety Administration (NMSA) is the central government authority responsible for mine safety inspection, accident investigation, and safety statistics for coal and non-coal mining operations nationwide. It publishes accident statistics, safety inspection reports, regulatory compliance data, and annual mine safety situation reports.", + "zh": "国家矿山安全监察局是负责矿山安全监察的中央政府机构,承担全国煤矿和非煤矿山的安全检查、事故调查和安全统计职责。发布矿山安全事故统计、安全检查报告、监管合规数据和年度矿山安全形势报告。" + }, + "website": "https://www.chinamine-safety.gov.cn", + "data_url": "https://www.chinamine-safety.gov.cn/zfxxgk/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "safety", + "mining", + "energy" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "mine-safety", + "coal-mining", + "accident-statistics", + "safety-inspection", + "nmsa", + "矿山安全", + "煤矿", + "事故统计", + "安全监察", + "workplace-safety", + "china" + ], + "data_content": { + "en": [ + "Mine accident statistics (coal and non-coal mining)", + "Safety inspection results and compliance data", + "Major accident investigation reports", + "Safety license and certification data", + "Regional mine safety performance statistics", + "Annual mine safety situation report", + "Hazardous gas and dust monitoring reports" + ], + "zh": [ + "矿山事故统计(煤矿和非煤矿山)", + "安全检查结果和合规数据", + "重大事故调查报告", + "安全许可和资质数据", + "各地区矿山安全绩效统计", + "年度矿山安全形势报告", + "有害气体和粉尘监测报告" + ] + }, + "has_api": false, + "file_path": "china/resources/mineral/china-nmsa.json" + }, + { + "id": "china-nmdis", + "name": { + "en": "National Marine Data and Information Service", + "zh": "国家海洋信息中心" + }, + "description": { + "en": "The National Marine Data and Information Service (NMDIS) is China's official national center for marine data collection, management, and dissemination, operating under the Ministry of Natural Resources. NMDIS manages the national ocean database integrating data from China's oceanographic survey vessels, coastal observation stations, Argo floats, ocean buoys, and satellite remote sensing systems. Its data holdings encompass sea surface and sub-surface temperature, salinity, currents, wave heights, sea ice extent, marine biodiversity observations, ocean pollution monitoring, and seabed topography. NMDIS publishes the China Ocean Yearbook and Marine Environmental Status Bulletin, providing annual comprehensive overviews of China's maritime environment, marine resources, and ocean economy. It also hosts the marine data sharing platform for research institutions and provides ocean data services to support navigation safety, climate research, disaster early warning, and marine resource management.", + "zh": "国家海洋信息中心(NMDIS)是自然资源部下属的中国官方海洋数据收集、管理和发布机构。NMDIS运营整合了中国海洋调查船、沿海观测站、Argo浮标、海洋浮标和卫星遥感系统数据的国家海洋数据库。数据资源涵盖海面和次表层温度、盐度、流速、浪高、海冰范围、海洋生物多样性观测、海洋污染监测和海底地形。NMDIS出版《中国海洋年鉴》和《中国海洋生态环境状况公报》,对中国海洋环境、海洋资源和海洋经济进行年度综合评估。NMDIS还为科研机构提供海洋数据共享平台,并提供海洋数据服务,支撑航行安全、气候研究、灾害预警和海洋资源管理。" + }, + "website": "https://www.nmdis.org.cn/", + "data_url": "https://mds.nmdis.org.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "environment", + "ocean", + "climate", + "resources" + ], + "update_frequency": "daily", + "tags": [ + "国家海洋信息中心", + "nmdis", + "national-marine-data", + "海洋数据", + "ocean-data", + "海洋环境", + "marine-environment", + "海洋年鉴", + "china-ocean-yearbook", + "海水温度", + "sea-surface-temperature", + "盐度", + "salinity", + "海浪", + "wave-height", + "海冰", + "sea-ice", + "海洋生物多样性", + "marine-biodiversity", + "海洋污染", + "marine-pollution", + "Argo浮标", + "argo-floats", + "海洋观测", + "ocean-observation", + "海底地形", + "seabed-topography", + "海洋气候", + "ocean-climate", + "海洋经济", + "marine-economy", + "海洋灾害", + "marine-disasters" + ], + "data_content": { + "en": [ + "Ocean temperature and salinity profiles: historical and real-time vertical profiles from research vessels, XBT casts, CTD sensors, and Argo floats across China's seas", + "Sea surface observations: gridded datasets of sea surface temperature (SST), sea surface height, and surface current velocity from satellite and buoy networks", + "Wave and tide data: significant wave height, wave period, and tidal level time series from coastal stations and offshore buoys", + "Sea ice data: annual and seasonal extent, concentration, and thickness of sea ice in the Bohai Sea, Yellow Sea, and polar regions from Chinese expeditions", + "Marine biodiversity: species distribution records, phytoplankton and zooplankton community surveys, and fishery resource assessments", + "Marine pollution monitoring: concentrations of inorganic nitrogen, phosphates, petroleum hydrocarbons, heavy metals, and plastics in Chinese coastal and offshore waters", + "China Ocean Yearbook: annual compendium of ocean economy statistics, marine industry output, port throughput, and maritime shipping data", + "Marine Environmental Status Bulletin: annual assessment of seawater quality grades, ecological health of coastal wetlands, and red tide/harmful algal bloom events" + ], + "zh": [ + "海洋温盐剖面:来自科考船、XBT投放、CTD传感器和Argo浮标的中国各海域历史及实时垂直剖面数据", + "海面观测:来自卫星和浮标网络的海面温度(SST)、海面高度和表层流速格点数据集", + "浪潮数据:沿海站和近海浮标的有效波高、波周期和潮位时间序列", + "海冰数据:来自中国极地科考的渤海、黄海海冰年度和季节性范围、密集度和厚度数据", + "海洋生物多样性:物种分布记录、浮游植物和浮游动物群落调查及渔业资源评估", + "海洋污染监测:中国近岸和近海水体中无机氮、磷酸盐、石油烃、重金属和塑料浓度", + "中国海洋年鉴:海洋经济统计、海洋产业产值、港口吞吐量和海上运输数据的年度汇编", + "中国海洋生态环境状况公报:海水水质等级、滨海湿地生态健康状况及赤潮/有害藻华事件年度评估" + ] + }, + "has_api": false, + "file_path": "china/resources/ocean/china-nmdis.json" + }, + { + "id": "china-nsoas", + "name": { + "en": "National Satellite Ocean Application Service", + "zh": "国家卫星海洋应用中心" + }, + "description": { + "en": "The National Satellite Ocean Application Service (NSOAS) is the specialized agency under China's Ministry of Natural Resources responsible for the operational application of ocean satellites and marine remote sensing data. NSOAS manages China's HY (Haiyang/Ocean) satellite series, including HY-1 and HY-2 satellites for ocean color observation, sea surface temperature, wind fields, and sea level measurement. It serves as the national center for ocean satellite data reception, processing, archiving, and distribution, providing remote sensing products to governmental agencies, research institutions, and international partners. NSOAS publishes ocean environmental monitoring data, satellite-derived marine datasets, and conducts application research in fishery monitoring, sea ice observation, and coastal zone management.", + "zh": "国家卫星海洋应用中心是自然资源部下属专业机构,负责海洋卫星和海洋遥感数据的业务化应用。中心负责管理中国海洋(HY)系列卫星,包括用于海洋水色观测、海面温度、风场和海面高度测量的HY-1和HY-2卫星。作为全国海洋卫星数据接收、处理、存档和分发国家中心,向政府部门、科研机构和国际合作伙伴提供遥感产品。中心发布海洋环境监测数据、卫星海洋数据集,并在渔业监测、海冰观测和海岸带管理等领域开展应用研究。" + }, + "website": "http://www.nsoas.org.cn", + "data_url": "http://www.nsoas.org.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "ocean", + "environment", + "climate", + "remote-sensing" + ], + "update_frequency": "daily", + "tags": [ + "国家卫星海洋应用中心", + "nsoas", + "national-satellite-ocean-application-service", + "海洋卫星", + "ocean-satellite", + "HY卫星", + "hy-satellite", + "haiyang-satellite", + "海洋遥感", + "ocean-remote-sensing", + "海面温度", + "sea-surface-temperature", + "sst", + "海洋水色", + "ocean-color", + "风场", + "wind-field", + "海平面", + "sea-level", + "海冰", + "sea-ice", + "渔业监测", + "fishery-monitoring", + "海岸带", + "coastal-zone", + "卫星数据", + "satellite-data", + "海洋环境监测", + "marine-environmental-monitoring" + ], + "data_content": { + "en": [ + "Ocean color data: chlorophyll-a concentration, suspended sediment, and ocean color products derived from HY-1 satellite imagery", + "Sea surface temperature: satellite-measured SST products covering China's sea areas and adjacent oceans", + "Sea surface wind fields: ocean wind speed and direction measurements from HY-2 microwave scatterometers", + "Sea surface height and waves: altimetry-derived sea level anomaly and significant wave height datasets", + "Sea ice monitoring: seasonal sea ice extent, concentration, and thickness data for polar and China's sea areas", + "Fishery resources monitoring: satellite-derived data supporting marine fishery stock assessment and fishing ground prediction", + "Coastal zone remote sensing: high-resolution satellite imagery and derived products for coastal land-sea interface monitoring" + ], + "zh": [ + "海洋水色数据:基于HY-1卫星图像的叶绿素a浓度、悬浮泥沙和海洋水色产品", + "海面温度:覆盖中国海域及邻近海洋的卫星海面温度产品", + "海面风场:HY-2微波散射计测量的海面风速和风向", + "海面高度与波浪:高度计反演的海面高度异常和有效波高数据集", + "海冰监测:极地和中国海域的季节性海冰范围、密集度和厚度数据", + "渔业资源监测:支持海洋渔业资源评估和渔场预报的卫星反演数据", + "海岸带遥感:用于海岸带陆海交互监测的高分辨率卫星影像及衍生产品" + ] + }, + "has_api": false, + "file_path": "china/resources/ocean/china-nsoas.json" + }, + { + "id": "china-cea", + "name": { + "en": "China Earthquake Administration", + "zh": "中国地震局" + }, + "description": { + "en": "The China Earthquake Administration (CEA) is the national government agency responsible for earthquake monitoring, disaster prevention, and seismic risk management in China. China lies on several major tectonic plates and fault systems, making it one of the world's most seismically active countries. CEA operates the China Seismograph Network — one of the largest in the world — and publishes authoritative earthquake catalog data, seismic intensity maps, ground motion parameters, and probabilistic seismic hazard assessments. It releases official reports on significant seismic events, maintains China's national seismic ground motion parameter zoning map (GB 18306), and provides historical earthquake data for scientific and engineering research. CEA is also responsible for earthquake early warning systems and publishes disaster assessment reports following major events.", + "zh": "中国地震局是负责全国地震监测、防震减灾和地震风险管理的国家政府机构。中国位于多条主要构造板块和断裂带之上,是全球地震活动最频繁的国家之一。中国地震局运营着全球规模最大的地震台网之一,发布权威地震目录数据、地震烈度图、地面运动参数及概率性地震危险性评估结果。局方发布重大地震事件官方报告,维护中国国家地震动参数区划图(GB 18306),并为科学研究和工程应用提供历史地震数据。中国地震局还负责地震预警系统建设,并在重大地震发生后发布灾害评估报告。" + }, + "website": "https://www.cea.gov.cn/", + "data_url": "https://www.cea.gov.cn/cea/dzpd/dzzt/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "environment", + "climate", + "statistics", + "governance" + ], + "update_frequency": "real-time", + "tags": [ + "中国地震局", + "china-earthquake-administration", + "cea", + "地震监测", + "earthquake-monitoring", + "地震目录", + "earthquake-catalog", + "地震烈度", + "seismic-intensity", + "地震预警", + "earthquake-early-warning", + "震源参数", + "source-parameters", + "地震动参数区划", + "seismic-ground-motion-zoning", + "防震减灾", + "earthquake-disaster-prevention", + "地震危险性", + "seismic-hazard", + "地震活动性", + "seismicity", + "地震台网", + "seismograph-network", + "地质灾害", + "geological-disaster", + "断层数据", + "fault-data" + ], + "data_content": { + "en": [ + "Earthquake catalog: real-time and historical records of earthquakes in China and surrounding regions, including magnitude, depth, epicenter location, and origin time", + "Seismic intensity maps: observed and modeled intensity maps for significant earthquake events across China", + "Ground motion parameters: peak ground acceleration (PGA), peak ground velocity, and spectral acceleration data for engineering applications", + "National seismic ground motion parameter zoning map (GB 18306): official seismic zoning standard used in building codes and infrastructure design", + "Probabilistic seismic hazard analysis: regional seismic hazard assessments and exceedance probability maps", + "Earthquake early warning data: performance metrics of the national earthquake early warning network", + "Fault database: geological and geophysical data on major active faults in China", + "Disaster assessment reports: post-earthquake rapid assessment reports for major events (M≥5.0)", + "Strong-motion records: acceleration time series from strong-motion seismograph stations across China", + "Seismic monitoring network: station inventory, coverage maps, and technical specifications of the China Seismograph Network" + ], + "zh": [ + "地震目录:中国及周边地区地震的实时和历史记录,包括震级、深度、震中位置和发震时刻", + "地震烈度图:中国重大地震事件的观测和模拟烈度分布图", + "地震动参数:工程应用中的地峰加速度(PGA)、峰值地面速度及反应谱加速度数据", + "国家地震动参数区划图(GB 18306):用于建筑法规和基础设施设计的官方地震区划标准", + "概率性地震危险性分析:区域地震危险性评估及超越概率图", + "地震预警数据:全国地震预警网络绩效指标", + "断层数据库:中国主要活动断层的地质和地球物理数据", + "灾害评估报告:重大地震事件(M≥5.0)震后快速评估报告", + "强震动记录:全国强震动台站加速度时程序列", + "地震监测台网:中国地震台网台站目录、覆盖范围图及技术规格" + ] + }, + "has_api": false, + "file_path": "china/resources/seismology/china-cea.json" + }, + { + "id": "china-cenc", + "name": { + "en": "China Earthquake Networks Center", + "zh": "中国地震台网中心" + }, + "description": { + "en": "The China Earthquake Networks Center (CENC) is the operational hub of China's national seismic monitoring network, operating under the China Earthquake Administration (CEA). CENC manages the National Seismic Network (NSN), one of the most extensive seismograph networks in the world, comprising over 1,000 broadband seismic stations across China. It provides real-time earthquake monitoring, rapid earthquake parameter determination, and official earthquake notifications for earthquakes occurring in China and globally. CENC maintains China's authoritative earthquake catalog, including historical seismicity records dating back centuries, instrumental records since 1900, and real-time data for current seismic events. The center is the official source for earthquake early warning dissemination in China and supports national earthquake disaster prevention and emergency response.", + "zh": "中国地震台网中心(CENC)是中国地震局下属的国家地震监测网络运行中心,管理着全国地震监测网(NSN)——全球规模最大的宽频带地震台网之一,在全国设有逾千个台站。中心提供实时地震监测、快速地震参数测定,并对发生在中国及全球的地震发布官方地震通报。台网中心维护中国权威地震目录,收录数百年历史地震记录、1900年以来仪器记录及当前地震事件实时数据,是中国官方地震预警信息发布机构,同时支持国家防震减灾和应急响应工作。" + }, + "website": "https://www.cenc.ac.cn/", + "data_url": "https://www.cenc.ac.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "environment", + "climate", + "statistics", + "governance" + ], + "update_frequency": "real-time", + "tags": [ + "中国地震台网中心", + "cenc", + "china-earthquake-networks-center", + "地震目录", + "earthquake-catalog", + "实时地震监测", + "real-time-earthquake-monitoring", + "地震预警", + "earthquake-early-warning", + "地震台网", + "seismic-network", + "宽频带地震仪", + "broadband-seismograph", + "地震参数", + "earthquake-parameters", + "震源机制", + "focal-mechanism", + "地震烈度速报", + "rapid-intensity-report", + "历史地震", + "historical-earthquake", + "地震数据", + "seismic-data", + "防震减灾", + "earthquake-disaster-prevention", + "中国地震局", + "cea" + ], + "data_content": { + "en": [ + "Real-time earthquake catalog: continuously updated records of seismic events in China and worldwide, including magnitude, depth, epicenter coordinates, and origin time", + "Earthquake early warning alerts: automated rapid notification data for earthquakes above threshold magnitudes with estimated ground shaking intensity by region", + "Historical earthquake database: comprehensive catalog of felt earthquakes in China from historical records (pre-1900) and instrumental records (1900-present)", + "Seismic wave forms: raw and processed waveform data from national broadband seismic stations available for scientific research", + "Focal mechanism solutions: fault plane solutions and moment tensor data for moderate and strong earthquakes in China", + "Earthquake intensity rapid reports: ShakeMap-style rapid intensity assessment maps for significant earthquake events", + "National Seismic Network station data: real-time station status, seismograph performance metrics, and station location inventory", + "Seismicity statistics: monthly and annual earthquake frequency statistics by magnitude range, depth, and geographic region", + "Major earthquake event reports: official post-event summaries for significant earthquakes (M≥5.0) including sequence analysis and aftershock monitoring", + "Seismotectonic data: active fault mapping and seismic belt delineation for China's major tectonic zones" + ], + "zh": [ + "实时地震目录:持续更新的中国及全球地震事件记录,包括震级、深度、震中坐标和发震时刻", + "地震预警信息:超过预警震级阈值地震的自动快速通报数据,含分地区预估地面震动强度", + "历史地震数据库:中国有记录地震完整目录,涵盖历史文献记录(1900年前)和仪器记录(1900年至今)", + "地震波形数据:来自全国宽频带地震台站的原始和处理波形数据,可用于科学研究", + "震源机制解:中国中强地震的断层面解和矩张量数据", + "地震烈度速报:重大地震事件的ShakeMap式快速烈度评估图", + "全国地震台网台站数据:台站实时状态、地震计性能指标及台站位置目录", + "地震活动统计:按震级范围、深度和地理区域分类的月度和年度地震频次统计", + "重大地震事件报告:重大地震(M≥5.0)发震后官方总结,含序列分析和余震监测", + "地震构造数据:中国主要构造带活动断层分布和地震带划分" + ] + }, + "has_api": false, + "file_path": "china/resources/seismology/china-cenc.json" + }, + { + "id": "china-ches", + "name": { + "en": "China Hydraulic Engineering Society", + "zh": "中国水利学会" + }, + "description": { + "en": "The China Hydraulic Engineering Society (CHES, 中国水利学会) is a national academic organization founded in 1931, affiliated with the China Association for Science and Technology (CAST) and the Ministry of Water Resources. CHES is the premier professional society for hydraulic engineering, water conservancy, hydrology, and water resources management in China. It publishes the flagship academic journal 'Journal of Hydraulic Engineering' (水利学报) along with multiple specialized periodicals covering dam engineering, flood control, irrigation, hydropower, and water environment. CHES organizes major conferences and technical exchanges, and its publications and standards represent the highest academic authority for water-related engineering research in China.", + "zh": "中国水利学会(CHES)成立于1931年,是全国性学术团体,挂靠中国科学技术协会和水利部。中国水利学会是中国水利工程、水文学和水资源管理领域最权威的专业学术组织,出版旗舰学术期刊《水利学报》及多个涵盖坝工技术、防洪、灌溉、水电和水环境的专业刊物,组织重大学术会议和技术交流,其出版物和标准代表中国水利工程研究的最高学术权威。" + }, + "website": "http://www.ches.org.cn", + "data_url": "http://www.ches.org.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "water", + "environment", + "research" + ], + "update_frequency": "monthly", + "tags": [ + "中国水利学会", + "ches", + "水利工程", + "hydraulic-engineering", + "水资源", + "water-resources", + "水利学报", + "journal-of-hydraulic-engineering", + "防洪", + "flood-control", + "水电", + "hydropower", + "水文学", + "hydrology", + "灌溉", + "irrigation", + "大坝", + "dam-engineering" + ], + "data_content": { + "en": [ + "Journal of Hydraulic Engineering (水利学报) - bimonthly peer-reviewed journal covering hydraulic structures, river dynamics, groundwater, and water resource planning", + "Advances in Water Science (水科学进展) - academic journal on hydrology, water environment, and climate-water interactions", + "Hydro-Science and Engineering (水利水电技术) - technical research on dam safety, reservoir management, and hydropower", + "Technical standards and codes - hydraulic engineering design specifications, safety codes for dams and reservoirs", + "Annual conference proceedings - academic papers from the National Water Congress and specialized symposia", + "Flood control and drought relief research - methodology papers on flood forecasting, risk assessment, and disaster mitigation", + "Water environment protection data - research on river basin water quality, pollution control, and ecological flow requirements", + "Irrigation and drainage research - efficiency improvement data and case studies for farmland water management", + "Smart water conservancy developments - R&D outcomes on digital hydrology, IoT sensor networks, and AI in water management" + ], + "zh": [ + "《水利学报》 - 双月出版的同行评审期刊,涵盖水工结构、河流动力学、地下水和水资源规划", + "《水科学进展》 - 水文学、水环境及气候-水相互作用学术期刊", + "《水利水电技术》 - 坝工安全、水库运行和水电工程技术研究", + "技术标准和规范 - 水利工程设计规范、坝和水库安全技术标准", + "年会论文集 - 全国水利学术大会及专题研讨会学术论文", + "防洪抗旱研究 - 洪水预报、风险评估和减灾方法论文", + "水环境保护数据 - 流域水质、污染控制和生态流量需求研究", + "灌溉排水研究 - 农田水利管理效率提升数据和案例研究", + "智慧水利进展 - 数字水文、物联网传感器网络和人工智能水管理研究成果" + ] + }, + "has_api": false, + "file_path": "china/resources/water/china-ches.json" + }, + { + "id": "china-chinawater", + "name": { + "en": "China Water Resources Portal", + "zh": "中国水利网" + }, + "description": { + "en": "China Water Resources Portal (chinawater.com.cn) is the official online information platform affiliated with the Ministry of Water Resources of China, operated by China Water Resources Press (中国水利报社). It serves as a comprehensive data and information portal for China's water sector, publishing water resources bulletins, river basin management reports, flood and drought statistics, irrigation area data, hydraulic engineering project records, and policy documents. The portal provides public access to official water resources statistics and thematic data covering China's rivers, lakes, reservoirs, and water conservancy infrastructure.", + "zh": "中国水利网(chinawater.com.cn)是水利部主管、中国水利报社主办的官方水利行业信息平台,是中国水利领域综合数据与信息门户,发布水资源公报、流域管理报告、洪涝旱情统计、灌溉面积数据、水利工程项目记录及政策文件,为公众提供涵盖中国河流、湖泊、水库及水利基础设施的官方水资源统计与专题数据。" + }, + "data_content": { + "en": [ + "national water resources bulletins", + "flood and drought monitoring statistics", + "river basin management reports", + "irrigation area and water use data", + "hydraulic engineering project data", + "groundwater monitoring data", + "water quality assessment reports", + "reservoir storage statistics", + "water conservancy investment data", + "rural water supply data" + ], + "zh": [ + "全国水资源公报", + "洪涝旱情监测统计", + "流域管理报告", + "灌溉面积与用水数据", + "水利工程项目数据", + "地下水监测数据", + "水质评估报告", + "水库蓄水量统计", + "水利投资数据", + "农村供水数据" + ] + }, + "country": "CN", + "authority_level": "government", + "geographic_scope": "national", + "website": "https://www.chinawater.com.cn", + "data_url": "https://www.chinawater.com.cn", + "api_url": null, + "domains": [ + "environment", + "infrastructure" + ], + "tags": [ + "water-resources", + "hydrology", + "flood", + "drought", + "irrigation", + "水资源", + "水利", + "洪水", + "干旱", + "灌溉", + "水库", + "流域", + "水文", + "mwr", + "水利部", + "water-quality", + "groundwater" + ], + "update_frequency": "irregular", + "has_api": false, + "file_path": "china/resources/water/china-chinawater.json" + }, + { + "id": "china-crsri", + "name": { + "en": "Changjiang River Scientific Research Institute", + "zh": "长江科学院" + }, + "description": { + "en": "The Changjiang River Scientific Research Institute (CRSRI), also known as the Yangtze River Scientific Research Institute, is a state-level public research institution under the Changjiang Water Resources Commission of the Ministry of Water Resources of China. Founded in 1951 and headquartered in Wuhan, CRSRI is China's premier research center for Yangtze River basin water conservancy and hydropower. It conducts research on flood control, river dynamics, dam safety, soil erosion, water quality, ecological hydraulics, and geotechnical engineering for the Yangtze River system. CRSRI has provided key technical support for major Chinese water projects including the Three Gorges Dam, South-to-North Water Diversion, and numerous reservoir and flood control infrastructure projects. Its research outputs include hydrological data, river morphology monitoring, water quality assessments, and technical standards for Chinese water conservancy.", + "zh": "长江科学院(CRSRI)是水利部长江水利委员会直属的国家级公益性科研单位,1951年创建,总部位于武汉,是中国长江流域水利水电领域最重要的研究中心。主要研究方向包括防洪、河道动力学、大坝安全、水土流失、水质、生态水利学和岩土工程等。长江科学院为三峡大坝、南水北调工程及众多水库和防洪基础设施项目提供了重要技术支撑。研究成果包括水文数据、河道形态监测、水质评估及中国水利行业技术标准。" + }, + "website": "http://www.crsri.cn", + "data_url": "http://www.crsri.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "water", + "environment", + "infrastructure", + "geology" + ], + "update_frequency": "irregular", + "tags": [ + "长江科学院", + "crsri", + "changjiang-river-scientific-research-institute", + "yangtze-river", + "长江", + "水利", + "water-conservancy", + "防洪", + "flood-control", + "大坝安全", + "dam-safety", + "三峡", + "three-gorges", + "南水北调", + "south-to-north-water-diversion", + "水质", + "water-quality", + "水土流失", + "soil-erosion", + "河道动力学", + "river-dynamics", + "岩土工程", + "geotechnical-engineering", + "水文", + "hydrology" + ], + "data_content": { + "en": [ + "Yangtze River hydrological data: long-term streamflow records, flood peak data, sediment transport measurements, and hydrological analysis for major stations along the Yangtze", + "River morphology and dynamics research: channel evolution monitoring, bank erosion assessments, bed material sampling, and flow regime analysis for the Yangtze River system", + "Dam and reservoir safety research: structural monitoring data, seepage analysis, slope stability assessments, and safety standards for large Chinese hydraulic structures", + "Flood control and disaster prevention: flood routing models, inundation mapping, levee safety evaluations, and emergency response technical support for the Yangtze basin", + "Water quality and aquatic ecology: water quality monitoring data, pollution source assessments, aquatic biodiversity surveys, and ecological restoration research", + "Soil and water conservation: erosion measurement data, watershed management research, and soil loss estimation models for the upper Yangtze basin", + "Geotechnical engineering research: foundation design for hydraulic structures, underground engineering, and slope engineering data and standards", + "Technical standards and specifications: national and industry technical standards for Chinese water conservancy and hydropower engineering" + ], + "zh": [ + "长江水文数据:长江干流主要水文站的长期径流记录、洪峰数据、泥沙输移测量和水文分析", + "河道形态与动力研究:河道演变监测、岸线侵蚀评估、床沙采样和水流条件分析", + "大坝与水库安全研究:结构监测数据、渗流分析、边坡稳定评价及中国大型水工建筑物安全标准", + "防洪减灾:洪水演进模型、淹没范围图、堤防安全评估及长江流域应急响应技术支撑", + "水质与水生态:水质监测数据、污染源评估、水生生物多样性调查和生态修复研究", + "水土保持:水蚀量测量数据、小流域综合治理研究和金沙江上游土壤侵蚀模型", + "岩土工程研究:水工建筑物基础设计、地下工程和边坡工程数据及标准", + "技术标准规范:中国水利水电工程国家和行业技术标准" + ] + }, + "has_api": false, + "file_path": "china/resources/water/china-crsri.json" + }, + { + "id": "china-hrc", + "name": { + "en": "Huai River Water Resources Commission", + "zh": "水利部淮河水利委员会" + }, + "description": { + "en": "The Huai River Water Resources Commission (HRC) is a basin-level water authority under the Ministry of Water Resources of China, responsible for the unified governance and management of the Huai River basin. The Huai River basin, located between the Yellow River and the Yangtze River, is one of the most densely populated and agriculturally productive regions in China. The HRC publishes hydrological monitoring data, annual water resources bulletins, flood control statistics, water quality assessments, irrigation water usage data, and basin-wide water allocation records, covering the provinces of Henan, Anhui, Jiangsu, and Shandong.", + "zh": "水利部淮河水利委员会(淮委)是水利部直属的流域管理机构,负责淮河流域的统一管理与治理。淮河流域位于黄河与长江之间,是中国人口最稠密、农业最发达的地区之一。淮委发布水文监测数据、年度水资源公报、防汛统计、水质评估、灌溉用水数据及流域水量分配记录,覆盖河南、安徽、江苏、山东等省份。" + }, + "data_content": { + "en": [ + "Huai River basin hydrological monitoring data", + "annual water resources bulletins", + "flood control and disaster statistics", + "water quality assessment reports", + "irrigation water usage data", + "basin water allocation records", + "reservoir and flood detention basin data", + "soil and water conservation data", + "groundwater monitoring data", + "water conservancy infrastructure records" + ], + "zh": [ + "淮河流域水文监测数据", + "年度水资源公报", + "防汛抗灾统计", + "水质评估报告", + "灌溉用水数据", + "流域水量分配记录", + "水库与蓄滞洪区数据", + "水土保持数据", + "地下水监测数据", + "水利基础设施记录" + ] + }, + "country": "CN", + "authority_level": "government", + "geographic_scope": "subnational", + "website": "http://www.hrc.gov.cn", + "data_url": "http://www.hrc.gov.cn", + "api_url": null, + "domains": [ + "environment", + "infrastructure", + "agriculture" + ], + "tags": [ + "water-resources", + "hydrology", + "huai-river", + "flood", + "irrigation", + "water-quality", + "淮河", + "水文", + "水资源", + "防汛", + "灌溉", + "流域管理", + "水利", + "hrc", + "淮委", + "河南", + "安徽", + "江苏" + ], + "update_frequency": "irregular", + "has_api": false, + "file_path": "china/resources/water/china-hrc.json" + }, + { + "id": "china-hwcc", + "name": { + "en": "Hai River Water Resources Commission", + "zh": "水利部海河水利委员会" + }, + "description": { + "en": "The Hai River Water Resources Commission (HWCC) is a basin-level water authority under the Ministry of Water Resources of China, responsible for unified governance and management of the Hai River basin, covering the Beijing-Tianjin-Hebei region and surrounding areas. The HWCC publishes hydrological monitoring data, flood and drought statistics, water resources bulletins, water quality assessments, groundwater monitoring, and basin-wide water allocation records. Its data covers the major river systems in the North China Plain including the Yongding River, Daqing River, and Ziya River systems.", + "zh": "水利部海河水利委员会(海委)是水利部直属的流域管理机构,负责海河流域的统一管理与治理,覆盖京津冀及周边地区。海委发布水文监测数据、洪涝旱情统计、水资源公报、水质评估、地下水监测及流域水量分配记录,数据涵盖华北平原主要水系,包括永定河、大清河、子牙河水系。" + }, + "data_content": { + "en": [ + "Hai River basin hydrological monitoring data", + "annual water resources bulletins", + "flood and drought monitoring statistics", + "water quality assessment reports", + "groundwater monitoring data", + "basin water allocation records", + "reservoir and dam operation data", + "water conservancy project records", + "soil and water conservation data", + "Beijing-Tianjin-Hebei regional water data" + ], + "zh": [ + "海河流域水文监测数据", + "年度水资源公报", + "洪涝旱情监测统计", + "水质评估报告", + "地下水监测数据", + "流域水量分配记录", + "水库大坝调度数据", + "水利工程记录", + "水土保持数据", + "京津冀地区水资源数据" + ] + }, + "country": "CN", + "authority_level": "government", + "geographic_scope": "subnational", + "website": "http://www.hwcc.gov.cn", + "data_url": "http://www.hwcc.gov.cn", + "api_url": null, + "domains": [ + "environment", + "infrastructure" + ], + "tags": [ + "water-resources", + "hydrology", + "hai-river", + "flood", + "groundwater", + "water-quality", + "海河", + "水文", + "水资源", + "防汛", + "地下水", + "流域管理", + "水利", + "hwcc", + "海委", + "京津冀", + "华北平原" + ], + "update_frequency": "irregular", + "has_api": false, + "file_path": "china/resources/water/china-hwcc.json" + }, + { + "id": "china-iwhr", + "name": { + "en": "China Institute of Water Resources and Hydropower Research", + "zh": "中国水利水电科学研究院" + }, + "description": { + "en": "The China Institute of Water Resources and Hydropower Research (IWHR) is China's leading national research institution for water resources and hydropower engineering, directly affiliated with the Ministry of Water Resources. Founded in 1958, IWHR conducts authoritative research on flood control, drought mitigation, water supply, hydropower engineering, dam safety, and water ecology. The institute maintains comprehensive databases on China's river systems, reservoir operations, flood events, and water quality monitoring. IWHR publishes research data, technical standards, and annual reports on China's water resources situation, serving as the primary scientific authority for hydraulic engineering data in China.", + "zh": "中国水利水电科学研究院(IWHR)是中国水利部直属的国家级水利水电科研权威机构,成立于1958年。研究院在防洪抗旱、城乡供水、水电工程、大坝安全及水生态保护等领域开展系统性研究,维护着中国河流水系、水库运行、洪涝灾害及水质监测的综合数据库。IWHR发布科研数据、技术标准及中国水资源状况年度报告,是中国水利工程数据的主要科学权威来源。" + }, + "website": "http://www.iwhr.com/", + "data_url": "http://www.iwhr.com/", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "hydrology", + "water", + "environment", + "engineering" + ], + "update_frequency": "annual", + "tags": [ + "水利水电", + "water-resources", + "hydropower", + "防洪", + "flood-control", + "水库", + "reservoir", + "河流", + "river-systems", + "大坝安全", + "dam-safety", + "水质", + "water-quality", + "水资源年报", + "water-resources-annual-report", + "水利工程", + "hydraulic-engineering", + "旱涝灾害", + "drought-flood", + "水生态", + "water-ecology" + ], + "data_content": { + "en": [ + "River and basin hydrology: flow rates, runoff, and discharge data for major Chinese river systems", + "Reservoir operations: storage capacity, water levels, and operational data for major reservoirs", + "Flood and drought monitoring: historical and real-time event data, frequency analysis", + "Dam safety assessment: structural monitoring data and risk evaluation reports", + "Water quality: chemical and biological indicators for rivers and reservoirs", + "Hydropower statistics: installed capacity, power generation by hydro plants", + "Water resources allocation: inter-basin transfer data, water use efficiency metrics", + "Technical standards: hydraulic engineering standards and specifications", + "Research publications: peer-reviewed papers and technical reports on water science", + "Annual China Water Resources Bulletin: comprehensive national water resources assessment" + ], + "zh": [ + "河流流域水文:中国主要河流水系的流量、径流及排水数据", + "水库运行:主要水库库容、水位及运行数据", + "洪旱监测:历史及实时洪旱事件数据、频率分析", + "大坝安全评估:结构监测数据及风险评估报告", + "水质:河流与水库的理化指标及生物指标", + "水电统计:水电站装机容量及发电量数据", + "水资源配置:跨流域调水数据、用水效率指标", + "技术标准:水利工程标准与规范", + "科研成果:水利科学领域同行评审论文及技术报告", + "中国水资源公报:全国水资源状况综合年度评估" + ] + }, + "has_api": false, + "file_path": "china/resources/water/china-iwhr.json" + }, + { + "id": "china-mwr", + "name": { + "en": "Ministry of Water Resources of China - Water Resources Statistics", + "zh": "中华人民共和国水利部水资源统计" + }, + "description": { + "en": "Official water resources statistics published by China's Ministry of Water Resources, covering water resources assessment, water supply and consumption, flood control, drought relief, irrigation, and hydraulic engineering development. Includes annual China Water Resources Bulletins and comprehensive statistical yearbooks on water conservancy.", + "zh": "中华人民共和国水利部发布的官方水资源统计数据,涵盖水资源调查评价、供用水量、防洪抗旱、灌溉面积及水利工程建设发展状况。包括年度《中国水资源公报》和水利统计年鉴。" + }, + "website": "http://www.mwr.gov.cn/", + "data_url": "http://www.mwr.gov.cn/sj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "environment", + "infrastructure", + "statistics" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "水利部", + "水资源", + "water-resources", + "ministry-of-water-resources", + "mwr", + "水资源公报", + "water-resources-bulletin", + "供水", + "water-supply", + "用水量", + "water-consumption", + "防洪", + "flood-control", + "灌溉", + "irrigation", + "水利工程", + "hydraulic-engineering", + "水库", + "reservoirs", + "河流", + "rivers", + "地下水", + "groundwater", + "降水量", + "precipitation", + "水利统计年鉴", + "water-conservancy-yearbook", + "旱情", + "drought", + "水文", + "hydrology" + ], + "data_content": { + "en": [ + "Annual China Water Resources Bulletin - total water resources volume by region", + "Surface water and groundwater resources assessment", + "Water supply statistics by source type (surface water, groundwater, other)", + "Water consumption by sector (agriculture, industry, household, ecological)", + "Irrigation area and farmland irrigation statistics", + "Reservoir and dam statistics by type and capacity", + "Flood control and disaster relief data", + "Drought monitoring and relief statistics", + "Hydraulic engineering construction investment and progress", + "Rural water supply coverage and safe drinking water data", + "Water conservancy statistical yearbook (annual)" + ], + "zh": [ + "年度《中国水资源公报》- 各地区水资源总量", + "地表水和地下水资源评价数据", + "分水源供水量统计(地表水、地下水、其他水源)", + "分行业用水量(农业、工业、生活、生态用水)", + "灌溉面积和耕地灌溉统计", + "水库大坝分类型和库容统计", + "防洪减灾数据", + "旱情监测与抗旱统计", + "水利工程建设投资与进度", + "农村供水覆盖率和安全饮水数据", + "水利统计年鉴(年度)" + ] + }, + "has_api": false, + "file_path": "china/resources/water/china-mwr.json" + }, + { + "id": "china-slwr", + "name": { + "en": "Songliao River Water Resources Commission", + "zh": "水利部松辽水利委员会" + }, + "description": { + "en": "The Songliao River Water Resources Commission (SLWRC) is a basin-level water authority under the Ministry of Water Resources of China, responsible for unified governance and management of the Songhua River and Liaohe River basins in Northeast China. The SLWRC publishes hydrological monitoring data, annual water resources bulletins, flood and ice-jam flood statistics, water quality assessments, permafrost hydrology data, and basin-wide water allocation records. Its data covers Northeast China including Heilongjiang, Jilin, Liaoning and Inner Mongolia, featuring unique cold-region hydrology data.", + "zh": "水利部松辽水利委员会(松辽委)是水利部直属的流域管理机构,负责松花江流域和辽河流域的统一管理与治理。松辽委发布水文监测数据、年度水资源公报、洪涝冰凌统计、水质评估、冻土水文数据及流域水量分配记录,覆盖黑龙江、吉林、辽宁及内蒙古等东北地区,提供独特的寒区水文数据。" + }, + "data_content": { + "en": [ + "Songhua and Liaohe River basin hydrological data", + "annual water resources bulletins", + "flood and ice-jam flood statistics", + "water quality assessment reports", + "cold-region hydrology and permafrost data", + "basin water allocation records", + "reservoir storage and operation data", + "water ecology monitoring data", + "groundwater monitoring data", + "northeast China regional water data" + ], + "zh": [ + "松花江与辽河流域水文数据", + "年度水资源公报", + "洪涝冰凌统计", + "水质评估报告", + "寒区水文与冻土数据", + "流域水量分配记录", + "水库蓄水与调度数据", + "水生态监测数据", + "地下水监测数据", + "东北地区区域水资源数据" + ] + }, + "country": "CN", + "authority_level": "government", + "geographic_scope": "subnational", + "website": "http://www.slwr.gov.cn", + "data_url": "http://www.slwr.gov.cn/gbjb.jhtml", + "api_url": null, + "domains": [ + "environment", + "infrastructure" + ], + "tags": [ + "water-resources", + "hydrology", + "songhua-river", + "liaohe-river", + "flood", + "ice-jam", + "water-quality", + "松花江", + "辽河", + "水文", + "水资源", + "防汛", + "冰凌", + "寒区", + "流域管理", + "水利", + "slwr", + "松辽委", + "东北" + ], + "update_frequency": "irregular", + "has_api": false, + "file_path": "china/resources/water/china-slwr.json" + }, + { + "id": "china-yrcc", + "name": { + "en": "Yellow River Conservancy Commission", + "zh": "水利部黄河水利委员会" + }, + "description": { + "en": "The Yellow River Conservancy Commission (YRCC) is a basin-level water authority directly under the Ministry of Water Resources of China, responsible for unified management and governance of the Yellow River basin. The YRCC publishes hydrological monitoring data, annual water resources bulletins, flood control reports, sediment transport statistics, water quality assessments, ecological flow data, and basin-wide water allocation records. It maintains official records on Yellow River water levels, flow volumes, reservoir operations, and soil erosion, serving as the authoritative data source for China's second longest river.", + "zh": "水利部黄河水利委员会(黄委)是水利部直属的流域管理机构,负责黄河流域的统一管理与治理。黄委发布水文监测数据、年度水资源公报、防汛报告、泥沙输移统计、水质评估、生态流量数据及流域水量分配记录,是黄河水位、流量、水库调度、水土保持的权威数据来源,为中国第二长河提供官方数据服务。" + }, + "data_content": { + "en": [ + "Yellow River hydrological monitoring data", + "annual water resources bulletins", + "flood control and drought relief statistics", + "sediment transport and soil erosion data", + "water quality assessment reports", + "ecological flow monitoring data", + "basin water allocation records", + "reservoir storage and operation data", + "groundwater monitoring data", + "water conservancy project data" + ], + "zh": [ + "黄河水文监测数据", + "年度水资源公报", + "防汛抗旱统计", + "泥沙输移与水土流失数据", + "水质评估报告", + "生态流量监测数据", + "流域水量分配记录", + "水库蓄水与调度数据", + "地下水监测数据", + "水利工程数据" + ] + }, + "country": "CN", + "authority_level": "government", + "geographic_scope": "subnational", + "website": "http://www.yrcc.gov.cn", + "data_url": "http://www.yrcc.gov.cn", + "api_url": null, + "domains": [ + "environment", + "infrastructure" + ], + "tags": [ + "water-resources", + "hydrology", + "yellow-river", + "flood", + "sediment", + "water-quality", + "黄河", + "水文", + "水资源", + "防汛", + "泥沙", + "流域管理", + "水利", + "yrcc", + "黄委", + "水库", + "生态流量" + ], + "update_frequency": "irregular", + "has_api": false, + "file_path": "china/resources/water/china-yrcc.json" + }, + { + "id": "china-beidou", + "name": { + "en": "BeiDou Navigation Satellite System", + "zh": "北斗卫星导航系统" + }, + "description": { + "en": "The BeiDou Navigation Satellite System (BDS) is China's independently developed global satellite navigation system, managed by the China Satellite Navigation Office (CSNO) under the State Council. Fully operational since 2020 with 35 satellites, BDS is one of the four global navigation systems recognized by the United Nations and provides positioning, navigation, timing, and short message communication services worldwide. The official website publishes signal interface control documents, system performance standards, open service performance reports, satellite constellation status, and technical specifications for receivers and applications. BDS data are essential for precision agriculture, surveying, transportation, disaster relief, and maritime navigation. The system achieves positioning accuracy of ≤1.5m horizontal globally (≤1m in Asia-Pacific) and supports high-precision augmented services for centimeter-level accuracy.", + "zh": "北斗卫星导航系统(BDS)是中国自主研发的全球卫星导航系统,由国务院下设的中国卫星导航系统管理办公室负责运营。北斗系统于2020年全面建成,部署35颗卫星,是联合国认可的四大全球导航系统之一,向全球用户提供定位、导航、授时和短报文通信服务。官网发布信号接口控制文件、系统性能标准、开放服务性能评估报告、卫星星座状态和接收机及应用技术规范。北斗数据广泛应用于精准农业、测量测绘、交通运输、抗灾救灾和海上导航等领域。系统全球水平定位精度≤1.5米(亚太地区≤1米),并支持厘米级高精度增强服务。" + }, + "website": "http://www.beidou.gov.cn", + "data_url": "http://www.beidou.gov.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "global", + "domains": [ + "technology", + "science", + "infrastructure" + ], + "update_frequency": "irregular", + "tags": [ + "北斗", + "beidou", + "bds", + "卫星导航", + "satellite-navigation", + "gnss", + "全球导航卫星系统", + "global-navigation-satellite-system", + "定位", + "positioning", + "导航", + "navigation", + "授时", + "timing", + "短报文", + "short-message-communication", + "信号接口控制文件", + "interface-control-document", + "icd", + "系统性能", + "system-performance", + "卫星星座", + "satellite-constellation", + "精准定位", + "precision-positioning", + "高精度增强", + "high-precision-augmentation", + "中国卫星导航系统管理办公室", + "csno", + "精准农业", + "precision-agriculture", + "联合国", + "united-nations" + ], + "data_content": { + "en": [ + "Signal interface control documents (ICD): detailed technical specifications for BDS open service signals (B1I, B1C, B2a, B2b, B3I), including signal structure, modulation schemes, navigation message formats, and ranging code parameters for receiver developers and researchers", + "System performance reports: annual and quarterly open service performance assessment reports covering positioning accuracy, availability, continuity, and integrity metrics for the global and Asia-Pacific service areas", + "Satellite constellation status: real-time and historical information on the operational status of BDS satellites including GEO, IGSO, and MEO satellites, health status, and signal-in-space range error (SISRE) data", + "Technical standards and specifications: national standards and industry standards for BDS receivers, applications, testing methods, and compatibility with other GNSS systems (GPS, GLONASS, Galileo)", + "Official announcements and policy documents: notices of satellite maneuvers, signal outages, system updates, new service launches, and policy documents governing BDS technology export and application development", + "Application development resources: technical reference materials, development kits documentation, and guidelines for integrating BDS into smart transportation, precision agriculture, maritime navigation, and emergency response systems" + ], + "zh": [ + "信号接口控制文件(ICD):北斗开放服务信号(B1I、B1C、B2a、B2b、B3I)的详细技术规范,包括信号结构、调制方案、导航电文格式和测距码参数,供接收机开发商和研究人员使用", + "系统性能报告:年度和季度开放服务性能评估报告,涵盖全球和亚太服务区的定位精度、可用性、连续性和完整性指标", + "卫星星座状态:北斗GEO、IGSO和MEO卫星的实时和历史运行状态信息,包括卫星健康状态和空间信号测距误差(SISRE)数据", + "技术标准和规范:北斗接收机、应用、测试方法及与其他GNSS系统(GPS、GLONASS、Galileo)兼容性的国家标准和行业标准", + "官方公告和政策文件:卫星机动、信号中断、系统更新、新服务开通的通知,以及北斗技术出口和应用开发管理政策文件", + "应用开发资源:将北斗集成到智慧交通、精准农业、海上导航和应急响应系统的技术参考资料、开发套件文档和集成指南" + ] + }, + "has_api": false, + "file_path": "china/technology/china-beidou.json" + }, + { + "id": "china-caai", + "name": { + "en": "Chinese Association for Artificial Intelligence", + "zh": "中国人工智能学会" + }, + "description": { + "en": "The Chinese Association for Artificial Intelligence (CAAI) is China's national academic organization for artificial intelligence research, established in 1981 and supervised by the China Association for Science and Technology. CAAI represents over 40,000 individual members and more than 200 institutional members spanning academia, research institutes, and industry. It publishes the China Artificial Intelligence Development Report, AI industry statistics, and research on AI technology trends, policy frameworks, and application domains including computer vision, natural language processing, robotics, and intelligent systems. CAAI also maintains rankings of AI research outputs and talent concentration, and organizes China's premier AI academic conferences and competitions.", + "zh": "中国人工智能学会(CAAI)成立于1981年,是中国科学技术协会主管的全国性人工智能学术组织,拥有个人会员4万余名、团体会员200余家,覆盖高校、科研院所和企业。学会发布《中国人工智能发展报告》、AI产业统计数据及计算机视觉、自然语言处理、机器人、智能系统等AI技术趋势与政策研究报告。CAAI还维护人工智能科研成果和人才集聚排名,组织国内顶级AI学术会议和竞赛。" + }, + "website": "https://www.caai.cn", + "data_url": "https://www.caai.cn/index.php?s=/home/article/lists/category/baokan.html", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "technology", + "science", + "economics" + ], + "update_frequency": "annual", + "tags": [ + "中国人工智能学会", + "caai", + "chinese-association-for-artificial-intelligence", + "人工智能", + "artificial-intelligence", + "AI发展报告", + "ai-development-report", + "计算机视觉", + "computer-vision", + "自然语言处理", + "natural-language-processing", + "nlp", + "机器人", + "robotics", + "深度学习", + "deep-learning", + "机器学习", + "machine-learning", + "AI产业", + "ai-industry", + "智能系统", + "intelligent-systems", + "AI政策", + "ai-policy", + "AI人才", + "ai-talent", + "AI研究排名", + "ai-research-rankings", + "大模型", + "large-language-models", + "llm" + ], + "data_content": { + "en": [ + "China Artificial Intelligence Development Report: annual comprehensive assessment of China's AI research output, industry development, talent ecosystem, and policy environment", + "AI research rankings: institutional rankings by AI publication volume, patent counts, and citation impact across Chinese universities, research institutes, and companies", + "AI talent statistics: data on AI researchers, graduate students, and workforce distribution by region, specialization, and institution type", + "AI industry data: market size estimates, investment statistics, and enterprise distribution across key AI application domains", + "Technology trend reports: analyses of emerging AI technologies including large language models, computer vision, robotics, and autonomous systems in the Chinese context", + "AI competition results: outcomes and participant statistics from major Chinese AI competitions and benchmarks", + "AI academic conference proceedings: research papers from CAAI-organized conferences covering all major AI sub-fields", + "AI policy research: analysis of national AI development plans, regulatory frameworks, and standards initiatives", + "International AI cooperation: data on China's international AI research collaborations, co-publications, and technology exchange programs" + ], + "zh": [ + "中国人工智能发展报告:中国AI科研产出、产业发展、人才生态和政策环境年度综合评估", + "AI研究机构排名:中国高校、科研院所和企业AI论文发表量、专利数量及引用影响力排名", + "AI人才统计:AI研究人员、在读研究生及劳动力分布数据,按地区、专业方向和机构类型分类", + "AI产业数据:主要AI应用领域市场规模估算、投资统计和企业分布情况", + "技术趋势报告:大语言模型、计算机视觉、机器人及自动驾驶等新兴AI技术在中国的发展分析", + "AI竞赛成果:国内主要AI竞赛和基准测试成绩及参赛者统计", + "AI学术会议论文集:CAAI主办会议发表的涵盖AI各子领域的研究论文", + "AI政策研究:国家AI发展规划、监管框架和标准化工作分析", + "国际AI合作:中国国际AI研究合作、联合发表和技术交流项目数据" + ] + }, + "has_api": false, + "file_path": "china/technology/china-caai.json" + }, + { + "id": "china-ccf", + "name": { + "en": "China Computer Federation", + "zh": "中国计算机学会" + }, + "description": { + "en": "The China Computer Federation (CCF) is China's leading academic society for the computing field, established in 1962 under the China Association for Science and Technology. CCF serves over 100,000 members including researchers, engineers, and students across computer science and technology disciplines. CCF is best known internationally for the CCF Recommended International Academic Conference and Journal List (CCF-List), the authoritative grading system used by Chinese universities and research institutions to evaluate computer science publications. CCF also publishes the China Computer Science Almanac, annual computing talent reports, computing industry white papers, and the CCF Big Data report series, providing critical reference data for China's computing and IT research ecosystem.", + "zh": "中国计算机学会(CCF)是中国科学技术协会主管的计算领域权威学术组织,成立于1962年,拥有个人会员逾10万名,涵盖计算机科学与技术各学科的科研人员、工程师和学生。CCF在国际上以《中国计算机学会推荐国际学术会议和期刊目录》(CCF目录)著称,该目录是中国高校和科研机构评价计算机科学论文质量的权威分级体系。CCF还发布《中国计算机科学年鉴》、年度计算人才报告、计算产业白皮书和CCF大数据报告系列,为中国计算和IT研究生态系统提供重要参考数据。" + }, + "website": "https://www.ccf.org.cn", + "data_url": "https://www.ccf.org.cn/Academic_Evaluation/By_category/", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "technology", + "science", + "education" + ], + "update_frequency": "annual", + "tags": [ + "中国计算机学会", + "ccf", + "china-computer-federation", + "CCF推荐目录", + "ccf-recommended-list", + "计算机科学", + "computer-science", + "计算领域", + "computing", + "学术评价", + "academic-evaluation", + "期刊分级", + "journal-ranking", + "会议分级", + "conference-ranking", + "计算机科学年鉴", + "computer-science-almanac", + "IT人才", + "it-talent", + "大数据", + "big-data", + "信息技术", + "information-technology", + "软件工程", + "software-engineering", + "网络安全", + "cybersecurity", + "计算产业", + "computing-industry", + "中国IT", + "china-it" + ], + "data_content": { + "en": [ + "CCF Recommended International Academic Conference and Journal List (CCF-List): authoritative tiered ranking (A/B/C) of international CS conferences and journals used system-wide by Chinese academia for tenure, promotion, and funding decisions", + "China Computer Science Almanac: annual comprehensive statistics on computing research outputs, publications, patents, and academic workforce in China", + "Computing talent report: annual data on computer science education enrollment, graduation rates, postgraduate research students, and employment outcomes in China's computing sector", + "CCF Big Data report: analysis of big data technology adoption, market size, and industry applications in China", + "Computing industry white papers: assessments of key computing sub-fields including cloud computing, cybersecurity, chip design, operating systems, and open-source software in China", + "Top computer science institution rankings: institutional rankings for Chinese universities and research institutes based on publication quality and output using the CCF classification", + "Annual conference proceedings: collections of research papers from CCF-organized academic conferences covering all major computing disciplines", + "Open source ecosystem report: data on Chinese contributions to international open-source projects and domestic open-source community development", + "Technology roadmaps: strategic assessments of China's computing technology development priorities and innovation gaps" + ], + "zh": [ + "CCF推荐国际学术会议和期刊目录(CCF目录):国际计算机科学会议和期刊权威分级(A/B/C类),全面应用于中国高校和科研机构的职称评定、晋升考核和科研经费申请", + "中国计算机科学年鉴:中国计算机科研成果、论文发表、专利和学术人才年度综合统计", + "计算人才报告:中国计算机科学专业招生、毕业率、研究生及计算行业就业去向年度数据", + "CCF大数据报告:中国大数据技术应用、市场规模和产业应用分析", + "计算产业白皮书:云计算、网络安全、芯片设计、操作系统、开源软件等计算子领域评估", + "顶级计算机科学机构排名:基于CCF分类体系的中国高校和科研院所论文质量与产出排名", + "年度学术会议论文集:CCF主办的涵盖各主要计算学科的学术会议研究论文汇编", + "开源生态报告:中国对国际开源项目的贡献及国内开源社区发展情况数据", + "技术路线图:中国计算技术发展优先领域和创新差距战略评估" + ] + }, + "has_api": false, + "file_path": "china/technology/china-ccf.json" + }, + { + "id": "china-cmse", + "name": { + "en": "China Manned Space Engineering Office", + "zh": "中国载人航天工程办公室" + }, + "description": { + "en": "The China Manned Space Engineering Office (CMSE) is the official government body overseeing China's manned space program. It publishes authoritative announcements, mission data, technical reports, and statistics on China's crewed spaceflight missions, space station operations, and astronaut activities.", + "zh": "中国载人航天工程办公室(CMSE)是负责统筹管理中国载人航天工程的政府机构,发布载人航天任务、空间站运营、航天员活动的权威公告、任务数据和技术报告。" + }, + "website": "https://www.cmse.gov.cn", + "data_url": "https://www.cmse.gov.cn", + "api_url": null, + "country": "CN", + "domains": [ + "aerospace", + "space", + "technology", + "science" + ], + "geographic_scope": "national", + "update_frequency": "irregular", + "tags": [ + "china", + "manned-space", + "载人航天", + "space-station", + "中国空间站", + "shenzhou", + "神舟", + "tiangong", + "天宫", + "astronaut", + "航天员", + "spaceflight", + "aerospace" + ], + "data_content": { + "en": [ + "Mission Announcements - Official releases on crewed spaceflight missions including launch and return data", + "Space Station Operations - Status updates on China Space Station (Tiangong) modules and experiments", + "Astronaut Information - Profiles and activity reports for Chinese taikonauts", + "Technical Reports - Engineering and scientific reports from manned space missions", + "Statistics - Cumulative data on China's manned spaceflight program since 1992" + ], + "zh": [ + "任务公告 - 载人航天飞行任务(包括发射和返回数据)的官方发布", + "空间站运营 - 天宫空间站舱段和实验项目的状态更新", + "航天员信息 - 中国航天员档案和在轨活动报告", + "技术报告 - 载人航天任务工程和科学报告", + "统计数据 - 1992年以来中国载人航天工程的累积数据" + ] + }, + "authority_level": "government", + "has_api": false, + "file_path": "china/technology/china-cmse.json" + }, + { + "id": "china-cnsa", + "name": { + "en": "China National Space Administration", + "zh": "国家航天局" + }, + "description": { + "en": "The China National Space Administration (CNSA) is China's national space agency responsible for civil space activities, including satellite launches, deep space exploration, and international space cooperation. CNSA manages China's major space programs such as the Chang'e lunar exploration mission, Tianwen Mars mission, and Beidou Navigation Satellite System. It publishes open scientific data from space missions, satellite remote sensing data, lunar and planetary exploration results, and space science experiment datasets. CNSA also oversees the China Space Science Data Center and coordinates with the National Remote Sensing Center of China (NRSCC) to provide earth observation data for resource management, disaster monitoring, and environmental protection applications.", + "zh": "国家航天局(CNSA)是中国负责民用航天活动的国家航天机构,业务涵盖卫星发射、深空探测及国际航天合作。国家航天局主管嫦娥月球探测、天问火星探测和北斗导航卫星系统等重大航天工程,发布航天任务开放科学数据、卫星遥感数据、月球和行星探测成果及空间科学实验数据集。同时,国家航天局负责监管中国空间科学数据中心,并与国家遥感中心协作,为资源管理、灾害监测和环境保护提供对地观测数据。" + }, + "website": "https://www.cnsa.gov.cn/", + "data_url": "https://www.cnsa.gov.cn/n6758823/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "technology", + "aerospace", + "environment" + ], + "update_frequency": "irregular", + "tags": [ + "国家航天局", + "cnsa", + "china-national-space-administration", + "航天数据", + "space-data", + "嫦娥", + "chang'e", + "月球探测", + "lunar-exploration", + "天问", + "tianwen", + "火星探测", + "mars-mission", + "卫星遥感", + "satellite-remote-sensing", + "北斗", + "beidou", + "深空探测", + "deep-space-exploration", + "对地观测", + "earth-observation", + "空间科学", + "space-science", + "航天工程", + "space-engineering", + "遥感数据", + "remote-sensing-data", + "中国航天", + "china-space-program" + ], + "data_content": { + "en": [ + "Lunar exploration data: scientific datasets from Chang'e missions including topographic maps, mineral composition surveys, and regolith samples analysis", + "Mars exploration data: surface imagery, atmospheric and geological data from Tianwen-1 and Zhurong rover", + "Satellite remote sensing data: multispectral and hyperspectral imagery from China's resource, environment, and ocean observation satellites", + "Earth observation products: land use mapping, disaster assessment imagery, and environmental monitoring data from NRSCC", + "Space science experiments: microgravity research data and life science experiment results from China's space station (Tiangong)", + "Navigation satellite data: Beidou system performance metrics, positioning accuracy reports, and open service interface documents", + "Deep space mission telemetry: mission status, trajectory data, and engineering parameters for ongoing and completed missions", + "International cooperation datasets: jointly produced data from bilateral agreements with ESA, ROSCOSMOS, and other space agencies" + ], + "zh": [ + "月球探测数据:嫦娥系列任务科学数据集,包括地形图、矿物成分调查和月壤样品分析", + "火星探测数据:天问一号和祝融号火星车的地表图像、大气和地质数据", + "卫星遥感数据:中国资源、环境和海洋观测卫星的多光谱和高光谱图像", + "对地观测产品:国家遥感中心提供的土地利用制图、灾害评估影像和环境监测数据", + "空间科学实验:中国空间站(天宫)的微重力研究数据和生命科学实验成果", + "导航卫星数据:北斗系统性能指标、定位精度报告和开放服务接口文档", + "深空任务遥测:在轨和已完成任务的状态、轨道数据及工程参数", + "国际合作数据集:与欧空局、俄罗斯航天国家集团等航天机构双边协议共同产出的数据" + ] + }, + "has_api": false, + "file_path": "china/technology/china-cnsa.json" + }, + { + "id": "china-shenzhen-stic", + "name": { + "en": "Shenzhen Science, Technology and Innovation Commission", + "zh": "深圳市科技创新局" + }, + "description": { + "en": "The Shenzhen Science, Technology and Innovation Commission (formerly Shenzhen Science and Technology Innovation Committee) is the municipal government agency responsible for science, technology, and innovation policy in Shenzhen, China's foremost innovation city. The commission oversees R&D funding, high-tech enterprise recognition, technology incubators, and innovation ecosystem development. It publishes data on R&D expenditure, patent applications, high-tech enterprise statistics, technology project funding, and science park performance. Shenzhen's innovation data is critical for understanding China's technology industry development, particularly in areas like AI, semiconductors, telecommunications, and biotechnology.", + "zh": "深圳市科技创新局(原深圳市科技创新委员会)是负责深圳市科学技术和创新政策的市级政府部门。深圳是中国最具创新活力的城市,该局负责研发资金管理、高新技术企业认定、科技孵化器和创新生态系统建设。发布研发投入、专利申请、高新技术企业统计、科技项目资助和科技园区运营等数据。深圳的科技创新数据对了解中国科技产业发展,特别是人工智能、半导体、通信和生物技术等领域具有重要价值。" + }, + "website": "https://stic.sz.gov.cn", + "data_url": "https://stic.sz.gov.cn/xxgk/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "technology", + "innovation", + "research" + ], + "update_frequency": "quarterly", + "tags": [ + "深圳科技", + "shenzhen-technology", + "深圳创新", + "shenzhen-innovation", + "研发投入", + "r&d-expenditure", + "高新技术企业", + "high-tech-enterprise", + "科技创新", + "science-and-technology-innovation", + "专利申请", + "patent-applications", + "科技项目", + "technology-projects", + "深圳高新区", + "shenzhen-hi-tech-zone", + "鲲鹏计划", + "kunpeng-program", + "深圳科技园", + "shenzhen-science-park" + ], + "data_content": { + "en": [ + "R&D expenditure: annual R&D spending by sector, enterprise size, and research type in Shenzhen", + "High-tech enterprises: recognition lists, total count, and industry distribution of national high-tech enterprises in Shenzhen", + "Patent statistics: patent applications, grants, and technology transfer data for Shenzhen enterprises and institutions", + "Technology project funding: government-funded science and technology projects, grant amounts, and outcomes", + "Innovation platforms: key laboratories, engineering research centers, and technology incubator performance data", + "Science parks: output, employment, and revenue data for Shenzhen's science and technology parks", + "Talent programs: science and technology talent support program data, including Kunpeng and Peacock talent plans" + ], + "zh": [ + "研发投入:按行业、企业规模和研究类型分类的深圳年度研发支出", + "高新技术企业:深圳国家高新技术企业认定名单、总数量和行业分布", + "专利统计:深圳企业和机构的专利申请、授权和技术转让数据", + "科技项目资助:政府资助的科技项目、拨款金额和成果", + "创新平台:重点实验室、工程研究中心和科技孵化器运营数据", + "科技园区:深圳科技园区的产值、就业和营收数据", + "人才计划:鲲鹏计划、孔雀计划等科技人才支持计划数据" + ] + }, + "has_api": false, + "file_path": "china/technology/china-shenzhen-stic.json" + }, + { + "id": "china-national-data-bureau", + "name": { + "en": "National Data Administration of China", + "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": "国家数据局是国家发展和改革委员会管理的国家局,负责协调推进数据基础制度建设,统筹数据资源整合共享和开发利用,统筹推进数字中国、数字经济、数字社会规划和建设等工作。国家数据局管理国家公共数据资源登记平台,制定数据要素市场、数字经济发展和数据治理政策。" + }, + "website": "https://www.nda.gov.cn/", + "data_url": "https://sjdj.nda.gov.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "digital-economy", + "data-governance", + "digital-infrastructure" + ], + "geographic_scope": "national", + "update_frequency": "irregular", + "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" + ], + "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": [ + "公共数据资源登记和管理信息", + "数据要素市场政策法规", + "数字中国建设进展和报告", + "数据基础设施发展规划和标准", + "数据治理框架和最佳实践", + "数字经济发展统计和案例研究", + "数据流通和交易平台信息", + "国家数据标准化技术指南" + ] + }, + "has_api": false, + "file_path": "china/technology/digital_economy/china-national-data-bureau.json" + }, + { + "id": "china-cagis", + "name": { + "en": "China Association for Geographic Information Industry", + "zh": "中国地理信息产业协会" + }, + "description": { + "en": "The China Association for Geographic Information Industry (CAGIS) is the national industry association for geospatial information in China, supervised by the Ministry of Natural Resources. CAGIS publishes the annual China Geographic Information Industry Development Report, industry scale and revenue statistics, enterprise rankings (Top 100 GIS enterprises), professional qualification data, and technical standards covering surveying, mapping, remote sensing, GIS, satellite navigation, and location-based services. It is an authoritative source for China's geospatial industry size, enterprise landscape, and technology adoption trends.", + "zh": "中国地理信息产业协会(CAGIS)是自然资源部主管的全国性地理信息行业协会。协会发布年度《中国地理信息产业发展报告》、产业规模与营收统计、企业百强排名、专业资质数据及涵盖测绘、遥感、地理信息系统、卫星导航与位置服务的技术标准,是中国地理信息产业规模、企业格局和技术应用趋势的权威数据来源。" + }, + "website": "https://www.cagis.org.cn", + "data_url": "https://www.cagis.org.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "update_frequency": "annual", + "domains": [ + "geographic-information", + "technology", + "industry-associations", + "standards" + ], + "tags": [ + "china", + "cagis", + "地理信息", + "gis", + "geospatial", + "remote-sensing", + "遥感", + "surveying", + "测绘", + "satellite-navigation", + "卫星导航", + "location-services", + "位置服务", + "industry-association", + "行业协会" + ], + "data_content": { + "en": [ + "China Geographic Information Industry Development Report - Annual report on industry scale, growth, structure, and trends", + "Industry Revenue Statistics - Total industry revenue, employment figures, and regional distribution", + "Top 100 GIS Enterprises Ranking - Annual ranking of leading geospatial companies by revenue and capability", + "Professional Qualification Data - Registered surveyors, mapping engineers, and enterprise certification counts", + "Technical Standards - Industry standards for GIS platforms, remote sensing data processing, and LBS applications" + ], + "zh": [ + "中国地理信息产业发展报告 - 行业规模、增长、结构及趋势年度报告", + "产业营收统计 - 行业总营收、从业人员数量及区域分布", + "地理信息产业百强企业 - 按营收和能力排名的地信龙头企业年度榜单", + "专业资质数据 - 测绘师、制图工程师注册数量及企业资质认证统计", + "技术标准 - GIS平台、遥感数据处理及位置服务应用行业标准" + ] + }, + "has_api": false, + "file_path": "china/technology/industry-associations/china-cagis.json" + }, + { + "id": "china-sae", + "name": { + "en": "Society of Automotive Engineers of China", + "zh": "中国汽车工程学会" + }, + "description": { + "en": "The Society of Automotive Engineers of China (SAE-China), established in 1963, is the national academic and technical organization for China's automotive industry and engineering community, affiliated with the China Association for Science and Technology (CAST). SAE-China coordinates automotive engineering standards, organizes major industry events including the China Automotive Engineering Society Annual Congress (SAECCE) and the China Automotive Industry Summit, and publishes authoritative reports on new energy vehicles (NEV), intelligent connected vehicles (ICV), automotive emissions, fuel efficiency standards, and autonomous driving technology. SAE-China collaborates with international counterparts including SAE International and serves as a key bridge between China's automotive R&D community and global automotive technology trends. Its data and research are widely cited by automotive OEMs, Tier-1 suppliers, government regulators, and international investors tracking China's automotive market transformation.", + "zh": "中国汽车工程学会(SAE-China)成立于1963年,是中国科学技术协会下属的全国性汽车行业和工程领域学术团体。学会负责协调汽车工程标准,主办汽车工程年会(SAECCE)、中国汽车产业发展年会等重要行业活动,并发布新能源汽车、智能网联汽车、汽车排放、燃油经济性标准和自动驾驶技术权威报告。SAE-China与SAE国际等国际机构合作,是中国汽车研发界与全球汽车技术趋势之间的重要桥梁,其数据和研究被汽车整车企业、一级供应商、政府监管部门和跟踪中国汽车市场转型的国际投资者广泛引用。" + }, + "website": "https://www.sae-china.org/", + "data_url": "https://www.sae-china.org/newsdata/reportdata/", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "automotive", + "technology", + "energy", + "standards" + ], + "update_frequency": "annual", + "tags": [ + "汽车工程", + "automotive-engineering", + "新能源汽车", + "new-energy-vehicle", + "nev", + "智能网联汽车", + "intelligent-connected-vehicle", + "icv", + "自动驾驶", + "autonomous-driving", + "汽车排放", + "vehicle-emissions", + "燃油经济性", + "fuel-efficiency", + "汽车标准", + "automotive-standards", + "电动汽车", + "electric-vehicle", + "ev", + "动力电池", + "power-battery", + "氢燃料电池", + "hydrogen-fuel-cell", + "saecce", + "中国汽车工程学会", + "sae-china", + "汽车技术", + "automotive-technology" + ], + "data_content": { + "en": [ + "New Energy Vehicle (NEV) development reports: annual statistics and trend analysis on battery electric vehicle (BEV), plug-in hybrid (PHEV), and fuel cell vehicle (FCV) production, sales, and technology maturity in China", + "Intelligent Connected Vehicle (ICV) white papers: market penetration data, L2-L4 autonomous driving deployment statistics, and V2X communication infrastructure progress", + "Automotive emissions research: vehicle exhaust emission test data, fleet emission factor reports, and compliance monitoring with China's National Standards VI (equivalent to Euro 6)", + "Fuel economy standards and CAFC compliance: corporate average fuel consumption data, double-credit policy implementation statistics, and OEM compliance rankings", + "Automotive technology roadmap data: technology readiness assessments for electrification, lightweighting, advanced manufacturing, and connectivity for the 2025-2035 planning horizon", + "Power battery and energy storage research: battery cell performance benchmarks, thermal safety incident analysis, and recycling system capacity data", + "Hydrogen fuel cell vehicle progress reports: hydrogen refueling station deployment, FCEV demonstration project data, and cost reduction trajectory analysis", + "Annual Congress (SAECCE) proceedings: cutting-edge automotive R&D papers covering vehicle dynamics, NVH, powertrain, ADAS, and manufacturing technology", + "Automotive industry talent and R&D investment statistics: engineering workforce data, automotive R&D expenditure by OEM, and innovation ecosystem indicators" + ], + "zh": [ + "新能源汽车发展报告:中国纯电动汽车(BEV)、插电混动(PHEV)和燃料电池汽车(FCV)产销量及技术成熟度年度统计与趋势分析", + "智能网联汽车白皮书:市场渗透率数据、L2-L4自动驾驶部署统计和V2X通信基础设施建设进展", + "汽车排放研究:车辆尾气排放测试数据、车队排放因子报告和国六标准(相当于欧6)合规监测", + "燃油经济性标准和CAFC合规:企业平均燃油消耗量数据、双积分政策实施统计和整车企业合规排名", + "汽车技术路线图数据:2025-2035规划期电动化、轻量化、先进制造和智能网联技术成熟度评估", + "动力电池与储能研究:电芯性能基准测试、热失控安全事故分析和回收体系产能数据", + "氢燃料电池汽车进展报告:加氢站部署情况、燃料电池汽车示范项目数据和成本下降路径分析", + "年会(SAECCE)论文集:整车动力学、NVH、动力系统、ADAS和制造技术等前沿汽车研发论文", + "汽车行业人才与研发投入统计:工程师队伍规模、各整车企业研发支出及创新生态系统指标" + ] + }, + "has_api": false, + "file_path": "china/technology/industry-associations/china-sae.json" + }, + { + "id": "china-automation-association", + "name": { + "en": "Chinese Association of Automation", + "zh": "中国自动化学会" + }, + "description": { + "en": "The Chinese Association of Automation (CAA) is a national academic society under the China Association for Science and Technology (CAST) that represents researchers and practitioners in automation, control systems, robotics, and intelligent manufacturing. Founded in 1961, CAA has over 40,000 members across academia, research institutes, and industry. CAA publishes the Journal of Automation (自动化学报), IEEE/CAA Journal of Automatica Sinica (an international SCI journal), and periodical reports on China's automation technology development, intelligent manufacturing standards, and robotics industry statistics. The association organizes the annual China Automation Congress (CAC), the largest automation academic conference in China, and compiles industry white papers on artificial intelligence in manufacturing, industrial Internet of Things (IIoT), and autonomous systems. CAA data and reports are primary references for tracking China's industrial automation penetration, R&D investment in control technology, and the diffusion of smart manufacturing across sectors.", + "zh": "中国自动化学会(CAA)是中国科学技术协会下属的全国性学术团体,代表自动化、控制系统、机器人及智能制造领域的科研人员和从业者。成立于1961年的CAA拥有超过40000名来自学界、科研机构和产业界的会员。CAA出版《自动化学报》《IEEE/CAA控制与信息学报》(国际SCI期刊)及中国自动化技术发展、智能制造标准和机器人行业统计定期报告。学会主办中国最大的自动化学术会议——中国自动化大会(CAC),并编制人工智能在制造业中的应用、工业物联网(IIoT)及自主系统领域白皮书。CAA的数据和报告是追踪中国工业自动化普及率、控制技术研发投入及智能制造跨行业扩散情况的主要参考。" + }, + "website": "https://www.caa.org.cn/", + "data_url": "https://www.caa.org.cn/", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "technology", + "industry", + "robotics", + "manufacturing" + ], + "update_frequency": "annual", + "tags": [ + "中国自动化学会", + "caa", + "chinese-association-of-automation", + "自动化", + "automation", + "控制系统", + "control-systems", + "机器人", + "robotics", + "智能制造", + "intelligent-manufacturing", + "自动化学报", + "journal-of-automation", + "ieee/caa", + "工业物联网", + "industrial-internet-of-things", + "iiot", + "人工智能", + "artificial-intelligence", + "ai", + "中国自动化大会", + "china-automation-congress", + "cac", + "自主系统", + "autonomous-systems", + "中国科学技术协会", + "cast", + "工业自动化", + "industrial-automation", + "智能控制", + "intelligent-control", + "机器视觉", + "machine-vision" + ], + "data_content": { + "en": [ + "China automation technology development reports: annual assessment of automation technology R&D progress, industrialization levels, and market penetration by manufacturing sector", + "Robotics industry white papers: statistics on industrial robot density (robots per 10,000 workers), adoption rates by industry, and domestic vs. imported robot market share", + "Intelligent manufacturing standards tracking: status of China's national and industry standards for intelligent manufacturing, IIoT protocols, and cyber-physical systems", + "Academic publication data: citation metrics, research output volumes, and key research themes from Journal of Automatica Sinica and CAA member publications", + "China Automation Congress proceedings: annual conference abstracts and technical topics reflecting cutting-edge research in control, AI, robotics, and autonomous systems", + "AI in manufacturing surveys: enterprise adoption rates of AI-powered quality control, predictive maintenance, and process optimization across Chinese industrial sectors", + "Control system market analysis: market size and growth data for distributed control systems (DCS), programmable logic controllers (PLC), and SCADA systems in China", + "Member institution data: geographic and sector distribution of CAA member universities, research institutes, and enterprises active in automation R&D", + "International collaboration metrics: data on joint research projects, international standard participation, and academic exchange programs involving Chinese automation researchers" + ], + "zh": [ + "中国自动化技术发展报告:按制造行业分类的自动化技术研发进展、产业化水平和市场渗透率年度评估", + "机器人行业白皮书:工业机器人密度(每万名工人机器人数量)、各行业采用率及国产与进口机器人市场份额统计", + "智能制造标准追踪:中国智能制造、工业物联网协议及信息物理系统国家标准和行业标准制定进展", + "学术出版数据:《IEEE/CAA控制与信息学报》及CAA会员出版物的引用指标、研究产出量和主要研究方向", + "中国自动化大会论文集:年度会议摘要及控制、人工智能、机器人和自主系统前沿研究技术专题", + "制造业人工智能应用调查:中国各工业行业AI驱动质量控制、预测性维护和流程优化的企业采用率", + "控制系统市场分析:中国分布式控制系统(DCS)、可编程逻辑控制器(PLC)和SCADA系统市场规模及增长数据", + "会员机构数据:CAA会员高校、科研机构和企业在自动化研发领域的地域分布和行业分布", + "国际合作指标:中国自动化领域研究人员参与联合研究项目、国际标准制定和学术交流的数据" + ] + }, + "has_api": false, + "file_path": "china/technology/industry_associations/china-automation-association.json" + }, + { + "id": "china-caam", + "name": { + "en": "China Association of Automobile Manufacturers", + "zh": "中国汽车工业协会" + }, + "description": { + "en": "The China Association of Automobile Manufacturers (CAAM) is the national industry association representing China's automotive sector, overseen by the Ministry of Industry and Information Technology. As the authoritative voice of the world's largest automobile market, CAAM publishes monthly and annual production and sales statistics for passenger cars, commercial vehicles, new energy vehicles (NEVs), and motorcycles. Its data covers output by manufacturer, vehicle category, fuel type, and region, making it the primary reference for tracking China's automotive industry trends. CAAM also releases NEV adoption statistics, export data, and policy research reports.", + "zh": "中国汽车工业协会(中汽协)是工业和信息化部主管的全国性汽车行业组织,代表全球最大汽车市场的利益。协会发布乘用车、商用车、新能源汽车及摩托车的月度和年度产销统计数据,按厂商、车型类别、动力类型和地区分类,是追踪中国汽车行业发展趋势的主要数据来源。协会同时发布新能源汽车渗透率、出口数据及行业政策研究报告。" + }, + "website": "http://www.caam.org.cn/", + "data_url": "http://www.caam.org.cn/chn/4/cate_39/index.html", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "economics", + "industry", + "technology", + "trade" + ], + "update_frequency": "monthly", + "tags": [ + "中国汽车工业协会", + "caam", + "中国汽车产销", + "china-auto-production-sales", + "新能源汽车", + "new-energy-vehicles", + "nev", + "乘用车", + "passenger-cars", + "商用车", + "commercial-vehicles", + "汽车出口", + "auto-exports", + "汽车行业", + "automobile-industry", + "电动车", + "electric-vehicles", + "ev", + "汽车产量", + "vehicle-production", + "汽车市场", + "auto-market", + "比亚迪", + "byd", + "新能源渗透率", + "nev-penetration-rate" + ], + "data_content": { + "en": [ + "Monthly production and sales: total vehicle output and sales by manufacturer, including all major domestic and joint venture brands", + "New energy vehicles (NEV): monthly NEV production, sales, and market penetration rate by vehicle type (BEV, PHEV, FCEV)", + "Passenger car segment data: sedan, SUV, MPV, crossover production and sales statistics", + "Commercial vehicle data: trucks, buses, and special purpose vehicles output and sales", + "Automobile exports: monthly vehicle export volume and value by destination country", + "Market share rankings: top-selling models and manufacturer market share by category", + "Industry annual report: comprehensive overview of China's automotive sector performance, trends, and outlook", + "Policy research: analysis of automotive industry policies, emission standards, and electrification targets" + ], + "zh": [ + "月度产销数据:按厂商分类的汽车总产量和销量,涵盖所有主要自主品牌和合资品牌", + "新能源汽车:月度新能源汽车产量、销量及市场渗透率(按纯电动、插混、燃料电池分类)", + "乘用车分类数据:轿车、SUV、MPV、越野车产销统计", + "商用车数据:货车、客车及专用车产销情况", + "汽车出口:月度汽车出口量及出口额,按目标国家分类", + "市场排名:热销车型及各细分市场厂商份额", + "行业年度报告:中国汽车产业全年运行综述、发展趋势与展望", + "政策研究:汽车产业政策、排放标准及电动化目标分析" + ] + }, + "has_api": false, + "file_path": "china/technology/industry_associations/china-caam.json" + }, + { + "id": "china-caamm", + "name": { + "en": "China Association of Agricultural Machinery Manufacturers", + "zh": "中国农业机械工业协会" + }, + "description": { + "en": "Industry association for China's agricultural machinery sector, publishing enterprise statistics, product data, and industry development reports.", + "zh": "中国农业机械行业组织,发布企业统计、产品数据和行业发展报告。" + }, + "website": "http://www.caamm.org.cn/", + "data_url": "http://www.caamm.org.cn/member/qytj.jspx", + "country": "CN", + "geographic_scope": "national", + "authority_level": "other", + "domains": [ + "agriculture", + "industry" + ], + "update_frequency": "monthly", + "tags": [ + "agricultural-machinery", + "farming-equipment", + "industry-statistics" + ], + "data_content": { + "en": [ + "agricultural machinery production statistics", + "farming equipment enterprise data", + "agricultural machinery market analysis" + ], + "zh": [ + "农业机械产量统计", + "农机企业数据", + "农业机械市场分析" + ] + }, + "has_api": false, + "file_path": "china/technology/industry_associations/china-caamm.json" + }, + { + "id": "china-cec", + "name": { + "en": "China Electricity Council", + "zh": "中国电力企业联合会" + }, + "description": { + "en": "The China Electricity Council (CEC) is the national industry association representing China's power enterprises, covering generation, transmission, distribution, and supply of electricity. As the world's largest electricity market, China's power sector data is critical for understanding energy security, carbon neutrality progress, and industrial demand. CEC publishes monthly and annual statistics on electricity generation by source (thermal, hydro, nuclear, wind, solar), total power consumption by sector, installed capacity, transmission infrastructure, and electricity supply-demand balance. CEC's data is the primary reference for tracking China's energy transition, renewable energy deployment, and the electrification of industry and transportation.", + "zh": "中国电力企业联合会(中电联)是代表中国电力企业的全国性行业组织,涵盖发电、输电、配电和供电企业。作为全球最大的电力市场,中国电力行业数据对理解能源安全、碳中和进程及工业需求至关重要。中电联定期发布月度和年度统计数据,内容包括分能源类型(火电、水电、核电、风电、光伏)的发电量、分行业用电量、装机容量、输电基础设施及电力供需平衡情况。中电联数据是追踪中国能源转型、可再生能源部署及工业和交通电气化进程的主要参考来源。" + }, + "website": "https://www.cec.org.cn", + "data_url": "https://www.cec.org.cn/detail/index.html?3-302929", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "energy", + "economics", + "environment", + "industry" + ], + "update_frequency": "monthly", + "tags": [ + "中国电力", + "china-electricity", + "中电联", + "cec", + "电力统计", + "electricity-statistics", + "发电量", + "power-generation", + "用电量", + "electricity-consumption", + "装机容量", + "installed-capacity", + "可再生能源", + "renewable-energy", + "火电", + "thermal-power", + "水电", + "hydropower", + "风电", + "wind-power", + "光伏", + "solar-power", + "核电", + "nuclear-power", + "能源转型", + "energy-transition", + "碳中和", + "carbon-neutrality", + "电力供需", + "power-supply-demand" + ], + "data_content": { + "en": [ + "Power generation by source: monthly total electricity generation broken down by thermal, hydropower, nuclear, wind, and solar power", + "Electricity consumption: monthly total electricity consumption by sector (industry, services, agriculture, residential)", + "Installed capacity: cumulative installed capacity by generation type, including new additions per period", + "Renewable energy statistics: wind and solar power capacity additions, generation volume, and utilization hours", + "Electricity supply-demand balance: regional power surplus/deficit analysis and peak load statistics", + "Power transmission: length of transmission lines and transformer capacity by voltage level", + "Annual Electric Power Industry Statistics: comprehensive yearbook covering all aspects of China's power sector", + "Carbon emission factors: electricity emission factors for China's regional power grids", + "Investment in power sector: capital expenditure on generation, transmission, and distribution infrastructure" + ], + "zh": [ + "分类发电量:按火电、水电、核电、风电、光伏分类的月度总发电量", + "分行业用电量:按工业、服务业、农业、居民生活分类的月度总用电量", + "装机容量:按发电类型分类的累计装机容量,含各期新增装机量", + "可再生能源统计:风电和光伏装机新增容量、发电量及利用小时数", + "电力供需平衡:区域电力盈缺分析和尖峰负荷统计", + "电力输送:按电压等级分类的输电线路长度和变压器容量", + "《电力工业统计年报》:涵盖中国电力行业各方面的综合年度数据", + "碳排放因子:中国区域电网的电力碳排放因子", + "电力行业投资:发电、输电和配电基础设施资本支出情况" + ] + }, + "has_api": false, + "file_path": "china/technology/industry_associations/china-cec.json" + }, + { + "id": "china-cecc", + "name": { + "en": "China Electronics Chamber of Commerce", + "zh": "中国电子商会" + }, + "description": { + "en": "The China Electronics Chamber of Commerce (CECC) is a national industry association established in 1988, operating under the guidance of the Ministry of Industry and Information Technology (MIIT). CECC represents enterprises engaged in manufacturing, trading, and distributing electronic information products across China, with over 8,000 member companies spanning 21 regional branches, 19 professional committees, and 6 industry alliances. The chamber publishes authoritative market statistics, industry development reports, and pricing indices for consumer electronics, home appliances, IT products, and emerging tech categories. It tracks domestic and export trends, conducts industry surveys, and releases data on production output, market share, and enterprise performance in China's electronics sector.", + "zh": "中国电子商会(CECC)是于1988年成立的全国性行业协会,业务受工业和信息化部指导。商会代表全国生产经营电子信息产品的企业,拥有8000余家会员单位,下设21个地方电子商会、19个专业委员会和6个产业联盟。商会发布消费电子、家电、IT产品及新兴技术品类的权威市场统计数据、行业发展报告及价格指数,追踪国内外销售趋势,开展行业调查,并发布中国电子行业生产产值、市场份额及企业经营表现数据。" + }, + "website": "http://www.cecc.org.cn/", + "data_url": "http://www.cecc.org.cn/hangye/", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "technology", + "economics", + "trade", + "statistics" + ], + "update_frequency": "monthly", + "tags": [ + "中国电子商会", + "cecc", + "消费电子", + "consumer-electronics", + "家电", + "home-appliances", + "电子行业", + "electronics-industry", + "IT产品", + "it-products", + "市场统计", + "market-statistics", + "行业报告", + "industry-report", + "电子产品出口", + "electronics-exports", + "智能家居", + "smart-home", + "价格指数", + "price-index", + "电子商务", + "e-commerce", + "工业和信息化部", + "miit", + "电子行业产值", + "electronics-output" + ], + "data_content": { + "en": [ + "Consumer electronics market statistics: monthly and annual sales volume, value, and growth rates for major product categories including TVs, smartphones, tablets, and wearables", + "Home appliances market data: production output, domestic sales, and export figures for white goods and kitchen appliances by brand and region", + "IT products industry report: market size, shipment data, and price trends for computers, peripherals, and networking equipment in China", + "Electronics industry export data: export volumes, values, and destination markets for Chinese electronic products", + "Retail price monitoring: price indices and price comparison data across key consumer electronics categories", + "Enterprise performance statistics: revenue, profit margins, and R&D investment data for major electronics companies", + "New energy vehicle electronics data: demand and supply statistics for automotive electronics and smart cockpit components", + "Smart home and IoT market analysis: adoption rates, shipment data, and market penetration for smart home devices", + "E-waste and recycling statistics: data on electronic waste collection volumes and recycling rates in China", + "Industry development reports: annual white papers on China's electronics industry trends, investment flows, and policy impacts" + ], + "zh": [ + "消费电子市场统计:主要产品品类(电视、智能手机、平板电脑、可穿戴设备等)的月度和年度销量、销售额及增长率", + "家电市场数据:白色家电和厨房电器的生产产值、国内销售及出口数据,按品牌和地区分类", + "IT产品行业报告:中国计算机、外设及网络设备的市场规模、出货数据和价格趋势", + "电子产品出口数据:中国电子产品出口数量、出口额及目的市场", + "零售价格监测:主要消费电子品类的价格指数和比价数据", + "企业经营统计:主要电子企业的营收、利润率及研发投入数据", + "新能源汽车电子数据:汽车电子及智能座舱零部件的供需统计", + "智能家居和物联网市场分析:智能家居设备的普及率、出货数据和市场渗透率", + "电子废弃物和回收统计:中国电子废物回收数量和回收率数据", + "行业发展报告:中国电子行业趋势、投资流向及政策影响年度白皮书" + ] + }, + "has_api": false, + "file_path": "china/technology/industry_associations/china-cecc.json" + }, + { + "id": "china-cemia", + "name": { + "en": "China Electronic Materials Industry Association", + "zh": "中国电子材料行业协会" + }, + "description": { + "en": "China Electronic Materials Industry Association (CEMIA), founded in 1989 and supervised by MIIT, is the national industry association covering semiconductor materials, electronic-grade specialty gases, silicon wafers, third-generation semiconductor materials (SiC/GaN), and photovoltaic materials. Through dedicated sub-committees such as the Semiconductor Materials Branch, CEMIA publishes industry statistics, development reports, and standards for China's electronic materials sector.", + "zh": "中国电子材料行业协会(CEMIA)成立于1989年,是工信部主管的全国性行业协会,业务范围覆盖半导体材料、电子特种气体、硅片、第三代半导体材料(SiC/GaN)、光伏材料等领域,下设半导体材料分会等多个专业分会,发布中国电子材料行业的产业统计、发展报告与行业标准。" + }, + "website": "http://www.cemia.org.cn", + "data_url": "http://www.cemia.org.cn", + "api_url": null, + "authority_level": "other", + "country": "CN", + "domains": [ + "semiconductor-materials", + "electronic-materials", + "photovoltaic-materials", + "industry" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "半导体材料", + "第三代半导体", + "碳化硅", + "氮化镓", + "SiC", + "GaN", + "electronic-materials", + "电子特气", + "光伏材料", + "industry-association", + "MIIT", + "china" + ], + "data_content": { + "en": [ + "Semiconductor materials industry statistics and reports", + "Third-generation semiconductor (SiC/GaN) development data", + "Electronic specialty gas market data", + "Silicon wafer and photovoltaic materials statistics", + "China electronic materials industry standards" + ], + "zh": [ + "半导体材料产业统计与报告", + "第三代半导体(SiC/GaN)产业发展数据", + "电子特种气体市场数据", + "硅片及光伏材料产业统计", + "中国电子材料行业标准" + ] + }, + "has_api": false, + "file_path": "china/technology/industry_associations/china-cemia.json" + }, + { + "id": "china-ces", + "name": { + "en": "China Electrotechnical Society", + "zh": "中国电工技术学会" + }, + "description": { + "en": "The China Electrotechnical Society (CES) is a national academic organization founded in 1981, affiliated with the China Association for Science and Technology. It is the premier professional society for electrical engineering, power electronics, and electrotechnical research in China. CES publishes technical research reports, industry whitepapers, and statistical analyses covering power generation equipment, electric motors, transformers, power electronics, and emerging areas such as new energy vehicles, energy storage systems, and smart grid technologies. Its publications serve as authoritative references for China's electrical and energy equipment industries.", + "zh": "中国电工技术学会(CES)成立于1981年,隶属于中国科学技术协会,是中国电气工程、电力电子和电工技术研究领域最重要的专业学术团体。学会发布技术研究报告、行业白皮书及统计分析,涵盖发电设备、电动机、变压器、电力电子,以及新能源汽车、储能系统和智能电网等新兴领域,其出版物是中国电气和能源装备行业的权威参考资料。" + }, + "data_content": { + "en": [ + "power generation equipment statistics", + "electric motor and transformer industry data", + "power electronics technology reports", + "new energy vehicle charging equipment data", + "energy storage system statistics", + "smart grid technology research", + "electrical industry market analysis", + "technical standards and whitepapers", + "renewable energy integration data", + "industrial electrical equipment output" + ], + "zh": [ + "发电设备统计数据", + "电动机和变压器行业数据", + "电力电子技术报告", + "新能源汽车充电设备数据", + "储能系统统计数据", + "智能电网技术研究", + "电气行业市场分析", + "技术标准与白皮书", + "可再生能源并网数据", + "工业电气设备产量" + ] + }, + "country": "CN", + "authority_level": "research", + "geographic_scope": "national", + "website": "https://www.ces.org.cn", + "data_url": "https://www.ces.org.cn", + "api_url": null, + "domains": [ + "energy", + "manufacturing" + ], + "tags": [ + "electrical-engineering", + "power-electronics", + "smart-grid", + "energy-storage", + "electric-motors", + "电工", + "电气工程", + "电力电子", + "智能电网", + "储能", + "新能源", + "ces", + "中国电工技术学会", + "transformers" + ], + "update_frequency": "irregular", + "has_api": false, + "file_path": "china/technology/industry_associations/china-ces.json" + }, + { + "id": "china-ciesc", + "name": { + "en": "Chemical Industry and Engineering Society of China", + "zh": "中国化工学会" + }, + "description": { + "en": "The Chemical Industry and Engineering Society of China (CIESC) is a national academic organization established in 1922, composed of chemical scientists, engineers and practitioners. Operating under the guidance of the China Association for Science and Technology (CAST), CIESC is the oldest and most authoritative academic body in China's chemical industry. It publishes authoritative industry data including chemical industry economic operation reports, R&D trends in petrochemicals, fine chemicals, coal chemicals, new materials and green chemistry, technology assessment and patent analyses, chemical engineering standards, and expert reports on industrial safety, emission reduction and carbon neutrality pathways. CIESC also publishes leading academic journals (such as Journal of Chemical Industry and Engineering, CIESC Journal) indexed by SCI/EI, hosts national chemical engineering conferences, and releases consulting reports commissioned by government ministries on the chemical sector's modernization, decarbonization, and international competitiveness.", + "zh": "中国化工学会(CIESC)是由化工科学家、工程师和从业人员组成的全国性学术组织,成立于1922年,是中国化工行业历史最悠久、最权威的学术团体,业务受中国科学技术协会指导。学会发布权威的行业数据,包括化工行业经济运行报告、石油化工与精细化工、煤化工、新材料、绿色化学等领域的研发动向、技术评估与专利分析、化工工程标准,以及工业安全、减排和碳中和路径的专家报告。学会还出版SCI/EI收录的《化工学报》等权威学术期刊,主办全国化学工程年会等行业大会,并受政府部委委托发布关于化工行业现代化、低碳转型和国际竞争力的咨询报告。" + }, + "website": "https://www.ciesc.cn", + "data_url": "https://www.ciesc.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "technology", + "industry", + "chemistry" + ], + "update_frequency": "irregular", + "tags": [ + "ciesc", + "中国化工学会", + "化工行业", + "化学工程", + "chemical-industry", + "chemical-engineering", + "petrochemicals", + "石油化工", + "煤化工", + "fine-chemicals", + "精细化工", + "green-chemistry", + "cast", + "化工期刊", + "academic-society" + ], + "data_content": { + "en": [ + "Chemical industry economic operation and trend reports", + "R&D progress in petrochemicals, fine chemicals, coal chemicals and new materials", + "Technology assessments and patent analyses for chemical processes", + "Chemical engineering standards and technical guidelines", + "Industrial safety, emission reduction and carbon neutrality pathway studies", + "Academic journals (CIESC Journal, Journal of Chemical Industry and Engineering)", + "National chemical engineering conference proceedings and expert reports" + ], + "zh": [ + "化工行业经济运行与趋势报告", + "石油化工、精细化工、煤化工与新材料研发进展", + "化工工艺技术评估与专利分析", + "化工工程标准与技术指南", + "工业安全、减排与碳中和路径研究", + "《化工学报》《化学工业与工程》等权威学术期刊", + "全国化学工程年会论文集及专家报告" + ] + }, + "has_api": false, + "file_path": "china/technology/industry_associations/china-ciesc.json" + }, + { + "id": "china-ciia", + "name": { + "en": "China Information Association", + "zh": "中国信息协会" + }, + "description": { + "en": "The China Information Association (CIIA) is a national-level industry organization under the National Development and Reform Commission, promoting the development of China's information industry. It publishes research reports, industry statistics, and policy recommendations on digital economy, informatization, and the information technology sector.", + "zh": "中国信息协会(CIIA)是国家发展和改革委员会主管的全国性行业组织,致力于推动中国信息产业发展,发布数字经济、信息化和信息技术行业的研究报告、行业统计数据及政策建议。" + }, + "website": "https://www.ciia.org.cn", + "data_url": "https://www.ciia.org.cn", + "api_url": null, + "country": "CN", + "domains": [ + "information-technology", + "digital-economy", + "industry" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "china", + "信息协会", + "information-industry", + "信息产业", + "digital-economy", + "数字经济", + "informatization", + "信息化", + "it", + "industry-association", + "行业协会" + ], + "data_content": { + "en": [ + "Industry Research Reports - Analysis and forecasts for China's information technology and digital sectors", + "Informatization Indexes - Statistical indexes measuring China's informatization progress", + "Policy Research - Policy recommendations and analysis for digital economy development", + "Sector Statistics - Data on information industry enterprise scale, revenue, and growth", + "Digital Governance - Reports on e-government and public service digitalization" + ], + "zh": [ + "行业研究报告 - 中国信息技术和数字行业的分析与预测", + "信息化指数 - 衡量中国信息化进程的统计指标", + "政策研究 - 数字经济发展的政策建议和分析", + "行业统计 - 信息行业企业规模、营收和增长数据", + "数字治理 - 电子政务和公共服务数字化报告" + ] + }, + "authority_level": "other", + "has_api": false, + "file_path": "china/technology/industry_associations/china-ciia.json" + }, + { + "id": "china-cima", + "name": { + "en": "China Instrumentation and Measurement Society", + "zh": "中国仪器仪表行业协会" + }, + "description": { + "en": "The China Instrumentation Industry Association (CIMA) is the national industry organization representing China's instrumentation, measurement, and control equipment manufacturing sector. Founded in 1988 and headquartered in Beijing, CIMA encompasses manufacturers of scientific instruments, industrial meters, sensors, testing equipment, optical instruments, and medical measurement devices. CIMA serves as the primary industry body bridging China's instrumentation enterprises with government regulators and international standards organizations. It compiles and publishes authoritative annual statistical reports on China's instrumentation industry covering production output, revenue, import/export trade data, market structure, and technology development trends. CIMA is actively involved in drafting national and industry standards for measurement instruments and promotes China's participation in international metrology and instrumentation standards bodies (OIML, IMEKO). The association represents a sector critical to China's advanced manufacturing, quality control, scientific research, and industrial automation strategies.", + "zh": "中国仪器仪表行业协会(CIMA)是代表中国仪器仪表和控制设备制造业的全国性行业组织,1988年成立,总部位于北京。协会会员涵盖科学仪器、工业仪表、传感器、检测设备、光学仪器和医疗计量设备制造商。CIMA是连接中国仪器仪表企业与政府监管机构及国际标准组织的主要行业机构,编制发布权威的中国仪器仪表行业年度统计报告,内容包括产量、收入、进出口贸易数据、市场结构和技术发展趋势。CIMA积极参与制定测量仪器国家和行业标准,推动中国参与国际计量(OIML、IMEKO)标准体系。该行业协会所代表的领域对中国高端制造、质量控制、科学研究和工业自动化战略至关重要。" + }, + "website": "http://www.cima.org.cn", + "data_url": "http://www.cima.org.cn", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "manufacturing", + "technology", + "trade", + "industry" + ], + "update_frequency": "annual", + "tags": [ + "中国仪器仪表行业协会", + "cima", + "china-instrumentation-industry-association", + "仪器仪表", + "instrumentation", + "测量设备", + "measurement-equipment", + "传感器", + "sensors", + "科学仪器", + "scientific-instruments", + "工业仪表", + "industrial-meters", + "计量", + "metrology", + "检测设备", + "testing-equipment", + "光学仪器", + "optical-instruments", + "行业统计", + "industry-statistics", + "进出口", + "import-export", + "高端制造", + "advanced-manufacturing", + "工业自动化", + "industrial-automation" + ], + "data_content": { + "en": [ + "Annual industry statistical report: comprehensive production output, revenue, profit, employment, and enterprise count data for China's instrumentation and measurement sector", + "Import and export trade data: annual and monthly trade statistics for China's instrumentation products including major product categories, trading partners, and trade balance", + "Market structure analysis: enterprise scale distribution, regional industry concentration, domestic vs. foreign enterprise market share in Chinese instrumentation sector", + "Industry technology development reports: key technology trends, R&D investment levels, patent activity, and technology gap assessments for Chinese instrumentation", + "Product category statistics: sub-sector data covering scientific instruments, industrial control instruments, medical measurement devices, optical instruments, and sensor markets", + "Industry standards information: national and industry technical standards (GB, JB standards) for measurement instruments developed or participated in by CIMA", + "Enterprise directory and ranking: China's major instrumentation manufacturers by revenue, product specialization, and market position", + "Investment and policy analysis: government policies affecting the instrumentation sector, investment incentives, and development plan assessments" + ], + "zh": [ + "年度行业统计报告:中国仪器仪表行业产量、收入、利润、就业人数和企业数量综合数据", + "进出口贸易数据:中国仪器仪表产品年度和月度贸易统计,包括主要产品类别、贸易伙伴和贸易差额", + "市场结构分析:企业规模分布、区域产业集中度、国内外企业市场份额", + "行业技术发展报告:中国仪器仪表行业关键技术趋势、研发投入水平、专利活动和技术差距评估", + "产品类别统计:科学仪器、工业控制仪表、医疗计量设备、光学仪器和传感器细分市场数据", + "行业标准信息:CIMA参与制定的测量仪器国家标准(GB)和行业标准(JB)", + "企业名录与排名:按收入、产品专长和市场地位分类的中国主要仪器仪表制造商", + "投资与政策分析:影响仪器仪表行业的政府政策、投资激励措施和发展规划评估" + ] + }, + "has_api": false, + "file_path": "china/technology/industry_associations/china-cima.json" + }, + { + "id": "china-cisa", + "name": { + "en": "China Iron and Steel Association", + "zh": "中国钢铁工业协会" + }, + "description": { + "en": "The China Iron and Steel Association (CISA) is the national industry association representing China's iron and steel sector, the world's largest steel producer accounting for over 50% of global output. CISA publishes authoritative monthly and annual statistics on crude steel production, pig iron output, steel product consumption, iron ore imports, coking coal usage, and steel prices. Its data is essential for global commodity markets, supply chain analysis, and industrial policy research. CISA also tracks enterprise-level performance indicators, capacity utilization rates, and environmental compliance metrics for major steel mills across China.", + "zh": "中国钢铁工业协会(中钢协)是代表中国钢铁行业的全国性行业组织。中国是全球最大钢铁生产国,产量占全球总量的50%以上。协会发布粗钢产量、生铁产量、钢材消费、铁矿石进口、炼焦煤使用及钢材价格等权威月度和年度统计数据,是全球大宗商品市场、供应链分析和产业政策研究的重要数据来源。协会还追踪全国主要钢铁企业的运营绩效指标、产能利用率及环保合规情况。" + }, + "website": "https://www.chinaisa.org.cn/", + "data_url": "https://www.chinaisa.org.cn/gxportal/xfgl/portal/index.html", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "economics", + "industry", + "trade", + "environment" + ], + "update_frequency": "monthly", + "tags": [ + "中国钢铁工业协会", + "cisa", + "中国钢铁产量", + "china-steel-production", + "粗钢", + "crude-steel", + "生铁", + "pig-iron", + "铁矿石", + "iron-ore", + "钢材价格", + "steel-prices", + "炼焦煤", + "coking-coal", + "钢铁行业", + "steel-industry", + "产能利用率", + "capacity-utilization", + "钢铁出口", + "steel-exports", + "冶金", + "metallurgy", + "大宗商品", + "commodities", + "宝钢", + "baosteel", + "碳排放", + "carbon-emissions" + ], + "data_content": { + "en": [ + "Crude steel production: monthly and annual output by province, enterprise type, and major mill", + "Pig iron and iron ore: monthly pig iron production and iron ore import volumes by origin country (Australia, Brazil, etc.)", + "Steel product consumption: downstream demand by sector (construction, machinery, automotive, shipbuilding)", + "Steel prices: composite price indices for major steel products (rebar, hot-rolled coil, plate, wire rod)", + "Enterprise performance: profitability, revenue, and loss data for key steel enterprises", + "Capacity and utilization: installed steelmaking capacity and utilization rates", + "Coking coal and coke: monthly consumption and price data for raw material inputs", + "Environmental metrics: energy consumption per ton of steel, emission reduction progress", + "Steel export and import: monthly trade volumes and values by product category and destination" + ], + "zh": [ + "粗钢产量:按省份、企业性质和主要钢厂分类的月度和年度产量", + "生铁与铁矿石:月度生铁产量及按来源国(澳大利亚、巴西等)分类的铁矿石进口量", + "钢材消费:按下游行业(建筑、机械、汽车、造船)分类的消费需求", + "钢材价格:主要钢铁产品(螺纹钢、热轧卷板、中厚板、线材)的综合价格指数", + "企业绩效:重点钢铁企业盈利情况、营收及亏损数据", + "产能与利用率:炼钢产能及产能利用率", + "炼焦煤与焦炭:原料月度消耗量及价格数据", + "环保指标:吨钢能耗、减排进展数据", + "钢铁进出口:按产品类别和目的地分类的月度贸易量及贸易额" + ] + }, + "has_api": false, + "file_path": "china/technology/industry_associations/china-cisa.json" + }, + { + "id": "china-cmes", + "name": { + "en": "Chinese Mechanical Engineering Society", + "zh": "中国机械工程学会" + }, + "description": { + "en": "The Chinese Mechanical Engineering Society (CMES) is China's largest national academic society in engineering, with over 800,000 members. Founded in 1936 and affiliated with the China Association for Science and Technology, CMES promotes research and development in mechanical engineering, manufacturing, and advanced equipment. The society publishes academic journals, industry reports, and technology roadmaps covering robotics, intelligent manufacturing, green manufacturing, additive manufacturing, and precision engineering. CMES data and publications are key references for China's manufacturing policy, Made in China 2025 implementation, and industrial technology development.", + "zh": "中国机械工程学会是中国最大的工程类全国性学术团体,会员逾80万人,1936年成立,主管单位为中国科学技术协会。学会致力于推动机械工程、制造业和高端装备领域的研究与发展,出版学术期刊、行业报告和技术路线图,涵盖机器人、智能制造、绿色制造、增材制造和精密工程等领域,是中国制造业政策、《中国制造2025》落实情况和工业技术发展的重要参考来源。" + }, + "website": "https://www.cmes.org", + "data_url": "https://www.cmes.org", + "api_url": null, + "country": "CN", + "domains": [ + "manufacturing", + "technology", + "engineering", + "industry" + ], + "geographic_scope": "national", + "update_frequency": "irregular", + "tags": [ + "china", + "mechanical-engineering", + "机械工程", + "中国机械工程学会", + "manufacturing", + "制造业", + "intelligent-manufacturing", + "智能制造", + "robotics", + "机器人", + "advanced-equipment", + "高端装备", + "additive-manufacturing", + "增材制造", + "made-in-china-2025", + "中国制造2025" + ], + "data_content": { + "en": [ + "Academic Journals - Research publications including Chinese Journal of Mechanical Engineering", + "Manufacturing Technology Roadmaps - Forward-looking technology development plans for key sectors", + "Intelligent Manufacturing Reports - Data and analysis on China's smart factory and automation progress", + "Industry Standards Research - Technical standards development in mechanical engineering", + "Robotics and Automation Data - Statistics and trends for industrial robots and automation", + "Green Manufacturing Reports - Sustainability metrics for China's manufacturing industry", + "Annual Academic Conference Proceedings - Cutting-edge research from China's leading mechanical engineering symposium" + ], + "zh": [ + "学术期刊 - 包括《中国机械工程》等研究出版物", + "制造业技术路线图 - 关键领域前瞻性技术发展规划", + "智能制造报告 - 中国智能工厂和自动化进展数据与分析", + "行业标准研究 - 机械工程领域技术标准制定", + "机器人与自动化数据 - 工业机器人和自动化统计及趋势", + "绿色制造报告 - 中国制造业可持续发展指标", + "年度学术会议论文集 - 中国机械工程领域顶级学术会议最新研究成果" + ] + }, + "authority_level": "research", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cmes.json" + }, + { + "id": "china-cnfia", + "name": { + "en": "China National Food Industry Association", + "zh": "中国食品工业协会" + }, + "description": { + "en": "National association for China's food industry, publishing industry statistics, production data, and market analysis reports covering food manufacturing and processing sectors.", + "zh": "中国食品工业全国性行业组织,发布食品工业统计、产量数据和市场分析报告,涵盖食品制造和加工行业。" + }, + "website": "https://www.cnfia.cn/", + "data_url": "https://www.cnfia.cn/archives/category/hangyetongji", + "country": "CN", + "geographic_scope": "national", + "authority_level": "other", + "domains": [ + "agriculture", + "industry" + ], + "update_frequency": "monthly", + "tags": [ + "food-industry", + "food-manufacturing", + "industry-statistics" + ], + "data_content": { + "en": [ + "food industry production statistics", + "food manufacturing data", + "food market analysis" + ], + "zh": [ + "食品工业产量统计", + "食品制造数据", + "食品市场分析" + ] + }, + "has_api": false, + "file_path": "china/technology/industry_associations/china-cnfia.json" + }, + { + "id": "china-cntac", + "name": { + "en": "China National Textile and Apparel Council", + "zh": "中国纺织工业联合会" + }, + "description": { + "en": "The China National Textile and Apparel Council (CNTAC) is the national industry association representing China's textile, apparel, and fashion manufacturing sector — the world's largest, accounting for over one-third of global textile and apparel exports. CNTAC publishes authoritative monthly and annual statistics on textile and apparel production volumes, export values, raw material prices (cotton, chemical fibers, wool, silk), enterprise profitability, and workforce employment. Its data covers the full supply chain from fiber production to finished garments, tracking key segments including cotton spinning, chemical fiber manufacturing, weaving, printing and dyeing, knitting, and apparel. CNTAC also monitors sustainability indicators such as energy consumption per unit output, wastewater discharge, and progress toward green manufacturing standards. The council publishes the China Textile Industry Development Report and coordinates international standards alignment with ISO and other global bodies.", + "zh": "中国纺织工业联合会(中纺联)是代表中国纺织、服装和时尚制造业的全国性行业组织。中国是全球最大的纺织服装生产国和出口国,出口量占全球总量的三分之一以上。协会发布权威的月度和年度统计数据,涵盖纺织服装产量、出口额、原料价格(棉花、化纤、羊毛、蚕丝)、企业盈利和从业人员情况,覆盖从纤维生产到成品服装的完整供应链,追踪棉纺、化纤、织造、印染、针织和服装等关键细分领域。协会还监测单位产量能耗、废水排放等可持续发展指标及绿色制造标准推进情况,出版《中国纺织工业发展报告》,并协调与ISO等国际机构的标准对接工作。" + }, + "website": "https://www.cntac.org.cn/", + "data_url": "https://www.cntac.org.cn/jinghua", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "industry", + "trade", + "economics" + ], + "update_frequency": "monthly", + "tags": [ + "中国纺织工业联合会", + "cntac", + "china-national-textile-and-apparel-council", + "纺织产量", + "textile-production", + "服装出口", + "apparel-exports", + "棉花价格", + "cotton-prices", + "化纤", + "chemical-fiber", + "纺织行业", + "textile-industry", + "时尚产业", + "fashion-industry", + "纱线", + "yarn", + "面料", + "fabric", + "印染", + "dyeing-and-printing", + "绿色制造", + "green-manufacturing", + "纺织贸易", + "textile-trade", + "纺织年鉴", + "textile-yearbook", + "快时尚", + "fast-fashion", + "供应链", + "supply-chain" + ], + "data_content": { + "en": [ + "Textile and apparel production: monthly output volumes for yarn, fabric, chemical fiber, and finished garments by product category and province", + "Export and import trade: monthly textile and apparel trade values and volumes by product type and destination/origin country", + "Raw material prices: spot and futures price indices for cotton (Zhengzhou Cotton Exchange reference), polyester, viscose, nylon, wool, and silk", + "Enterprise performance: revenue, profit margins, and loss data for major textile and apparel enterprises by sub-sector", + "Employment and workforce: number of employees in the textile and apparel sector, wage levels, and labor productivity metrics", + "Energy and resource consumption: energy consumption per unit of output, water usage, and wastewater discharge for key sub-sectors", + "Retail and consumption: domestic apparel retail sales values and consumer spending trends from major cities", + "China Textile Industry Development Report: comprehensive annual analysis of production, trade, technology, and policy trends", + "Sustainability indicators: progress on green manufacturing certifications, chemical safety compliance, and low-carbon transition metrics" + ], + "zh": [ + "纺织服装产量:按产品类别和省份分类的纱线、面料、化纤和成品服装月度产量", + "进出口贸易:按产品类型和目的地/来源国分类的月度纺织服装贸易额和贸易量", + "原料价格:棉花(郑州棉花交易所参考价)、涤纶、粘胶、锦纶、羊毛和蚕丝的现货及期货价格指数", + "企业绩效:按细分行业分类的主要纺织服装企业营收、利润率和亏损数据", + "从业人员:纺织服装行业就业人数、工资水平和劳动生产率指标", + "能源和资源消耗:主要细分行业单位产量能耗、用水量和废水排放量", + "零售与消费:国内服装零售额和主要城市消费支出趋势", + "中国纺织工业发展报告:生产、贸易、技术和政策趋势的综合年度分析", + "可持续发展指标:绿色制造认证进展、化学品安全合规情况和低碳转型指标" + ] + }, + "has_api": false, + "file_path": "china/technology/industry_associations/china-cntac.json" + }, + { + "id": "china-cpcif", + "name": { + "en": "China Petroleum and Chemical Industry Federation", + "zh": "中国石油和化学工业联合会" + }, + "description": { + "en": "The China Petroleum and Chemical Industry Federation (CPCIF) is the national industry association representing China's petroleum refining, petrochemical, basic chemical, and specialty chemical sectors. Supervised by the Ministry of Industry and Information Technology, CPCIF serves over 8,000 member enterprises and publishes authoritative statistics on China's chemical industry output, trade, energy consumption, and investment. Its data covers crude oil processing, chemical fertilizers, pesticides, synthetic resins, synthetic rubber, and specialty chemicals production and pricing. CPCIF also releases the annual China Chemical Industry Report and monthly industry economic monitoring reports, making it the primary reference for tracking one of the world's largest chemical industries.", + "zh": "中国石油和化学工业联合会(中国石化联合会)是代表中国石油炼制、石油化工、基础化工和精细化工行业的全国性行业组织,工业和信息化部主管,拥有会员企业8000余家。联合会发布化工行业产量、进出口、能源消耗和投资等权威统计数据,覆盖原油加工、化肥、农药、合成树脂、合成橡胶及精细化工等产品的生产和价格信息。联合会还发布年度《中国化学工业年度报告》和月度行业经济运行监测报告,是追踪全球最大化工产业之一的主要数据来源。" + }, + "website": "http://www.cpcif.org.cn", + "data_url": "http://www.cpcif.org.cn/list/stats", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "economics", + "industry", + "energy", + "trade" + ], + "update_frequency": "monthly", + "tags": [ + "中国石油和化学工业联合会", + "cpcif", + "china-petroleum-chemical-industry-federation", + "石化行业", + "petrochemical-industry", + "化工产品", + "chemical-products", + "原油加工", + "crude-oil-processing", + "化肥产量", + "chemical-fertilizer-production", + "合成树脂", + "synthetic-resins", + "合成橡胶", + "synthetic-rubber", + "精细化工", + "specialty-chemicals", + "化工出口", + "chemical-exports", + "石化投资", + "petrochemical-investment", + "化工能耗", + "chemical-industry-energy-consumption", + "塑料", + "plastics", + "农药", + "pesticides", + "化工经济运行", + "chemical-industry-economic-performance" + ], + "data_content": { + "en": [ + "Monthly chemical industry output: production volume of major chemical products including synthetic resins, synthetic rubber, chemical fertilizers, pesticides, dyes, and coatings", + "Crude oil processing data: monthly crude oil input volume, utilization rates of refineries, and refined product yields by type", + "Industry economic monitoring: monthly revenue, profit, investment, and employment statistics for the petroleum and chemical sector", + "Import and export statistics: trade data for petroleum products, chemical raw materials, and finished chemical goods by product category and trading partner", + "Energy consumption: energy use intensity and total energy consumption of the chemical industry by fuel type and sub-sector", + "Chemical product prices: monthly price indices for key chemical commodities including ethylene, propylene, methanol, and polyethylene", + "Annual China chemical industry report: comprehensive yearly assessment of industry development, capacity changes, market trends, and policy outlook", + "Safety statistics: accident reports, fatality rates, and workplace safety performance indicators for the sector", + "Regional distribution: chemical industry output and investment by province and major industrial clusters" + ], + "zh": [ + "月度化工产品产量:合成树脂、合成橡胶、化肥、农药、染料、涂料等主要化工产品产量", + "原油加工数据:月度原油加工量、炼油厂开工率及成品油产量结构", + "行业经济运行:石油和化工行业月度营业收入、利润总额、固定资产投资和从业人员统计", + "进出口统计:石化产品、化工原料和成品的贸易数据,按品类和贸易伙伴分类", + "能源消耗:化工行业能耗强度及分燃料品种、分子行业能源消耗总量", + "化工产品价格:乙烯、丙烯、甲醇、聚乙烯等主要化工大宗商品月度价格指数", + "中国化学工业年度报告:行业发展综合评估、产能变化、市场趋势及政策展望", + "安全生产统计:行业事故报告、死亡率及安全生产绩效指标", + "区域分布:各省份及主要化工产业集群产量和投资情况" + ] + }, + "has_api": false, + "file_path": "china/technology/industry_associations/china-cpcif.json" + }, + { + "id": "china-cpia", + "name": { + "en": "China Photovoltaic Industry Association", + "zh": "中国光伏行业协会" + }, + "description": { + "en": "Industry association for China's photovoltaic sector, publishing solar capacity installations, production data, export statistics, and industry development reports.", + "zh": "中国光伏行业协会,发布太阳能装机容量、产量数据、出口统计和行业发展报告。" + }, + "website": "https://www.chinapv.org.cn/", + "data_url": "https://www.chinapv.org.cn/StaticPage/association_page1.html", + "country": "CN", + "geographic_scope": "national", + "authority_level": "other", + "domains": [ + "energy", + "industry" + ], + "update_frequency": "monthly", + "tags": [ + "photovoltaic", + "solar-energy", + "renewable-energy", + "industry-statistics" + ], + "data_content": { + "en": [ + "solar PV installation statistics", + "photovoltaic production data", + "solar equipment export statistics" + ], + "zh": [ + "光伏装机统计", + "光伏产量数据", + "太阳能设备出口统计" + ] + }, + "has_api": false, + "file_path": "china/technology/industry_associations/china-cpia.json" + }, + { + "id": "china-csee", + "name": { + "en": "Chinese Society for Electrical Engineering", + "zh": "中国电机工程学会" + }, + "description": { + "en": "The Chinese Society for Electrical Engineering (CSEE), founded in 1934, is China's leading national academic and professional society for electrical engineering, power systems, and energy. With over 100,000 members and affiliated with the China Association for Science and Technology (CAST), CSEE publishes technical standards, research reports, and industry statistics covering power generation, transmission, distribution, smart grids, renewable energy integration, and electrical equipment. It also serves as China's national member in the International Electrotechnical Commission (IEC) and the Union Internationale d'Electrothermie (UIE).", + "zh": "中国电机工程学会(CSEE)成立于1934年,是中国电气工程、电力系统和能源领域最重要的全国性学术和专业组织,会员逾10万人,隶属于中国科学技术协会。发布涵盖发电、输电、配电、智能电网、可再生能源并网和电气设备的技术标准、研究报告和行业统计。同时是国际电工委员会(IEC)和国际电热联合会(UIE)的中国全国会员。" + }, + "website": "https://www.csee.org.cn", + "data_url": "https://www.csee.org.cn/", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "energy", + "technology" + ], + "update_frequency": "irregular", + "tags": [ + "电力", + "power", + "电气工程", + "electrical-engineering", + "智能电网", + "smart-grid", + "可再生能源", + "renewable-energy", + "电力系统", + "power-system", + "csee", + "中国电机工程学会", + "发电", + "generation", + "输电", + "transmission", + "配电", + "distribution", + "新能源", + "new-energy", + "储能", + "energy-storage", + "电力技术", + "power-technology", + "iec", + "标准", + "standards" + ], + "data_content": { + "en": [ + "Annual Power Industry Reports - Comprehensive statistics on China's electricity generation, consumption, and grid infrastructure", + "Renewable Energy Integration - Data on wind, solar, and hydro power connectivity and curtailment rates", + "Smart Grid Development - Reports on advanced metering infrastructure, EV charging, and grid automation progress", + "Power Equipment Statistics - Installed capacity by generation type (thermal, hydro, nuclear, wind, solar)", + "Grid Investment Data - Annual capital expenditure data for transmission and distribution infrastructure", + "Carbon Emission Factors - Power sector CO2 emission intensity by regional grid", + "Technical Standards - CSEE-published electrical engineering standards and technical guidelines", + "Academic Publications - Peer-reviewed journals including Proceedings of the CSEE (中国电机工程学报)", + "Conference Proceedings - Technical papers from major power engineering conferences in China", + "Industry Talent Reports - Annual statistics on electrical engineering workforce and education" + ], + "zh": [ + "年度电力行业报告 - 中国发电量、用电量和电网基础设施综合统计", + "新能源并网 - 风电、光伏和水电接入及弃能率数据", + "智能电网发展 - 高级计量设施、电动汽车充电桩和电网自动化进展报告", + "电力装备统计 - 按发电类型(火电、水电、核电、风电、光伏)划分的装机容量", + "电网投资数据 - 输电和配电基础设施年度资本支出", + "碳排放因子 - 各区域电网电力行业CO2排放强度", + "技术标准 - 中国电机工程学会发布的电气工程标准和技术规范", + "学术出版物 - 《中国电机工程学报》等同行评审期刊", + "会议论文集 - 中国主要电力工程会议技术论文", + "行业人才报告 - 电气工程从业人员和教育情况年度统计" + ] + }, + "has_api": false, + "file_path": "china/technology/industry_associations/china-csee.json" + }, + { + "id": "china-csm", + "name": { + "en": "Chinese Society for Metals", + "zh": "中国金属学会" + }, + "description": { + "en": "The Chinese Society for Metals (CSM) is a national academic organization founded in 1956, operating under the China Association for Science and Technology. It is the leading professional society for metallurgical science and technology in China, representing scientists and engineers in iron and steel, non-ferrous metals, functional materials, and advanced manufacturing. CSM publishes key industry statistics, technical standards, research reports, and academic journals covering China's metals and materials industries. It plays a central role in bridging scientific research and industrial applications for China's steel and metals sector.", + "zh": "中国金属学会(CSM)成立于1956年,是中国科学技术协会下属的全国性学术团体,是中国金属学和材料科技领域最重要的专业学会,代表钢铁、有色金属、功能材料和先进制造领域的科学家和工程师。学会发布主要行业统计数据、技术标准、研究报告及学术期刊,覆盖中国金属和材料工业,在中国钢铁和金属行业的科学研究与产业应用对接中发挥核心作用。" + }, + "data_content": { + "en": [ + "iron and steel production statistics", + "non-ferrous metals industry data", + "metallurgical technology research reports", + "materials science academic publications", + "industry technical standards", + "steel consumption and market data", + "advanced manufacturing statistics", + "academic conference proceedings and papers" + ], + "zh": [ + "钢铁生产统计数据", + "有色金属行业数据", + "冶金技术研究报告", + "材料科学学术出版物", + "行业技术标准", + "钢铁消费与市场数据", + "先进制造业统计数据", + "学术会议论文集" + ] + }, + "country": "CN", + "authority_level": "research", + "geographic_scope": "national", + "website": "https://www.csm.org.cn", + "data_url": "https://www.csm.org.cn", + "api_url": null, + "domains": [ + "manufacturing", + "science" + ], + "tags": [ + "steel", + "metals", + "metallurgy", + "materials-science", + "iron", + "非铁金属", + "钢铁", + "金属", + "冶金", + "材料科学", + "csm", + "中国金属学会", + "中国钢铁", + "advanced-manufacturing" + ], + "update_frequency": "irregular", + "has_api": false, + "file_path": "china/technology/industry_associations/china-csm.json" + }, + { + "id": "china-csre", + "name": { + "en": "China Society of Rare Earths", + "zh": "中国稀土学会" + }, + "description": { + "en": "Industry association for China's rare earth sector, publishing production statistics, export data, pricing information, and industry policy analysis for rare earth elements.", + "zh": "中国稀土学会组织,发布稀土产量统计、出口数据、价格信息和行业政策分析。" + }, + "website": "http://www.cs-re.org.cn/", + "data_url": "http://www.cs-re.org.cn/c50", + "country": "CN", + "geographic_scope": "national", + "authority_level": "other", + "domains": [ + "resources", + "industry" + ], + "update_frequency": "monthly", + "tags": [ + "rare-earth", + "minerals", + "strategic-resources", + "industry-statistics" + ], + "data_content": { + "en": [ + "rare earth production statistics", + "rare earth export data", + "rare earth pricing information" + ], + "zh": [ + "稀土产量统计", + "稀土出口数据", + "稀土价格信息" + ] + }, + "has_api": false, + "file_path": "china/technology/industry_associations/china-csre.json" + }, + { + "id": "china-cwea", + "name": { + "en": "Chinese Wind Energy Association", + "zh": "中国可再生能源学会风能专业委员会" + }, + "description": { + "en": "Professional committee under the Chinese Renewable Energy Society focused on wind energy, publishing wind power installation data, industry statistics, and market analysis.", + "zh": "中国可再生能源学会下属风能专业委员会,发布风电装机数据、行业统计和市场分析。" + }, + "website": "http://www.cwea.org.cn/", + "data_url": "http://www.cwea.org.cn/news_lastest.html", + "country": "CN", + "geographic_scope": "national", + "authority_level": "other", + "domains": [ + "energy", + "industry" + ], + "update_frequency": "quarterly", + "tags": [ + "wind-energy", + "renewable-energy", + "wind-power", + "industry-statistics" + ], + "data_content": { + "en": [ + "wind power installation statistics", + "wind turbine capacity data", + "wind energy market analysis" + ], + "zh": [ + "风电装机统计", + "风力发电容量数据", + "风能市场分析" + ] + }, + "has_api": false, + "file_path": "china/technology/industry_associations/china-cwea.json" + }, + { + "id": "china-isc", + "name": { + "en": "Internet Society of China", + "zh": "中国互联网协会" + }, + "description": { + "en": "The Internet Society of China (ISC) is a national industry association supervised by the Ministry of Industry and Information Technology, representing China's internet industry ecosystem. It publishes authoritative research reports on internet industry development, cybersecurity, digital economy, and internet governance. ISC's annual China Internet Industry Report and thematic research reports on topics such as mobile internet, cloud computing, artificial intelligence, and e-commerce are widely cited by industry practitioners, regulators, and researchers.", + "zh": "中国互联网协会(ISC)是工业和信息化部主管的全国性行业协会,代表中国互联网产业生态。协会发布互联网产业发展、网络安全、数字经济和互联网治理等权威研究报告。协会年度《中国互联网行业发展报告》及移动互联网、云计算、人工智能、电子商务等专题研究报告,被业界从业者、监管机构和研究人员广泛引用。" + }, + "website": "https://www.isc.org.cn/", + "data_url": "https://www.isc.org.cn/yanjiu/index.html", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "technology", + "economics", + "statistics" + ], + "update_frequency": "irregular", + "tags": [ + "中国互联网协会", + "internet-society-of-china", + "isc", + "互联网行业", + "internet-industry", + "数字经济", + "digital-economy", + "网络安全", + "cybersecurity", + "云计算", + "cloud-computing", + "人工智能", + "artificial-intelligence", + "电子商务", + "e-commerce", + "互联网治理", + "internet-governance", + "行业报告", + "industry-report", + "移动互联网", + "mobile-internet" + ], + "data_content": { + "en": [ + "China Internet Industry Report: annual overview of China's internet industry development, key metrics, and trends", + "Digital Economy: data on China's digital economy scale, contribution to GDP, and sector breakdown", + "Cybersecurity: reports on China's cybersecurity landscape, threats, policy developments", + "Mobile Internet: mobile app ecosystem, user behavior, smartphone penetration statistics", + "Cloud Computing: cloud adoption rates, market size, major service provider analysis", + "Artificial Intelligence: AI industry development, application scenarios, investment data in China", + "E-Commerce: online retail data, cross-border e-commerce statistics, platform economy", + "Internet Governance: regulatory environment, policy developments, compliance data", + "Thematic Research Reports: in-depth analyses of specific internet subsectors and emerging technologies" + ], + "zh": [ + "中国互联网行业发展报告:年度互联网行业发展综览、关键指标与发展趋势", + "数字经济:中国数字经济规模、对GDP贡献及行业结构数据", + "网络安全:中国网络安全态势、威胁情报及政策发展报告", + "移动互联网:移动应用生态、用户行为、智能手机普及率统计", + "云计算:云服务采用率、市场规模、主要服务商分析", + "人工智能:AI产业发展、应用场景、国内投资数据", + "电子商务:网络零售数据、跨境电商统计、平台经济情况", + "互联网治理:监管环境、政策动态、合规数据", + "专题研究报告:互联网细分领域及新兴技术的深度分析报告" + ] + }, + "has_api": false, + "file_path": "china/technology/industry_associations/china-isc.json" + }, + { + "id": "china-cnipa-patents", + "name": { + "en": "China National Intellectual Property Administration - Patent Statistics", + "zh": "国家知识产权局专利统计" + }, + "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年以来的历史数据,包括月度报告、年度报告和专题统计分析。" + }, + "website": "https://www.cnipa.gov.cn/", + "data_url": "https://www.cnipa.gov.cn/col/col61/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "technology", + "intellectual-property", + "innovation" + ], + "update_frequency": "monthly", + "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" + ], + "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-ctmo", + "name": { + "en": "China Trademark Office (CNIPA Trademark Bureau)", + "zh": "国家知识产权局商标局" + }, + "description": { + "en": "The China Trademark Office (CTMO), officially the Trademark Bureau of the China National Intellectual Property Administration (CNIPA), is the government body responsible for trademark registration, review, and protection across China. As the world's largest trademark office by filings, CTMO processes over 9 million trademark applications annually and maintains a database of more than 40 million registered trademarks. The office provides access to China's trademark registration database via the China Trademark Network (CTM Online), enabling search by mark name, applicant, registration number, and international classification. CTMO publishes annual trademark statistics reports covering new applications, registrations, renewals, oppositions, and invalidation decisions by industry sector, geographic origin, and applicant type. Its data is essential for brand asset management, competitive intelligence, IP litigation support, and cross-border trademark protection research.", + "zh": "国家知识产权局商标局(原中国商标局)是负责中国商标注册、审查和保护的政府机构。作为全球申请量最大的商标局,商标局每年处理逾900万件商标申请,维护着超过4000万件注册商标数据库。商标局通过中国商标网(CTM在线)提供商标注册数据库查询,支持按商标名称、申请人、注册号和国际分类检索。商标局发布年度商标统计报告,按行业类别、地域来源和申请人类型,涵盖新申请量、注册量、续展量、异议量和无效宣告裁定情况。其数据对品牌资产管理、竞争情报、知识产权诉讼支持及跨境商标保护研究具有重要价值。" + }, + "website": "https://sbj.cnipa.gov.cn", + "data_url": "https://sbj.cnipa.gov.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "intellectual-property", + "law", + "commerce" + ], + "update_frequency": "daily", + "tags": [ + "ctmo", + "cnipa", + "商标局", + "中国商标", + "商标注册", + "知识产权", + "trademark", + "trademark-registration", + "intellectual-property", + "brand", + "ip-law", + "品牌", + "商标检索", + "china-trademark", + "trademark-database" + ], + "data_content": { + "en": [ + "China trademark registration database (40+ million trademarks)", + "Trademark application and registration statistics by industry class and region", + "Annual trademark statistical reports", + "Trademark opposition, cancellation, and invalidation decisions", + "Madrid international trademark registration data for China", + "Geographic indication trademark registry", + "Trademark renewal and transfer records" + ], + "zh": [ + "中国商标注册数据库(逾4000万件商标)", + "按行业类别和地域分类的商标申请与注册统计", + "年度商标统计报告", + "商标异议、撤销和无效宣告裁定", + "中国马德里国际商标注册数据", + "地理标志商标注册信息", + "商标续展与转让记录" + ] + }, + "has_api": false, + "file_path": "china/technology/intellectual_property/china-ctmo.json" + }, + { + "id": "china-cac", + "name": { + "en": "Cyberspace Administration of China", + "zh": "国家互联网信息办公室" + }, + "description": { + "en": "Official internet governance and digital economy data from China's Cyberspace Administration of China (CAC). Covers internet industry statistics, data security regulations, online platform compliance data, digital content oversight reports, cybersecurity policy documents, and the digital economy regulatory framework. The CAC is China's central internet regulatory and governance authority responsible for online content management, data security, personal information protection, and cybersecurity supervision.", + "zh": "国家互联网信息办公室(网信办)发布的官方互联网治理与数字经济数据,涵盖互联网行业统计、数据安全法规、在线平台合规数据、数字内容监管报告、网络安全政策文件及数字经济监管框架。网信办是中国互联网监管与治理的核心机构,负责网络内容管理、数据安全、个人信息保护及网络安全监管。" + }, + "website": "https://www.cac.gov.cn/", + "data_url": "https://www.cac.gov.cn/wxzw/sjzl/A093708index_1.htm", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "technology", + "governance", + "economics" + ], + "update_frequency": "irregular", + "tags": [ + "网信办", + "cac", + "网络安全", + "cybersecurity", + "数据安全", + "data-security", + "互联网监管", + "internet-regulation", + "数字经济", + "digital-economy", + "个人信息保护", + "personal-information-protection", + "在线平台", + "online-platform", + "互联网治理", + "internet-governance", + "网络内容", + "online-content", + "数字化", + "digitalization", + "信息安全", + "information-security", + "互联网统计", + "internet-statistics" + ], + "data_content": { + "en": [ + "Internet industry statistics: market size, user counts, revenue, and growth rates of China's internet sector", + "Data security regulations: laws, regulations, and standards for data protection and cybersecurity in China", + "Online platform compliance reports: platform governance, content moderation, and algorithmic recommendation oversight", + "Personal information protection enforcement: cases, penalties, and compliance requirements under PIPL", + "Digital economy policy documents: regulatory frameworks for e-commerce, fintech, and platform economy", + "Cybersecurity supervision reports: network infrastructure security assessments and incident statistics", + "Internet content governance: illegal content takedowns, user account suspensions, and content policy updates", + "Cross-border data flow regulations: data export security assessments and certification requirements" + ], + "zh": [ + "互联网行业统计:中国互联网行业市场规模、用户数量、收入及增长率", + "数据安全法规:中国数据保护与网络安全的法律法规及标准", + "在线平台合规报告:平台治理、内容审核及算法推荐监管情况", + "个人信息保护执法:个人信息保护法(PIPL)下的案例、处罚及合规要求", + "数字经济政策文件:电子商务、金融科技及平台经济的监管框架", + "网络安全监管报告:网络基础设施安全评估及事件统计", + "互联网内容治理:违法内容清理、用户账号封禁及内容政策更新", + "跨境数据流动法规:数据出境安全评估及认证要求" + ] + }, + "has_api": false, + "file_path": "china/technology/internet/china-cac.json" + }, + { + "id": "china-cncert", + "name": { + "en": "National Computer Network Emergency Response Technical Team/Coordination Center of China", + "zh": "国家互联网应急中心" + }, + "description": { + "en": "The National Computer Network Emergency Response Technical Team/Coordination Center of China (CNCERT/CC), also known as CNCERT, is China's national cybersecurity coordination body. Established in 2002 and operating under the Ministry of Industry and Information Technology, CNCERT monitors and coordinates responses to cybersecurity incidents on a national scale. It publishes authoritative annual and quarterly reports on China's internet security landscape, including statistics on malware, distributed denial-of-service (DDoS) attacks, network intrusions, phishing websites, data breaches, and vulnerability disclosures. CNCERT's annual China Internet Security Report and quarterly bulletins are key references for cybersecurity researchers, enterprises, and policymakers assessing China's cyber threat environment.", + "zh": "国家互联网应急中心(CNCERT/CC)是中国国家级网络安全协调机构,2002年成立,隶属于工业和信息化部,负责在全国范围内监测和协调网络安全事件响应。CNCERT发布权威的年度和季度互联网安全报告,内容涵盖恶意程序、DDoS攻击、网络入侵、仿冒网站、数据泄露和漏洞披露等统计数据。其年度《中国互联网网络安全报告》及季度通报是网络安全研究人员、企业和政策制定者评估中国网络威胁环境的重要参考。" + }, + "website": "https://www.cert.org.cn/", + "data_url": "https://www.cert.org.cn/publish/main/45/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "technology", + "security", + "statistics" + ], + "update_frequency": "quarterly", + "tags": [ + "网络安全", + "cybersecurity", + "互联网安全", + "internet-security", + "应急响应", + "emergency-response", + "cncert", + "cert", + "恶意程序", + "malware", + "DDoS攻击", + "ddos", + "网络入侵", + "network-intrusion", + "数据泄露", + "data-breach", + "漏洞", + "vulnerability", + "网络犯罪", + "cybercrime", + "信息安全", + "information-security", + "网络威胁", + "cyber-threat" + ], + "data_content": { + "en": [ + "Annual China Internet Security Report: comprehensive overview of cyber threats, incidents, and trends in China", + "Malware statistics: number of malicious programs detected, propagation vectors, and affected systems by type", + "DDoS attack data: frequency, scale, targets, and geographic distribution of distributed denial-of-service attacks", + "Phishing and fraud websites: monthly counts of phishing sites, fraudulent domains, and takedown statistics", + "Vulnerability disclosures: national vulnerability database (CNVD) statistics on software and hardware vulnerabilities reported", + "Network intrusion incidents: government, enterprise, and critical infrastructure breaches reported and handled", + "Mobile security threats: malicious apps, smartphone malware, and mobile fraud statistics", + "Industrial control system (ICS) security: vulnerability and incident data for critical infrastructure sectors", + "Quarterly internet security bulletins: near-real-time threat intelligence summaries for the Chinese internet" + ], + "zh": [ + "年度《中国互联网网络安全报告》:全面呈现中国网络威胁、事件和趋势", + "恶意程序统计:按类型分类的检测到的恶意程序数量、传播途径和受影响系统", + "DDoS攻击数据:分布式拒绝服务攻击的频率、规模、目标及地理分布", + "钓鱼和欺诈网站:每月仿冒网站数量、欺诈域名及关停统计", + "漏洞披露:国家信息安全漏洞共享平台(CNVD)软硬件漏洞上报统计", + "网络入侵事件:政府、企业和关键基础设施遭受侵害及处置情况", + "移动安全威胁:恶意应用、手机恶意软件和移动欺诈统计", + "工业控制系统(ICS)安全:关键基础设施行业的漏洞和事件数据", + "季度互联网安全通报:中国互联网近实时威胁情报摘要" + ] + }, + "has_api": false, + "file_path": "china/technology/internet/china-cncert.json" + }, + { + "id": "china-cinic", + "name": { + "en": "China Internet Network Information Center", + "zh": "中国互联网络信息中心", + "native": "中国互联网络信息中心" + }, + "description": { + "en": "China Internet Network Information Center (CNNIC) is the state network information center under the Ministry of Industry and Information Technology. It publishes the authoritative Statistical Report on China's Internet Development (中国互联网络发展状况统计报告), released twice a year, covering internet users, broadband penetration, mobile internet, e-commerce, online services, and domain name registration statistics in China.", + "zh": "中国互联网络信息中心(CNNIC)是工业和信息化部下属的国家互联网络信息中心。每年发布两次《中国互联网络发展状况统计报告》,覆盖中国网民规模、宽带普及率、移动互联网、电子商务、网络服务和域名注册统计数据。" + }, + "website": "https://www.cnnic.cn", + "data_url": "https://www.cnnic.cn/11/38/326/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "technology", + "telecommunications" + ], + "geographic_scope": "national", + "update_frequency": "irregular", + "tags": [ + "china", + "internet", + "cnnic", + "中国互联网", + "网民", + "互联网统计", + "宽带", + "移动互联网", + "电子商务", + "域名", + "digital", + "broadband", + "e-commerce", + "internet-users" + ], + "data_content": { + "en": [ + "Internet Users - Total number of internet users, internet penetration rate, urban vs. rural breakdown", + "Mobile Internet - Mobile internet users, smartphone usage, mobile app statistics", + "Broadband - Fixed broadband subscriptions, speeds, and household penetration rates", + "E-Commerce - Online shopping users, transaction volumes, cross-border e-commerce", + "Online Services - Online banking, online government services, online healthcare, online education usage", + "Domain Names - .CN domain registrations, IP address allocations, IPv6 adoption", + "Internet Infrastructure - Bandwidth capacity, international connectivity, internet exchange points", + "Social Media - Instant messaging, social network usage statistics", + "Digital Economy - Internet economic indicators, platform economy data" + ], + "zh": [ + "网民规模 - 网民总数、互联网普及率、城乡分布", + "移动互联网 - 手机网民规模、智能手机使用情况、移动应用统计", + "宽带接入 - 固定宽带订阅数、网速和家庭普及率", + "网络购物 - 网络购物用户规模、交易规模、跨境电商数据", + "网络服务 - 网络银行、网络政务、网络医疗、网络教育使用情况", + "域名注册 - .CN域名注册量、IP地址分配、IPv6普及情况", + "互联网基础资源 - 带宽容量、国际互联网出口、互联网交换中心", + "社交媒体 - 即时通信、社交网络使用统计", + "数字经济 - 互联网经济指标、平台经济数据" + ] + }, + "has_api": false, + "file_path": "china/technology/internet/cnnic.json" + }, + { + "id": "china-most-infrastructure", + "name": { + "en": "National Platform for Research Infrastructure and Large-scale Scientific Instruments", + "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": "由国家科技基础条件平台中心建设和运营的重大科研基础设施和大型科研仪器国家网络管理平台。提供全国科研设施和大型科研仪器的集中查询、预约和共享服务,覆盖极端条件模拟、遥感观测、精密测量、生物医学、核技术、望远镜等重大科研基础设施,以及分析仪器、电子显微镜、质谱仪、物理性能测试仪器、医学科研仪器等各类大型科研仪器。" + }, + "website": "https://www.escience.org.cn/nsti", + "data_url": "https://nrii.org.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "research-infrastructure", + "scientific-instruments", + "technology", + "science" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "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" + ], + "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-most-rnd", + "name": { + "en": "National Key R&D Program of China - Industrial Software and 16 Key Special Projects", + "zh": "国家重点研发计划 - 工业软件专项及16个重点专项" + }, + "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个重点专项,涵盖工业软件、智能机器人、先进制造、新能源汽车、新兴技术等领域。这些计划支持基础研究、关键技术攻关和产业应用示范,服务于国家战略需求和产业发展。" + }, + "website": "https://service.most.gov.cn/", + "data_url": "https://service.most.gov.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "technology", + "research", + "innovation", + "manufacturing", + "software" + ], + "update_frequency": "annual", + "tags": [ + "国家重点研发计划", + "national-key-r&d-program", + "工业软件", + "industrial-software", + "智能机器人", + "intelligent-robots", + "高性能制造", + "advanced-manufacturing", + "新能源汽车", + "new-energy-vehicles", + "科技项目", + "r&d-projects", + "科研资助", + "research-funding", + "科技部", + "most", + "工信部", + "miit", + "增材制造", + "additive-manufacturing", + "先进计算", + "advanced-computing", + "区块链", + "blockchain", + "稀土材料", + "rare-earth-materials", + "科学仪器", + "scientific-instruments", + "信息光子", + "information-photonics" + ], + "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-naoc", + "name": { + "en": "National Astronomical Observatories of China (NAOC)", + "zh": "中国科学院国家天文台" + }, + "description": { + "en": "The National Astronomical Observatories of China (NAOC), under the Chinese Academy of Sciences (CAS), is China's leading astronomical research institution. Founded in 2001 by merging four CAS observatories, NAOC operates major facilities including FAST (the world's largest single-dish radio telescope), the Guoshoujing Telescope (LAMOST) — the world's largest optical survey telescope — and the Beijing Spectral Telescope. Through its affiliated National Astronomical Data Center (NADC), NAOC provides open access to vast astronomy datasets including the LAMOST stellar spectral survey (over 20 million spectra), FAST pulsar and fast radio burst observations, sky survey catalogs, solar observation data, and space science mission data. The NADC is China's primary open astronomy data platform, facilitating reproducible research and international collaboration.", + "zh": "中国科学院国家天文台(NAOC)是中国主要的天文研究机构,隶属于中国科学院。国家天文台于2001年由中科院四个天文台整合成立,主要运行设施包括FAST(全球最大单口径射电望远镜)、郭守敬望远镜(LAMOST,全球最大光学巡天望远镜)和北京天体物理观测站。通过下属的国家天文科学数据中心(NADC),国家天文台对外开放天文数据集,包括LAMOST恒星光谱巡天(超2000万条光谱)、FAST脉冲星和快速射电暴观测数据、巡天星表、太阳观测数据及空间科学任务数据。NADC是中国最主要的开放天文数据平台,促进可重复研究和国际合作。" + }, + "website": "http://www.nao.cas.cn", + "data_url": "https://nadc.china-vo.org", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "science", + "astronomy", + "space" + ], + "update_frequency": "irregular", + "tags": [ + "国家天文台", + "naoc", + "fast", + "lamost", + "郭守敬望远镜", + "天文数据", + "astronomy-data", + "恒星光谱", + "stellar-spectra", + "射电天文", + "radio-astronomy", + "脉冲星", + "pulsar", + "快速射电暴", + "fast-radio-burst", + "巡天星表", + "sky-survey-catalog", + "太阳观测", + "solar-observation", + "国家天文科学数据中心", + "nadc", + "中国科学院", + "chinese-academy-of-sciences", + "开放天文数据", + "open-astronomy-data" + ], + "data_content": { + "en": [ + "LAMOST spectral survey: over 20 million stellar spectra from the Guoshoujing Telescope, accessible via NADC", + "FAST observatory data: pulsar timing, fast radio burst (FRB) detections, neutral hydrogen (HI) surveys", + "Sky survey catalogs: photometric and astrometric catalogs from multiple all-sky and deep-field surveys", + "Solar observation data: solar activity, sunspot records, solar radio bursts from Huairou Solar Observing Station", + "Variable star and transient event catalogs from NAOC monitoring programs", + "Space mission science data: planetary science and lunar exploration mission data products", + "High-energy astrophysics data: X-ray and gamma-ray source catalogs contributed to international archives", + "Historical astronomical records: digitized ancient Chinese star catalogs and eclipse records", + "Virtual observatory (VO) compliant data services through the China-VO platform", + "NADC open data archive: multi-wavelength datasets for reproducible astronomical research" + ], + "zh": [ + "LAMOST光谱巡天:郭守敬望远镜超2000万条恒星光谱,通过NADC开放获取", + "FAST天文台数据:脉冲星计时、快速射电暴(FRB)探测、中性氢(HI)巡天", + "巡天星表:来自多项全天和深场巡天项目的测光和天体测量星表", + "太阳观测数据:来自怀柔太阳观测基地的太阳活动、黑子记录和太阳射电爆发数据", + "国家天文台监测项目的变星和暂现天体星表", + "空间任务科学数据:行星科学和探月任务数据产品", + "高能天体物理数据:贡献至国际档案的X射线和伽马射线源星表", + "历史天文记录:中国古代星表和日食记录的数字化资料", + "通过中国-VO平台提供的虚拟天文台(VO)标准数据服务", + "NADC开放数据档案:支持天文学可重复研究的多波段数据集" + ] + }, + "has_api": false, + "file_path": "china/technology/sci_resources/china-naoc.json" + }, + { + "id": "china-cnis", + "name": { + "en": "China National Institute of Standardization", + "zh": "中国标准化研究院" + }, + "description": { + "en": "The China National Institute of Standardization (CNIS) is a central public research institution under the State Administration for Market Regulation (SAMR), dedicated to standardization research, standard development, and conformity assessment in China. CNIS serves as a key technical support body for China's national standardization system and participates in international standardization work through ISO and IEC. It conducts applied research on emerging technology standards including artificial intelligence, smart manufacturing, consumer safety, and green/low-carbon standards, and publishes authoritative research reports, standard interpretations, and policy consultations on China's standardization strategy.", + "zh": "中国标准化研究院(CNIS)是国家市场监督管理总局(市场监管总局)下属的中央公益性科研机构,专注于标准化研究、标准制定及合格评定工作。CNIS是中国国家标准化体系的重要技术支撑机构,并通过ISO和IEC参与国际标准化工作。研究院开展人工智能、智能制造、消费者安全、绿色低碳等新兴技术领域的应用研究,发布权威研究报告、标准解读及中国标准化战略政策咨询。" + }, + "website": "https://www.cnis.ac.cn", + "data_url": "https://www.cnis.ac.cn/kycg/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "technology", + "industry", + "economics" + ], + "update_frequency": "irregular", + "tags": [ + "标准化研究", + "standardization-research", + "国家标准", + "national-standard", + "GB标准", + "gb-standard", + "iso", + "iec", + "合格评定", + "conformity-assessment", + "人工智能标准", + "ai-standards", + "智能制造", + "smart-manufacturing", + "消费品安全", + "consumer-safety", + "绿色标准", + "green-standards", + "低碳", + "low-carbon", + "标准化战略", + "standardization-strategy", + "市场监管", + "market-regulation", + "samr", + "cnis" + ], + "data_content": { + "en": [ + "Standardization research reports: policy research on national and international standardization strategies, technical reports on emerging technology standards", + "Standard development data: statistics on national standards (GB) in development, revision, and adoption by sector", + "Conformity assessment research: research on testing, inspection, and certification systems aligned with international best practices", + "AI and digital standards: technical frameworks and research for artificial intelligence, big data, and smart manufacturing standardization", + "Green and low-carbon standards: research outputs supporting China's dual-carbon goals through standardization of energy, emissions, and circular economy", + "Consumer product safety: research and standards development for product safety requirements and testing methods", + "International standardization: Chinese participation in ISO/IEC technical committees and outcomes of international standard votes" + ], + "zh": [ + "标准化研究报告:国内外标准化战略政策研究、新兴技术标准技术报告", + "标准制定数据:按行业分类的国家标准(GB)制定、修订和采标统计", + "合格评定研究:与国际最佳实践接轨的检测、检验和认证体系研究", + "人工智能与数字标准:人工智能、大数据和智能制造标准化技术框架与研究", + "绿色低碳标准:支持中国双碳目标的能源、排放及循环经济标准化研究成果", + "消费品安全:产品安全要求和测试方法的研究与标准制定", + "国际标准化:中国参与ISO/IEC技术委员会情况及国际标准投票结果" + ] + }, + "has_api": false, + "file_path": "china/technology/standards/china-cnis.json" + }, + { + "id": "china-csa", + "name": { + "en": "China Association for Standardization", + "zh": "中国标准化协会" + }, + "description": { + "en": "The China Association for Standardization (CAS/CSA) is a national non-governmental industry organization founded in 1978, operating under the guidance of the State Administration for Market Regulation (SAMR) and the Standardization Administration of China (SAC). CSA is a key platform for voluntary standards development, standards education and promotion, and international standardization cooperation in China. The association develops group standards (团体标准) across industry sectors, provides standardization consulting and certification services, and organizes technical committees for emerging technology areas including smart manufacturing, e-commerce, carbon neutrality, and data governance. CSA publishes research reports on China's standardization policy landscape, group standards directories, and industry-specific standardization roadmaps. It interfaces with ISO, IEC, and ITU for Chinese participation in international standards development and serves as a bridge between government standardization agencies and enterprise standards practices.", + "zh": "中国标准化协会(CSA)成立于1978年,是在国家市场监督管理总局和国家标准化管理委员会指导下运行的全国性非政府行业组织。CSA是中国自愿性标准制定、标准教育和推广以及国际标准化合作的重要平台。协会在智能制造、电子商务、碳中和和数据治理等新兴技术领域跨行业制定团体标准,提供标准化咨询和认证服务,并组织技术委员会。CSA发布中国标准化政策研究报告、团体标准目录和行业标准化路线图,对接ISO、IEC和ITU,推动中国参与国际标准制定,是政府标准化机构与企业标准实践的重要桥梁。" + }, + "website": "https://www.china-cas.org", + "data_url": "https://www.china-cas.org", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "technology", + "industry", + "science", + "economics" + ], + "update_frequency": "irregular", + "tags": [ + "中国标准化协会", + "csa", + "china-association-for-standardization", + "标准化", + "standardization", + "团体标准", + "group-standards", + "自愿性标准", + "voluntary-standards", + "国家标准化管理委员会", + "sac", + "国家市场监督管理总局", + "samr", + "iso", + "iec", + "itu", + "国际标准化", + "international-standardization", + "智能制造", + "smart-manufacturing", + "碳中和", + "carbon-neutrality", + "数据治理", + "data-governance", + "标准化政策", + "standardization-policy", + "标准化路线图", + "standardization-roadmap", + "电子商务", + "e-commerce", + "标准化咨询", + "standardization-consulting", + "新兴技术", + "emerging-technology" + ], + "data_content": { + "en": [ + "Group standards (团体标准) directory and database: searchable registry of voluntary group standards developed by CSA and its technical committees across sectors including smart manufacturing, green economy, digital economy, logistics, and consumer goods, with standard status, applicability, and revision history", + "Standards search and access platform: query interface for China's national standards (GB/T), industry standards, and group standards with cross-reference to international standards equivalents (ISO, IEC, ASTM), supporting standards research and compliance work", + "Standardization policy research reports: annual and thematic reports on China's standardization strategy, reform progress, international standards adoption rates, and policy developments in key sectors such as AI governance, carbon neutrality, and digital infrastructure", + "International standards participation data: records of Chinese expert participation in ISO and IEC technical committees, Chinese-led international standard projects, and adopted international standards incorporated into China's national standards system", + "Standards education and certification data: training curriculum materials, examination statistics for standardization professionals, and data on certified enterprise standardization managers and national model enterprises for standardization", + "Industry standardization roadmaps: technology and sector-specific standardization roadmaps co-developed with industry partners covering emerging fields such as hydrogen energy, new energy vehicles, industrial internet, and blockchain applications in China" + ], + "zh": [ + "团体标准目录和数据库:CSA及其技术委员会在智能制造、绿色经济、数字经济、物流和消费品等领域制定的自愿性团体标准可检索注册库,含标准状态、适用范围和修订历史", + "标准检索和查询平台:中国国家标准(GB/T)、行业标准和团体标准查询界面,交叉引用ISO、IEC、ASTM等国际标准对应关系,支持标准研究和合规工作", + "标准化政策研究报告:中国标准化战略、改革进展、国际标准采用率年度和专题报告,以及人工智能治理、碳中和和数字基础设施等重点领域政策动态", + "国际标准参与数据:中国专家参与ISO和IEC技术委员会的记录、中国主导的国际标准项目,以及纳入中国国家标准体系的已采用国际标准", + "标准化教育和认证数据:标准化专业人员培训课程材料、考试统计数据,以及认证企业标准化管理者和国家标准化示范企业数据", + "行业标准化路线图:与行业伙伴联合制定的技术和领域专属标准化路线图,涵盖氢能、新能源汽车、工业互联网和区块链在中国的应用等新兴领域" + ] + }, + "has_api": false, + "file_path": "china/technology/standards/china-csa.json" + }, + { + "id": "china-nim", + "name": { + "en": "National Institute of Metrology China", + "zh": "中国计量科学研究院" + }, + "description": { + "en": "The National Institute of Metrology (NIM) is China's highest-level national metrology institution, responsible for establishing and maintaining China's national measurement standards. Established in 1955 and operating under the State Administration for Market Regulation (SAMR), NIM develops primary measurement standards for the seven SI base units (length, mass, time, temperature, amount of substance, luminous intensity, and electric current) and derived measurement units. NIM provides China's official traceability infrastructure for scientific measurement, industrial calibration, and legal metrology. The institute conducts research on advanced measurement science and hosts the NIM Time Service, providing China's official time standard and frequency calibration. NIM also participates in the International Bureau of Weights and Measures (BIPM) key comparisons, validating China's measurement capabilities on the global stage.", + "zh": "中国计量科学研究院(NIM)是中国最高级别的国家计量机构,负责建立和维护国家测量标准。研究院成立于1955年,隶属国家市场监督管理总局(市场监管总局),负责建立国际单位制(SI)七个基本量(长度、质量、时间、温度、物质的量、发光强度和电流)及导出量的基准测量标准。NIM为科学测量、工业校准和法制计量提供中国官方量值溯源体系,同时开展先进测量科学研究,并运营NIM时间服务,提供中国官方时间标准和频率校准。研究院积极参与国际计量局(BIPM)关键比对,在国际层面验证中国测量能力。" + }, + "website": "https://www.nim.ac.cn/", + "data_url": "https://www.nim.ac.cn/nim_time", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "technology", + "science", + "governance" + ], + "update_frequency": "real-time", + "tags": [ + "计量", + "metrology", + "测量标准", + "measurement-standards", + "校准", + "calibration", + "时间标准", + "time-standard", + "频率标准", + "frequency-standard", + "SI单位", + "si-units", + "量值溯源", + "measurement-traceability", + "法制计量", + "legal-metrology", + "bipm", + "nim", + "国家标准", + "national-standard", + "精密测量", + "precision-measurement" + ], + "data_content": { + "en": [ + "National time standard: real-time UTC(NIM) time signal and frequency calibration service", + "Primary measurement standards: maintained reference standards for SI base units", + "Calibration certificates: official traceable calibration records for scientific and industrial instruments", + "Key comparison results: international measurement comparison data with BIPM and national metrology institutes", + "Measurement uncertainty reports: documented uncertainty budgets for national measurement standards", + "Research publications: measurement science advances in quantum metrology, nanometrology, and precision instrumentation", + "Legal metrology data: type approval and verification data for measuring instruments used in trade and safety" + ], + "zh": [ + "国家时间标准:UTC(NIM)实时时间信号及频率校准服务", + "基准测量标准:SI基本单位维持参考标准", + "校准证书:科学及工业仪器官方可溯源校准记录", + "关键比对结果:与BIPM及各国国家计量机构的国际测量比对数据", + "测量不确定度报告:国家测量标准不确定度溯源文件", + "科研成果:量子计量学、纳米计量学及精密仪器测量科学进展", + "法制计量数据:贸易及安全领域用计量器具型式批准和检定数据" + ] + }, + "has_api": false, + "file_path": "china/technology/standards/china-nim.json" + }, + { + "id": "china-openstd", + "name": { + "en": "China National Standards Full Text Public Access System", + "zh": "国家标准全文公开系统" + }, + "description": { + "en": "The National Standards Full Text Public Access System (国家标准全文公开系统) is an official platform operated by the State Administration for Market Regulation (SAMR) that provides free public access to the full text of Chinese national standards (GB and GB/T standards). Launched to fulfill the mandate of China's Standardization Law, the system enables any user to read, search, and download the complete text of mandatory and recommended national standards covering industrial products, safety, environmental protection, health, infrastructure, and information technology. The platform houses over 40,000 active national standards and provides access to withdrawn and historical standards for reference. It is the authoritative open repository for China's national standardization system and is essential for enterprises, researchers, regulators, and trading partners seeking to comply with or analyze China's technical standards framework.", + "zh": "国家标准全文公开系统是由国家市场监督管理总局(市监总局)运营的官方平台,向社会免费提供中国国家标准(GB、GB/T标准)全文公开查询和下载服务。系统依据《标准化法》要求建设,任何用户均可检索和下载工业产品、安全、环境保护、卫生、基础设施和信息技术等领域强制性和推荐性国家标准全文。平台收录现行有效国家标准逾4万项,并提供废止和历史标准查询功能。该系统是中国国家标准体系的权威开放资源库,是企业合规、研究机构分析、监管机构参考及贸易伙伴了解中国技术标准体系的核心工具。" + }, + "website": "https://openstd.samr.gov.cn/", + "data_url": "https://openstd.samr.gov.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "technology", + "industry", + "governance" + ], + "update_frequency": "irregular", + "tags": [ + "国家标准全文公开系统", + "国家标准", + "national-standards", + "GB标准", + "gb-standards", + "gb/t", + "推荐性标准", + "recommended-standards", + "强制性标准", + "mandatory-standards", + "市场监督管理总局", + "samr", + "标准化", + "standardization", + "技术标准", + "technical-standards", + "产品标准", + "product-standards", + "安全标准", + "safety-standards", + "环保标准", + "environmental-standards", + "合规", + "compliance", + "贸易壁垒", + "trade-barriers", + "标准查询", + "standards-search", + "工业标准", + "industrial-standards", + "信息技术标准", + "it-standards" + ], + "data_content": { + "en": [ + "Mandatory national standards (GB): full text of compulsory standards that enterprises and products must comply with to be sold in China", + "Recommended national standards (GB/T): full text of voluntary technical standards covering industrial products, processes, and services", + "Standard metadata: standard number, title, applicable scope, issuing authority, effective date, and revision history", + "Historical standards: withdrawn and superseded standards for historical compliance reference and research", + "Standard classification: browsable by International Classification for Standards (ICS) and China Standard Classification (CCS) codes", + "Cross-reference data: relationships between national standards and corresponding international standards (ISO, IEC, ITU)", + "Sector-specific standards: standards for food safety, construction, automotive, electronics, chemicals, textiles, health, and environmental protection", + "Standards adoption data: tracking the adoption rate of international standards into China's national standards framework" + ], + "zh": [ + "强制性国家标准(GB):企业和产品在中国境内销售必须遵守的强制性标准全文", + "推荐性国家标准(GB/T):涵盖工业产品、工艺流程和服务的自愿性技术标准全文", + "标准元数据:标准编号、标题、适用范围、发布机构、实施日期和修订历史", + "历史标准:已废止和被替代标准,供历史合规参考和研究使用", + "标准分类:按国际标准分类法(ICS)和中国标准分类法(CCS)浏览", + "交叉引用数据:国家标准与对应国际标准(ISO、IEC、ITU)的对照关系", + "行业专项标准:食品安全、建筑、汽车、电子、化工、纺织、卫生和环保等领域的标准", + "标准采标数据:追踪国际标准转化为中国国家标准的采标率" + ] + }, + "has_api": false, + "file_path": "china/technology/standards/china-openstd.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个行业标准,覆盖工业、农业、服务业等各个领域。" + }, + "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", + "tags": [ + "国家标准", + "national-standards", + "gb", + "gb/t", + "强制性标准", + "mandatory-standards", + "推荐性标准", + "recommended-standards", + "行业标准", + "industry-standards", + "地方标准", + "local-standards", + "标准化", + "standardization", + "质量管理", + "quality-management", + "技术规范", + "technical-specifications", + "sac", + "samr", + "市场监管总局" + ], + "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, + "file_path": "china/technology/standards/china-sac-standards.json" + }, + { + "id": "china-ccsa", + "name": { + "en": "China Communication Standards Association", + "zh": "中国通信标准化协会" + }, + "description": { + "en": "The China Communication Standards Association (CCSA) is the national standardization organization for China's telecommunications and information technology sectors, operating under the Ministry of Industry and Information Technology (MIIT). CCSA coordinates the development and release of telecommunications standards across 5G, broadband networks, internet, IoT, cloud computing, cybersecurity, and intelligent transportation. With over 600 corporate members including China's major telecom operators (China Telecom, China Mobile, China Unicom) and equipment manufacturers, CCSA represents the primary venue for Chinese telecom industry standardization. It actively participates in international standards bodies including ITU-T, ITU-R, ISO, and IEC, and has contributed significantly to global 5G standards. CCSA publishes technical reports, standard specifications, and industry white papers on emerging communications technologies.", + "zh": "中国通信标准化协会(CCSA)是在工业和信息化部指导下,负责中国电信和信息技术领域标准化工作的全国性行业组织。协会协调5G、宽带网络、互联网、物联网、云计算、网络安全及智能交通等领域电信标准的制定与发布。CCSA拥有600余家团体会员,涵盖中国三大电信运营商(中国电信、中国移动、中国联通)及主要设备制造商,是中国电信行业标准化的核心平台。协会积极参与ITU-T、ITU-R、ISO、IEC等国际标准化机构的工作,并在全球5G标准制定中作出重要贡献,同时发布新兴通信技术领域的技术报告、标准规范和行业白皮书。" + }, + "website": "https://www.ccsa.org.cn/", + "data_url": "https://www.ccsa.org.cn/webadmin/", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "technology", + "telecommunications", + "digital-economy" + ], + "update_frequency": "irregular", + "tags": [ + "通信标准", + "telecommunications-standards", + "5g", + "物联网", + "iot", + "云计算", + "cloud-computing", + "网络安全", + "cybersecurity", + "宽带", + "broadband", + "行业标准", + "industry-standards", + "itu", + "ccsa", + "通信协议", + "communication-protocol", + "信息技术", + "information-technology", + "工业互联网", + "industrial-internet" + ], + "data_content": { + "en": [ + "Telecommunications standard specifications: 5G, LTE, broadband, fixed and mobile network protocols", + "Technical committee reports: working group outputs from TC1 to TC12 covering different technology domains", + "Industry white papers: emerging technology assessments for IoT, cloud computing, AI, and smart city", + "Standard development plans: annual work program for new and revised telecommunications standards", + "International liaison documents: Chinese contributions to ITU-T and ITU-R study groups", + "Conformance testing reports: test specifications for equipment certification and interoperability", + "Cybersecurity standards: network security baselines, threat assessments, and protection specifications" + ], + "zh": [ + "电信标准规范:5G、LTE、宽带、固定及移动网络协议标准", + "技术委员会报告:TC1至TC12各技术领域工作组输出成果", + "行业白皮书:物联网、云计算、人工智能及智慧城市新兴技术评估", + "标准制定计划:电信新标准及修订标准年度工作计划", + "国际联络文件:向ITU-T和ITU-R研究组提交的中国贡献文稿", + "符合性测试报告:设备认证及互操作性测试规范", + "网络安全标准:网络安全基线、威胁评估及防护规范" + ] + }, + "has_api": false, + "file_path": "china/technology/telecommunications/china-ccsa.json" + }, + { + "id": "china-miit", + "name": { + "en": "Ministry of Industry and Information Technology of the People's Republic of China", + "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": "工业和信息化部是国务院组成部门,负责工业和信息化领域的行政管理和监管工作。发布原材料工业、装备工业、消费品工业、通信业、电子信息制造业、软件业、互联网等行业的统计数据和运行分析。" + }, + "website": "https://www.miit.gov.cn/", + "data_url": "https://www.miit.gov.cn/gxsj/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "industry", + "telecommunications", + "technology", + "manufacturing", + "electronics" + ], + "update_frequency": "monthly", + "tags": [ + "工业", + "信息化", + "industry", + "telecommunications", + "通信", + "制造业", + "manufacturing", + "电子信息", + "electronics", + "软件业", + "software", + "互联网", + "internet", + "装备工业", + "equipment", + "汽车", + "automotive", + "原材料", + "raw-materials", + "消费品", + "consumer-goods", + "工信部", + "miit", + "中国制造", + "made-in-china" + ], + "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-tower", + "name": { + "en": "China Tower Corporation", + "zh": "中国铁塔股份有限公司" + }, + "description": { + "en": "China Tower Corporation is the world's largest telecommunications tower company by site count, established in 2014 as a joint venture among China Mobile, China Unicom, China Telecom, and China Reform (a state capital investment company). The company manages over 2 million tower sites across China, providing shared passive telecommunications infrastructure including towers, poles, indoor distributed antenna systems, and power facilities for mobile network operators. China Tower publishes annual reports, half-year reports, quarterly operational data, and sustainability reports as a Hong Kong Stock Exchange-listed company (HK.0788). Its disclosures include tower site counts, tenancy ratios, new tower construction statistics, 5G site deployment progress, and energy consumption data for base station power supply. China Tower data is authoritative for tracking China's 5G infrastructure rollout, tower industry consolidation benefits, telecom infrastructure sharing policy outcomes, and mobile network coverage expansion in rural and remote areas.", + "zh": "中国铁塔股份有限公司是全球站址数量最多的通信铁塔企业,2014年由中国移动、中国联通、中国电信及中国国新控股有限责任公司合资组建。公司管理全国逾200万个铁塔站址,为移动通信运营商提供铁塔、杆路、室内分布系统及配套电源设施等共享无源基础设施。作为香港联交所上市公司(港股代码:0788),中国铁塔定期发布年报、半年报、季度运营数据及可持续发展报告,包括铁塔站址数量、共享租户数、新建塔统计、5G站址部署进度及基站供电能耗数据。中国铁塔数据是追踪中国5G基础设施建设进度、铁塔行业整合效益、通信基础设施共享政策成效及农村和偏远地区移动网络覆盖扩展的权威参考。" + }, + "website": "https://www.china-tower.com", + "data_url": "https://ir.china-tower.com/sc/ir/reports.php", + "api_url": null, + "authority_level": "commercial", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "technology", + "telecommunications", + "infrastructure" + ], + "update_frequency": "quarterly", + "tags": [ + "中国铁塔", + "china-tower", + "通信基础设施", + "telecom-infrastructure", + "铁塔", + "tower", + "5g", + "5G基站", + "5g-deployment", + "基站", + "base-station", + "共享铁塔", + "tower-sharing", + "移动通信", + "mobile-network", + "港股", + "hkex-listed", + "铁塔共享", + "infrastructure-sharing", + "农村覆盖", + "rural-coverage", + "中国移动", + "china-mobile" + ], + "data_content": { + "en": [ + "Annual and half-year reports: financial statements, revenue by service type, EBITDA margins, and capital expenditure on tower construction", + "Tower site statistics: total site counts by province and type (ground-based towers, rooftop sites, indoor DAS systems, small cells)", + "Tenancy ratios: average number of tenants per tower site, new tenancy additions, and revenue per tower site trends", + "5G infrastructure deployment: cumulative and quarterly 5G-enabled site counts, new 5G site construction statistics by operator", + "Rural and remote coverage: tower site deployment under universal service obligation, natural village coverage rates", + "Energy and sustainability data: total power consumption of tower sites, diesel generator usage, green energy adoption rates, and carbon emissions from operations", + "Shared infrastructure savings: estimated savings to operators from infrastructure sharing versus independent deployment", + "Operational efficiency metrics: tower utilization rates, maintenance cost per site, and network availability statistics" + ], + "zh": [ + "年报和半年报:财务报表、分服务类型收入、EBITDA利润率及铁塔建设资本支出", + "铁塔站址统计:按省和类型(地面塔、楼顶站、室内分布系统、小基站)分类的站址总数", + "共享率:平均每站址租户数、新增租户量及每站址收入趋势", + "5G基础设施部署:5G站址累计数量和季度新增数,按运营商分类的5G新建站统计", + "农村和偏远地区覆盖:普遍服务义务下的铁塔建设,自然村覆盖率数据", + "能源与可持续数据:铁塔站址总耗电量、柴油发电机使用情况、绿色能源使用率及运营碳排放", + "共享基础设施节省估算:基础设施共享模式相比独立建设为运营商节省的成本", + "运营效率指标:铁塔利用率、每站址维护成本和网络可用性统计" + ] + }, + "has_api": false, + "file_path": "china/technology/telecommunications/china-tower.json" + }, + { + "id": "egypt-capmas", + "name": { + "en": "Central Agency for Public Mobilization and Statistics (CAPMAS)", + "zh": "埃及中央公共动员与统计局" + }, + "description": { + "en": "The official statistical agency of Egypt responsible for statistical data collection, census operations, and dissemination of national statistics.", + "zh": "埃及官方统计机构,负责统计数据收集、人口普查和国家统计发布。" + }, + "website": "https://www.capmas.gov.eg/", + "data_url": "https://www.capmas.gov.eg/Pages/Publications.aspx", + "api_url": null, + "authority_level": "government", + "country": "EG", + "domains": [ + "economics", + "demographics" + ], + "tags": [ + "statistics", + "gdp", + "population", + "census", + "trade", + "egypt", + "africa" + ], + "update_frequency": "monthly", + "data_content": { + "en": [ + "Population census", + "GDP and national accounts", + "Consumer price index", + "Trade statistics", + "Employment data" + ], + "zh": [ + "人口普查", + "GDP和国民账户", + "消费者价格指数", + "贸易统计", + "就业数据" + ] + }, + "geographic_scope": "national", + "has_api": false, + "file_path": "countries/africa/egypt/egypt-capmas.json" + }, + { + "id": "ghana-gss", + "name": { + "en": "Ghana Statistical Service", + "zh": "加纳统计局" + }, + "description": { + "en": "Ghana's official statistical agency responsible for producing population census, GDP, CPI, labor force surveys, trade statistics, and other socioeconomic indicators.", + "zh": "加纳官方统计机构,负责发布人口普查、GDP、消费者价格指数、劳动力调查、贸易统计和其他社会经济指标。" + }, + "website": "https://statsghana.gov.gh", + "data_url": "https://statsghana.gov.gh/data-statistics/economic-statistics", + "api_url": null, + "country": "GH", + "geographic_scope": "national", + "authority_level": "government", + "domains": [ + "economics", + "demographics", + "trade", + "agriculture" + ], + "update_frequency": "annual", + "data_content": { + "en": [ + "Population and housing census", + "GDP and national accounts", + "Consumer price index (CPI)", + "Labor force survey", + "Foreign trade statistics", + "Agricultural census", + "Living standards survey", + "Industrial statistics" + ], + "zh": [ + "人口与住房普查", + "GDP与国民账户", + "消费者价格指数", + "劳动力调查", + "对外贸易统计", + "农业普查", + "生活水平调查", + "工业统计" + ] + }, + "tags": [ + "ghana", + "加纳", + "statistics", + "统计局", + "africa", + "非洲", + "gdp", + "census", + "cpi" + ], + "has_api": false, + "file_path": "countries/africa/ghana/ghana-gss.json" + }, + { + "id": "kenya-knbs", + "name": { + "en": "Kenya National Bureau of Statistics", + "zh": "肯尼亚国家统计局" + }, + "description": { + "en": "Kenya's principal agency for collecting, analyzing, and disseminating statistical data including population census, economic surveys, CPI, GDP, labor force, trade, and household surveys.", + "zh": "肯尼亚负责收集、分析和发布统计数据的主要机构,包括人口普查、经济调查、消费者价格指数、GDP、劳动力、贸易和住户调查。" + }, + "website": "https://www.knbs.or.ke", + "data_url": "https://www.knbs.or.ke/publications/", + "api_url": null, + "country": "KE", + "geographic_scope": "national", + "authority_level": "government", + "domains": [ + "economics", + "demographics", + "trade", + "agriculture", + "health" + ], + "update_frequency": "annual", + "data_content": { + "en": [ + "Population and housing census", + "Economic survey", + "Consumer price index (CPI)", + "GDP and national accounts", + "Labor force statistics", + "Foreign trade statistics", + "Agricultural production", + "Health and demographic indicators" + ], + "zh": [ + "人口与住房普查", + "经济调查", + "消费者价格指数", + "GDP与国民账户", + "劳动力统计", + "对外贸易统计", + "农业生产", + "健康与人口指标" + ] + }, + "tags": [ + "kenya", + "肯尼亚", + "statistics", + "统计局", + "africa", + "非洲", + "gdp", + "census", + "cpi" + ], + "has_api": false, + "file_path": "countries/africa/kenya/kenya-knbs.json" + }, + { + "id": "nigeria-nbs", + "name": { + "en": "National Bureau of Statistics Nigeria (NBS)", + "zh": "尼日利亚国家统计局" + }, + "description": { + "en": "The main national agency for official statistics in Nigeria, providing data on GDP, inflation, trade, employment, and poverty.", + "zh": "尼日利亚官方统计机构,提供GDP、通胀、贸易、就业和贫困数据。" + }, + "website": "https://www.nigerianstat.gov.ng/", + "data_url": "https://www.nigerianstat.gov.ng/elibrary", + "api_url": null, + "authority_level": "government", + "country": "NG", + "domains": [ + "economics", + "demographics" + ], + "tags": [ + "statistics", + "gdp", + "inflation", + "trade", + "poverty", + "nigeria", + "africa" + ], + "update_frequency": "quarterly", + "data_content": { + "en": [ + "GDP reports", + "Consumer price index", + "Trade statistics", + "Poverty and inequality", + "Employment data" + ], + "zh": [ + "GDP报告", + "消费者价格指数", + "贸易统计", + "贫困与不平等", + "就业数据" + ] + }, + "geographic_scope": "national", + "has_api": false, + "file_path": "countries/africa/nigeria/nigeria-nbs.json" + }, + { + "id": "south-africa-statssa", + "name": { + "en": "Statistics South Africa (Stats SA)", + "zh": "南非统计局" + }, + "description": { + "en": "South Africa's national statistical service providing comprehensive demographic, economic, and social data including census, GDP, and labour force surveys.", + "zh": "南非国家统计服务机构,提供全面的人口、经济和社会数据。" + }, + "website": "https://www.statssa.gov.za/", + "data_url": "https://www.statssa.gov.za/?page_id=1854", + "api_url": null, + "authority_level": "government", + "country": "ZA", + "domains": [ + "economics", + "demographics" + ], + "tags": [ + "statistics", + "gdp", + "population", + "census", + "poverty", + "south-africa", + "africa" + ], + "update_frequency": "quarterly", + "data_content": { + "en": [ + "GDP and national accounts", + "Population census", + "Labour force survey", + "Consumer price index", + "Poverty and inequality" + ], + "zh": [ + "GDP和国民账户", + "人口普查", + "劳动力调查", + "消费者价格指数", + "贫困与不平等" + ] + }, + "geographic_scope": "national", + "has_api": false, + "file_path": "countries/africa/south-africa/south-africa-statssa.json" + }, + { + "id": "stats-sa", + "name": { + "en": "Statistics South Africa (Stats SA)", + "zh": "南非统计局", + "native": "Statistics South Africa (Stats SA)" + }, + "description": { + "en": "South Africa's national statistics agency responsible for producing timely, accurate and official statistics that are relevant to all people in the country. Stats SA conducts population censuses, household surveys, and produces key economic indicators including GDP, inflation, employment, and trade statistics. It serves as the primary source of official statistics in Africa's most industrialized economy.", + "zh": "南非国家统计机构,负责为全体国民提供及时、准确的官方统计数据。南非统计局开展人口普查和住户调查,发布包括GDP、通货膨胀、就业和贸易统计在内的主要经济指标,是非洲工业化程度最高经济体的主要官方统计数据来源。" + }, + "website": "https://www.statssa.gov.za", + "data_url": "https://www.statssa.gov.za/?page_id=1521", + "api_url": null, + "authority_level": "government", + "country": "ZA", + "domains": [ + "demographics", + "economics", + "employment", + "prices", + "housing", + "health", + "education", + "agriculture", + "trade", + "social" + ], + "geographic_scope": "national", + "update_frequency": "quarterly", + "tags": [ + "stats-sa", + "south-africa", + "statistics", + "census", + "demographics", + "gdp", + "inflation", + "cpi", + "employment", + "poverty", + "inequality", + "gini-coefficient", + "africa", + "南非", + "国家统计", + "人口普查", + "非洲" + ], + "data_content": { + "en": [ + "Census of Population (National Census) - most recent in 2022", + "Community Survey - mid-decade population sample survey", + "Quarterly Labour Force Survey (QLFS) - employment and unemployment data", + "Consumer Price Index (CPI) - monthly inflation measurement", + "Gross Domestic Product (GDP) - quarterly national accounts", + "General Household Survey (GHS) - access to services, poverty, education", + "Income and Expenditure Survey - household income, spending and poverty", + "Living Conditions Survey - poverty and inequality measures including Gini coefficient", + "Agricultural census and survey data", + "Tourism statistics and international arrivals", + "Manufacturing production and sales statistics", + "Financial statistics of municipalities and national government", + "Recorded crime statistics and safety surveys", + "Mortality and causes of death statistics" + ], + "zh": [ + "全国人口普查(最近一次为2022年)", + "社区调查 - 十年期间人口抽样调查", + "季度劳动力调查(QLFS)- 就业和失业数据", + "消费者价格指数(CPI)- 月度通胀测量", + "国内生产总值(GDP)- 季度国民账户", + "一般家庭调查(GHS)- 服务获取、贫困、教育", + "收入与支出调查 - 家庭收入、消费和贫困状况", + "生活条件调查 - 贫困和不平等指标,含基尼系数", + "农业普查和调查数据", + "旅游统计和国际入境人数", + "制造业生产和销售统计", + "市政和国家政府财政统计", + "记录犯罪统计和安全调查", + "死亡率和死亡原因统计" + ] + }, + "has_api": false, + "file_path": "countries/africa/south-africa/stats-sa.json" + }, + { + "id": "brunei-deps", + "name": { + "en": "Department of Economic Planning and Statistics, Brunei (DEPS)", + "zh": "文莱经济规划与统计局" + }, + "description": { + "en": "The Department of Economic Planning and Statistics (DEPS) is the national statistical office of Brunei Darussalam, operating under the Prime Minister's Office. It produces and disseminates official statistics on national accounts, population, trade, labor, prices, and other economic and social indicators, supporting government planning and public information needs.", + "zh": "文莱经济规划与统计局(DEPS)是文莱达鲁萨兰国的国家统计机构,隶属于首相府。负责编制和发布关于国民账户、人口、贸易、劳动力、物价和其他经济社会指标的官方统计数据。" + }, + "website": "https://deps.mofe.gov.bn/", + "data_url": "https://deps.mofe.gov.bn/edata-library/", + "api_url": null, + "authority_level": "government", + "country": "BN", + "domains": [ + "economics", + "demographics", + "trade" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "brunei", + "文莱", + "deps", + "statistics", + "统计局", + "gdp", + "population", + "人口", + "trade", + "贸易", + "oil-and-gas", + "石油天然气", + "asean", + "东盟", + "southeast-asia", + "东南亚" + ], + "data_content": { + "en": [ + "National accounts and GDP statistics", + "Population and demographic data", + "Consumer Price Index (CPI) and inflation", + "International merchandise trade statistics", + "Labor force survey results", + "Oil and gas production statistics", + "Government finance statistics", + "Key economic indicators dashboard" + ], + "zh": [ + "国民账户和GDP统计", + "人口和人口统计数据", + "消费者价格指数(CPI)和通胀", + "国际商品贸易统计", + "劳动力调查结果", + "石油和天然气生产统计", + "政府财政统计", + "关键经济指标看板" + ] + }, + "has_api": false, + "file_path": "countries/asia/brunei/brunei-deps.json" + }, + { + "id": "cambodia-nis", + "name": { + "en": "National Institute of Statistics of Cambodia (NIS)", + "zh": "柬埔寨国家统计局" + }, + "description": { + "en": "The National Institute of Statistics (NIS) is the principal government agency responsible for official statistics in Cambodia, operating under the Ministry of Planning. It conducts the national population census, socio-economic surveys, and publishes key economic and social indicators including GDP, CPI, trade, and demographic data.", + "zh": "柬埔寨国家统计局(NIS)是隶属于计划部的负责官方统计的主要政府机构。开展全国人口普查、社会经济调查,发布GDP、CPI、贸易和人口等关键经济社会指标。" + }, + "website": "https://www.nis.gov.kh/", + "data_url": "https://camstat.nis.gov.kh/", + "api_url": null, + "authority_level": "government", + "country": "KH", + "domains": [ + "economics", + "demographics", + "social" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "cambodia", + "柬埔寨", + "nis", + "statistics", + "统计局", + "population-census", + "人口普查", + "gdp", + "cpi", + "socio-economic-survey", + "asean", + "东盟", + "southeast-asia", + "东南亚" + ], + "data_content": { + "en": [ + "National population census data", + "GDP and national accounts statistics", + "Consumer Price Index (CPI) and inflation", + "Cambodia Socio-Economic Survey (CSES) results", + "Foreign trade statistics", + "Labor force and employment surveys", + "Agricultural census and crop statistics", + "Cambodia Demographic and Health Survey (CDHS)" + ], + "zh": [ + "全国人口普查数据", + "GDP和国民账户统计", + "消费者价格指数(CPI)和通胀", + "柬埔寨社会经济调查(CSES)结果", + "对外贸易统计", + "劳动力和就业调查", + "农业普查和作物统计", + "柬埔寨人口与健康调查(CDHS)" + ] + }, + "has_api": false, + "file_path": "countries/asia/cambodia/cambodia-nis.json" + }, + { + "id": "dosm", + "name": { + "en": "Department of Statistics Malaysia", + "zh": "马来西亚统计局" + }, + "description": { + "en": "The Department of Statistics Malaysia (DOSM) is the main government agency responsible for collecting, interpreting and disseminating official statistics for monitoring Malaysia's economic performance and social development. It provides comprehensive data on economy, population, society and environment.", + "zh": "马来西亚统计局(DOSM)是马来西亚主要的政府统计机构,负责收集、解释和发布官方统计数据,用于监测马来西亚的经济表现和社会发展。该局提供涵盖经济、人口、社会和环境的综合数据。" + }, + "website": "https://www.dosm.gov.my/", + "data_url": "https://open.dosm.gov.my/", + "api_url": "https://developer.data.gov.my/static-api/opendosm", + "authority_level": "government", + "geographic_scope": "national", + "country": "MY", + "domains": [ + "economic-statistics", + "social-statistics", + "demographic-statistics", + "population-and-census", + "national-accounts", + "labour-market", + "prices-and-inflation", + "manufacturing-and-industry", + "agriculture", + "external-trade", + "household-income-and-expenditure" + ], + "update_frequency": "irregular", + "data_content": { + "en": [ + "Economic Statistics - GDP, manufacturing output, industrial production, wholesale & retail trade, services sector, construction, mining & quarrying", + "Demographic Statistics - Population data by state, district, sex, age group and ethnicity from 1970 to present", + "Social Statistics - Household income & expenditure, education, labour force, employment & unemployment", + "Price Statistics - Consumer Price Index (CPI), Producer Price Index (PPI), inflation data", + "External Sector Statistics - International trade, balance of payments, external debt", + "Agricultural Statistics - Crop production, livestock, fisheries, forestry", + "Census Data - Population and housing census, economic census (MyCensus 2020)" + ], + "zh": [ + "经济统计 - GDP、制造业产出、工业生产、批发零售贸易、服务业、建筑业、采矿业", + "人口统计 - 按州、区、性别、年龄组和种族分类的人口数据,从1970年至今", + "社会统计 - 家庭收入与支出、教育、劳动力、就业与失业", + "价格统计 - 消费者价格指数(CPI)、生产者价格指数(PPI)、通货膨胀数据", + "对外部门统计 - 国际贸易、国际收支、外债", + "农业统计 - 农作物生产、畜牧业、渔业、林业", + "普查数据 - 人口与住房普查、经济普查(MyCensus 2020)" + ] + }, + "tags": [ + "malaysia", + "马来西亚", + "official-statistics", + "官方统计", + "dosm", + "opendosm", + "government-data", + "政府数据", + "economic-data", + "经济数据", + "population", + "人口", + "census", + "普查", + "gdp", + "国内生产总值", + "cpi", + "消费者价格指数", + "labour-statistics", + "劳动统计", + "social-statistics", + "社会统计", + "open-data", + "开放数据", + "api" + ], + "has_api": true, + "file_path": "countries/asia/dosm.json" + }, + { + "id": "hk-companies-registry", + "name": { + "en": "Hong Kong Companies Registry", + "zh": "香港公司注册处" + }, + "description": { + "en": "The Companies Registry is a government department under the Financial Services and the Treasury Bureau of the Hong Kong Special Administrative Region. It provides comprehensive company registration and business registration services, maintaining a centralized database of all registered companies in Hong Kong through the Integrated Companies Registry Information System (ICRIS).", + "zh": "香港公司注册处是香港特别行政区财经事务及库务局辖下的政府部门,负责公司注册及商业登记事务,通过公司注册处综合资讯系统(ICRIS)维护香港所有注册公司的集中数据库。" + }, + "website": "https://www.cr.gov.hk/", + "data_url": "https://www.cr.gov.hk/en/services/obtain-company-info.htm", + "api_url": null, + "authority_level": "government", + "country": "HK", + "domains": [ + "business", + "commerce", + "corporate-registry", + "legal" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "hong-kong", + "香港", + "companies-registry", + "公司注册处", + "icris", + "company-registration", + "公司注册", + "business-registration", + "商业登记", + "corporate-information", + "企业信息", + "company-search", + "公司查册", + "statutory-filings", + "法定文件", + "directors", + "董事", + "shareholders", + "股东", + "registered-office", + "注册地址" + ], + "data_content": { + "en": [ + "Company registration information: company name (English and Chinese), registration number, incorporation date, company type, and legal status", + "Registered office address and principal place of business", + "Directors and secretaries information", + "Shareholders and share capital structure", + "Statutory documents and filings: annual returns (NAR1), changes in directors (ND2A), changes in registered office (NM1)", + "Company incorporation certificates and business registration certificates", + "Charge and mortgage registrations", + "Company deregistration and winding-up records", + "Non-Hong Kong company registrations", + "Historical changes and updates to company information" + ], + "zh": [ + "公司注册资料:公司名称(中英文)、注册编号、成立日期、公司类型及法律状态", + "注册办事处地址及主要营业地点", + "董事及公司秘书资料", + "股东及股本结构", + "法定文件及申报表:周年申报表(NAR1)、董事变更(ND2A)、注册办事处变更(NM1)", + "公司注册证书及商业登记证", + "押记及抵押登记", + "公司撤销注册及清盘记录", + "非香港公司注册", + "公司资料的历史变更记录" + ] + }, + "has_api": false, + "file_path": "countries/asia/hk-companies-registry.json" + }, + { + "id": "hk-sfc", + "name": { + "en": "Securities and Futures Commission of Hong Kong", + "zh": "香港证券及期货事务监察委员会" + }, + "description": { + "en": "The Securities and Futures Commission (SFC) is an independent statutory body responsible for regulating Hong Kong's securities and futures markets. Established in 1989, the SFC oversees market participants, ensures market integrity, protects investors, and maintains fair and transparent trading environments. It provides comprehensive regulatory data, licensing information, market surveillance reports, and enforcement actions.", + "zh": "香港证券及期货事务监察委员会(证监会)是独立的法定机构,负责监管香港的证券及期货市场。证监会成立于1989年,监督市场参与者,确保市场诚信,保护投资者权益,维持公平透明的交易环境。证监会提供全面的监管数据、持牌资料、市场监察报告及执法行动信息。" + }, + "website": "https://www.sfc.hk/", + "data_url": "https://www.sfc.hk/en/Regulatory-functions/Products", + "api_url": null, + "authority_level": "government", + "country": "HK", + "domains": [ + "finance", + "securities", + "capital-markets", + "regulation" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "hong-kong", + "香港", + "sfc", + "证监会", + "securities", + "证券", + "futures", + "期货", + "market-regulation", + "市场监管", + "investor-protection", + "投资者保护", + "licensing", + "持牌", + "enforcement", + "执法", + "disclosure", + "披露", + "capital-markets", + "资本市场", + "fund-management", + "基金管理", + "intermediaries", + "中介机构" + ], + "data_content": { + "en": [ + "Licensed corporations and registered institutions: licenses for dealing in securities, futures contracts, asset management, and advisory services", + "Licensed individuals: responsible officers, licensed representatives, and approved persons", + "Product authorization: authorized collective investment schemes, SFC-authorized funds, and other investment products", + "Regulatory announcements and circulars: guidance notes, codes and guidelines, consultation papers", + "Enforcement actions: disciplinary proceedings, prosecution cases, reprimands, and sanctions", + "Market surveillance data: suspicious trading alerts, market manipulation cases, insider dealing investigations", + "Corporate disclosure: substantial shareholder notices, takeover and merger documents, listing applications", + "Statistical data: market turnover, derivatives trading volume, fund industry statistics", + "Regulatory reports: annual reports, quarterly bulletins, thematic reviews", + "Rules and standards: Securities and Futures Ordinance, subsidiary legislation, codes of conduct" + ], + "zh": [ + "持牌法团及注册机构:证券交易、期货合约交易、资产管理及提供意见的牌照资料", + "持牌个人:负责人员、持牌代表及获核准人士", + "产品认可:认可集体投资计划、证监会认可基金及其他投资产品", + "监管公告及通函:指引、守则及指引、谘询文件", + "执法行动:纪律处分程序、检控个案、谴责及制裁", + "市场监察数据:可疑交易警报、市场操纵个案、内幕交易调查", + "企业披露:主要股东权益通知、收购及合并文件、上市申请", + "统计数据:市场成交额、衍生产品交易量、基金业统计数字", + "监管报告:年报、季度通讯、专题审查", + "规则及标准:证券及期货条例、附属法例、操守准则" + ] + }, + "has_api": false, + "file_path": "countries/asia/hk-sfc.json" + }, + { + "id": "hkma", + "name": { + "en": "Hong Kong Monetary Authority", + "zh": "香港金融管理局" + }, + "description": { + "en": "The Hong Kong Monetary Authority (HKMA) is the de facto central bank of Hong Kong, established on April 1, 1993. Its mission is to maintain monetary and financial stability, promote the integrity and efficiency of the financial system, and safeguard the interests of depositors. The HKMA provides comprehensive economic and financial data including monetary statistics, banking system data, financial stability reports, and daily market data through its open data portal and API.", + "zh": "香港金融管理局(金管局)是香港的实际中央银行,成立于1993年4月1日。其使命是维持货币与金融稳定、促进金融体系的健全与发展,以及保障存款人的利益。金管局通过开放数据门户和API提供全面的经济及金融数据,包括货币统计、银行体系数据、金融稳定报告及每日市场数据。" + }, + "website": "https://www.hkma.gov.hk/", + "data_url": "https://www.hkma.gov.hk/eng/data-publications-and-research/data-and-statistics/", + "api_url": "https://apidocs.hkma.gov.hk/", + "authority_level": "government", + "country": "HK", + "geographic_scope": "national", + "update_frequency": "daily", + "domains": [ + "finance", + "economics", + "banking", + "monetary-policy" + ], + "tags": [ + "monetary-authority", + "central-bank", + "financial-statistics", + "monetary-statistics", + "banking-data", + "financial-stability", + "exchange-fund", + "hong-kong", + "hkma", + "linked-exchange-rate", + "payment-systems", + "banking-supervision", + "interest-rates", + "exchange-rates", + "money-supply", + "金融管理局", + "中央银行", + "金融统计", + "货币统计", + "银行数据", + "金融稳定", + "外汇基金", + "香港", + "金管局", + "联系汇率", + "支付系统", + "银行监管", + "利率", + "汇率", + "货币供应" + ], + "data_content": { + "en": [ + "Monetary statistics (money supply, exchange rates, interest rates)", + "Banking system statistics (assets, liabilities, capital adequacy)", + "Financial stability indicators and reports", + "Exchange Fund statistics", + "Payment systems data", + "Economic and financial data for Hong Kong", + "Daily market data (exchange rates, interbank rates)", + "Monthly Statistical Bulletin", + "Half-Yearly Monetary and Financial Stability Report" + ], + "zh": [ + "货币统计(货币供应、汇率、利率)", + "银行体系统计(资产、负债、资本充足率)", + "金融稳定指标及报告", + "外汇基金统计", + "支付系统数据", + "香港经济及金融数据", + "每日市场数据(汇率、银行同业拆息率)", + "金融数据月报", + "货币与金融稳定情况半年度报告" + ] + }, + "has_api": true, + "file_path": "countries/asia/hkma.json" + }, + { + "id": "india-dgcis", + "name": { + "en": "Directorate General of Commercial Intelligence and Statistics", + "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),收集进出口货物的基础数据。该局编制并发布对外贸易统计、涵盖铁路、河运和空运的州际货物流动的国内贸易统计、航运统计、沿海贸易统计以及海关和消费税征收统计。" + }, + "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, + "country": "IN", + "domains": [ + "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", + "tags": [ + "india", + "trade-statistics", + "foreign-trade", + "export-import", + "customs-data", + "government-statistics", + "economic-data", + "hs-classification", + "trade-policy", + "shipping-statistics", + "inland-trade", + "south-asia" + ], + "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": "india-mospi", + "name": { + "en": "Ministry of Statistics and Programme Implementation (MoSPI)", + "zh": "印度统计与计划实施部", + "native": "सांख्यिकी और कार्यक्रम कार्यान्वयन मंत्रालय" + }, + "description": { + "en": "The Ministry of Statistics and Programme Implementation (MoSPI) is the apex body for official statistics in India. It coordinates the Indian Statistical System and publishes a wide range of national statistical products including GDP estimates, Consumer Price Index, industrial production, employment surveys, social statistics, and the National Sample Survey. MoSPI also oversees the Central Statistics Office (CSO) and the National Sample Survey Office (NSSO).", + "zh": "印度统计与计划实施部(MoSPI)是印度官方统计的最高机构,协调印度统计体系,发布广泛的国家统计产品,包括GDP估算、消费者价格指数、工业生产、就业调查、社会统计和国家样本调查。MoSPI还负责监管中央统计局(CSO)和国家样本调查局(NSSO)。" + }, + "website": "https://www.mospi.gov.in", + "data_url": "https://mospi.gov.in/data", + "api_url": null, + "authority_level": "government", + "country": "IN", + "domains": [ + "economics", + "demographics", + "employment", + "prices", + "industry", + "agriculture", + "social", + "trade", + "education", + "health" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "india", + "mospi", + "official-statistics", + "gdp", + "cpi", + "iip", + "nss", + "nsso", + "cso", + "national-accounts", + "employment", + "population", + "census", + "social-statistics", + "印度", + "官方统计", + "国民账户", + "消费者价格指数", + "工业生产", + "就业统计", + "人口普查" + ], + "data_content": { + "en": [ + "National Accounts Statistics (GDP, GVA by sector)", + "Consumer Price Index (CPI) - Rural, Urban, Combined", + "Index of Industrial Production (IIP)", + "National Sample Survey (NSS) - employment, household expenditure", + "Annual Survey of Industries (ASI)", + "Economic Census data", + "Social Statistics (poverty, education, health indicators)", + "Time Use Survey", + "Sustainable Development Goals (SDG) India Index", + "Periodic Labour Force Survey (PLFS)", + "Price Statistics (WPI, CPI)", + "State-level GDP and economic statistics" + ], + "zh": [ + "国民账户统计(GDP、分行业GVA)", + "消费者价格指数(CPI)——农村、城市、综合", + "工业生产指数(IIP)", + "国家样本调查(NSS)——就业、家庭支出", + "工业年度调查(ASI)", + "经济普查数据", + "社会统计(贫困、教育、卫生指标)", + "时间使用调查", + "可持续发展目标(SDG)印度指数", + "定期劳动力调查(PLFS)", + "价格统计(WPI、CPI)", + "各邦GDP和经济统计" + ] + }, + "has_api": false, + "file_path": "countries/asia/india/india-mospi.json" + }, + { + "id": "india-rbi", + "name": { + "en": "Reserve Bank of India", + "zh": "印度储备银行", + "native": "भारतीय रिज़र्व बैंक" + }, + "description": { + "en": "India's central bank responsible for monetary policy, financial regulation, and economic data publication. RBI publishes comprehensive statistics on money supply, interest rates, exchange rates, banking sector performance, balance of payments, government finance, and price indices. It also releases quarterly GDP-related monetary indicators, the Annual Report, and the Report on Trend and Progress of Banking in India.", + "zh": "印度中央银行,负责货币政策制定、金融监管及经济数据发布。RBI发布关于货币供应量、利率、汇率、银行业绩效、国际收支、政府财政和价格指数的全面统计数据,并定期发布季度货币政策报告、年度报告及印度银行业趋势与进展报告。" + }, + "website": "https://www.rbi.org.in/", + "data_url": "https://www.rbi.org.in/Scripts/Statistics.aspx", + "api_url": "https://api.rbi.org.in/", + "country": "IN", + "domains": [ + "monetary-policy", + "banking", + "finance", + "economics", + "exchange-rates", + "balance-of-payments", + "government-finance" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "india", + "central-bank", + "monetary-policy", + "banking", + "exchange-rates", + "money-supply", + "interest-rates", + "balance-of-payments", + "financial-regulation", + "economic-statistics", + "印度", + "中央银行", + "货币政策" + ], + "data_content": { + "en": [ + "Money Supply (M0-M3) and Reserve Money", + "Interest Rates (Repo, Reverse Repo, Bank Rate, MCLR)", + "Foreign Exchange Reserves and Exchange Rates", + "Banking Statistics (Scheduled Commercial Banks, Cooperative Banks)", + "Balance of Payments and External Debt", + "Government Finance (Central and State)", + "Consumer Price Index and Wholesale Price Index", + "Financial Inclusion Statistics", + "Payment and Settlement Systems Data", + "Financial Stability Report Data", + "Quarterly Monetary Policy Reports", + "Annual Report and Statistical Tables" + ], + "zh": [ + "货币供应量(M0-M3)和储备货币", + "利率(回购利率、逆回购利率、银行利率、MCLR)", + "外汇储备和汇率", + "银行业统计(商业银行、合作银行)", + "国际收支和外债", + "政府财政(中央和各邦)", + "消费者价格指数和批发价格指数", + "普惠金融统计", + "支付结算系统数据", + "金融稳定报告数据", + "季度货币政策报告", + "年度报告和统计表" + ] + }, + "authority_level": "government", + "has_api": true, + "file_path": "countries/asia/india/india-rbi.json" + }, + { + "id": "indonesia-bps", + "name": { + "en": "Statistics Indonesia (BPS)", + "zh": "印度尼西亚中央统计局", + "native": "Badan Pusat Statistik" + }, + "description": { + "en": "Statistics Indonesia (BPS — Badan Pusat Statistik) is the official national statistical agency of Indonesia, responsible for providing high-quality statistical data to support evidence-based policymaking. Established in 1960 and reorganized under Law No. 16 of 1997, BPS covers all aspects of Indonesian society and economy, including population, poverty, economic growth, inflation, trade, agriculture, and social indicators. BPS conducts the national population census every ten years and the agricultural census every ten years, and publishes a wide range of regular statistical reports through its website and open data portal.", + "zh": "印度尼西亚中央统计局(BPS — Badan Pusat Statistik)是印度尼西亚官方国家统计机构,负责提供高质量统计数据以支持基于证据的政策制定。BPS成立于1960年,并根据1997年第16号法律重组,覆盖印度尼西亚社会和经济的各个方面,包括人口、贫困、经济增长、通货膨胀、贸易、农业和社会指标。BPS每十年进行一次全国人口普查和农业普查,并通过其网站和开放数据门户发布各种定期统计报告。" + }, + "website": "https://www.bps.go.id", + "data_url": "https://www.bps.go.id/en/statistics-table", + "api_url": "https://webapi.bps.go.id/", + "authority_level": "government", + "country": "ID", + "domains": [ + "demographics", + "economics", + "social", + "employment", + "agriculture", + "prices", + "trade", + "industry", + "poverty" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "indonesia", + "印度尼西亚", + "bps", + "badan-pusat-statistik", + "statistics-indonesia", + "population", + "人口", + "gdp", + "国内生产总值", + "poverty", + "贫困", + "inflation", + "通货膨胀", + "census", + "人口普查", + "employment", + "就业", + "agriculture", + "农业", + "southeast-asia", + "东南亚", + "open-data", + "开放数据", + "government-statistics", + "政府统计", + "asean", + "东盟" + ], + "data_content": { + "en": [ + "Population Census - decennial census data on population size, distribution, and characteristics", + "Economic Growth - GDP and Gross Regional Domestic Product (GRDP) by province", + "Poverty Statistics - poverty rate, poverty line, poverty depth and severity indices", + "Inflation and Prices - Consumer Price Index (CPI), food prices, housing price index", + "Labor Force Survey (SAKERNAS) - employment, unemployment, underemployment, wages", + "National Income - national accounts, sectoral value added, household income", + "Foreign Trade - exports and imports by commodity, country, and province", + "Agricultural Census - farming households, land use, crop production, livestock", + "Manufacturing Industry - large and medium enterprise statistics, production output", + "Social Statistics - education participation, health indicators, welfare programs", + "Village Potential Data (PODES) - village-level infrastructure, facilities, and economy", + "Population Projection - future population estimates by age group and province", + "Household Income and Expenditure Survey (SUSENAS) - consumption and living standards", + "Indonesia in Figures - annual statistical compendium for quick reference" + ], + "zh": [ + "人口普查 - 人口规模、分布和特征的十年一次普查数据", + "经济增长 - 按省份划分的GDP和地区国内生产总值(GRDP)", + "贫困统计 - 贫困率、贫困线、贫困深度和严重程度指数", + "通胀与价格 - 消费者价格指数(CPI)、食品价格、房价指数", + "劳动力调查(SAKERNAS)- 就业、失业、不充分就业、工资", + "国民收入 - 国民账户、各部门增加值、家庭收入", + "对外贸易 - 按商品、国家和省份划分的出口和进口", + "农业普查 - 农业家庭、土地利用、粮食产量、畜牧业", + "制造业 - 大中型企业统计、生产产出", + "社会统计 - 教育参与率、健康指标、福利计划", + "村庄潜力数据(PODES)- 村级基础设施、设施和经济", + "人口预测 - 按年龄组和省份划分的未来人口估算", + "家庭收入和支出调查(SUSENAS)- 消费和生活水平", + "印度尼西亚数字 - 用于快速参考的年度统计汇编" + ] + }, + "has_api": true, + "file_path": "countries/asia/indonesia/indonesia-bps.json" + }, + { + "id": "boj-statistics", + "name": { + "en": "Bank of Japan Statistics", + "zh": "日本银行统计数据", + "native": "日本銀行統計" + }, + "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调查、价格指数、国际收支以及银行业统计。日本银行提供关于日本货币体系、银行业务和经济状况的权威数据。" + }, + "website": "https://www.boj.or.jp/en/", + "data_url": "https://www.boj.or.jp/en/statistics/index.htm", + "api_url": null, + "country": "JP", + "domains": [ + "monetary-policy", + "financial-markets", + "banking", + "flow-of-funds", + "economic-surveys", + "prices", + "balance-of-payments", + "public-finance", + "payment-systems" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "japan", + "central-bank", + "monetary-policy", + "financial-markets", + "banking", + "flow-of-funds", + "tankan", + "prices", + "balance-of-payments", + "economic-statistics", + "time-series", + "official-statistics" + ], + "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": "japan-esri", + "name": { + "en": "Economic and Social Research Institute, Cabinet Office of Japan", + "zh": "日本内阁府经济社会综合研究所" + }, + "description": { + "en": "Japan's Cabinet Office institute responsible for national accounts (GDP/SNA), economic indicators, and business cycle research.", + "zh": "日本内阁府下属机构,负责国民账户(GDP/SNA)、经济指标和景气循环研究。" + }, + "website": "https://www.esri.cao.go.jp", + "data_url": "https://www.esri.cao.go.jp/en/sna/menu.html", + "api_url": null, + "data_content": { + "en": [ + "GDP and System of National Accounts", + "Quarterly GDP estimates", + "Business cycle indicators", + "Consumer confidence survey", + "Economic outlook forecasts" + ], + "zh": [ + "GDP与国民经济计算体系", + "季度GDP估算", + "景气循环指标", + "消费者信心调查", + "经济展望预测" + ] + }, + "authority_level": "government", + "update_frequency": "quarterly", + "domains": [ + "economics" + ], + "tags": [ + "japan", + "gdp", + "sna", + "national-accounts", + "business-cycle" + ], + "country": "JP", + "geographic_scope": "national", + "has_api": false, + "file_path": "countries/asia/japan/japan-esri.json" + }, + { + "id": "japan-estat", + "name": { + "en": "Japan e-Stat (Portal Site of Official Statistics)", + "zh": "日本统计局 e-Stat(政府统计综合窗口)", + "native": "政府統計の総合窓口 e-Stat" + }, + "description": { + "en": "e-Stat is Japan's official statistics portal operated by the Statistics Bureau of Japan under the Ministry of Internal Affairs and Communications. It provides unified access to statistical data published by all Japanese government ministries and agencies, covering population, economy, industry, agriculture, education, health, and more. The platform offers a comprehensive REST API for data retrieval.", + "zh": "e-Stat 是日本总务省统计局运营的官方统计数据门户,提供对日本各政府部委和机构发布的统计数据的统一访问,涵盖人口、经济、产业、农业、教育、卫生等领域。该平台提供完整的 REST API 用于数据检索。" + }, + "website": "https://www.e-stat.go.jp/en", + "data_url": "https://www.e-stat.go.jp/en/stat-search", + "api_url": "https://www.e-stat.go.jp/en/developer", + "authority_level": "government", + "country": "JP", + "domains": [ + "statistics", + "economics", + "demographics", + "social", + "education", + "health" + ], + "geographic_scope": "national", + "update_frequency": "irregular", + "tags": [ + "japan", + "日本", + "e-stat", + "statistics", + "统计", + "census", + "人口普查", + "population", + "人口", + "economy", + "经济", + "ministry-of-internal-affairs", + "总务省", + "statistics-bureau", + "统计局", + "government-data", + "政府数据", + "industrial-statistics", + "产业统计", + "national-accounts", + "国民账户", + "labor-force", + "劳动力", + "api" + ], + "data_content": { + "en": [ + "Population Census (every 5 years) — national and regional population, households, age structure", + "National Accounts (GDP, income, expenditure) from Cabinet Office", + "Consumer Price Index (CPI) and Producer Price Index", + "Labour Force Survey — employment, unemployment rate, working hours", + "Family Income and Expenditure Survey", + "Industrial Statistics — manufacturing output, number of establishments", + "Agricultural, Forestry and Fisheries Census", + "School Basic Survey — student enrolment, graduates, schools by level", + "Patient Survey and Medical Facility Survey", + "Housing and Land Survey", + "Retail Trade Statistics and Wholesale Statistics", + "Over 100,000 statistical tables accessible via REST API" + ], + "zh": [ + "人口普查(每5年一次)——全国及地区人口、家庭数量、年龄结构", + "国民账户(GDP、收入、支出)——来自内阁府", + "消费者价格指数(CPI)和生产者价格指数", + "劳动力调查——就业人数、失业率、工作时长", + "家庭收支调查", + "工业统计——制造业产出、企业数量", + "农林渔业普查", + "学校基本调查——各级学校学生注册人数、毕业生数量", + "患者调查和医疗机构调查", + "住宅和土地调查", + "零售业和批发业统计", + "超过10万张统计表可通过 REST API 访问" + ] + }, + "has_api": true, + "file_path": "countries/asia/japan/japan-estat.json" + }, + { + "id": "japan-fsa", + "name": { + "en": "Japan Financial Services Agency", + "zh": "日本金融厅" + }, + "description": { + "en": "The Financial Services Agency (FSA) is the Japanese government body responsible for overseeing banking, securities, exchange, and insurance sectors. It publishes regulatory data, financial institution statistics, corporate disclosure filings (EDINET), inspection results, and policy documents essential for understanding Japan's financial regulatory landscape.", + "zh": "日本金融厅(FSA)是负责监管日本银行、证券、交易所和保险行业的政府机构。发布监管数据、金融机构统计、企业信息披露文件(EDINET)、检查结果和政策文件,是了解日本金融监管环境的关键数据源。" + }, + "website": "https://www.fsa.go.jp/en/", + "data_url": "https://www.fsa.go.jp/en/refer/index.html", + "api_url": null, + "country": "JP", + "authority_level": "government", + "domains": [ + "finance", + "banking", + "securities", + "insurance", + "regulation" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "japan", + "financial-regulation", + "banking-supervision", + "securities", + "insurance", + "edinet", + "corporate-disclosure", + "金融厅", + "金融監管", + "日本金融" + ], + "data_content": { + "en": [ + "Banking sector statistics and supervision reports", + "Securities and exchange regulation data", + "Insurance industry statistics", + "EDINET corporate disclosure filings", + "Financial institution inspection results", + "Anti-money laundering and compliance data", + "Financial system stability reports", + "Policy and regulatory documents" + ], + "zh": [ + "银行业统计和监管报告", + "证券和交易所监管数据", + "保险行业统计", + "EDINET企业信息披露文件", + "金融机构检查结果", + "反洗钱和合规数据", + "金融系统稳定性报告", + "政策和监管文件" + ] + }, + "has_api": false, + "file_path": "countries/asia/japan/japan-fsa.json" + }, + { + "id": "japan-gpif", + "name": { + "en": "Government Pension Investment Fund", + "zh": "日本政府养老投资基金" + }, + "description": { + "en": "The Government Pension Investment Fund (GPIF) is the world's largest pension fund, managing Japan's public pension reserves. It publishes detailed investment performance data, asset allocation reports, ESG investment activities, stewardship reports, and research on long-term investment strategies. GPIF's portfolio movements significantly influence global financial markets.", + "zh": "日本政府养老投资基金(GPIF)是全球最大的养老基金,管理日本公共养老金储备。发布详细的投资业绩数据、资产配置报告、ESG投资活动、管理责任报告以及长期投资策略研究。GPIF的组合变动对全球金融市场有重大影响。" + }, + "website": "https://www.gpif.go.jp/en/", + "data_url": "https://www.gpif.go.jp/en/performance/", + "api_url": null, + "country": "JP", + "authority_level": "government", + "domains": [ + "finance", + "pension", + "investment", + "esg" + ], + "geographic_scope": "national", + "update_frequency": "quarterly", + "tags": [ + "japan", + "pension-fund", + "gpif", + "sovereign-wealth", + "asset-allocation", + "esg", + "investment-performance", + "public-pension", + "年金", + "养老基金", + "资产配置" + ], + "data_content": { + "en": [ + "Quarterly and annual investment performance reports", + "Asset allocation by domestic/foreign bonds and equities", + "Benchmark return comparisons", + "ESG activity reports and initiatives", + "Stewardship responsibility reports", + "Alternative investment portfolio data", + "Investment manager selection and evaluation", + "Long-term investment strategy research papers" + ], + "zh": [ + "季度和年度投资业绩报告", + "国内外债券和股票资产配置", + "基准收益对比", + "ESG活动报告和倡议", + "管理责任报告", + "另类投资组合数据", + "投资管理人选择和评估", + "长期投资策略研究论文" + ] + }, + "has_api": false, + "file_path": "countries/asia/japan/japan-gpif.json" + }, + { + "id": "japan-jetro", + "name": { + "en": "Japan External Trade Organization", + "zh": "日本贸易振兴机构", + "native": "日本貿易振興機構" + }, + "description": { + "en": "JETRO is a Japanese government-related organization that promotes mutual trade and investment between Japan and the world. It provides comprehensive trade and investment statistics, country-specific market reports, industry research, FDI data, and business environment analyses. JETRO maintains regional offices in over 70 countries and publishes authoritative data on Japan's trade patterns and global investment flows.", + "zh": "JETRO是日本政府下属的贸易振兴机构,致力于促进日本与世界各国的贸易和投资往来。提供全面的贸易和投资统计数据、各国市场报告、产业研究、外商直接投资数据及商业环境分析。JETRO在全球70多个国家设有办事处,发布日本贸易格局和全球投资流向的权威数据。" + }, + "website": "https://www.jetro.go.jp/en/", + "data_url": "https://www.jetro.go.jp/en/reports/statistics.html", + "api_url": null, + "country": "JP", + "domains": [ + "trade", + "investment", + "economics", + "market-research", + "fdi" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "japan", + "trade", + "investment", + "fdi", + "export", + "import", + "market-research", + "trade-statistics", + "business-environment", + "日本", + "贸易", + "投资", + "外商直接投资" + ], + "data_content": { + "en": [ + "Japan's Trade Statistics (Exports and Imports by Country/Product)", + "Foreign Direct Investment Statistics (Inward and Outward)", + "Country/Region-Specific Trade and Investment Reports", + "Industry and Market Research Reports", + "Business Cost Comparisons Across Countries", + "Japanese Companies' Overseas Business Activities Survey", + "Global Trade and Investment Trends Analysis", + "Supply Chain and Logistics Data", + "SME Internationalization Statistics" + ], + "zh": [ + "日本贸易统计(按国家/产品分类的进出口数据)", + "外商直接投资统计(对内和对外)", + "各国/地区贸易和投资报告", + "产业和市场研究报告", + "各国商务成本比较", + "日本企业海外经营活动调查", + "全球贸易和投资趋势分析", + "供应链和物流数据", + "中小企业国际化统计" + ] + }, + "authority_level": "government", + "has_api": false, + "file_path": "countries/asia/japan/japan-jetro.json" + }, + { + "id": "japan-jma", + "name": { + "en": "Japan Meteorological Agency", + "zh": "日本气象厅" + }, + "description": { + "en": "Japan's national meteorological agency providing weather forecasts, earthquake/tsunami monitoring, and climate data for the Asia-Pacific region.", + "zh": "日本国家气象机构,提供天气预报、地震/海啸监测和亚太地区气候数据。" + }, + "website": "https://www.jma.go.jp", + "data_url": "https://www.data.jma.go.jp/risk/obsdl/index.php", + "api_url": null, + "data_content": { + "en": [ + "Weather observations", + "earthquake records", + "tsunami warnings", + "climate statistics", + "satellite imagery", + "volcanic activity data" + ], + "zh": [ + "天气观测、地震记录、海啸预警、气候统计、卫星图像、火山活动数据" + ] + }, + "authority_level": "government", + "update_frequency": "daily", + "domains": [ + "climate", + "environment", + "geoscience" + ], + "tags": [ + "weather", + "earthquake", + "tsunami", + "japan", + "climate" + ], + "country": "JP", + "geographic_scope": "national", + "has_api": false, + "file_path": "countries/asia/japan/japan-jma.json" + }, + { + "id": "japan-meti", + "name": { + "en": "Ministry of Economy, Trade and Industry (Japan)", + "zh": "日本经济产业省", + "native": "経済産業省" + }, + "description": { + "en": "Japan's Ministry of Economy, Trade and Industry (METI) is responsible for economic and industrial policy, trade policy, energy policy, and industrial standards. METI publishes comprehensive statistics including the Indices of Industrial Production (IIP), Census of Manufactures, Commercial and Service Industry Statistics, energy consumption data, and economic surveys covering Japan's industrial and commercial sectors.", + "zh": "日本经济产业省(METI)负责经济产业政策、贸易政策、能源政策及产业标准的制定。METI发布全面的统计数据,包括工业生产指数(IIP)、制造业普查、商业服务业统计、能源消费数据以及涵盖日本工商业的经济调查报告。" + }, + "website": "https://www.meti.go.jp/english/", + "data_url": "https://www.meti.go.jp/english/statistics/index.html", + "api_url": null, + "country": "JP", + "domains": [ + "industry", + "trade", + "energy", + "manufacturing", + "commerce", + "economics" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "japan", + "industry", + "manufacturing", + "trade-policy", + "energy", + "industrial-production", + "commerce", + "economic-policy", + "industrial-statistics", + "日本", + "经济产业省", + "工业生产", + "制造业" + ], + "data_content": { + "en": [ + "Indices of Industrial Production (IIP)", + "Census of Manufactures", + "Current Survey of Commerce", + "Survey of Selected Service Industries", + "Mineral and Petroleum Statistics", + "Energy Consumption Statistics", + "Machinery Orders and Production Data", + "Small and Medium Enterprise Statistics", + "Trade Policy and International Commerce Data", + "Industrial Technology and Innovation Statistics", + "Regional Economic and Industrial Trends" + ], + "zh": [ + "工业生产指数(IIP)", + "制造业普查", + "商业动态统计调查", + "特定服务产业调查", + "矿物和石油统计", + "能源消费统计", + "机械订单和生产数据", + "中小企业统计", + "贸易政策和国际商务数据", + "产业技术和创新统计", + "地区经济和产业动态" + ] + }, + "authority_level": "government", + "has_api": false, + "file_path": "countries/asia/japan/japan-meti.json" + }, + { + "id": "japan-mof", + "name": { + "en": "Ministry of Finance Japan", + "zh": "日本财务省" + }, + "description": { + "en": "The Ministry of Finance (MOF) of Japan is responsible for fiscal policy, taxation, customs, and government debt management. It publishes detailed trade statistics, government bond data, budget and fiscal reports, and international financial cooperation data. MOF's Trade Statistics of Japan provides monthly and annual import/export data by commodity and country.", + "zh": "日本财务省负责财政政策、税收、关税和政府债务管理。发布详细的贸易统计数据、国债数据、预算和财政报告以及国际金融合作数据。财务省的贸易统计提供按商品和国家分类的月度和年度进出口数据。" + }, + "website": "https://www.mof.go.jp/english/", + "data_url": "https://www.customs.go.jp/toukei/info/index_e.htm", + "api_url": null, + "authority_level": "government", + "country": "JP", + "domains": [ + "trade", + "finance", + "fiscal-policy", + "taxation" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "japan", + "日本", + "财务省", + "ministry-of-finance", + "mof", + "trade-statistics", + "贸易统计", + "government-bonds", + "国債", + "fiscal-policy", + "税収", + "customs", + "関税", + "import", + "export", + "輸出入" + ], + "data_content": { + "en": [ + "Trade Statistics of Japan: monthly/annual import and export data by commodity and country", + "Government bond issuance, outstanding amounts, and auction results", + "Budget and fiscal investment/loan program data", + "Tax revenue statistics and tax system information", + "International financial cooperation and exchange rate policy" + ], + "zh": [ + "日本贸易统计:按商品和国家分类的月度/年度进出口数据", + "国债发行、余额和拍卖结果", + "预算和财政投融资计划数据", + "税收收入统计和税制信息", + "国际金融合作与汇率政策" + ] + }, + "has_api": false, + "file_path": "countries/asia/japan/japan-mof.json" + }, + { + "id": "jpx", + "name": { + "en": "Japan Exchange Group", + "zh": "日本交易所集团" + }, + "description": { + "en": "Japan Exchange Group (JPX) operates the Tokyo Stock Exchange (TSE) and Osaka Exchange (OSE), forming one of the world's largest exchange groups. It provides comprehensive market statistics including equity trading data, listed company information, market indices (TOPIX, Nikkei), derivatives statistics, IPO data, and corporate governance reports.", + "zh": "日本交易所集团(JPX)运营东京证券交易所(TSE)和大阪交易所(OSE),是全球最大的交易所集团之一。提供全面的市场统计数据,包括股票交易数据、上市公司信息、市场指数(TOPIX、日经)、衍生品统计、IPO数据和公司治理报告。" + }, + "website": "https://www.jpx.co.jp/english/", + "data_url": "https://www.jpx.co.jp/english/markets/statistics-equities/index.html", + "api_url": null, + "country": "JP", + "authority_level": "market", + "domains": [ + "finance", + "securities", + "stock-market", + "derivatives" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "japan", + "stock-exchange", + "tse", + "tokyo-stock-exchange", + "topix", + "nikkei", + "equities", + "derivatives", + "ipo", + "market-data", + "東京証券取引所", + "日本交易所" + ], + "data_content": { + "en": [ + "Equity market trading statistics (volume, value, turnover)", + "Listed company information and filings", + "Market indices (TOPIX, JPX-Nikkei Index 400)", + "Derivatives trading statistics (futures, options)", + "IPO and new listing data", + "Corporate governance reports", + "Foreign investor trading statistics", + "Short selling reports", + "Margin trading statistics", + "ETF and REIT market data" + ], + "zh": [ + "股票市场交易统计(成交量、成交额、换手率)", + "上市公司信息和公告文件", + "市场指数(TOPIX、JPX日经400指数)", + "衍生品交易统计(期货、期权)", + "IPO和新上市数据", + "公司治理报告", + "外国投资者交易统计", + "卖空报告", + "融资融券统计", + "ETF和REIT市场数据" + ] + }, + "has_api": false, + "file_path": "countries/asia/japan/jpx.json" + }, + { + "id": "korea-bok", + "name": { + "en": "Bank of Korea", + "zh": "韩国银行", + "native": "한국은행" + }, + "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)提供全面的经济金融统计数据,包括货币总量、利率、国际收支、国民账户、价格指数以及企业和消费者调查。韩国银行定期发布经济报告,并维护对经济政策分析至关重要的广泛时间序列数据。" + }, + "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": [ + "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": "daily", + "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" + ], + "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": "kostat-cpi", + "name": { + "en": "Statistics Korea (KOSTAT) - Consumer Price Index", + "zh": "韩国统计局 - 消费者物价指数", + "ko": "통계청 - 소비자물가지수" + }, + "description": { + "en": "Statistics Korea (KOSTAT), officially renamed as the Ministry of Data and Statistics since October 2025, is the national statistical agency of South Korea responsible for collecting, compiling, and disseminating official statistics. The Consumer Price Index (CPI) measures the average change over time in prices paid by consumers for a market basket of goods and services, covering approximately 26,000 retail stores and 11,000 tenant households nationwide (excluding farming and fishery households), representing about 92.9% of total Korean households.", + "zh": "韩国统计局(KOSTAT),自2025年10月起正式更名为国家数据处,是韩国国家统计机构,负责收集、编制和发布官方统计数据。消费者物价指数(CPI)衡量消费者购买一篮子商品和服务价格随时间的平均变化,覆盖全国约26,000家零售店和11,000户租户家庭(不包括农渔业家庭),代表约92.9%的韩国家庭。", + "ko": "통계청(KOSTAT)은 2025년 10월부터 국가데이터처로 새롭게 출발한 대한민국의 국가통계기관으로, 공식 통계 자료의 수집, 편제 및 배포를 담당합니다. 소비자물가지수(CPI)는 가구에서 일상생활을 영위하기 위해 구입하는 상품과 서비스의 평균적인 가격변동을 측정한 지수입니다." + }, + "website": "https://kosis.kr", + "data_url": "https://kosis.kr/eng/", + "api_url": "https://kosis.kr/openapi/index/index.jsp", + "country": "KR", + "domains": [ + "economics", + "prices", + "inflation", + "consumer-price-index", + "economic-indicators", + "statistics" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "authority_level": "government", + "tags": [ + "consumer-price-index", + "cpi", + "소비자물가지수", + "inflation", + "인플레이션", + "통화膨胀", + "south-korea", + "korea", + "한국", + "韩国", + "prices", + "물가", + "物价", + "economic-indicators", + "경제지표", + "经济指标", + "kostat", + "통계청", + "统计局", + "statistics", + "통계", + "统计", + "cost-of-living", + "생활비", + "生活成本" + ], + "data_content": { + "en": [ + "Consumer Price Index (CPI) - overall and by category", + "Monthly and annual inflation rates", + "Price indices by region (provincial and metropolitan)", + "Price trends for goods and services categories", + "Core inflation indicators" + ], + "zh": [ + "消费者物价指数(CPI)- 总体及分类指数", + "月度和年度通胀率", + "按地区的物价指数(省级和都市级)", + "商品和服务类别的价格趋势", + "核心通胀指标" + ], + "ko": [ + "소비자물가지수(CPI) - 전체 및 부문별", + "월별 및 연간 인플레이션율", + "지역별 물가지수(광역시·도)", + "상품 및 서비스 부문별 가격 추이", + "근원인플레이션 지표" + ] + }, + "has_api": true, + "file_path": "countries/asia/kostat-cpi.json" + }, + { + "id": "kostat", + "name": { + "en": "Statistics Korea (KOSTAT)", + "zh": "韩国统计厅" + }, + "description": { + "en": "Statistics Korea (KOSTAT), officially known as the Ministry of Data and Statistics, is South Korea's central government agency responsible for managing national statistics. Operating directly under the Prime Minister, KOSTAT coordinates, produces and disseminates official statistics in a decentralized statistical system, covering economic, demographic, social and other statistical domains.", + "zh": "韩国统计厅(KOSTAT),正式名称为数据与统计部,是韩国负责管理国家统计的中央政府机构。KOSTAT直接隶属于总理办公室,在分散式统计系统中协调、生成和传播官方统计数据,涵盖经济、人口、社会等统计领域。" + }, + "website": "https://mods.go.kr/anse", + "data_url": "https://kosis.kr/eng/", + "api_url": "https://kosis.kr/openapi/index/index.jsp", + "authority_level": "government", + "country": "KR", + "geographic_scope": "national", + "domains": [ + "economics", + "demographics", + "labor", + "prices", + "social", + "population", + "household", + "employment", + "trade", + "industry", + "agriculture", + "environment" + ], + "update_frequency": "monthly", + "data_content": { + "en": [ + "Population and Household Statistics - census data, demographic trends, birth/death statistics", + "Labor Force Statistics - economically active population survey, employment, unemployment", + "Price Statistics - Consumer Price Index (CPI), Producer Price Index", + "Economic Statistics - GDP, national accounts, economic census", + "Social Statistics - education, health, welfare, culture", + "Business Statistics - industry, trade, services, online shopping", + "Agriculture and Environment Statistics - agricultural census, environmental indicators" + ], + "zh": [ + "人口与家庭统计 - 人口普查数据、人口趋势、出生/死亡统计", + "劳动力统计 - 经济活动人口调查、就业、失业", + "价格统计 - 消费者价格指数(CPI)、生产者价格指数", + "经济统计 - GDP、国民账户、经济普查", + "社会统计 - 教育、健康、福利、文化", + "企业统计 - 工业、贸易、服务业、网络购物", + "农业与环境统计 - 农业普查、环境指标" + ] + }, + "tags": [ + "korea-statistics", + "kostat", + "south-korea", + "economic-data", + "population-census", + "labor-statistics", + "price-index", + "kosis", + "korean-statistical-information-service", + "government-statistics", + "national-statistics", + "demographic-data", + "韩国统计", + "韩国统计厅", + "韩国数据", + "经济数据", + "人口普查", + "劳动统计", + "价格指数", + "政府统计", + "国家统计", + "人口数据" + ], + "has_api": true, + "file_path": "countries/asia/kostat.json" + }, + { + "id": "laos-lsb", + "name": { + "en": "Lao Statistics Bureau (LSB)", + "zh": "老挝统计局" + }, + "description": { + "en": "The Lao Statistics Bureau (LSB) is the national statistical office of the Lao People's Democratic Republic, operating under the Ministry of Planning and Investment. It is responsible for collecting, compiling, and disseminating official statistics on the country's economic and social development, including national accounts, population, poverty, trade, and sectoral data.", + "zh": "老挝统计局(LSB)是老挝人民民主共和国的国家统计机构,隶属于计划与投资部。负责收集、编制和发布关于国家经济社会发展的官方统计数据,包括国民账户、人口、贫困、贸易和部门数据。" + }, + "website": "https://www.lsb.gov.la/", + "data_url": "https://laosis.lsb.gov.la/", + "api_url": null, + "authority_level": "government", + "country": "LA", + "domains": [ + "economics", + "demographics", + "social" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "laos", + "老挝", + "lsb", + "statistics", + "统计局", + "laosis", + "gdp", + "population", + "人口", + "poverty", + "贫困", + "asean", + "东盟", + "southeast-asia", + "东南亚", + "lao-pdr" + ], + "data_content": { + "en": [ + "National accounts and GDP statistics", + "Population and Housing Census data", + "Lao Expenditure and Consumption Survey (LECS)", + "Consumer Price Index (CPI)", + "Foreign trade statistics", + "Agriculture and forestry statistics", + "Education and health indicators", + "Provincial and district-level socio-economic data" + ], + "zh": [ + "国民账户和GDP统计", + "人口与住房普查数据", + "老挝支出和消费调查(LECS)", + "消费者价格指数(CPI)", + "对外贸易统计", + "农业和林业统计", + "教育和卫生指标", + "省级和县级社会经济数据" + ] + }, + "has_api": false, + "file_path": "countries/asia/laos/laos-lsb.json" + }, + { + "id": "malaysia-dosm", + "name": { + "en": "Department of Statistics Malaysia (DOSM)", + "zh": "马来西亚统计局" + }, + "description": { + "en": "Malaysia's national statistical agency providing comprehensive data on population, economy, and social indicators through the OpenDOSM platform.", + "zh": "马来西亚国家统计机构,通过OpenDOSM平台提供人口、经济和社会指标的综合数据。" + }, + "website": "https://www.dosm.gov.my/", + "data_url": "https://open.dosm.gov.my/", + "api_url": "https://api.dosm.gov.my/", + "authority_level": "government", + "country": "MY", + "domains": [ + "economics", + "demographics" + ], + "tags": [ + "statistics", + "gdp", + "population", + "trade", + "cpi", + "malaysia", + "open-data" + ], + "update_frequency": "monthly", + "data_content": { + "en": [ + "GDP and national accounts", + "Population demographics", + "Consumer price index", + "Labour force statistics", + "External trade" + ], + "zh": [ + "GDP和国民账户", + "人口统计", + "消费者价格指数", + "劳动力统计", + "对外贸易" + ] + }, + "geographic_scope": "national", + "has_api": true, + "file_path": "countries/asia/malaysia/malaysia-dosm.json" + }, + { + "id": "myanmar-cso", + "name": { + "en": "Central Statistical Organization (Myanmar)", + "zh": "缅甸中央统计局" + }, + "description": { + "en": "Myanmar's principal government agency responsible for collecting, processing, and disseminating official statistics including GDP, population census, CPI, labor force surveys, foreign trade, industrial production, and agricultural statistics.", + "zh": "缅甸主要政府统计机构,负责收集、处理和发布官方统计数据,包括GDP、人口普查、消费者价格指数、劳动力调查、对外贸易、工业生产和农业统计。" + }, + "website": "https://www.csostat.gov.mm", + "data_url": "https://www.csostat.gov.mm", + "api_url": null, + "country": "MM", + "geographic_scope": "national", + "authority_level": "government", + "domains": [ + "economics", + "demographics", + "trade", + "agriculture" + ], + "update_frequency": "annual", + "data_content": { + "en": [ + "GDP and national accounts", + "Population and housing census", + "Consumer price index (CPI)", + "Labor force survey", + "Foreign trade statistics", + "Industrial production index", + "Agricultural statistics", + "Social and vital statistics" + ], + "zh": [ + "GDP与国民账户", + "人口与住房普查", + "消费者价格指数", + "劳动力调查", + "对外贸易统计", + "工业生产指数", + "农业统计", + "社会与人口动态统计" + ] + }, + "tags": [ + "myanmar", + "缅甸", + "statistics", + "统计局", + "asean", + "东盟", + "gdp", + "census", + "cpi" + ], + "has_api": false, + "file_path": "countries/asia/myanmar/myanmar-cso.json" + }, + { + "id": "philippines-psa", + "name": { + "en": "Philippine Statistics Authority", + "zh": "菲律宾统计局" + }, + "description": { + "en": "The Philippine Statistics Authority (PSA) is the central statistical authority of the Philippine government, responsible for collecting, compiling, analyzing, and publishing official statistics on economic, social, demographic, political affairs, and general welfare of the Filipino people. Created by Republic Act No. 10625 (Philippine Statistical Act of 2013), PSA conducts national censuses and surveys, maintains civil registration systems, and provides comprehensive data through its OpenStat, QuickStat, and interactive map platforms.", + "zh": "菲律宾统计局(PSA)是菲律宾政府的中央统计机构,负责收集、编制、分析和发布关于经济、社会、人口、政治事务和菲律宾人民总体福祉的官方统计数据。根据第10625号共和国法(2013年菲律宾统计法)设立,PSA进行全国性普查和调查,维护民事登记系统,并通过OpenStat、QuickStat和交互式地图平台提供综合数据。" + }, + "website": "https://psa.gov.ph", + "data_url": "https://openstat.psa.gov.ph", + "api_url": null, + "country": "PH", + "domains": [ + "demographics", + "economics", + "social", + "population", + "employment", + "agriculture", + "trade", + "health", + "education", + "environment", + "government-finance", + "business", + "civil-registration" + ], + "geographic_scope": "national", + "update_frequency": "irregular", + "tags": [ + "philippines", + "菲律宾", + "national-statistics", + "国家统计", + "census", + "普查", + "demographics", + "人口统计", + "economic-indicators", + "经济指标", + "openstat", + "quickstat", + "government-data", + "政府数据", + "civil-registration", + "民事登记", + "psa", + "southeast-asia", + "东南亚", + "philippine-statistics", + "official-statistics", + "官方统计" + ], + "data_content": { + "en": [ + "Census of Population and Housing - comprehensive national census", + "National accounts and economic statistics - GDP, inflation, trade balance", + "Demographic and social statistics - population estimates, vital statistics", + "Labour force statistics - employment, unemployment, wages", + "Agricultural statistics - crop production, livestock, fisheries", + "Industry and trade statistics - manufacturing, construction, services", + "Environmental and multi-domain statistics", + "Civil registration services - birth, marriage, death certificates", + "Business and enterprise statistics", + "Education statistics - enrollment, literacy", + "Health statistics and surveys", + "Government finance and public sector data", + "Regional and provincial statistics" + ], + "zh": [ + "人口和住房普查 - 全面的全国性普查", + "国民账户和经济统计 - GDP、通货膨胀、贸易差额", + "人口和社会统计 - 人口估计、生命统计", + "劳动力统计 - 就业、失业、工资", + "农业统计 - 作物生产、畜牧业、渔业", + "工业和贸易统计 - 制造业、建筑业、服务业", + "环境和多领域统计", + "民事登记服务 - 出生、婚姻、死亡证明", + "商业和企业统计", + "教育统计 - 入学率、识字率", + "健康统计和调查", + "政府财政和公共部门数据", + "地区和省级统计" + ] + }, + "authority_level": "government", + "has_api": false, + "file_path": "countries/asia/philippines/psa.json" + }, + { + "id": "saudi-gastat", + "name": { + "en": "General Authority for Statistics (GASTAT)", + "zh": "沙特阿拉伯统计总局" + }, + "description": { + "en": "The General Authority for Statistics (GASTAT) is the official national statistics agency of the Kingdom of Saudi Arabia. Established under the Statistics Law, GASTAT is responsible for collecting, processing, analyzing, and disseminating official statistical data on the socioeconomic, demographic, environmental, and other aspects of Saudi society. It conducts the national population census, and publishes regular statistical releases on GDP, labor market, prices, trade, housing, and sectoral indicators in support of Saudi Vision 2030.", + "zh": "沙特阿拉伯统计总局(GASTAT)是沙特阿拉伯王国的官方国家统计机构,依据统计法成立,负责收集、处理、分析和发布有关沙特社会经济、人口、环境等各方面的官方统计数据。统计总局开展全国人口普查,定期发布GDP、劳动力市场、价格、贸易、住房和行业指标等统计数据,为沙特2030愿景提供数据支撑。" + }, + "website": "https://www.stats.gov.sa/en", + "data_url": "https://www.stats.gov.sa/statistics", + "api_url": null, + "authority_level": "government", + "country": "SA", + "domains": [ + "demographics", + "economics", + "social", + "employment", + "prices", + "trade", + "industry", + "agriculture", + "housing", + "energy", + "health" + ], + "geographic_scope": "national", + "update_frequency": "quarterly", + "tags": [ + "saudi-arabia", + "沙特阿拉伯", + "gastat", + "saudi-statistics", + "沙特统计", + "vision-2030", + "2030愿景", + "population", + "人口", + "census", + "人口普查", + "gdp", + "国内生产总值", + "oil", + "石油", + "energy", + "能源", + "labour-market", + "劳动力市场", + "employment", + "就业", + "cpi", + "consumer-price-index", + "消费者价格指数", + "trade", + "贸易", + "exports", + "出口", + "imports", + "进口", + "middle-east", + "中东", + "gulf", + "海湾", + "gcc", + "官方统计", + "official-statistics", + "government-statistics", + "政府统计" + ], + "data_content": { + "en": [ + "Population and Demography - census data, population estimates, births, deaths, naturalization, age and gender distribution", + "National Accounts - GDP by expenditure and production approach, sector accounts, capital formation, household consumption", + "Labour Market - employment by nationality and gender, unemployment rate, wages, labor force participation, Saudization (Nitaqat) rates", + "Prices - Consumer Price Index (CPI), Producer Price Index (PPI), real estate price index, construction cost index", + "Foreign Trade - merchandise exports and imports by commodity and trading partner, trade balance", + "Energy and Oil - oil production, refining capacity, electricity generation and consumption (in collaboration with SAMA and energy authorities)", + "Industry and Manufacturing - industrial production indices, output by sector, mining and quarrying, manufacturing", + "Agriculture and Food - crop and livestock production, fisheries, food supply statistics", + "Housing and Construction - building permits, dwelling stock, real estate market indicators", + "Social Statistics - education enrollment, health facilities and outcomes, poverty and income distribution, social welfare", + "Business and Finance - business registrations, economic activity by sector, public finance indicators", + "Environment - water resources, land use, environmental quality, waste management statistics" + ], + "zh": [ + "人口与人口统计 - 人口普查数据、人口估计、出生、死亡、入籍、年龄和性别分布", + "国民账户 - 支出法和生产法GDP、部门账户、资本形成、居民消费", + "劳动力市场 - 按国籍和性别划分的就业情况、失业率、工资、劳动参与率、沙特化(Nitaqat)比率", + "价格 - 消费者价格指数(CPI)、生产者价格指数(PPI)、房地产价格指数、建筑成本指数", + "对外贸易 - 按商品和贸易伙伴划分的商品出口和进口、贸易差额", + "能源与石油 - 石油产量、炼油能力、发电量和用电量", + "工业与制造业 - 工业生产指数、各部门产出、采矿采石、制造业", + "农业与食品 - 农作物和牲畜产量、渔业、食品供给统计", + "住房与建筑 - 建筑许可、住宅存量、房地产市场指标", + "社会统计 - 教育入学率、卫生设施和健康结果、贫困和收入分配、社会福利", + "商业与金融 - 企业登记、各部门经济活动、公共财政指标", + "环境 - 水资源、土地利用、环境质量、废物管理统计" + ] + }, + "has_api": false, + "file_path": "countries/asia/saudi-arabia/saudi-gastat.json" + }, + { + "id": "singapore-singstat", + "name": { + "en": "Singapore Department of Statistics (SingStat)", + "zh": "新加坡统计局", + "native": "Department of Statistics Singapore" + }, + "description": { + "en": "The Singapore Department of Statistics (SingStat) is the national statistical authority of Singapore, responsible for producing and disseminating authoritative statistics on Singapore's economy, population, and society. It provides key economic indicators including GDP, trade, inflation, employment, and demographic data, and offers open access to its data through the SingStat Table Builder platform.", + "zh": "新加坡统计局(SingStat)是新加坡官方国家统计机构,负责生产和发布新加坡经济、人口和社会的权威统计数据,提供包括GDP、贸易、通胀、就业和人口统计在内的核心经济指标,并通过SingStat Table Builder平台提供开放数据访问。" + }, + "website": "https://www.singstat.gov.sg", + "data_url": "https://tablebuilder.singstat.gov.sg", + "api_url": "https://tablebuilder.singstat.gov.sg/api/table/metadata/", + "authority_level": "government", + "country": "SG", + "domains": [ + "economics", + "demographics", + "trade", + "employment", + "social", + "finance" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "singapore", + "singstat", + "statistics", + "gdp", + "inflation", + "population", + "census", + "employment", + "trade", + "新加坡", + "统计局", + "东南亚", + "经济统计", + "人口普查", + "table-builder" + ], + "data_content": { + "en": [ + "GDP and national accounts", + "Consumer price index (CPI) and inflation", + "International trade in goods and services", + "Population census and demographic statistics", + "Labour force and employment data", + "Household income and expenditure surveys", + "Industrial production statistics", + "Business expectations surveys", + "Tourism and visitor arrivals" + ], + "zh": [ + "GDP和国民账户", + "消费者价格指数(CPI)和通胀", + "货物和服务国际贸易", + "人口普查和人口统计", + "劳动力和就业数据", + "家庭收入和支出调查", + "工业生产统计", + "企业前景调查", + "旅游和访客数量" + ] + }, + "has_api": true, + "file_path": "countries/asia/singapore/singapore-singstat.json" + }, + { + "id": "korea-kostat", + "name": { + "en": "Statistics Korea (KOSTAT)", + "zh": "韩国统计厅" + }, + "description": { + "en": "The national statistical office of South Korea providing comprehensive statistical data on population, economy, society, and environment through the Korean Statistical Information Service (KOSIS).", + "zh": "韩国国家统计机构,通过韩国统计信息服务(KOSIS)提供人口、经济、社会和环境的综合统计数据。" + }, + "website": "https://kostat.go.kr/", + "data_url": "https://kosis.kr/eng/", + "api_url": "https://kosis.kr/openapi/", + "authority_level": "government", + "country": "KR", + "domains": [ + "economics", + "demographics" + ], + "tags": [ + "statistics", + "gdp", + "population", + "cpi", + "employment", + "south-korea" + ], + "update_frequency": "monthly", + "data_content": { + "en": [ + "GDP and national accounts", + "Consumer price index", + "Population census", + "Employment statistics", + "Industrial production" + ], + "zh": [ + "GDP和国民账户", + "消费者价格指数", + "人口普查", + "就业统计", + "工业生产" + ] + }, + "geographic_scope": "national", + "has_api": true, + "file_path": "countries/asia/south-korea/korea-kostat.json" + }, + { + "id": "taiwan-dgbas", + "name": { + "en": "Directorate-General of Budget, Accounting and Statistics (DGBAS)", + "zh": "台湾主计总处" + }, + "description": { + "en": "The principal government statistics agency of Taiwan responsible for national statistics including GDP, CPI, population census, and household surveys.", + "zh": "台湾主要政府统计机构,负责GDP、CPI、人口普查和家庭调查等国家统计。" + }, + "website": "https://eng.dgbas.gov.tw/", + "data_url": "https://eng.stat.gov.tw/", + "api_url": null, + "authority_level": "government", + "country": "TW", + "domains": [ + "economics", + "demographics" + ], + "tags": [ + "statistics", + "gdp", + "cpi", + "population", + "census", + "taiwan" + ], + "update_frequency": "monthly", + "data_content": { + "en": [ + "GDP and national accounts", + "Consumer price index", + "Population census", + "Household income and expenditure", + "Employment statistics" + ], + "zh": [ + "GDP和国民账户", + "消费者价格指数", + "人口普查", + "家庭收支", + "就业统计" + ] + }, + "geographic_scope": "national", + "has_api": false, + "file_path": "countries/asia/taiwan/taiwan-dgbas.json" + }, + { + "id": "fia-fdi", + "name": { + "en": "Foreign Investment Agency - FDI Statistics", + "zh": "越南外国投资局 - FDI统计数据" + }, + "description": { + "en": "The Foreign Investment Agency (FIA) under the Ministry of Planning and Investment of Vietnam is the official government agency responsible for publishing comprehensive statistics on foreign direct investment (FDI) in Vietnam and Vietnam's overseas investment. The agency provides detailed monthly, quarterly, and annual reports covering FDI registered capital, disbursed capital, by sector, by source country/territory, and by province.", + "zh": "越南计划投资部下属的外国投资局(FIA)是负责发布越南外国直接投资(FDI)及越南海外投资综合统计数据的官方政府机构。该机构提供详细的月度、季度和年度报告,涵盖FDI注册资本、实际到位资本、按行业分类、按来源国/地区分类以及按省份分类的数据。" + }, + "website": "https://www.mpi.gov.vn/", + "data_url": "https://www.mpi.gov.vn/en/Pages/FDI-1637.aspx", + "api_url": null, + "authority_level": "government", + "country": "VN", + "domains": [ + "foreign-direct-investment", + "international-investment", + "economic-statistics", + "investment-statistics" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "vietnam", + "越南", + "fdi", + "foreign-direct-investment", + "外国直接投资", + "investment-statistics", + "投资统计", + "economic-data", + "经济数据", + "ministry-of-planning-and-investment", + "计划投资部", + "fia", + "foreign-investment-agency", + "外国投资局", + "overseas-investment", + "对外投资", + "capital-flows", + "资本流动", + "registered-capital", + "注册资本", + "disbursed-capital", + "实际到位资本", + "investment-by-sector", + "行业投资", + "investment-by-province", + "省份投资", + "investment-by-country", + "国别投资" + ], + "data_content": { + "en": [ + "FDI registered capital and disbursed capital statistics", + "FDI by economic sector (manufacturing, real estate, electricity, etc.)", + "FDI by source country and territory (90+ countries)", + "FDI by province and locality", + "Number of FDI projects by category (new projects, additional investment, capital contribution)", + "Vietnam's overseas investment statistics", + "Monthly, quarterly, and annual FDI reports" + ], + "zh": [ + "FDI注册资本和实际到位资本统计", + "按经济部门分类的FDI(制造业、房地产、电力等)", + "按来源国家和地区分类的FDI(90多个国家)", + "按省份和地区分类的FDI", + "按类别分类的FDI项目数量(新项目、追加投资、出资购股)", + "越南对外投资统计", + "月度、季度和年度FDI报告" + ] + }, + "has_api": false, + "file_path": "countries/asia/vietnam/fia-fdi.json" + }, + { + "id": "gdvc", + "name": { + "en": "General Department of Vietnam Customs", + "zh": "越南海关总局" + }, + "description": { + "en": "The General Department of Vietnam Customs (GDVC) is a government agency under the Ministry of Finance, responsible for customs management, revenue protection, and trade facilitation. GDVC manages import and export activities, fights against smuggling and commercial fraud, and operates the Vietnam National Single Window system. The department provides 181 online public services and maintains comprehensive customs statistics and trade data.", + "zh": "越南海关总局(GDVC)是财政部下属的政府机构,负责海关管理、收入保护和贸易便利化。GDVC管理进出口活动,打击走私和商业欺诈,并运营越南国家单一窗口系统。该部门提供181项在线公共服务,并维护全面的海关统计和贸易数据。" + }, + "website": "https://www.customs.gov.vn", + "data_url": "https://www.customs.gov.vn", + "api_url": null, + "authority_level": "government", + "geographic_scope": "national", + "country": "VN", + "domains": [ + "customs", + "trade", + "import-export", + "tariffs", + "revenue", + "border-control" + ], + "update_frequency": "daily", + "data_content": { + "en": [ + "Import and export customs declarations and statistics", + "Tariff classification and HS code database", + "Customs duty and tax collection data", + "Trade statistics by commodity, country, and port", + "E-commerce customs management data", + "Customs clearance procedures and processing times", + "Customs revenue and enforcement statistics", + "Cross-border trade facilitation metrics", + "Single Window transaction data", + "Anti-smuggling and trade fraud investigation reports" + ], + "zh": [ + "进出口海关申报与统计", + "关税分类与HS编码数据库", + "关税和税收征收数据", + "按商品、国家和港口分类的贸易统计", + "电子商务海关管理数据", + "海关清关程序与处理时间", + "海关收入与执法统计", + "跨境贸易便利化指标", + "单一窗口交易数据", + "反走私与贸易欺诈调查报告" + ] + }, + "tags": [ + "vietnam", + "越南", + "customs", + "海关", + "import-export", + "进出口", + "trade-statistics", + "贸易统计", + "tariffs", + "关税", + "hs-code", + "HS编码", + "customs-clearance", + "海关清关", + "trade-facilitation", + "贸易便利化", + "single-window", + "单一窗口", + "gdvc", + "tổng-cục-hải-quan", + "government-data", + "政府数据", + "southeast-asia", + "东南亚", + "asean", + "customs-revenue", + "海关收入", + "border-control", + "边境管控", + "e-commerce", + "电子商务", + "vnaccs" + ], + "has_api": false, + "file_path": "countries/asia/vietnam/gdvc.json" + }, + { + "id": "gso-vietnam", + "name": { + "en": "General Statistics Office of Vietnam", + "zh": "越南国家统计局" + }, + "description": { + "en": "The General Statistics Office of Vietnam (GSO) is a government agency under the Ministry of Planning and Investment, responsible for state management of statistics and providing comprehensive social and economic information. GSO operates a vertical system with headquarters, 63 provincial statistical offices, and 713 district branch offices, serving over 5,300 employees nationwide.", + "zh": "越南国家统计局(GSO)是隶属于计划与投资部的政府机构,负责国家统计管理职能,提供全面的社会经济信息。GSO采用垂直管理体系,包括总部、63个省级统计办公室和713个区级分支机构,在全国拥有超过5,300名员工。" + }, + "website": "https://www.gso.gov.vn", + "data_url": "https://www.gso.gov.vn/en/data-and-statistics/", + "api_url": null, + "authority_level": "government", + "geographic_scope": "national", + "country": "VN", + "domains": [ + "national-accounts", + "population-and-employment", + "agriculture-and-rural-development", + "industry-and-construction", + "trade-and-services", + "investment-and-finance", + "price-indices", + "social-statistics", + "education-and-health", + "transport-and-telecommunications", + "environmental-statistics" + ], + "update_frequency": "monthly", + "data_content": { + "en": [ + "National Accounts and GDP statistics", + "Population and Housing Census data", + "Industrial Production Index", + "Consumer Price Index (CPI)", + "Employment and Labor Force statistics", + "Agriculture, Forestry, and Fishery statistics", + "Trade, Investment and Construction data", + "Transport, Postal Services and Telecommunications statistics", + "Education, Health and Culture indicators", + "Income, Poverty and Living Standards data", + "Provincial and Regional statistical data", + "State Budget and Public Finance statistics" + ], + "zh": [ + "国民账户与GDP统计", + "人口与住房普查数据", + "工业生产指数", + "消费者价格指数(CPI)", + "就业与劳动力统计", + "农业、林业和渔业统计", + "贸易、投资与建设数据", + "交通、邮政与电信统计", + "教育、卫生与文化指标", + "收入、贫困与生活水平数据", + "省级与区域统计数据", + "国家预算与公共财政统计" + ] + }, + "tags": [ + "vietnam", + "越南", + "national-statistics", + "国家统计", + "economic-data", + "经济数据", + "population-census", + "人口普查", + "gdp", + "cpi", + "industrial-production", + "工业生产", + "labor-statistics", + "劳动力统计", + "trade-data", + "贸易数据", + "government-statistics", + "政府统计", + "gso", + "tổng-cục-thống-kê", + "southeast-asia", + "东南亚", + "asean", + "statistical-yearbook", + "统计年鉴" + ], + "has_api": false, + "file_path": "countries/asia/vietnam/gso-vietnam.json" + }, + { + "id": "vietnam-gso", + "name": { + "en": "General Statistics Office of Vietnam", + "zh": "越南统计总局" + }, + "description": { + "en": "Vietnam's national statistical agency providing authoritative official statistics on economic, social, population, and environmental matters. The GSO publishes comprehensive data including GDP, CPI, FDI, population, trade, industry, and employment through quarterly and annual reports, statistical yearbooks, and online databases.", + "zh": "越南国家统计局,提供涵盖经济、社会、人口和环境事务的权威官方统计数据。GSO发布包括GDP、CPI、FDI、人口、贸易、工业和就业在内的全面数据,通过季度和年度报告、统计年鉴和在线数据库提供。" + }, + "website": "https://www.nso.gov.vn", + "data_url": "https://www.nso.gov.vn/en/statistical-data/", + "api_url": null, + "country": "VN", + "domains": [ + "economics", + "demographics", + "population", + "employment", + "trade", + "industry", + "agriculture", + "construction", + "education", + "health", + "environment", + "government-finance", + "investment" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "vietnam", + "越南", + "national-statistics", + "国家统计", + "gdp", + "cpi", + "fdi", + "foreign-direct-investment", + "外商直接投资", + "population", + "人口", + "employment", + "就业", + "trade", + "贸易", + "economic-indicators", + "经济指标", + "census", + "人口普查", + "quarterly-data", + "季度数据", + "annual-statistics", + "年度统计", + "statistical-yearbook", + "统计年鉴", + "government-data", + "政府数据", + "southeast-asia", + "东南亚" + ], + "data_content": { + "en": [ + "National accounts - GDP at current prices, GDP growth rates, GDP per capita", + "Consumer Price Index (CPI) - monthly and annual inflation data", + "Foreign Direct Investment (FDI) - inbound investment statistics", + "Population and demographics - census data, population estimates and projections", + "Labour force statistics - employment, unemployment, wages", + "International trade - exports, imports, trade balance", + "Industrial production - manufacturing and mining statistics", + "Agriculture, forestry and fishery statistics", + "Investment and construction data", + "Transport, postal services and telecommunications", + "Education and training statistics", + "Health statistics and social indicators", + "Energy and environmental data", + "Government finance statistics", + "Business and enterprise statistics", + "Statistical Yearbook - comprehensive annual publication with socio-economic data" + ], + "zh": [ + "国民账户 - 现价GDP、GDP增长率、人均GDP", + "居民消费价格指数(CPI) - 月度和年度通胀数据", + "外商直接投资(FDI) - 外资流入统计", + "人口和人口统计 - 人口普查数据、人口估计和预测", + "劳动力统计 - 就业、失业、工资", + "国际贸易 - 出口、进口、贸易差额", + "工业生产 - 制造业和采矿业统计", + "农业、林业和渔业统计", + "投资和建筑数据", + "交通、邮政和电信服务", + "教育和培训统计", + "健康统计和社会指标", + "能源和环境数据", + "政府财政统计", + "商业和企业统计", + "统计年鉴 - 包含社会经济数据的年度综合出版物" + ] + }, + "authority_level": "government", + "has_api": false, + "file_path": "countries/asia/vietnam/gso.json" + }, + { + "id": "mpi-fdi", + "name": { + "en": "Ministry of Planning and Investment - FDI Statistics", + "zh": "越南计划投资部 - 外国直接投资统计", + "vi": "Bộ Kế hoạch và Đầu tư - Thống kê FDI" + }, + "description": { + "en": "Official source for Foreign Direct Investment (FDI) statistics and reports in Vietnam. The Ministry of Planning and Investment (MPI) provides comprehensive data on FDI inflows, registered capital, disbursed capital, investment projects by sector, and investor country breakdowns. Reports are published monthly and annually, covering both FDI attraction in Vietnam and Vietnamese overseas investment.", + "zh": "越南外国直接投资(FDI)统计数据和报告的官方来源。越南计划投资部提供全面的FDI流入数据、注册资本、实际到位资本、按行业分类的投资项目以及投资来源国分布等信息。报告按月度和年度发布,涵盖越南吸引FDI和越南对外投资两个方面。", + "vi": "Nguồn thông tin chính thức về thống kê và báo cáo Đầu tư Trực tiếp Nước ngoài (FDI) tại Việt Nam. Bộ Kế hoạch và Đầu tư cung cấp dữ liệu toàn diện về dòng vốn FDI, vốn đăng ký, vốn giải ngân, các dự án đầu tư theo ngành và phân bổ theo quốc gia đầu tư." + }, + "website": "https://www.mpi.gov.vn", + "data_url": "https://www.mpi.gov.vn/en/Pages/Report-on-Foreign-Direct-Investment-1740.aspx", + "api_url": null, + "authority_level": "government", + "country": "VN", + "geographic_scope": "national", + "domains": [ + "economics", + "investment", + "trade", + "finance" + ], + "update_frequency": "monthly", + "tags": [ + "fdi", + "foreign-direct-investment", + "vietnam-investment", + "越南投资", + "investment-statistics", + "投资统计", + "capital-flows", + "资本流动", + "investment-projects", + "投资项目", + "ofdi", + "overseas-investment", + "对外直接投资", + "海外投资", + "registered-capital", + "注册资本", + "disbursed-capital", + "实际到位资本", + "government-statistics", + "政府统计", + "bộ-kế-hoạch-và-đầu-tư", + "đầu-tư-trực-tiếp-nước-ngoài", + "vốn-đăng-ký", + "vốn-giải-ngân" + ], + "data_content": { + "en": [ + "FDI registered capital and disbursed capital statistics", + "New FDI projects and additional capital adjustments", + "FDI breakdown by sector and industry", + "FDI breakdown by investor country/region", + "FDI distribution by province and locality", + "Vietnamese overseas investment (OFDI) statistics", + "Monthly and annual FDI reports", + "Cumulative FDI data since 1988" + ], + "zh": [ + "FDI注册资本和实际到位资本统计", + "新注册FDI项目和增资调整", + "按行业和部门分类的FDI数据", + "按投资来源国/地区分类的FDI数据", + "按省份和地区分布的FDI数据", + "越南对外投资(OFDI)统计", + "月度和年度FDI报告", + "1988年以来的累计FDI数据" + ], + "vi": [ + "Thống kê vốn đăng ký và vốn giải ngân FDI", + "Dự án FDI mới và điều chỉnh vốn bổ sung", + "Phân loại FDI theo ngành và lĩnh vực", + "Phân loại FDI theo quốc gia/khu vực đầu tư", + "Phân bố FDI theo tỉnh thành và địa phương", + "Thống kê đầu tư ra nước ngoài của Việt Nam (OFDI)", + "Báo cáo FDI hàng tháng và hàng năm", + "Dữ liệu FDI tích lũy từ năm 1988" + ] + }, + "has_api": false, + "file_path": "countries/asia/vietnam/mpi-fdi.json" + }, + { + "id": "sbv", + "name": { + "en": "State Bank of Vietnam", + "zh": "越南国家银行" + }, + "description": { + "en": "The State Bank of Vietnam (SBV) is the central bank of Vietnam, organized as a ministry-level body under the Government of Vietnam. As the sole issuer of the Vietnamese đồng, the SBV performs State management of monetary and banking activities. The bank's primary objective is to maintain price stability and promote sustainable economic growth through monetary policy tools including interest rate management, money supply control, and credit growth regulation. The SBV collects and disseminates comprehensive statistical data related to Vietnam's financial sector, covering money supply, credit growth, interest rates, inflation, balance of payments, total liquidity, and national payment system transactions.", + "zh": "越南国家银行(SBV)是越南的中央银行,在越南政府下属的部级机构。作为越南盾的唯一发行者,越南国家银行负责货币和银行活动的国家管理。该银行的主要目标是通过利率管理、货币供应控制和信贷增长监管等货币政策工具维持价格稳定和促进可持续经济增长。越南国家银行收集和发布与越南金融部门相关的综合统计数据,涵盖外汇储备、货币供应量、FDI资金流向、信贷增长、利率、通货膨胀、国际收支、总流动性和国家支付系统交易。" + }, + "website": "https://www.sbv.gov.vn", + "data_url": "https://www.sbv.gov.vn/webcenter/portal/en/home/rm/public", + "api_url": null, + "country": "VN", + "domains": [ + "monetary-policy", + "banking-statistics", + "financial-sector", + "interest-rates", + "money-supply", + "credit-growth", + "inflation", + "balance-of-payments", + "payment-systems", + "foreign-exchange", + "financial-stability" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "central-bank", + "vietnam", + "monetary-policy", + "banking-statistics", + "interest-rates", + "money-supply", + "credit-growth", + "inflation", + "balance-of-payments", + "payment-systems", + "foreign-exchange", + "financial-stability", + "vietnamese-dong", + "liquidity", + "financial-sector", + "sbv", + "越南央行", + "货币政策", + "银行统计", + "利率", + "货币供应", + "信贷增长", + "国际收支", + "支付系统", + "外汇" + ], + "data_content": { + "en": [ + "Monetary Policy - Interest rates (rediscount rate, refinance rate), policy decisions, and monetary policy reports", + "Money Supply - Total liquidity, M0, M1, M2, and monetary aggregates", + "Foreign Exchange Reserves - International reserves, foreign currency holdings, and reserve asset composition", + "FDI Capital Flows - Foreign direct investment inflows, outflows, and sectoral distribution", + "Credit Statistics - Credit growth by sector, credit institutions statistics, loan classifications", + "Interest Rates - Deposit rates, lending rates, interbank rates, and policy rates", + "Balance of Payments - International payments, foreign exchange reserves, trade balance", + "Payment Systems - National payment system transactions, electronic payment statistics", + "Banking Sector - Number of credit institutions, branch networks, banking sector performance", + "Foreign Exchange - Exchange rate data, foreign currency reserves, foreign investment", + "Annual Reports - Comprehensive yearly reports on monetary policy implementation and banking sector developments", + "Financial Stability - Banking system health indicators, regulatory compliance, risk assessments" + ], + "zh": [ + "货币政策 - 利率(再贴现率、再融资率)、政策决定和货币政策报告", + "货币供应量 - 总流动性、M0、M1、M2和货币总量", + "外汇储备 - 国际储备、外币持有量和储备资产构成", + "FDI资金流向 - 外国直接投资流入、流出及行业分布", + "信贷统计 - 按部门分类的信贷增长、信贷机构统计、贷款分类", + "利率 - 存款利率、贷款利率、银行间利率和政策利率", + "国际收支 - 国际支付、外汇储备、贸易平衡", + "支付系统 - 国家支付系统交易、电子支付统计", + "银行部门 - 信贷机构数量、分支网络、银行部门绩效", + "外汇 - 汇率数据、外汇储备、外国投资", + "年度报告 - 关于货币政策实施和银行部门发展的综合年度报告", + "金融稳定 - 银行系统健康指标、监管合规、风险评估" + ] + }, + "authority_level": "government", + "has_api": false, + "file_path": "countries/asia/vietnam/sbv.json" + }, + { + "id": "vicofa", + "name": { + "en": "Vietnam Coffee and Cocoa Association", + "zh": "越南咖啡与可可协会" + }, + "description": { + "en": "Vietnam Coffee and Cocoa Association (VICOFA) is the leading industry association representing coffee and cocoa producers, processors, and exporters in Vietnam. Established in 1990, VICOFA played a key role in Vietnam's membership in the International Coffee Organization (ICO) in 1991. The association has over 100 members including enterprises, production and processing companies, research centers and institutes across both Robusta and Arabica coffee regions throughout Vietnam.", + "zh": "越南咖啡与可可协会(VICOFA)是代表越南咖啡和可可生产商、加工商和出口商的主要行业协会。成立于1990年,VICOFA在越南于1991年加入国际咖啡组织(ICO)的过程中发挥了关键作用。该协会拥有超过100个成员,包括遍布越南罗布斯塔和阿拉比卡咖啡产区的企业、生产加工公司、研究中心和研究机构。" + }, + "website": "https://vicofa.org.vn/", + "data_url": "https://vicofa.org.vn/", + "api_url": null, + "authority_level": "market", + "country": "VN", + "domains": [ + "agriculture", + "commodities", + "trade", + "coffee", + "cocoa" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "coffee", + "咖啡", + "cocoa", + "可可", + "vietnam", + "越南", + "agriculture", + "农业", + "commodities", + "大宗商品", + "exports", + "出口", + "robusta", + "罗布斯塔", + "arabica", + "阿拉比卡", + "trade-association", + "行业协会", + "ico", + "国际咖啡组织" + ], + "data_content": { + "en": [ + "Coffee production and export statistics for Vietnam", + "Cocoa industry production and trade data", + "Member directory of coffee and cocoa enterprises", + "Market analysis and industry reports", + "Coffee price trends and forecasts", + "Robusta and Arabica cultivation data" + ], + "zh": [ + "越南咖啡生产和出口统计", + "可可产业生产和贸易数据", + "咖啡和可可企业成员名录", + "市场分析和行业报告", + "咖啡价格趋势和预测", + "罗布斯塔和阿拉比卡种植数据" + ] + }, + "has_api": false, + "file_path": "countries/asia/vietnam/vicofa.json" + }, + { + "id": "vietnam-fia", + "name": { + "en": "Foreign Investment Agency - Ministry of Planning and Investment", + "zh": "越南计划投资部外国投资局" + }, + "description": { + "en": "The Foreign Investment Agency (FIA) operates under Vietnam's Ministry of Planning and Investment as the country's primary agency for investment promotion and foreign direct investment (FDI) management. FIA provides comprehensive data on foreign investment projects, investment trends, sectoral analysis, and regional distribution of FDI in Vietnam.", + "zh": "越南计划投资部外国投资局(FIA)是越南投资促进和外商直接投资(FDI)管理的主要政府机构。FIA提供关于外国投资项目、投资趋势、行业分析以及越南FDI区域分布的综合数据。" + }, + "website": "https://www.mpi.gov.vn/en/pages/default.aspx", + "data_url": "https://www.mpi.gov.vn/en/Pages/FDI-1637.aspx", + "authority_level": "government", + "country": "VN", + "domains": [ + "foreign-direct-investment", + "investment-policy", + "economic-development", + "trade", + "business-registration" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "vietnam", + "越南", + "fdi", + "foreign-direct-investment", + "外商直接投资", + "investment", + "投资", + "ministry-of-planning-and-investment", + "计划投资部", + "economic-development", + "经济发展", + "southeast-asia", + "东南亚", + "government-statistics", + "政府统计" + ], + "data_content": { + "en": [ + "Foreign Direct Investment Statistics", + "Investment Project Database", + "Sectoral Investment Analysis", + "Regional FDI Distribution", + "Investment Trends and Reports", + "Investment Policies and Regulations" + ], + "zh": [ + "外商直接投资统计数据", + "投资项目数据库", + "行业投资分析", + "FDI区域分布", + "投资趋势和报告", + "投资政策和法规" + ] + }, + "has_api": false, + "file_path": "countries/asia/vietnam/vietnam-fia.json" + }, + { + "id": "vietnam-mof", + "name": { + "en": "Ministry of Finance of Vietnam", + "zh": "越南财政部" + }, + "description": { + "en": "The Ministry of Finance (MOF) is the government ministry responsible for the finances of Vietnam, including managing the national budget, tax revenue, state assets, national financial reserves and the finances of state corporations. The Ministry manages the work of national accounting, state borrowing, the activities of stock markets, and the Department of Customs. It provides comprehensive financial data, budget reports, tax statistics, and economic indicators for Vietnam.", + "zh": "越南财政部是负责越南财政事务的政府部门,包括管理国家预算、税收收入、国有资产、国家金融储备和国有企业财务。财政部管理国家会计工作、国家借贷、股票市场活动和海关部门。它提供越南的综合财政数据、预算报告、税收统计和经济指标。" + }, + "website": "https://www.mof.gov.vn", + "data_url": "https://www.mof.gov.vn/webcenter/portal/btcen/pages_r/m/statistics", + "api_url": null, + "country": "VN", + "domains": [ + "finance", + "government-budget", + "taxation", + "fiscal-policy", + "public-finance", + "national-accounting", + "customs", + "state-assets", + "financial-markets", + "economic-statistics" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "vietnam", + "finance", + "ministry-of-finance", + "government-budget", + "tax-revenue", + "taxation", + "fiscal-policy", + "public-finance", + "state-budget", + "customs", + "financial-statistics", + "economic-indicators", + "national-accounting", + "state-assets", + "financial-markets", + "越南", + "财政部", + "政府预算", + "税收", + "财政政策", + "公共财政", + "国家预算", + "海关", + "财政统计", + "经济指标", + "国家会计", + "国有资产", + "金融市场" + ], + "data_content": { + "en": [ + "State Budget Revenue - Total revenue collection, tax revenue, non-tax revenue by type and source", + "State Budget Expenditure - Government spending by sector, ministry, and program", + "Tax Statistics - Income tax, corporate tax, VAT, import/export duties collection data", + "National Debt - Public debt levels, external debt, domestic debt statistics", + "State Assets - State-owned enterprise financial performance and asset management", + "Customs Statistics - Import and export data, customs revenue, trade statistics", + "Financial Market Data - Stock market oversight, securities market statistics", + "Fiscal Policy Documents - Budget proposals, fiscal reports, policy announcements", + "National Accounting - Government financial statements and accounting standards", + "Economic Indicators - GDP contribution, fiscal balance, revenue-to-GDP ratios" + ], + "zh": [ + "国家预算收入 - 总收入、税收收入、按类型和来源分类的非税收入", + "国家预算支出 - 按部门、部委和项目分类的政府支出", + "税收统计 - 个人所得税、企业所得税、增值税、进出口关税征收数据", + "国家债务 - 公共债务水平、外债、内债统计", + "国有资产 - 国有企业财务绩效和资产管理", + "海关统计 - 进出口数据、海关收入、贸易统计", + "金融市场数据 - 股票市场监管、证券市场统计", + "财政政策文件 - 预算提案、财政报告、政策公告", + "国家会计 - 政府财务报表和会计准则", + "经济指标 - GDP贡献、财政平衡、收入占GDP比率" + ] + }, + "authority_level": "government", + "has_api": false, + "file_path": "countries/asia/vietnam/vietnam-mof.json" + }, + { + "id": "china-cgs", + "name": { + "en": "China Geological Survey (CGS)", + "zh": "中国地质调查局" + }, + "description": { + "en": "The China Geological Survey is a public institution under the Ministry of Natural Resources responsible for unified geological survey and mineral exploration nationwide. It provides authoritative geological data including geological maps, mineral resource assessments, hydrogeological surveys, geological hazard monitoring, and marine geological investigations.", + "zh": "中国地质调查局是自然资源部直属事业单位,负责统一管理全国地质调查和矿产勘查工作。提供权威的地质数据,包括地质图、矿产资源评估、水文地质调查、地质灾害监测和海洋地质调查。" + }, + "website": "https://www.cgs.gov.cn", + "data_url": "https://geocloud.cgs.gov.cn", + "api_url": null, + "country": "CN", + "domains": [ + "geology", + "mineral-resources", + "hydrogeology", + "geological-hazards", + "marine-geology" + ], + "geographic_scope": "national", + "update_frequency": "quarterly", + "tags": [ + "geology", + "minerals", + "geological-hazards", + "hydrogeology", + "marine-geology", + "geologic-maps", + "government-data" + ], + "data_content": { + "en": [ + "Geological maps - National and regional geological mapping data", + "Mineral resources - Mineral exploration results, resource reserves, mine locations", + "Geological hazards - Landslide, debris flow, ground subsidence monitoring", + "Hydrogeology - Groundwater surveys, water resource assessments", + "Marine geology - Offshore geological surveys, submarine topography", + "Geochemical data - Regional geochemical survey results", + "Remote sensing geology - Satellite-based geological interpretation" + ], + "zh": [ + "地质图 - 全国和区域地质制图数据", + "矿产资源 - 矿产勘查成果、资源储量、矿点位置", + "地质灾害 - 滑坡、泥石流、地面沉降监测", + "水文地质 - 地下水调查、水资源评估", + "海洋地质 - 近海地质调查、海底地形", + "地球化学数据 - 区域地球化学调查成果", + "遥感地质 - 卫星地质解译" + ] + }, + "authority_level": "government", + "has_api": false, + "file_path": "countries/cn/geology/cgs.json" + }, + { + "id": "austria-statistik", + "name": { + "en": "Statistics Austria", + "zh": "奥地利统计局", + "native": "Statistik Austria" + }, + "description": { + "en": "Statistics Austria is the national statistical office of Austria, providing official statistics on population, economy, society, environment, and regional development. It serves as the primary source for national accounts, demographic data, labor market statistics, and social indicators.", + "zh": "奥地利统计局是奥地利官方国家统计机构,提供人口、经济、社会、环境和区域发展等方面的官方统计数据,是国民账户、人口统计、劳动力市场统计和社会指标的主要来源。" + }, + "website": "https://www.statistik.at", + "data_url": "https://www.statistik.at/statistiken", + "api_url": "https://api.statistik.at/stat/rest/v1/", + "authority_level": "government", + "country": "AT", + "domains": [ + "demographics", + "economics", + "social", + "employment", + "prices" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "austria", + "statistik-austria", + "official-statistics", + "population", + "census", + "gdp", + "national-accounts", + "labor-market", + "inflation", + "social-statistics", + "奥地利", + "奥地利统计局", + "人口统计", + "经济统计", + "就业", + "国民账户", + "通货膨胀" + ], + "data_content": { + "en": [ + "Population and census data", + "GDP and national accounts", + "Employment and unemployment statistics", + "Consumer price index and inflation", + "Housing and construction statistics", + "Education and training indicators", + "Health and social welfare data", + "Regional and municipal statistics" + ], + "zh": [ + "人口与普查数据", + "GDP与国民账户", + "就业与失业统计", + "消费者价格指数与通货膨胀", + "住房与建筑统计", + "教育与培训指标", + "卫生与社会福利数据", + "区域与市政统计" + ] + }, + "has_api": true, + "file_path": "countries/europe/at/austria-statistik.json" + }, + { + "id": "bank-of-england-statistics", + "name": { + "en": "Bank of England Statistical Database", + "zh": "英格兰银行统计数据库" + }, + "description": { + "en": "The Bank of England's official statistical database providing comprehensive data on monetary policy, financial markets, banking sector balance sheets, money and lending, interest rates, exchange rates, and financial derivatives. The database includes time series data on monetary financial institutions, public sector debt, capital issuance, and international reserves.", + "zh": "英格兰银行官方统计数据库,提供货币政策、金融市场、银行业资产负债表、货币与信贷、利率、汇率和金融衍生品的综合数据。数据库包含货币金融机构、公共部门债务、资本发行和国际储备的时间序列数据。" + }, + "website": "https://www.bankofengland.co.uk", + "data_url": "https://www.bankofengland.co.uk/boeapps/database/", + "api_url": "https://www.bankofengland.co.uk/boeapps/database/help.asp", + "authority_level": "government", + "country": "GB", + "domains": [ + "finance", + "economics", + "monetary-policy" + ], + "geographic_scope": "national", + "data_content": { + "en": [ + "Money and lending statistics", + "Monetary financial institutions' balance sheets, income and expenditure", + "Deposits and lending detailed analysis", + "External business of UK banks", + "Public sector debt and money markets operations", + "International reserves and foreign exchange", + "Capital issuance and securities", + "Financial derivatives", + "Interest rates and exchange rates", + "SONIA (Sterling Overnight Index Average) benchmark" + ], + "zh": [ + "货币与信贷统计", + "货币金融机构资产负债表、收入与支出", + "存款与贷款详细分析", + "英国银行的境外业务", + "公共部门债务与货币市场操作", + "国际储备与外汇", + "资本发行与证券", + "金融衍生品", + "利率与汇率", + "SONIA(英镑隔夜指数平均利率)基准" + ] + }, + "update_frequency": "daily", + "tags": [ + "central-bank", + "中央银行", + "monetary-policy", + "货币政策", + "financial-statistics", + "金融统计", + "banking-data", + "银行数据", + "interest-rates", + "利率", + "exchange-rates", + "汇率", + "money-supply", + "货币供应", + "lending", + "信贷", + "deposits", + "存款", + "bank-of-england", + "英格兰银行", + "uk-finance", + "英国金融", + "sonia", + "financial-derivatives", + "金融衍生品", + "reserves", + "储备", + "boe" + ], + "has_api": true, + "file_path": "countries/europe/bank-of-england-statistics.json" + }, + { + "id": "belgium-statbel", + "name": { + "en": "Statbel - Belgian Statistical Office", + "zh": "比利时统计局" + }, + "description": { + "en": "Official statistical office of Belgium providing demographic, economic, and social statistics", + "zh": "比利时官方统计机构,提供人口、经济和社会统计数据" + }, + "data_url": "https://statbel.fgov.be/en/open-data", + "api_url": null, + "authority_level": "government", + "country": "BE", + "geographic_scope": "national", + "update_frequency": "monthly", + "domains": [ + "economics", + "demographics", + "employment", + "agriculture", + "social", + "trade" + ], + "data_content": { + "en": [ + "Population statistics - demographics, migration, households", + "Economic indicators - GDP, inflation, business statistics", + "Labour market - employment, unemployment, wages", + "Agriculture - crop production, livestock, farm structures", + "Social statistics - poverty, income distribution, living conditions", + "Foreign trade - import/export by commodity and partner country" + ], + "zh": [ + "人口统计 - 人口、移民、家庭", + "经济指标 - GDP、通胀、企业统计", + "劳动力市场 - 就业、失业、工资", + "农业 - 作物产量、畜牧业、农场结构", + "社会统计 - 贫困、收入分配、生活条件", + "对外贸易 - 按商品和伙伴国分类的进出口" + ] + }, + "website": "https://statbel.fgov.be/en", + "tags": [ + "statistics", + "belgium", + "europe", + "government-data", + "open-data" + ], + "has_api": false, + "file_path": "countries/europe/belgium/belgium-statbel.json" + }, + { + "id": "bulgaria-nsi", + "name": { + "en": "National Statistical Institute of Bulgaria (NSI)", + "zh": "保加利亚国家统计局" + }, + "description": { + "en": "The National Statistical Institute (NSI / Национален статистически институт, НСИ) is the official national statistical authority of Bulgaria, responsible for the collection, processing, and publication of official statistics on the Bulgarian economy, population, and society. NSI produces data harmonized with Eurostat and EU standards, covering GDP, population census, consumer prices, employment, trade, and social statistics.", + "zh": "保加利亚国家统计局(NSI / Национален статистически институт,НСИ)是保加利亚官方国家统计机构,负责收集、处理和发布有关保加利亚经济、人口和社会的官方统计数据。NSI生产与欧盟统计局(Eurostat)标准协调的数据,涵盖GDP、人口普查、消费价格、就业、贸易和社会统计。" + }, + "website": "https://www.nsi.bg", + "data_url": "https://www.nsi.bg/en/content/2666/statisticsdatabases", + "api_url": null, + "authority_level": "government", + "country": "BG", + "geographic_scope": "national", + "update_frequency": "monthly", + "domains": [ + "economics", + "demographics", + "employment", + "trade", + "prices", + "social", + "agriculture", + "industry", + "environment" + ], + "tags": [ + "bulgaria", + "nsi", + "нси", + "national-statistical-institute", + "balkan", + "eastern-europe", + "eu-member", + "eurostat-harmonized", + "population-census", + "gdp", + "national-accounts", + "cpi", + "inflation", + "employment", + "foreign-trade", + "official-statistics", + "保加利亚", + "保加利亚统计局", + "国家统计", + "人口普查", + "经济统计", + "消费价格", + "就业", + "贸易", + "欧盟" + ], + "data_content": { + "en": [ + "GDP and national accounts by sector and expenditure", + "Population census and demographic projections", + "Consumer price index and harmonized inflation (HICP)", + "Labour force survey - employment, unemployment, and wages", + "Foreign trade statistics by commodity and partner country", + "Industrial production index and manufacturing statistics", + "Agricultural production, livestock, and land use", + "Business and enterprise statistics", + "Regional statistics at NUTS 2 and NUTS 3 level", + "Tourism and hospitality statistics", + "Social protection and poverty statistics", + "Education and research & development indicators", + "Environment and energy statistics" + ], + "zh": [ + "按行业和支出GDP与国民账户", + "人口普查与人口预测", + "消费者价格指数和欧盟协调通胀率(HICP)", + "劳动力调查 - 就业、失业率和工资", + "按商品和伙伴国分类的对外贸易统计", + "工业生产指数和制造业统计", + "农业生产、牲畜和土地利用", + "企业与工商统计", + "NUTS 2和NUTS 3级别的区域统计", + "旅游和酒店业统计", + "社会保障和贫困统计", + "教育与研发指标", + "环境与能源统计" + ] + }, + "has_api": false, + "file_path": "countries/europe/bulgaria/bulgaria-nsi.json" + }, + { + "id": "croatia-dzs", + "name": { + "en": "Croatian Bureau of Statistics (DZS)", + "zh": "克罗地亚统计局" + }, + "description": { + "en": "Official national statistical office of the Republic of Croatia, responsible for collecting, processing, and disseminating official statistics on demographics, economy, social affairs, and the environment. Operating under the DZS (Državni zavod za statistiku), it covers EU-harmonized statistics following EUROSTAT standards.", + "zh": "克罗地亚共和国官方国家统计机构(Državni zavod za statistiku,DZS),负责收集、处理和发布人口、经济、社会和环境方面的官方统计数据,遵循欧盟EUROSTAT标准。" + }, + "website": "https://dzs.gov.hr", + "data_url": "https://dzs.gov.hr/en/data-and-statistics", + "api_url": null, + "authority_level": "government", + "country": "HR", + "geographic_scope": "national", + "update_frequency": "monthly", + "domains": [ + "demographics", + "economics", + "employment", + "trade", + "agriculture", + "environment", + "social" + ], + "tags": [ + "croatia", + "克罗地亚统计", + "dzs", + "eu-member", + "europe", + "official-statistics", + "population", + "gdp", + "eurostat-harmonized", + "balkans", + "国家统计" + ], + "data_content": { + "en": [ + "National accounts - GDP, GVA by economic activity", + "Population census and demographic statistics", + "Labour force survey - employment, unemployment, wages", + "Consumer Price Index and harmonized inflation (HICP)", + "Foreign trade statistics by product and partner country", + "Agricultural production and land use statistics", + "Industrial production index and manufacturing output", + "Regional statistics at NUTS 2 and NUTS 3 level", + "Tourism statistics - arrivals, nights, receipts", + "Education and culture statistics", + "Health and social protection statistics", + "Transport and infrastructure statistics" + ], + "zh": [ + "国民账户 - 按经济活动分类的GDP、GVA", + "人口普查和人口统计数据", + "劳动力调查 - 就业、失业率和工资", + "消费者价格指数和欧盟协调通胀率(HICP)", + "按产品和伙伴国分类的对外贸易统计", + "农业生产和土地利用统计", + "工业生产指数和制造业产出", + "NUTS 2和NUTS 3级别的区域统计", + "旅游统计 - 抵达人数、住宿夜数和旅游收入", + "教育和文化统计", + "卫生和社会保障统计", + "交通运输和基础设施统计" + ] + }, + "has_api": false, + "file_path": "countries/europe/croatia/croatia-dzs.json" + }, + { + "id": "czechia-czso", + "name": { + "en": "Czech Statistical Office (CZSO)", + "zh": "捷克统计局" + }, + "description": { + "en": "Official statistical office of the Czech Republic providing comprehensive demographic, economic, and social data since 1969", + "zh": "捷克共和国官方统计机构,自1969年起提供全面的人口、经济和社会数据" + }, + "website": "https://csu.gov.cz", + "data_url": "https://vdb.czso.cz", + "api_url": "https://data.gov.cz", + "authority_level": "government", + "country": "CZ", + "geographic_scope": "national", + "update_frequency": "monthly", + "domains": [ + "demographics", + "economics", + "employment", + "trade", + "agriculture", + "environment" + ], + "tags": [ + "statistics", + "czechia", + "europe", + "government-data", + "open-data", + "捷克统计" + ], + "data_content": { + "en": [ + "National accounts - GDP, GVA, productivity", + "Population census and demographic statistics", + "Labour force survey - employment, unemployment, wages", + "Consumer Price Index and inflation", + "Foreign trade statistics by product and partner", + "Agricultural census and crop statistics", + "Industrial production index", + "Regional statistics by NUTS classification", + "Environmental accounts and waste statistics", + "Tourism and hospitality statistics", + "Science, technology, and innovation indicators", + "Housing and construction statistics" + ], + "zh": [ + "国民账户 - GDP、GVA、生产力", + "人口普查和人口统计", + "劳动力调查 - 就业、失业、工资", + "消费者价格指数和通胀", + "按产品和伙伴分类的对外贸易统计", + "农业普查和作物统计", + "工业生产指数", + "按NUTS分类的区域统计", + "环境账户和废物统计", + "旅游和酒店统计", + "科技创新指标", + "住房和建筑统计" + ] + }, + "has_api": true, + "file_path": "countries/europe/czechia/czechia-czso.json" + }, + { + "id": "denmark-dst", + "name": { + "en": "Statistics Denmark", + "zh": "丹麦统计局", + "native": "Danmarks Statistik" + }, + "description": { + "en": "Statistics Denmark (Danmarks Statistik) is the national statistical institute of Denmark, responsible for collecting, compiling, and publishing official statistics on Danish society. It covers a wide range of topics including population, economy, business, trade, and social conditions, and provides open access via its StatBank API.", + "zh": "丹麦统计局(Danmarks Statistik)是丹麦官方国家统计机构,负责收集、整理和发布丹麦社会各方面的官方统计数据,涵盖人口、经济、商业、贸易和社会状况,并通过StatBank API提供开放数据访问。" + }, + "website": "https://www.dst.dk", + "data_url": "https://www.dst.dk/en/Statistik", + "api_url": "https://api.statbank.dk/v1/", + "authority_level": "government", + "country": "DK", + "domains": [ + "demographics", + "economics", + "trade", + "social", + "employment", + "prices" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "denmark", + "danmarks-statistik", + "statistics-denmark", + "statbank", + "official-statistics", + "population", + "gdp", + "national-accounts", + "trade", + "labor-market", + "cpi", + "丹麦", + "丹麦统计局", + "人口统计", + "经济统计", + "贸易", + "就业", + "国民账户", + "统计银行" + ], + "data_content": { + "en": [ + "Population and vital statistics", + "GDP and national accounts", + "Foreign trade and balance of payments", + "Employment and labor market indicators", + "Consumer price index and inflation", + "Business and enterprise statistics", + "Social conditions and welfare", + "Environmental accounts and energy statistics" + ], + "zh": [ + "人口与生命统计", + "GDP与国民账户", + "对外贸易与国际收支", + "就业与劳动力市场指标", + "消费者价格指数与通货膨胀", + "企业与工商统计", + "社会状况与福利", + "环境账户与能源统计" + ] + }, + "has_api": true, + "file_path": "countries/europe/dk/denmark-dst.json" + }, + { + "id": "finland-stat", + "name": { + "en": "Statistics Finland", + "zh": "芬兰统计局", + "native": "Tilastokeskus" + }, + "description": { + "en": "Statistics Finland is the national statistical institute of Finland, providing official statistics on the economy, population, society, and environment. It operates the StatFin database offering comprehensive time series data across all major statistical domains.", + "zh": "芬兰统计局是芬兰国家统计机构,提供经济、人口、社会和环境方面的官方统计数据。其StatFin数据库提供涵盖所有主要统计领域的综合时间序列数据。" + }, + "website": "https://stat.fi/en/", + "data_url": "https://pxdata.stat.fi/PxWeb/pxweb/en/StatFin/", + "api_url": "https://pxdata.stat.fi/PxWeb/api/v1/en/StatFin/", + "authority_level": "government", + "country": "FI", + "domains": [ + "economics", + "population", + "society", + "environment", + "labor" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "finland", + "statistics-finland", + "tilastokeskus", + "statfin", + "芬兰", + "芬兰统计局", + "北欧统计", + "gdp", + "人口", + "就业", + "nordic", + "official-statistics", + "pxweb", + "economy", + "census" + ], + "data_content": { + "en": [ + "National accounts and GDP", + "Population and demographic statistics", + "Labor market and employment", + "Prices and cost of living", + "Education and culture statistics", + "Environment and energy statistics", + "Foreign trade statistics", + "Health and social welfare data" + ], + "zh": [ + "国民账户和GDP", + "人口与人口统计", + "劳动力市场和就业", + "价格和生活成本", + "教育和文化统计", + "环境和能源统计", + "对外贸易统计", + "健康和社会福利数据" + ] + }, + "has_api": true, + "file_path": "countries/europe/finland/finland-stat.json" + }, + { + "id": "france-insee", + "name": { + "en": "INSEE - National Institute of Statistics and Economic Studies", + "zh": "法国国家统计与经济研究所", + "native": "Institut national de la statistique et des études économiques" + }, + "description": { + "en": "INSEE (Institut national de la statistique et des études économiques) is the national statistics institute of France, responsible for the production and dissemination of official statistics on the French economy and society. It publishes data on GDP, inflation, employment, demographics, trade, industry, agriculture, and social indicators. INSEE provides the reference source for French official statistics and maintains the BDM (Banque de données macroéconomiques) time-series database.", + "zh": "INSEE(法国国家统计与经济研究所)是法国的国家统计机构,负责生产和发布有关法国经济和社会的官方统计数据。它发布GDP、通货膨胀、就业、人口统计、贸易、工业、农业和社会指标等数据。INSEE是法国官方统计数据的权威来源,并维护BDM(宏观经济数据库)时间序列数据库。" + }, + "website": "https://www.insee.fr", + "data_url": "https://www.insee.fr/en/statistiques", + "api_url": "https://api.insee.fr/series/BDM/V1/", + "authority_level": "government", + "country": "FR", + "domains": [ + "economics", + "demographics", + "employment", + "prices", + "trade", + "industry", + "agriculture", + "social", + "housing", + "finance" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "france", + "insee", + "official-statistics", + "gdp", + "inflation", + "employment", + "population", + "census", + "cpi", + "trade", + "national-accounts", + "法国", + "国家统计", + "通货膨胀", + "就业", + "人口统计", + "价格指数", + "宏观经济" + ], + "data_content": { + "en": [ + "National Accounts (GDP, GNP, value added by sector)", + "Consumer Price Index (CPI) and inflation measures", + "Employment and unemployment statistics (Labor Force Survey)", + "Population and census data", + "Industrial production indices", + "Foreign trade statistics", + "Business surveys and economic climate indicators", + "Household income and consumption", + "Housing and construction statistics", + "Agricultural production statistics", + "Regional and local statistics", + "BDM macroeconomic time-series database" + ], + "zh": [ + "国民账户(GDP、GNP、分行业增加值)", + "消费者价格指数(CPI)和通胀指标", + "就业和失业统计(劳动力调查)", + "人口和普查数据", + "工业生产指数", + "对外贸易统计", + "企业调查和经济景气指标", + "家庭收入和消费", + "住房和建筑统计", + "农业生产统计", + "地区和地方统计", + "BDM宏观经济时间序列数据库" + ] + }, + "has_api": true, + "file_path": "countries/europe/fr/france-insee.json" + }, + { + "id": "germany-destatis", + "name": { + "en": "Federal Statistical Office of Germany (Destatis)", + "zh": "德国联邦统计局", + "native": "Statistisches Bundesamt (Destatis)" + }, + "description": { + "en": "Destatis (Statistisches Bundesamt) is the Federal Statistical Office of Germany, the central institution for official German statistics. It collects, processes, and publishes data on German society, economy, environment, and public administration. The GENESIS-Online database provides free access to over 30,000 statistical tables. Destatis also coordinates the German statistical system comprising the federal and state statistical offices.", + "zh": "Destatis(联邦统计局)是德国联邦统计局,是德国官方统计的核心机构。它收集、处理和发布德国社会、经济、环境和公共行政数据。GENESIS-Online数据库免费提供超过30,000张统计表。Destatis还协调由联邦和州统计局组成的德国统计系统。" + }, + "website": "https://www.destatis.de/EN/", + "data_url": "https://www.destatis.de/EN/Themes/_node.html", + "api_url": "https://www-genesis.destatis.de/genesis/online", + "authority_level": "government", + "country": "DE", + "domains": [ + "demographics", + "economics", + "social", + "employment", + "trade", + "manufacturing", + "environment", + "health", + "education", + "housing" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "germany", + "destatis", + "federal-statistics", + "bundesamt", + "population", + "gdp", + "employment", + "genesis-online", + "national-statistics", + "official-statistics", + "open-data", + "eurostat", + "德国统计局", + "联邦统计", + "德国数据" + ], + "data_content": { + "en": [ + "Population - population census, births, deaths, migration, life expectancy", + "National Accounts - GDP, value added, household income and expenditure", + "Labour Market - employment, unemployment, wages, working hours, strikes", + "Prices - CPI, PPI, import/export prices, construction prices", + "Foreign Trade - imports, exports by country and commodity (SITC, CN)", + "Industry and Crafts - industrial production, turnover, new orders", + "Construction and Housing - building permits, housing completions, rents", + "Agriculture - crop yields, livestock numbers, farm structures", + "Environment and Energy - greenhouse gas emissions, energy consumption, waste", + "Health - hospitals, causes of death, healthcare expenditure", + "Education and Science - students, graduates, R&D expenditure", + "Transport - road freight, passenger traffic, accidents", + "Public Finance - government revenue, expenditure, debt", + "Business Registrations - business start-ups and closures", + "Tourism - accommodation statistics, overnight stays" + ], + "zh": [ + "人口 - 人口普查、出生、死亡、移民、预期寿命", + "国民账户 - GDP、增加值、家庭收入和支出", + "劳动力市场 - 就业、失业、工资、工时、罢工", + "价格 - CPI、PPI、进出口价格、建筑价格", + "对外贸易 - 按国家和商品分类的进出口(SITC、CN)", + "工业与手工业 - 工业生产、营业额、新订单", + "建筑与住房 - 建筑许可、竣工住房、租金", + "农业 - 农作物产量、牲畜数量、农场结构", + "环境与能源 - 温室气体排放、能源消耗、废物", + "卫生 - 医院、死因统计、医疗支出", + "教育与科学 - 学生、毕业生、研发支出", + "交通运输 - 公路货运、旅客运输、交通事故", + "公共财政 - 政府收入、支出、债务", + "企业注册 - 企业创立和关闭", + "旅游业 - 住宿统计、过夜人数" + ] + }, + "has_api": true, + "file_path": "countries/europe/germany/germany-destatis.json" + }, + { + "id": "greece-elstat", + "name": { + "en": "Hellenic Statistical Authority (ELSTAT)", + "zh": "希腊统计局", + "native": "Ελληνική Στατιστική Αρχή (ΕΛΣΤΑΤ)" + }, + "description": { + "en": "The Hellenic Statistical Authority (ELSTAT) is the official national statistical authority of Greece, responsible for the collection, processing, and dissemination of official statistics covering the Greek economy, population, society, and environment. ELSTAT coordinates the national statistical system and produces data compliant with Eurostat and EU standards, providing open access to statistical tables, publications, and databases.", + "zh": "希腊统计局(ELSTAT)是希腊官方国家统计机构,负责收集、处理和发布涵盖希腊经济、人口、社会与环境的官方统计数据。ELSTAT协调国家统计体系,生产符合欧盟统计局(Eurostat)标准的数据,并通过统计数据库和出版物提供开放访问。" + }, + "website": "https://www.statistics.gr", + "data_url": "https://www.statistics.gr/en/statistics", + "api_url": null, + "authority_level": "government", + "country": "GR", + "domains": [ + "economics", + "demographics", + "trade", + "social", + "employment", + "prices", + "environment" + ], + "geographic_scope": "national", + "update_frequency": "quarterly", + "tags": [ + "greece", + "elstat", + "hellenic-statistical-authority", + "ελστατ", + "official-statistics", + "population", + "gdp", + "national-accounts", + "cpi", + "inflation", + "labor-market", + "trade", + "business", + "census", + "eurostat", + "eu-statistics", + "希腊", + "希腊统计局", + "人口统计", + "经济统计", + "国民账户", + "贸易", + "就业", + "欧盟" + ], + "data_content": { + "en": [ + "Population census and vital statistics", + "GDP and national accounts", + "Consumer price index and inflation", + "Foreign trade and balance of payments", + "Labor force and employment survey", + "Business and enterprise statistics", + "Agricultural and fisheries statistics", + "Income and living conditions (EU-SILC)", + "Tourism and accommodation statistics", + "Environmental and energy statistics" + ], + "zh": [ + "人口普查与生命统计", + "GDP与国民账户", + "消费者价格指数与通货膨胀", + "对外贸易与国际收支", + "劳动力与就业调查", + "企业与工商统计", + "农业与渔业统计", + "收入与生活条件(EU-SILC)", + "旅游与住宿统计", + "环境与能源统计" + ] + }, + "has_api": false, + "file_path": "countries/europe/greece/greece-elstat.json" + }, + { + "id": "hungary-ksh", + "name": { + "en": "Hungarian Central Statistical Office", + "zh": "匈牙利中央统计局" + }, + "country": "HU", + "description": { + "en": "Hungary's official national statistical office responsible for collecting, processing, and disseminating statistical data. KSH publishes comprehensive statistics covering GDP, population census, CPI, employment, industrial production, foreign trade, education, and health.", + "zh": "匈牙利官方国家统计机构,负责收集、处理和发布统计数据。KSH发布涵盖GDP、人口普查、CPI、就业、工业生产、对外贸易、教育和卫生的综合统计数据。" + }, + "website": "https://www.ksh.hu", + "data_url": "https://www.ksh.hu/engstadat", + "api_url": "https://statinfo.ksh.hu/Statinfo/haViewer.jsp", + "authority_level": "government", + "geographic_scope": "national", + "update_frequency": "monthly", + "domains": [ + "economics", + "demographics", + "employment", + "trade", + "education", + "health", + "industry" + ], + "tags": [ + "eu-member", + "eurostat-partner", + "national-statistics", + "v4-country" + ], + "data_content": { + "en": [ + "GDP and national accounts", + "Population census and vital statistics", + "Consumer price index", + "Labour force survey", + "Industrial production index", + "Foreign trade statistics", + "Education statistics", + "Health statistics" + ], + "zh": [ + "GDP与国民账户", + "人口普查与生命统计", + "消费者价格指数", + "劳动力调查", + "工业生产指数", + "对外贸易统计", + "教育统计", + "卫生统计" + ] + }, + "has_api": true, + "file_path": "countries/europe/hungary/hungary-ksh.json" + }, + { + "id": "ireland-cso", + "name": { + "en": "Central Statistics Office (CSO)", + "zh": "爱尔兰中央统计局" + }, + "description": { + "en": "Ireland's national statistical office established under the Statistics Act 1993, providing comprehensive socioeconomic data", + "zh": "依据1993年《统计法》成立的爱尔兰国家统计机构,提供全面的社会经济数据" + }, + "website": "https://www.cso.ie", + "data_url": "https://data.cso.ie", + "api_url": "https://data.cso.ie", + "authority_level": "government", + "country": "IE", + "geographic_scope": "national", + "update_frequency": "monthly", + "domains": [ + "demographics", + "economics", + "employment", + "trade", + "housing", + "health", + "crime-and-justice" + ], + "tags": [ + "statistics", + "ireland", + "europe", + "government-data", + "json-stat", + "爱尔兰统计" + ], + "data_content": { + "en": [ + "National accounts - GDP, GNI, Modified GNI", + "Population census and demographic projections", + "Labour force survey - employment, unemployment", + "Consumer Price Index and inflation", + "Foreign trade - merchandise and services", + "Housing and construction statistics", + "Health statistics and vital events", + "Crime and justice statistics", + "Tourism and transport data", + "Agriculture, forestry, and fishing", + "Environmental indicators", + "Business demographics and enterprise statistics", + "Education and training statistics" + ], + "zh": [ + "国民账户 - GDP、GNI、修正GNI", + "人口普查和人口预测", + "劳动力调查 - 就业、失业", + "消费者价格指数和通胀", + "对外贸易 - 货物和服务", + "住房和建筑统计", + "卫生统计和生命事件", + "犯罪和司法统计", + "旅游和交通数据", + "农林渔业", + "环境指标", + "企业人口统计和企业统计", + "教育和培训统计" + ] + }, + "has_api": true, + "file_path": "countries/europe/ireland/ireland-cso.json" + }, + { + "id": "italy-istat", + "name": { + "en": "Italian National Institute of Statistics", + "zh": "意大利国家统计局" + }, + "description": { + "en": "Italy's official statistical agency producing national accounts, population census, labor market, and regional statistics.", + "zh": "意大利官方统计机构,发布国民账户、人口普查、劳动力市场和区域统计数据。" + }, + "website": "https://www.istat.it", + "data_url": "https://esploradati.istat.it/databrowser/", + "api_url": "https://esploradati.istat.it/SDMXWS/rest", + "data_content": { + "en": [ + "National accounts and GDP", + "Population census", + "Labor market statistics", + "Consumer price index", + "Regional economic indicators" + ], + "zh": [ + "国民账户与GDP", + "人口普查", + "劳动力市场统计", + "消费者价格指数", + "区域经济指标" + ] + }, + "authority_level": "government", + "update_frequency": "monthly", + "domains": [ + "economics", + "demographics", + "employment" + ], + "tags": [ + "italy", + "statistics", + "gdp", + "census", + "labor" + ], + "country": "IT", + "geographic_scope": "national", + "has_api": true, + "file_path": "countries/europe/italy/italy-istat.json" + }, + { + "id": "netherlands-cbs", + "name": { + "en": "Statistics Netherlands (CBS)", + "zh": "荷兰统计局" + }, + "description": { + "en": "The Dutch national statistical office providing comprehensive statistics on population, economy, trade, and society.", + "zh": "荷兰国家统计机构,提供人口、经济、贸易和社会的综合统计数据。" + }, + "website": "https://www.cbs.nl", + "data_url": "https://opendata.cbs.nl/statline/", + "api_url": "https://odata4.cbs.nl/CBS/Datasets", + "data_content": { + "en": [ + "GDP and national accounts", + "Population demographics", + "International trade", + "Labor market statistics", + "Consumer price index", + "Housing and construction", + "Environment and energy" + ], + "zh": [ + "GDP与国民账户", + "人口统计", + "国际贸易", + "劳动力市场", + "消费者价格指数", + "住房与建设", + "环境与能源" + ] + }, + "authority_level": "government", + "update_frequency": "monthly", + "domains": [ + "economics", + "demographics", + "trade", + "employment", + "environment", + "housing", + "energy" + ], + "tags": [ + "netherlands", + "statistics", + "cbs", + "odata", + "gdp" + ], + "country": "NL", + "geographic_scope": "national", + "has_api": true, + "file_path": "countries/europe/netherlands/netherlands-cbs.json" + }, + { + "id": "norway-ssb", + "name": { + "en": "Statistics Norway (SSB)", + "zh": "挪威统计局", + "native": "Statistisk sentralbyrå (SSB)" + }, + "description": { + "en": "Statistics Norway (SSB) is Norway's official statistics agency, responsible for collecting, processing, and publishing statistics on Norwegian society, economy, population, and environment. SSB provides comprehensive data through its StatBank platform and open API.", + "zh": "挪威统计局(SSB)是挪威官方统计机构,负责收集、处理和发布挪威社会、经济、人口和环境统计数据。SSB通过其StatBank平台和开放API提供全面的数据访问服务。" + }, + "website": "https://www.ssb.no/en", + "data_url": "https://www.ssb.no/en/statbank", + "api_url": "https://data.ssb.no/api/v0/en/table/", + "authority_level": "government", + "country": "NO", + "domains": [ + "economics", + "demographics", + "environment", + "health", + "education", + "labor" + ], + "geographic_scope": "national", + "update_frequency": "quarterly", + "tags": [ + "norway", + "ssb", + "statistics-norway", + "nordic", + "挪威", + "统计局", + "人口", + "经济", + "北欧", + "statbank", + "open-data" + ], + "data_content": { + "en": [ + "Population and migration statistics", + "National accounts and GDP", + "Labor market and employment data", + "Prices and consumer price index", + "Energy and environment statistics", + "Education and research data", + "Health and welfare statistics", + "Business and industry data", + "Foreign trade statistics" + ], + "zh": [ + "人口与移民统计", + "国民账户与GDP", + "劳动力市场与就业数据", + "物价与消费者价格指数", + "能源与环境统计", + "教育与科研数据", + "卫生与福利统计", + "工商业数据", + "对外贸易统计" + ] + }, + "has_api": true, + "file_path": "countries/europe/norway/norway-ssb.json" + }, + { + "id": "poland-gus", + "name": { + "en": "Statistics Poland (GUS)", + "zh": "波兰中央统计局", + "native": "Główny Urząd Statystyczny" + }, + "description": { + "en": "Statistics Poland (GUS — Główny Urząd Statystyczny) is the central government authority for official statistics in Poland. It provides comprehensive data on the Polish economy, society, population, and environment through its Local Data Bank (BDL) and open API.", + "zh": "波兰中央统计局(GUS)是波兰官方统计的中央政府机构,通过其地方数据库(BDL)和开放API提供波兰经济、社会、人口和环境的综合数据。" + }, + "website": "https://stat.gov.pl/en/", + "data_url": "https://bdl.stat.gov.pl/BDL/start", + "api_url": "https://api.stat.gov.pl/Home/BdlApi", + "authority_level": "government", + "country": "PL", + "domains": [ + "economics", + "population", + "society", + "environment", + "labor" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "poland", + "gus", + "statistics-poland", + "bdl", + "local-data-bank", + "波兰", + "波兰统计局", + "中东欧统计", + "gdp", + "人口", + "就业", + "central-europe", + "official-statistics", + "open-data", + "economy", + "census" + ], + "data_content": { + "en": [ + "National accounts and GDP", + "Population and demographic statistics", + "Labor market and employment", + "Prices and inflation", + "Industrial and agricultural production", + "Foreign trade and balance of payments", + "Education and health statistics", + "Regional statistics by voivodeship" + ], + "zh": [ + "国民账户和GDP", + "人口与人口统计", + "劳动力市场和就业", + "价格与通货膨胀", + "工业和农业生产", + "对外贸易和国际收支", + "教育和卫生统计", + "按省份划分的区域统计" + ] + }, + "has_api": true, + "file_path": "countries/europe/poland/poland-gus.json" + }, + { + "id": "portugal-ine", + "name": { + "en": "Statistics Portugal (INE)", + "zh": "葡萄牙国家统计局" + }, + "description": { + "en": "National statistical institute of Portugal providing comprehensive socioeconomic data", + "zh": "葡萄牙国家统计机构,提供全面的社会经济数据" + }, + "data_url": "https://www.ine.pt/xportal/xmain?xpid=INE&xpgid=ine_base_dados", + "api_url": "https://www.ine.pt/xportal/xmain?xpid=INE&xpgid=ine_api", + "authority_level": "government", + "country": "PT", + "geographic_scope": "national", + "update_frequency": "monthly", + "domains": [ + "economics", + "demographics", + "employment", + "social", + "trade", + "housing" + ], + "data_content": { + "en": [ + "National accounts - GDP, GVA, productivity indicators", + "Population census and demographic statistics", + "Labour force survey - employment, unemployment rates", + "Social indicators - education, health, culture", + "International trade statistics by product and partner", + "Housing and construction statistics" + ], + "zh": [ + "国民账户 - GDP、GVA、生产力指标", + "人口普查和人口统计", + "劳动力调查 - 就业率、失业率", + "社会指标 - 教育、卫生、文化", + "按产品和伙伴分类的国际贸易统计", + "住房和建筑统计" + ] + }, + "website": "https://www.ine.pt", + "tags": [ + "statistics", + "portugal", + "europe", + "government-data" + ], + "has_api": true, + "file_path": "countries/europe/portugal/portugal-ine.json" + }, + { + "id": "romania-bnr", + "name": { + "en": "National Bank of Romania (BNR)", + "zh": "罗马尼亚国家银行" + }, + "description": { + "en": "The National Bank of Romania (BNR) is the central bank of Romania, responsible for monetary policy, financial stability, and banking supervision. It publishes comprehensive monetary, financial, and balance of payments statistics, including exchange rates, interest rates, money supply data, and financial system indicators through its interactive statistical database.", + "zh": "罗马尼亚国家银行(BNR)是罗马尼亚的中央银行,负责货币政策、金融稳定和银行监管。通过交互式统计数据库发布全面的货币、金融和国际收支统计数据,包括汇率、利率、货币供应数据和金融系统指标。" + }, + "website": "https://www.bnr.ro/Home.aspx", + "data_url": "https://www.bnr.ro/Statistics-702.aspx", + "api_url": "https://www.bnr.ro/Web-services-702.aspx", + "authority_level": "government", + "country": "RO", + "domains": [ + "finance", + "monetary-policy", + "banking", + "economics" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "romania", + "罗马尼亚", + "bnr", + "central-bank", + "中央银行", + "monetary-policy", + "货币政策", + "exchange-rate", + "汇率", + "interest-rate", + "利率", + "banking", + "financial-stability", + "balance-of-payments", + "eastern-europe", + "eu-member" + ], + "data_content": { + "en": [ + "Exchange rates (daily, historical)", + "Monetary policy interest rates and decisions", + "Money supply and monetary aggregates", + "Banking system financial soundness indicators", + "Balance of payments and external debt statistics", + "Financial accounts and flow of funds", + "Credit and deposit statistics", + "Inflation reports and forecasts" + ], + "zh": [ + "汇率数据(每日、历史)", + "货币政策利率和决策", + "货币供应量和货币总量", + "银行系统金融稳健性指标", + "国际收支和外债统计", + "金融账户和资金流量", + "信贷和存款统计", + "通胀报告和预测" + ] + }, + "has_api": true, + "file_path": "countries/europe/romania/romania-bnr.json" + }, + { + "id": "romania-bvb", + "name": { + "en": "Bucharest Stock Exchange", + "zh": "布加勒斯特证券交易所" + }, + "description": { + "en": "Bucharest Stock Exchange (BVB) is Romania's principal securities exchange, regulated by the Romanian Financial Supervisory Authority (ASF). BVB operates equity, bond, and derivatives markets and disseminates official market data including share prices, indices (BET family), trading volumes, listed company filings, IPO and secondary-offering prospectuses, and corporate actions for Romanian listed companies.", + "zh": "布加勒斯特证券交易所(BVB)是罗马尼亚主要的证券交易所,受罗马尼亚金融监管局(ASF)监管。BVB运营股票、债券和衍生品市场,发布官方市场数据,包括股票价格、指数(BET系列)、交易量、上市公司披露、IPO及再融资招股书,以及罗马尼亚上市公司相关公司行为数据。" + }, + "website": "https://www.bvb.ro", + "data_url": "https://www.bvb.ro/FinancialInstruments/Markets/Shares", + "api_url": null, + "authority_level": "market", + "country": "RO", + "domains": [ + "finance", + "securities", + "stock-market" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "romania", + "bucharest", + "stock-exchange", + "BVB", + "securities", + "equities", + "bonds", + "derivatives", + "BET-index", + "IPO", + "market-data", + "罗马尼亚", + "布加勒斯特", + "证券交易所", + "股票市场", + "招股书" + ], + "data_content": { + "en": [ + "Real-time and historical share prices", + "Market indices (BET, BET-TR, BET-XT, BET-BK)", + "Trading volumes and turnover statistics", + "Listed company disclosures and financial filings", + "IPO, SPO and bond issue prospectuses", + "Corporate actions (dividends, splits, mergers)", + "Derivatives and fixed-income market data", + "Market participant directory" + ], + "zh": [ + "股票实时与历史价格", + "市场指数(BET、BET-TR、BET-XT、BET-BK)", + "交易量与成交金额统计", + "上市公司披露与财务报告", + "IPO、再融资与债券发行招股书", + "公司行为(股息、拆股、并购)", + "衍生品与固定收益市场数据", + "市场参与者名录" + ] + }, + "has_api": false, + "file_path": "countries/europe/romania/romania-bvb.json" + }, + { + "id": "romania-ins", + "name": { + "en": "National Institute of Statistics (Romania)", + "zh": "罗马尼亚国家统计局" + }, + "description": { + "en": "The National Institute of Statistics (INS) is the official national statistical authority of Romania, responsible for the collection, processing, and dissemination of official statistics on the Romanian economy, population, and society. INS produces data compliant with Eurostat and EU standards, covering GDP, population census, consumer prices, employment, trade, and agricultural statistics.", + "zh": "罗马尼亚国家统计局(INS)是罗马尼亚官方国家统计机构,负责收集、处理和发布有关罗马尼亚经济、人口和社会的官方统计数据。INS生产符合欧盟统计局(Eurostat)标准的数据,涵盖GDP、人口普查、消费价格、就业、贸易和农业统计。" + }, + "website": "https://insse.ro", + "data_url": "https://insse.ro/cms/en/statistici-2", + "api_url": "https://statistici.insse.ro:8077/tempo-online/", + "authority_level": "government", + "country": "RO", + "domains": [ + "economics", + "demographics", + "employment", + "trade", + "social", + "prices", + "agriculture", + "industry" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "romania", + "ins", + "insse", + "institutul-national-de-statistica", + "romanian-statistics", + "population-census", + "gdp", + "national-accounts", + "cpi", + "inflation", + "labor-market", + "foreign-trade", + "agriculture", + "industry", + "eurostat", + "eu-statistics", + "罗马尼亚", + "罗马尼亚统计局", + "国家统计局", + "人口普查", + "经济统计", + "消费价格", + "就业", + "贸易", + "农业", + "欧盟" + ], + "data_content": { + "en": [ + "GDP and national accounts", + "Population census and vital statistics", + "Consumer price index and inflation", + "Labour force survey and employment", + "Foreign trade statistics", + "Industrial production index", + "Agricultural statistics", + "Business and enterprise statistics", + "Income and living conditions (EU-SILC)", + "Tourism statistics" + ], + "zh": [ + "GDP与国民账户", + "人口普查与生命统计", + "消费者价格指数与通货膨胀", + "劳动力调查与就业统计", + "对外贸易统计", + "工业生产指数", + "农业统计", + "企业与工商统计", + "收入与生活条件(EU-SILC)", + "旅游统计" + ] + }, + "has_api": true, + "file_path": "countries/europe/romania/romania-ins.json" + }, + { + "id": "russia-rosstat", + "name": { + "en": "Federal State Statistics Service (Rosstat)", + "zh": "俄罗斯联邦统计局", + "native": "Федеральная служба государственной статистики (Росстат)" + }, + "description": { + "en": "The Federal State Statistics Service (Rosstat) is Russia's central statistical authority responsible for collecting, processing, and publishing official statistics on the socio-economic, demographic, environmental, and other aspects of life in the Russian Federation. Rosstat maintains a comprehensive statistical database covering population, economy, industry, agriculture, trade, social welfare, housing, and environmental indicators. It publishes the official Statistical Yearbook of Russia and provides open data through its official portal.", + "zh": "俄罗斯联邦统计局(Rosstat)是俄罗斯的中央统计机构,负责收集、处理和发布俄罗斯联邦社会经济、人口、环境等各方面的官方统计数据。Rosstat维护着覆盖人口、经济、工业、农业、贸易、社会福利、住房和环境指标的综合统计数据库,发布官方《俄罗斯统计年鉴》,并通过官方门户网站提供开放数据。" + }, + "website": "https://rosstat.gov.ru", + "data_url": "https://rosstat.gov.ru/statistics", + "api_url": "https://rosstat.gov.ru/opendata", + "authority_level": "government", + "country": "RU", + "domains": [ + "demographics", + "economics", + "social", + "employment", + "prices", + "industry", + "agriculture", + "trade", + "housing", + "environment" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "russia", + "俄罗斯", + "rosstat", + "federal-statistics", + "联邦统计", + "population", + "人口", + "gdp", + "国内生产总值", + "inflation", + "通货膨胀", + "employment", + "就业", + "industry", + "工业", + "census", + "人口普查", + "statistical-yearbook", + "统计年鉴", + "eastern-europe", + "东欧", + "open-data", + "开放数据", + "government-statistics", + "政府统计" + ], + "data_content": { + "en": [ + "Population and Demography - census data, population dynamics, births, deaths, migration", + "National Accounts - GDP, GNP, value added by sector, input-output tables", + "Industry and Manufacturing - industrial production indices, output by sector", + "Agriculture - crop production, livestock, food industry statistics", + "Labor Market - employment, unemployment, wages, working hours", + "Prices - Consumer Price Index (CPI), Producer Price Index (PPI), housing prices", + "Foreign Trade - exports, imports, trade balance by commodity and country", + "Finance and Banking - federal budget, government debt, banking sector indicators", + "Social Statistics - education, healthcare, social protection, poverty", + "Housing and Construction - housing stock, new construction, utility services", + "Environment - emissions, waste, water resources, protected areas", + "Regional Statistics - socio-economic indicators broken down by federal subjects", + "Russia in Figures - annual compact statistical handbook", + "Statistical Yearbook of Russia - comprehensive annual statistical compendium" + ], + "zh": [ + "人口与人口统计 - 人口普查数据、人口动态、出生、死亡、移民", + "国民账户 - GDP、GNP、各部门增加值、投入产出表", + "工业和制造业 - 工业生产指数、各部门产出", + "农业 - 粮食产量、畜牧业、食品工业统计", + "劳动力市场 - 就业、失业、工资、工时", + "价格 - 消费者价格指数(CPI)、生产者价格指数(PPI)、房价", + "对外贸易 - 按商品和国家分类的出口、进口、贸易差额", + "金融与银行 - 联邦预算、政府债务、银行业指标", + "社会统计 - 教育、医疗、社会保障、贫困", + "住房与建筑 - 住房存量、新建筑、公用服务", + "环境 - 排放、废物、水资源、保护区", + "地区统计 - 按联邦主体划分的社会经济指标", + "俄罗斯数字 - 年度简明统计手册", + "俄罗斯统计年鉴 - 综合年度统计汇编" + ] + }, + "has_api": true, + "file_path": "countries/europe/russia/russia-rosstat.json" + }, + { + "id": "slovakia-susr", + "name": { + "en": "Statistical Office of the Slovak Republic (SUSR)", + "zh": "斯洛伐克共和国统计局" + }, + "description": { + "en": "Official statistical authority of the Slovak Republic (Štatistický úrad Slovenskej republiky, ŠÚSR), responsible for coordinating and producing official national statistics in areas such as economics, social conditions, demographics, and the environment. Publishes EU-harmonized data in compliance with EUROSTAT requirements.", + "zh": "斯洛伐克共和国官方统计机构(Štatistický úrad Slovenskej republiky,ŠÚSR),负责协调和生产经济、社会状况、人口和环境领域的官方国家统计数据,遵循欧盟EUROSTAT要求发布协调统计。" + }, + "website": "https://statistics.sk", + "data_url": "https://datacube.statistics.sk", + "api_url": null, + "authority_level": "government", + "country": "SK", + "geographic_scope": "national", + "update_frequency": "monthly", + "domains": [ + "demographics", + "economics", + "employment", + "trade", + "agriculture", + "environment", + "social" + ], + "tags": [ + "slovakia", + "斯洛伐克统计", + "susr", + "šúsr", + "eu-member", + "europe", + "official-statistics", + "datacube", + "population", + "gdp", + "eurostat-harmonized", + "central-europe", + "国家统计" + ], + "data_content": { + "en": [ + "National accounts - GDP, GVA, productivity and output", + "Population census and demographic projections", + "Labour force survey - employment, unemployment, wages and earnings", + "Consumer Price Index and harmonized inflation (HICP)", + "Foreign trade statistics by commodity and partner country", + "Agricultural production, livestock and land use", + "Industrial production index and business statistics", + "Regional statistics at NUTS 2 and NUTS 3 level", + "Tourism, accommodation and hospitality statistics", + "Education indicators and research & development data", + "Health, social protection and poverty statistics", + "Environment and sustainable development indicators" + ], + "zh": [ + "国民账户 - GDP、GVA、生产力和产出", + "人口普查和人口预测", + "劳动力调查 - 就业、失业率、工资和薪酬", + "消费者价格指数和欧盟协调通胀率(HICP)", + "按商品和伙伴国分类的对外贸易统计", + "农业生产、牲畜和土地利用", + "工业生产指数和商业统计", + "NUTS 2和NUTS 3级别的区域统计", + "旅游、住宿和酒店业统计", + "教育指标和研发数据", + "卫生、社会保障和贫困统计", + "环境和可持续发展指标" + ] + }, + "has_api": false, + "file_path": "countries/europe/slovakia/slovakia-susr.json" + }, + { + "id": "slovenia-surs", + "name": { + "en": "Statistical Office of the Republic of Slovenia (SURS)", + "zh": "斯洛文尼亚共和国统计局" + }, + "description": { + "en": "The Statistical Office of the Republic of Slovenia (SURS) is the official national statistical authority of Slovenia, responsible for the collection, processing, and publication of official statistics covering the Slovenian economy, society, population, and environment. SURS produces data in compliance with Eurostat and European Statistical System standards, providing open access through its SiStat database.", + "zh": "斯洛文尼亚共和国统计局(SURS)是斯洛文尼亚官方国家统计机构,负责收集、处理和发布涵盖斯洛文尼亚经济、社会、人口和环境的官方统计数据。SURS依照欧盟统计局(Eurostat)和欧洲统计系统标准生产数据,并通过SiStat数据库提供开放访问。" + }, + "website": "https://www.stat.si", + "data_url": "https://www.stat.si/StatWeb/en", + "api_url": "https://pxweb.stat.si/SiStatData/api/v1/en/", + "authority_level": "government", + "country": "SI", + "domains": [ + "economics", + "demographics", + "employment", + "trade", + "social", + "environment", + "prices", + "industry" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "slovenia", + "surs", + "statisticni-urad", + "sistat", + "slovenian-statistics", + "population-census", + "gdp", + "national-accounts", + "cpi", + "inflation", + "labour-market", + "foreign-trade", + "environment", + "industry", + "eurostat", + "eu-statistics", + "pxweb", + "斯洛文尼亚", + "斯洛文尼亚统计局", + "国家统计局", + "人口普查", + "经济统计", + "消费价格", + "就业", + "贸易", + "环境", + "欧盟" + ], + "data_content": { + "en": [ + "GDP and national accounts", + "Population census and vital statistics", + "Consumer price index and inflation", + "Labour force survey and employment", + "Foreign trade statistics", + "Industrial production index", + "Environmental statistics", + "Business and enterprise statistics", + "Income and living conditions (EU-SILC)", + "Tourism and accommodation statistics" + ], + "zh": [ + "GDP与国民账户", + "人口普查与生命统计", + "消费者价格指数与通货膨胀", + "劳动力调查与就业统计", + "对外贸易统计", + "工业生产指数", + "环境统计", + "企业与工商统计", + "收入与生活条件(EU-SILC)", + "旅游与住宿统计" + ] + }, + "has_api": true, + "file_path": "countries/europe/slovenia/slovenia-surs.json" + }, + { + "id": "spain-ine", + "name": { + "en": "National Statistics Institute of Spain", + "zh": "西班牙国家统计局" + }, + "description": { + "en": "Spain's national statistical office producing official statistics on demographics, economy, labor market, and social conditions.", + "zh": "西班牙国家统计机构,发布人口、经济、劳动力市场和社会状况的官方统计数据。" + }, + "website": "https://www.ine.es", + "data_url": "https://www.ine.es/dyngs/INEbase/listaoperaciones.htm", + "api_url": "https://servicios.ine.es/wstempus/js", + "data_content": { + "en": [ + "CPI and inflation", + "Labor force survey", + "Population census", + "GDP and national accounts", + "Industrial production index" + ], + "zh": [ + "消费者价格指数与通胀", + "劳动力调查", + "人口普查", + "GDP与国民账户", + "工业生产指数" + ] + }, + "authority_level": "government", + "update_frequency": "monthly", + "domains": [ + "economics", + "demographics", + "employment" + ], + "tags": [ + "spain", + "statistics", + "cpi", + "labor", + "gdp" + ], + "country": "ES", + "geographic_scope": "national", + "has_api": true, + "file_path": "countries/europe/spain/spain-ine.json" + }, + { + "id": "sweden-scb", + "name": { + "en": "Statistics Sweden (SCB)", + "zh": "瑞典统计局" + }, + "description": { + "en": "Sweden's central government authority for official statistics covering population, economy, labor market, and living conditions.", + "zh": "瑞典中央统计局,提供人口、经济、劳动力市场和生活条件的官方统计数据。" + }, + "website": "https://www.scb.se", + "data_url": "https://www.statistikdatabasen.scb.se", + "api_url": "https://api.scb.se/OV0104/v1/doris/en", + "data_content": { + "en": [ + "Population statistics", + "GDP and economic indicators", + "Labor force surveys", + "Foreign trade", + "Consumer price index", + "Education statistics", + "Environmental accounts" + ], + "zh": [ + "人口统计", + "GDP与经济指标", + "劳动力调查", + "对外贸易", + "消费者价格指数", + "教育统计", + "环境账户" + ] + }, + "authority_level": "government", + "update_frequency": "monthly", + "domains": [ + "economics", + "demographics", + "trade", + "employment", + "education", + "environment", + "energy" + ], + "tags": [ + "sweden", + "statistics", + "scb", + "gdp", + "population" + ], + "country": "SE", + "geographic_scope": "national", + "has_api": true, + "file_path": "countries/europe/sweden/sweden-scb.json" + }, + { + "id": "switzerland-fso", + "name": { + "en": "Swiss Federal Statistical Office (FSO)", + "zh": "瑞士联邦统计局", + "native": "Bundesamt für Statistik (BFS)" + }, + "description": { + "en": "The Swiss Federal Statistical Office (FSO) is Switzerland's national statistics authority. It produces and publishes official statistics on Swiss economy, society, population, environment, and politics. FSO provides data through its STAT-TAB interactive database and PX-Web API.", + "zh": "瑞士联邦统计局(FSO/BFS)是瑞士国家统计机构,负责生产和发布关于瑞士经济、社会、人口、环境和政治的官方统计数据,通过STAT-TAB交互式数据库和PX-Web API提供数据访问。" + }, + "website": "https://www.bfs.admin.ch/bfs/en/home.html", + "data_url": "https://www.bfs.admin.ch/bfs/en/home/statistics.html", + "api_url": "https://www.pxweb.bfs.admin.ch/api/v1/en", + "authority_level": "government", + "country": "CH", + "domains": [ + "economics", + "demographics", + "environment", + "health", + "education", + "labor" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "switzerland", + "fso", + "bfs", + "swiss-statistics", + "瑞士", + "联邦统计局", + "人口", + "经济", + "欧洲", + "stat-tab", + "px-web", + "open-data" + ], + "data_content": { + "en": [ + "Population and household statistics", + "National accounts and GDP", + "Labor market and wages data", + "Prices and purchasing power", + "Health and social security statistics", + "Education and science data", + "Environment and energy statistics", + "Agriculture and forestry data", + "Foreign trade and balance of payments" + ], + "zh": [ + "人口与家庭统计", + "国民账户与GDP", + "劳动力市场与工资数据", + "物价与购买力", + "卫生与社会保障统计", + "教育与科学数据", + "环境与能源统计", + "农业与林业数据", + "对外贸易与国际收支" + ] + }, + "has_api": true, + "file_path": "countries/europe/switzerland/switzerland-fso.json" + }, + { + "id": "turkey-tuik", + "name": { + "en": "Turkish Statistical Institute (TurkStat)", + "zh": "土耳其统计局", + "native": "Türkiye İstatistik Kurumu (TÜİK)" + }, + "description": { + "en": "The Turkish Statistical Institute (TurkStat / TÜİK) is the official national statistical authority of Turkey, responsible for collecting, compiling, and disseminating statistical data on Turkey's economy, population, social structure, environment, and other sectors. It publishes key indicators including GDP, inflation, foreign trade, population census results, employment, and agricultural production.", + "zh": "土耳其统计局(TurkStat / TÜİK)是土耳其官方国家统计机构,负责收集、整理和发布土耳其经济、人口、社会结构、环境等领域的统计数据,发布包括GDP、通胀、对外贸易、人口普查、就业和农业生产在内的核心指标。" + }, + "website": "https://www.tuik.gov.tr", + "data_url": "https://data.tuik.gov.tr", + "api_url": "https://data.tuik.gov.tr/api", + "authority_level": "government", + "country": "TR", + "domains": [ + "economics", + "demographics", + "employment", + "trade", + "agriculture", + "social" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "turkey", + "tuik", + "turkstat", + "türkiye", + "statistics", + "gdp", + "inflation", + "population", + "census", + "employment", + "trade", + "土耳其", + "统计局", + "经济统计", + "人口普查" + ], + "data_content": { + "en": [ + "GDP and national accounts", + "Consumer price index (CPI) and inflation", + "Foreign trade statistics", + "Population census and demographic data", + "Employment and labor force statistics", + "Agricultural production data", + "Industrial production indices", + "Tourism statistics", + "Income and living conditions surveys" + ], + "zh": [ + "GDP和国民账户", + "消费者价格指数(CPI)和通货膨胀", + "对外贸易统计", + "人口普查和人口统计数据", + "就业和劳动力统计", + "农业生产数据", + "工业生产指数", + "旅游统计", + "收入和生活条件调查" + ] + }, + "has_api": true, + "file_path": "countries/europe/turkey/turkey-tuik.json" + }, + { + "id": "uk-boe", + "name": { + "en": "Bank of England Statistical Interactive Database", + "zh": "英格兰银行统计数据库" + }, + "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": "英格兰银行统计互动数据库提供英国全面的货币、金融和监管统计数据。包括货币与信贷、利率、汇率、金融市场、银行业资本、支付系统及其他关键经济指标数据。该数据库是英国货币政策、金融稳定性分析和银行业监管的权威数据来源。" + }, + "website": "https://www.bankofengland.co.uk", + "data_url": "https://www.bankofengland.co.uk/boeapps/database/", + "api_url": null, + "country": "GB", + "domains": [ + "monetary-policy", + "financial-markets", + "banking", + "interest-rates", + "exchange-rates", + "credit", + "financial-stability", + "payment-systems", + "regulatory-capital" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "central-bank", + "monetary-policy", + "financial-stability", + "interest-rates", + "exchange-rates", + "banking", + "uk", + "united-kingdom", + "england", + "regulatory-data", + "financial-markets", + "payment-systems" + ], + "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": "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 和其他政府网站上的数据集,涵盖商业、犯罪、国防、教育、环境、健康、政府支出、交通等多个领域。该平台由政府数字服务部门建设和运营,通过使公共部门数据对公民、研究人员、企业和开发者开放,支持透明度、创新和基于证据的政策制定。" + }, + "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": [ + "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", + "tags": [ + "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": "uk-met-office", + "name": { + "en": "UK Met Office", + "zh": "英国气象局" + }, + "description": { + "en": "The UK's national weather service providing weather forecasts, climate data, and atmospheric research datasets.", + "zh": "英国国家气象服务机构,提供天气预报、气候数据和大气研究数据集。" + }, + "website": "https://www.metoffice.gov.uk", + "data_url": "https://www.metoffice.gov.uk/research/climate/maps-and-data", + "api_url": "https://data.hub.api.metoffice.gov.uk", + "data_content": { + "en": [ + "UK climate observations", + "global climate projections", + "HadCRUT temperature records", + "weather warnings", + "historical weather data" + ], + "zh": [ + "英国气候观测、全球气候预测、HadCRUT温度记录、天气预警、历史天气数据" + ] + }, + "authority_level": "government", + "update_frequency": "daily", + "domains": [ + "climate", + "environment" + ], + "tags": [ + "weather", + "climate", + "temperature", + "hadcrut", + "uk" + ], + "country": "GB", + "geographic_scope": "national", + "has_api": true, + "file_path": "countries/europe/uk/uk-met-office.json" + }, + { + "id": "uk-ons-cpi-rpi", + "name": { + "en": "UK Office for National Statistics - Consumer Price Index and Retail Prices Index", + "zh": "英国国家统计局 - 消费者价格指数和零售价格指数" + }, + "description": { + "en": "The Office for National Statistics (ONS) is the UK's largest independent producer of official statistics and the recognised national statistical institute of the United Kingdom. The ONS publishes comprehensive inflation measures including the Consumer Prices Index (CPI), Consumer Prices Index including owner occupiers' housing costs (CPIH), and Retail Prices Index (RPI). The CPI is the UK's primary measure of inflation used for monetary policy decisions by the Bank of England. The ONS provides monthly data on price changes for goods and services, detailed breakdowns by category, and extensive time series data dating back decades. Note: RPI and its subcomponents do not meet the required standard for designation as accredited official statistics but continue to be published due to widespread use in contracts.", + "zh": "英国国家统计局(ONS)是英国最大的独立官方统计生产机构,是英国公认的国家统计机构。ONS发布全面的通货膨胀指标,包括消费者价格指数(CPI)、包含自有住房成本的消费者价格指数(CPIH)和零售价格指数(RPI)。CPI是英国央行用于货币政策决策的主要通胀指标。ONS提供商品和服务价格变化的月度数据、按类别的详细分类以及可追溯数十年的广泛时间序列数据。注:RPI及其子指标不符合官方统计认证标准,但由于在合同中广泛使用而继续发布。" + }, + "website": "https://www.ons.gov.uk/", + "data_url": "https://www.ons.gov.uk/economy/inflationandpriceindices", + "api_url": null, + "country": "GB", + "domains": [ + "economics", + "price-statistics", + "inflation", + "consumer-prices", + "monetary-policy", + "economic-indicators" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "cpi", + "rpi", + "cpih", + "inflation", + "consumer-prices", + "retail-prices", + "price-index", + "uk-statistics", + "ons", + "消费者价格指数", + "零售价格指数", + "通货膨胀", + "物价指数", + "英国统计", + "price-statistics", + "economic-indicators", + "monetary-policy", + "价格统计", + "经济指标", + "货币政策" + ], + "data_content": { + "en": [ + "Consumer Prices Index (CPI) - Monthly inflation rate measuring changes in prices of goods and services purchased by households", + "Consumer Prices Index including owner occupiers' housing costs (CPIH) - Most comprehensive measure of inflation including housing costs", + "Retail Prices Index (RPI) - Legacy inflation measure still widely used in contracts and indexation", + "Detailed price indices by product category - Food, housing, transport, recreation, clothing, etc.", + "Historical time series data - CPI data from 1988, RPI from 1947, extensive historical records", + "Index numbers and percentage changes - Month-on-month, year-on-year, and average annual rates", + "Weights and basket composition - Annual updates to the basket of goods and services used in calculations", + "Regional price statistics - Price variations across different UK regions", + "International comparisons - UK inflation in context of European and global measures" + ], + "zh": [ + "消费者价格指数(CPI) - 衡量家庭购买的商品和服务价格变化的月度通胀率", + "包含自有住房成本的消费者价格指数(CPIH) - 包含住房成本的最全面通胀指标", + "零售价格指数(RPI) - 在合同和指数化中仍广泛使用的传统通胀指标", + "按产品类别的详细价格指数 - 食品、住房、交通、娱乐、服装等", + "历史时间序列数据 - 自1988年起的CPI数据、自1947年起的RPI数据及广泛的历史记录", + "指数数值和百分比变化 - 环比、同比和年平均增长率", + "权重和商品篮子构成 - 计算中使用的商品和服务篮子的年度更新", + "区域价格统计 - 英国不同地区的价格差异", + "国际比较 - 英国通胀在欧洲和全球指标背景下的表现" + ] + }, + "authority_level": "government", + "has_api": false, + "file_path": "countries/europe/uk-ons-cpi-rpi.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" + ], + "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": "canada-boc", + "name": { + "en": "Bank of Canada", + "zh": "加拿大银行", + "native": "Banque du Canada" + }, + "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,提供对汇率、货币市场收益率、债券收益率、通胀指标和银行统计数据的程序化访问。" + }, + "website": "https://www.bankofcanada.ca", + "data_url": "https://www.bankofcanada.ca/rates/", + "api_url": "https://www.bankofcanada.ca/valet/docs", + "country": "CA", + "domains": [ + "monetary-policy", + "exchange-rates", + "interest-rates", + "inflation", + "banking", + "financial-markets", + "economic-indicators" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "canada", + "central-bank", + "monetary-policy", + "exchange-rates", + "interest-rates", + "inflation", + "financial-markets", + "banking-statistics", + "open-data", + "api", + "bilingual" + ], + "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": "canada-cihi", + "name": { + "en": "Canadian Institute for Health Information", + "zh": "加拿大健康信息研究所", + "native": "Institut canadien d'information sur la santé" + }, + "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", + "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", + "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" + ], + "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": "canada-cer", + "name": { + "en": "Canada Energy Regulator", + "zh": "加拿大能源监管局", + "native": "Régie de l'énergie du Canada" + }, + "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发布有关管道吞吐量和容量、能源进出口、原油和天然气统计数据以及可再生能源来源的数据集。该组织维护交互式仪表板、市场更新和省/地区能源概况,以支持加拿大基于证据的能源政策和监管。" + }, + "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": [ + "energy-infrastructure", + "pipeline-regulation", + "electricity-transmission", + "oil-and-gas", + "renewable-energy", + "energy-safety", + "energy-markets", + "energy-trade" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "energy", + "canada", + "pipeline", + "natural-gas", + "crude-oil", + "electricity", + "renewable-energy", + "energy-regulation", + "infrastructure", + "energy-trade", + "open-data", + "government" + ], + "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": "canada-statcan", + "name": { + "en": "Statistics Canada", + "zh": "加拿大统计局", + "native": "Statistique Canada" + }, + "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多项主动调查。" + }, + "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", + "labour", + "education", + "environment", + "agriculture", + "business", + "housing", + "justice", + "culture", + "trade" + ], + "geographic_scope": "national", + "update_frequency": "irregular", + "tags": [ + "canada", + "national-statistics", + "census", + "labour-market", + "demographics", + "economic-indicators", + "health-statistics", + "open-data", + "bilingual" + ], + "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": "mx-banxico", + "name": { + "en": "Bank of Mexico Economic Information System", + "zh": "墨西哥银行经济信息系统", + "native": "Sistema de Información Económica - Banco de México" + }, + "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)提供全面的经济和金融统计数据,涵盖货币政策、汇率、利率、通胀、银行业、支付系统、国际收支和经济指标。" + }, + "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": [ + "monetary-policy", + "financial-markets", + "banking", + "payment-systems", + "exchange-rates", + "inflation", + "balance-of-payments", + "public-finance", + "production", + "labor-market" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "central_bank", + "monetary_policy", + "exchange_rates", + "interest_rates", + "inflation", + "financial_statistics", + "banking", + "payment_systems", + "balance_of_payments", + "mexico", + "latin_america", + "time_series", + "api" + ], + "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": "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" + }, + "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的多维贫困测量方法在国际上得到认可,是墨西哥贫困测量的官方标准。" + }, + "website": "https://www.coneval.org.mx", + "data_url": "https://www.coneval.org.mx", + "api_url": null, + "country": "MX", + "domains": [ + "poverty", + "social-development", + "inequality", + "social-policy", + "welfare", + "food-security", + "education", + "health", + "housing", + "social-services", + "income" + ], + "geographic_scope": "national", + "update_frequency": "irregular", + "tags": [ + "mexico", + "poverty", + "social-development", + "inequality", + "multidimensional-poverty", + "social-policy", + "government-data", + "official-statistics", + "open-data", + "latin-america" + ], + "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": "mexico-inegi", + "name": { + "en": "National Institute of Statistics and Geography (INEGI)", + "zh": "墨西哥国家统计和地理研究所", + "native": "Instituto Nacional de Estadística y Geografía (INEGI)" + }, + "description": { + "en": "Mexico's national statistics office responsible for collecting, processing, and disseminating geographic, statistical and economic information about the country. INEGI conducts population and housing censuses, agricultural censuses, and economic censuses, and provides comprehensive data on demographics, economy, geography, environment, and social conditions. It offers an open data API (INEGI Indicators API) with over 1,000 economic, demographic, and social indicators.", + "zh": "墨西哥国家统计机构,负责收集、处理和传播国家地理、统计和经济信息。INEGI开展人口与住房普查、农业普查和经济普查,提供涵盖人口、经济、地理、环境和社会状况的全面数据,并通过开放数据API(INEGI指标API)提供逾1000项经济、人口和社会指标。" + }, + "website": "https://www.inegi.org.mx", + "data_url": "https://www.inegi.org.mx/datos/", + "api_url": "https://www.inegi.org.mx/servicios/api_indicadores.html", + "authority_level": "government", + "country": "MX", + "domains": [ + "demographics", + "economics", + "geography", + "environment", + "employment", + "agriculture", + "trade", + "prices", + "housing", + "social" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "inegi", + "mexico", + "statistics", + "census", + "demographics", + "gdp", + "inflation", + "employment", + "geography", + "open-data", + "api", + "墨西哥", + "国家统计", + "人口普查", + "经济普查", + "拉丁美洲" + ], + "data_content": { + "en": [ + "Population and Housing Census (Censos de Población y Vivienda) - conducted every 10 years", + "National Survey of Occupation and Employment (ENOE) - quarterly labor market data", + "National Consumer Price Index (INPC) - monthly inflation indicators", + "Economic Activity Indicator (IGAE) - monthly GDP proxy", + "Economic Census (Censos Económicos) - comprehensive business and industry data", + "Agricultural, Livestock, Forestry and Fishing Census", + "National Income and Expenditure Survey (ENIGH) - household income and spending", + "Foreign trade statistics - imports and exports by product and country", + "Industrial production index and manufacturing statistics", + "Geographic data and cartography - national geographic information system", + "Environment and natural resources statistics", + "Business Confidence Index and economic expectations surveys" + ], + "zh": [ + "人口与住房普查(每10年一次)", + "全国就业调查(ENOE)- 季度劳动力市场数据", + "全国消费者价格指数(INPC)- 月度通货膨胀指标", + "经济活动指标(IGAE)- 月度GDP代理指标", + "经济普查(每5年一次)- 全面的企业和行业数据", + "农业、畜牧业、林业和渔业普查", + "全国收入与支出调查(ENIGH)- 家庭收入与消费", + "外贸统计 - 按产品和国家分类的进出口数据", + "工业生产指数和制造业统计", + "地理数据和制图 - 国家地理信息系统", + "环境与自然资源统计", + "企业信心指数和经济预期调查" + ] + }, + "has_api": true, + "file_path": "countries/north-america/mexico/mexico-inegi.json" + }, + { + "id": "usa-eia", + "name": { + "en": "U.S. Energy Information Administration", + "zh": "美国能源信息署" + }, + "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提供涵盖所有能源来源的全面数据,包括石油、天然气、煤炭、核能、可再生能源和电力的生产、消费、价格和预测数据。" + }, + "website": "https://www.eia.gov", + "data_url": "https://www.eia.gov", + "api_url": "https://www.eia.gov/opendata/documentation.php", + "country": "US", + "domains": [ + "energy", + "petroleum", + "natural-gas", + "coal", + "electricity", + "nuclear-energy", + "renewable-energy", + "environment", + "economics", + "markets" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "energy", + "petroleum", + "natural-gas", + "coal", + "electricity", + "renewable-energy", + "nuclear-energy", + "united-states", + "government", + "official-statistics", + "time-series", + "api", + "open-data" + ], + "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": "noaa-cdo", + "name": { + "en": "NOAA Climate Data Online (CDO)", + "zh": "NOAA气候数据在线系统" + }, + "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世纪晚期。" + }, + "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": [ + "climate", + "meteorology", + "environmental-science", + "atmospheric-science" + ], + "geographic_scope": "global", + "update_frequency": "daily", + "tags": [ + "climate", + "weather", + "temperature", + "precipitation", + "meteorology", + "noaa", + "ncei", + "ncdc", + "historical-climate-data", + "weather-stations", + "climate-normals", + "atmospheric-data", + "environmental-data", + "time-series", + "global-coverage" + ], + "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": "us-bea", + "name": { + "en": "Bureau of Economic Analysis", + "zh": "经济分析局" + }, + "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的数据全面反映了美国经济及其与全球经济的互动情况。" + }, + "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": [ + "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" + ], + "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, + "file_path": "countries/north-america/usa/us-bls.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提供公众访问全面的健康监测数据、生命统计、疾病报告、环境健康数据和人口健康信息。这些数据支持传染病、慢性病、伤害、环境健康和健康公平等领域的研究、政策制定和公共卫生实践。" + }, + "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": [ + "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", + "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" + ], + "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-census", + "name": { + "en": "U.S. Census Bureau", + "zh": "美国人口普查局" + }, + "description": { + "en": "The U.S. Census Bureau is the principal agency of the U.S. Federal Statistical System responsible for producing data about the American people and economy. It conducts the decennial census, the American Community Survey, and over 130 other surveys and censuses. The Bureau provides critical economic indicators including retail sales, housing starts, international trade, construction spending, and manufacturing data, serving as the primary source for U.S. demographic and economic statistics.", + "zh": "美国人口普查局是美国联邦统计系统的主要机构,负责生产关于美国人口和经济的数据。它进行十年一次的人口普查、美国社区调查以及130多项其他调查和普查。该局提供关键经济指标,包括零售销售、住房开工、国际贸易、建设支出和制造业数据,是美国人口和经济统计数据的主要来源。" + }, + "website": "https://www.census.gov", + "data_url": "https://data.census.gov", + "api_url": "https://www.census.gov/data/developers.html", + "country": "US", + "domains": [ + "demographics", + "economics", + "housing", + "business", + "trade", + "government", + "geography", + "manufacturing", + "retail", + "employment", + "education", + "health" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "census", + "demographics", + "population", + "retail-sales", + "housing", + "international-trade", + "manufacturing", + "economic-indicators", + "美国人口普查", + "人口统计", + "零售销售", + "住房数据" + ], + "data_content": { + "en": [ + "Decennial Census - Complete count of U.S. population every 10 years", + "American Community Survey - Annual demographics, housing, economic data", + "Economic Indicators - Retail sales, housing starts, construction spending", + "International Trade - Monthly import/export statistics by commodity and country", + "Manufacturing - Manufacturers' shipments, inventories, and orders", + "Business Formation - New business applications and formations", + "Population Estimates - Annual intercensal population estimates", + "Housing - New residential construction, home ownership rates", + "Current Population Survey (CPS) - monthly employment and labor statistics", + "American Housing Survey - housing characteristics and costs", + "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年一次的美国人口完整统计", + "美国社区调查 - 年度人口、住房、经济数据", + "经济指标 - 零售销售、住房开工、建设支出", + "国际贸易 - 按商品和国家分类的月度进出口统计", + "制造业 - 制造商出货量、库存和订单", + "企业创设 - 新企业申请和创设", + "人口估计 - 年度人口估计", + "住房 - 新住宅建设、住房拥有率", + "当前人口调查(CPS) - 月度就业和劳动力统计", + "美国住房调查 - 住房特征和成本", + "政府财政统计", + "地图边界文件和地理数据", + "收入、贫困和财富统计", + "教育程度和入学数据", + "健康保险覆盖统计", + "迁移和流动性数据" + ] + }, + "authority_level": "government", + "has_api": true, + "file_path": "countries/north-america/usa/us-census.json" + }, + { + "id": "us-data-gov", + "name": { + "en": "Data.gov", + "zh": "美国政府开放数据平台" + }, + "description": { + "en": "Data.gov is the U.S. government's open data portal, providing access to over 300,000 datasets from federal, state, and local government agencies. It serves as the central repository for publicly available government data across agriculture, climate, consumer safety, education, energy, finance, health, public safety, and many other domains. The platform supports transparency, innovation, and data-driven decision making by making government data accessible to researchers, developers, entrepreneurs, and the public.", + "zh": "Data.gov 是美国政府的开放数据门户网站,提供来自联邦、州和地方政府机构的超过 30 万个数据集的访问。它是公开政府数据的中央存储库,涵盖农业、气候、消费者安全、教育、能源、金融、健康、公共安全等多个领域。该平台通过使政府数据对研究人员、开发者、企业家和公众开放,支持透明度、创新和数据驱动的决策。" + }, + "website": "https://www.gsa.gov", + "data_url": "https://catalog.data.gov/dataset", + "api_url": null, + "country": "US", + "domains": [ + "agriculture", + "business", + "climate", + "consumer", + "education", + "energy", + "finance", + "health", + "transportation", + "public-safety", + "science-and-research", + "environment", + "manufacturing", + "ocean", + "local-government", + "maritime", + "ecosystems" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "united-states", + "government", + "open-data", + "federal", + "transparency", + "public-data", + "multi-domain", + "comprehensive" + ], + "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": [ + "所有联邦政府机构的数据集", + "农业数据(作物生产、畜牧业、食品安全)", + "气候和天气数据", + "教育统计(学校、入学率、表现)", + "能源生产和消费数据", + "健康和医疗数据(疾病监测、医疗保险/医疗补助)", + "交通基础设施和安全数据", + "经济和金融指标", + "环境监测数据(空气质量、水质)", + "公共安全和犯罪统计", + "科学研究数据", + "地理空间和地图数据", + "人口普查和人口统计数据", + "州和地方政府数据集" + ] + }, + "authority_level": "government", + "has_api": false, + "file_path": "countries/north-america/usa/us-data-gov.json" + }, + { + "id": "us-federalreserve", + "name": { + "en": "Federal Reserve Board", + "zh": "美联储理事会" + }, + "description": { + "en": "The Board of Governors of the Federal Reserve System is the central bank of the United States, responsible for monetary policy, banking supervision, and maintaining financial stability. The Fed publishes authoritative data including FOMC meeting minutes, the Beige Book, Financial Accounts of the United States (Z.1), consumer credit, industrial production, capacity utilization, and the Senior Loan Officer Opinion Survey. Distinct from FRED (the data aggregation service), the Board's website provides primary-source policy documents and regulatory data.", + "zh": "美联储理事会是美国的中央银行,负责货币政策制定、银行业监管和维护金融稳定。美联储发布权威数据,包括FOMC会议纪要、褐皮书、美国金融账户(Z.1)、消费信贷、工业生产、产能利用率以及高级信贷官意见调查等。与FRED(数据聚合服务)不同,理事会网站提供一手政策文件和监管数据。" + }, + "website": "https://www.federalreserve.gov/", + "data_url": "https://www.federalreserve.gov/data.htm", + "api_url": null, + "country": "US", + "domains": [ + "monetary-policy", + "banking", + "finance", + "economics", + "financial-stability", + "consumer-credit" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "usa", + "central-bank", + "monetary-policy", + "fomc", + "interest-rates", + "banking-supervision", + "financial-stability", + "consumer-credit", + "industrial-production", + "美联储", + "联邦储备", + "货币政策", + "利率" + ], + "data_content": { + "en": [ + "FOMC Meeting Minutes and Statements", + "Beige Book (Regional Economic Conditions)", + "Financial Accounts of the United States (Z.1)", + "Consumer Credit (G.19)", + "Industrial Production and Capacity Utilization (G.17)", + "Money Stock Measures (H.6)", + "Selected Interest Rates (H.15)", + "Assets and Liabilities of Commercial Banks (H.8)", + "Senior Loan Officer Opinion Survey", + "Summary of Economic Projections (SEP)", + "Financial Stability Reports", + "Supervision and Regulation Reports", + "Flow of Funds Data", + "Foreign Exchange Rates (H.10)" + ], + "zh": [ + "FOMC会议纪要和声明", + "褐皮书(地区经济状况)", + "美国金融账户(Z.1)", + "消费信贷(G.19)", + "工业生产和产能利用率(G.17)", + "货币存量指标(H.6)", + "精选利率(H.15)", + "商业银行资产负债表(H.8)", + "高级信贷官意见调查", + "经济预测摘要(SEP)", + "金融稳定报告", + "监管报告", + "资金流量数据", + "外汇汇率(H.10)" + ] + }, + "authority_level": "government", + "has_api": false, + "file_path": "countries/north-america/usa/us-federalreserve.json" + }, + { + "id": "us-treasury", + "name": { + "en": "U.S. Department of the Treasury", + "zh": "美国财政部" + }, + "description": { + "en": "The U.S. Department of the Treasury provides comprehensive data on federal finances, government debt, treasury securities, and economic policy. Key datasets include daily treasury statements, monthly treasury statements, treasury securities auction data, TIPS (Treasury Inflation-Protected Securities), international capital flows (TIC), and sanctions data. The Treasury is the authoritative source for U.S. government fiscal data and sovereign debt information.", + "zh": "美国财政部提供联邦财政、政府债务、国债证券和经济政策的综合数据。主要数据集包括每日国库报告、月度国库报告、国债拍卖数据、通胀保值国债(TIPS)、国际资本流动(TIC)和制裁数据。财政部是美国政府财政数据和主权债务信息的权威来源。" + }, + "website": "https://home.treasury.gov", + "data_url": "https://fiscaldata.treasury.gov", + "api_url": "https://fiscaldata.treasury.gov/api-documentation/", + "country": "US", + "domains": [ + "finance", + "fiscal-policy", + "government-debt", + "treasury-securities", + "international-capital-flows", + "sanctions" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "treasury", + "fiscal-data", + "government-debt", + "treasury-securities", + "tips", + "tic", + "sanctions", + "federal-budget", + "美国财政部", + "国债", + "财政数据", + "通胀保值债券" + ], + "data_content": { + "en": [ + "Daily Treasury Statement - Daily cash and debt operations of the U.S. Treasury", + "Monthly Treasury Statement - Monthly receipts, outlays, and deficit/surplus", + "Treasury Securities - Auction results, yield curves, outstanding debt", + "TIPS - Treasury Inflation-Protected Securities data", + "TIC Data - International capital flows, foreign holdings of U.S. securities", + "Federal Debt - Total public debt outstanding, debt to the penny", + "OFAC Sanctions - Sanctions lists and compliance data", + "Interest Rates - Treasury bill, note, and bond rates" + ], + "zh": [ + "每日国库报告 - 美国国库每日现金和债务操作", + "月度国库报告 - 月度收入、支出和赤字/盈余", + "国债证券 - 拍卖结果、收益率曲线、未偿债务", + "通胀保值国债 - TIPS数据", + "国际资本流动 - TIC数据、外国持有美国证券", + "联邦债务 - 公共债务总额", + "OFAC制裁 - 制裁名单和合规数据", + "利率 - 国库券、票据和债券利率" + ] + }, + "authority_level": "government", + "has_api": true, + "file_path": "countries/north-america/usa/us-treasury.json" + }, + { + "id": "usaid-ddl", + "name": { + "en": "USAID Development Data Library", + "zh": "美国国际开发署发展数据库" + }, + "description": { + "en": "The USAID Development Data Library (DDL) is the U.S. Agency for International Development's public repository for USAID-funded, machine-readable data. It provides open access to datasets across all sectors of international development, including health, education, agriculture, economic growth, democracy, and humanitarian assistance. The DDL supports USAID's open data policy and makes development data freely available to researchers, policymakers, and the public.", + "zh": "美国国际开发署发展数据库(DDL)是美国国际开发署资助的机器可读数据的公共存储库。它提供国际发展各领域的开放数据访问,包括卫生、教育、农业、经济增长、民主治理和人道主义援助。DDL支持USAID的开放数据政策,向研究人员、政策制定者和公众免费提供发展数据。" + }, + "website": "https://www.usaid.gov", + "data_url": "https://data.usaid.gov", + "api_url": "https://data.usaid.gov/developers", + "country": "US", + "domains": [ + "international-development", + "foreign-aid", + "health", + "education", + "agriculture", + "economic-growth", + "humanitarian-assistance", + "democracy-and-governance" + ], + "geographic_scope": "global", + "update_frequency": "irregular", + "tags": [ + "usaid", + "development", + "foreign-aid", + "international-development", + "open-data", + "humanitarian", + "对外援助", + "国际发展", + "美国援助", + "发展数据" + ], + "data_content": { + "en": [ + "Foreign Aid - U.S. government foreign assistance data by country and sector", + "Health Programs - Global health initiative datasets including HIV/AIDS, malaria, maternal health", + "Education - Education program data across developing countries", + "Agriculture and Food Security - Feed the Future and food security datasets", + "Economic Growth - Trade, investment, and economic development data", + "Democracy and Governance - Democratic institution and governance program data", + "Humanitarian Assistance - Disaster response and humanitarian aid data", + "Gender - Gender equality and women's empowerment datasets" + ], + "zh": [ + "对外援助 - 按国家和行业分类的美国政府对外援助数据", + "卫生项目 - 全球卫生倡议数据集,包括艾滋病、疟疾、母婴健康", + "教育 - 发展中国家教育项目数据", + "农业与粮食安全 - 粮食安全数据集", + "经济增长 - 贸易、投资和经济发展数据", + "民主治理 - 民主制度和治理项目数据", + "人道主义援助 - 灾害响应和人道主义援助数据", + "性别 - 性别平等和妇女赋权数据集" + ] + }, + "authority_level": "government", + "has_api": true, + "file_path": "countries/north-america/usa/usaid-ddl.json" + }, + { + "id": "usda-fas", + "name": { + "en": "USDA Foreign Agricultural Service", + "zh": "美国农业部对外农业局" + }, + "description": { + "en": "The Foreign Agricultural Service (FAS) of the U.S. Department of Agriculture links U.S. agriculture to the world to enhance export opportunities and global food security. FAS maintains a global network of agricultural attachés and provides comprehensive data on international agricultural production, supply, demand, and trade through its Production, Supply, and Distribution (PSD) database and Global Agricultural Trade System (GATS).", + "zh": "美国农业部对外农业局(FAS)是连接美国农业与世界的桥梁,致力于增强出口机会和全球粮食安全。FAS在全球维护农业参赞网络,通过其生产、供应和分配(PSD)数据库及全球农业贸易系统(GATS)提供全面的国际农业生产、供应、需求和贸易数据。" + }, + "website": "https://www.fas.usda.gov", + "data_url": "https://apps.fas.usda.gov/psdonline/app/index.html", + "api_url": "https://apps.fas.usda.gov/opendata/swagger/ui/index", + "authority_level": "government", + "country": "US", + "domains": [ + "agriculture", + "trade", + "food-security", + "commodity-markets", + "international-trade" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "agriculture", + "trade", + "export", + "import", + "commodity", + "grain", + "oilseed", + "coffee", + "cotton", + "sugar", + "livestock", + "dairy", + "food-security", + "crop-production", + "psd-database", + "gats", + "global-agriculture", + "usda", + "美国农业部", + "农产品贸易", + "国际农业" + ], + "data_content": { + "en": [ + "Production, Supply, and Distribution (PSD) - Global production, supply, demand, and trade data for major agricultural commodities", + "Global Agricultural Trade System (GATS) - U.S. agricultural import and export statistics by commodity and country", + "World Agricultural Production Reports - Monthly circulars on global crop and livestock production estimates", + "Grain and Feed Data - Global grain production, consumption, trade, and stocks data", + "Oilseeds Data - World oilseed and products production, crush, trade, and stocks", + "Coffee Market Data - Global coffee production, consumption, trade, and stocks by country", + "Cotton Data - World cotton production, mill use, trade, and ending stocks", + "Sugar and Sweeteners Data - Global sugar production, consumption, trade, and prices", + "Livestock and Poultry Data - International meat and dairy production, consumption, and trade", + "Commodity Intelligence Reports - Analysis of agricultural conditions and market developments worldwide" + ], + "zh": [ + "生产、供应和分配(PSD)- 主要农产品的全球生产、供应、需求和贸易数据", + "全球农业贸易系统(GATS)- 按商品和国家分类的美国农产品进出口统计", + "世界农业生产报告 - 全球作物和畜产品产量估算月度通报", + "谷物和饲料数据 - 全球谷物生产、消费、贸易和库存数据", + "油籽数据 - 世界油籽及制品的生产、压榨、贸易和库存", + "咖啡市场数据 - 全球咖啡生产、消费、贸易和库存(按国家)", + "棉花数据 - 世界棉花生产、纺织消费、贸易和期末库存", + "糖和甜味剂数据 - 全球糖的生产、消费、贸易和价格", + "畜牧和家禽数据 - 国际肉类和乳制品的生产、消费和贸易", + "商品情报报告 - 全球农业状况和市场发展分析" + ] + }, + "has_api": true, + "file_path": "countries/north-america/usa/usda-fas.json" + }, + { + "id": "usgs-earthexplorer", + "name": { + "en": "USGS EarthExplorer", + "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卫星,提供支持科学研究、资源管理和灾害响应的数据。" + }, + "website": "https://www.usgs.gov", + "data_url": "https://earthexplorer.usgs.gov/", + "api_url": "https://m2m.cr.usgs.gov/", + "country": null, + "domains": [ + "earth-observation", + "remote-sensing", + "geospatial", + "environmental-monitoring", + "land-cover" + ], + "geographic_scope": "global", + "update_frequency": "daily", + "tags": [ + "satellite-imagery", + "remote-sensing", + "landsat", + "sentinel", + "earth-observation", + "geospatial", + "dem", + "elevation", + "aerial-photography", + "land-cover", + "environmental-monitoring", + "usgs", + "eros", + "disaster-response", + "climate-data" + ], + "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": "australia-abs", + "name": { + "en": "Australian Bureau of Statistics", + "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每五年进行一次人口和住房普查,并通过调查、行政数据整合和创新的卫星测量方法提供全面的数据。" + }, + "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": [ + "demographics", + "economics", + "health", + "environment", + "population", + "housing", + "employment", + "business", + "trade", + "agriculture", + "education", + "innovation", + "government-finance" + ], + "geographic_scope": "national", + "update_frequency": "irregular", + "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" + ], + "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": "aus-aihw", + "name": { + "en": "Australian Institute of Health and Welfare", + "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)是澳大利亚政府独立法定机构,负责提供权威且易于获取的信息和统计数据,以支持更好的政策制定和服务提供决策,从而改善所有澳大利亚人的健康和福祉。该机构收集、管理和报告广泛的健康和福利主题信息,包括健康和福利支出、医院、疾病和伤害、心理健康、老龄化、无家可归、残疾和儿童保护。" + }, + "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": [ + "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": "irregular", + "tags": [ + "health", + "welfare", + "hospitals", + "australia", + "government", + "mental-health", + "aged-care", + "disability", + "indigenous-health", + "child-protection", + "public-health", + "social-services" + ], + "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": "asx", + "name": { + "en": "Australian Securities Exchange", + "zh": "澳大利亚证券交易所" + }, + "description": { + "en": "The Australian Securities Exchange (ASX) is Australia's primary securities exchange and one of the leading financial markets in the Asia-Pacific region. ASX provides official market data covering listed equities, indices (S&P/ASX 200, All Ordinaries), exchange-traded funds, interest-rate and equity derivatives, IPO and secondary-listing filings, short-selling reports, and corporate governance disclosures for companies listed on ASX.", + "zh": "澳大利亚证券交易所(ASX)是澳大利亚主要的证券交易所,也是亚太地区领先的金融市场之一。ASX提供涵盖上市股票、指数(标普/ASX 200、全普指数)、交易所交易基金、利率及股票衍生品、IPO及二次上市披露文件、卖空报告以及上市公司治理披露在内的官方市场数据。" + }, + "website": "https://www.asx.com.au", + "data_url": "https://www.asx.com.au/markets", + "api_url": null, + "authority_level": "market", + "country": "AU", + "domains": [ + "finance", + "securities", + "stock-market", + "derivatives" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "australia", + "asx", + "stock-exchange", + "securities", + "equities", + "ASX-200", + "All-Ordinaries", + "derivatives", + "ETF", + "IPO", + "market-data", + "澳大利亚", + "澳洲证券交易所", + "股票市场", + "澳交所" + ], + "data_content": { + "en": [ + "Real-time and historical equity prices", + "Market indices (S&P/ASX 200, All Ordinaries, sector indices)", + "Listed company announcements and filings", + "IPO and secondary-listing prospectuses", + "Derivatives and interest-rate market data", + "ETF and managed funds data", + "Short-selling and securities lending reports", + "Market statistics and trading activity" + ], + "zh": [ + "股票实时与历史价格", + "市场指数(标普/ASX 200、全普指数、行业指数)", + "上市公司公告与披露文件", + "IPO及二次上市招股书", + "衍生品与利率市场数据", + "ETF与基金数据", + "卖空与证券借贷报告", + "市场统计与交易活动数据" + ] + }, + "has_api": false, + "file_path": "countries/oceania/australia/asx.json" + }, + { + "id": "bureau-of-meteorology", + "name": { + "en": "Bureau of Meteorology", + "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年水资源法运作,该局履行澳大利亚在世界气象组织下的国际义务。" + }, + "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": [ + "weather", + "climate", + "water", + "oceans", + "space-weather", + "atmosphere", + "meteorology", + "hydrology", + "oceanography" + ], + "geographic_scope": "national", + "update_frequency": "real-time", + "tags": [ + "weather", + "climate", + "meteorology", + "australia", + "forecasts", + "warnings", + "rainfall", + "temperature", + "water", + "oceans", + "space-weather", + "satellite", + "radar", + "government", + "oceania" + ], + "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": "nz-stats", + "name": { + "en": "Statistics New Zealand (Stats NZ)", + "zh": "新西兰统计局" + }, + "description": { + "en": "Statistics New Zealand (Stats NZ) is New Zealand's national statistics office, operating under the Statistics Act 1975. It produces a wide range of official statistics covering population, economy, society, environment, and culture. Stats NZ publishes the New Zealand Census of Population and Dwellings every five years, as well as regular releases on national accounts, labour market, price indices, trade, and much more. Its Infoshare platform provides free online access to a large collection of statistical time series data.", + "zh": "新西兰统计局(Stats NZ)是新西兰的国家统计机构,依据1975年《统计法》运作,负责生产涵盖人口、经济、社会、环境和文化的各类官方统计数据。统计局每五年发布一次新西兰人口与住房普查,并定期发布国民账户、劳动力市场、价格指数、贸易等统计数据。其Infoshare平台提供海量统计时间序列数据的免费在线访问。" + }, + "website": "https://www.stats.govt.nz", + "data_url": "https://infoshare.stats.govt.nz", + "api_url": null, + "authority_level": "government", + "country": "NZ", + "domains": [ + "demographics", + "economics", + "social", + "employment", + "prices", + "trade", + "environment", + "agriculture", + "housing", + "education", + "health" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "new-zealand", + "新西兰", + "stats-nz", + "statistics-new-zealand", + "infoshare", + "population", + "人口", + "census", + "人口普查", + "gdp", + "国内生产总值", + "national-accounts", + "国民账户", + "labour-market", + "劳动力市场", + "employment", + "就业", + "cpi", + "consumer-price-index", + "消费者价格指数", + "trade", + "贸易", + "exports", + "出口", + "imports", + "进口", + "housing", + "住房", + "environment", + "环境", + "oceania", + "大洋洲", + "pacific", + "太平洋", + "official-statistics", + "官方统计", + "open-data", + "开放数据" + ], + "data_content": { + "en": [ + "Population and Demography - census data, population estimates, births, deaths, migration, age and ethnic distribution", + "National Accounts - GDP, gross national income, expenditure and income approaches, sector accounts", + "Labour Market - employment, unemployment, underemployment, earnings, hours worked, labour force participation", + "Prices - Consumer Price Index (CPI), Producers Price Index (PPI), housing price index, farm expenses index", + "International Trade - merchandise trade (exports and imports by commodity and country), balance of payments, current account", + "Business Statistics - business demography, industry production, retail trade, building consents", + "Housing and Construction - building consents, dwelling counts, residential property transfers", + "Agriculture - farm production, livestock numbers, horticultural crops, fisheries", + "Social Statistics - education enrolments, crime statistics, health outcomes, income and poverty indicators", + "Environment - environmental-economic accounts, greenhouse gas emissions, waste, water, biodiversity", + "Tourism - visitor arrivals and departures, tourism satellite account", + "Infoshare - interactive data portal with hundreds of statistical time series across all topics" + ], + "zh": [ + "人口与人口统计 - 人口普查数据、人口估计、出生、死亡、移民、年龄和族裔分布", + "国民账户 - GDP、国民总收入、支出法和收入法、部门账户", + "劳动力市场 - 就业、失业、就业不足、收入、工时、劳动参与率", + "价格 - 消费者价格指数(CPI)、生产者价格指数(PPI)、住房价格指数、农业支出指数", + "国际贸易 - 商品贸易(按商品和国家分类的出口和进口)、国际收支、经常账户", + "商业统计 - 企业人口统计、工业产出、零售贸易、建筑许可", + "住房与建筑 - 建筑许可、住宅数量、住宅房产转让", + "农业 - 农场产出、牲畜数量、园艺作物、渔业", + "社会统计 - 教育入学率、犯罪统计、健康结果、收入和贫困指标", + "环境 - 环境经济账户、温室气体排放、废物、水、生物多样性", + "旅游业 - 游客到达和离境、旅游卫星账户", + "Infoshare - 覆盖所有主题的数百个统计时间序列的交互式数据门户" + ] + }, + "has_api": false, + "file_path": "countries/oceania/new-zealand/nz-stats.json" + }, + { + "id": "argentina-indec", + "name": { + "en": "National Institute of Statistics and Censuses (INDEC)", + "zh": "阿根廷国家统计与普查局" + }, + "description": { + "en": "Official statistical agency of Argentina providing demographic, economic, and social data", + "zh": "阿根廷官方统计机构,提供人口、经济和社会数据" + }, + "website": "https://www.indec.gob.ar", + "data_url": "https://www.indec.gob.ar/indec/web/Nivel3-Tema-3-35", + "api_url": "https://apis.datos.gob.ar/series/api/", + "authority_level": "government", + "country": "AR", + "geographic_scope": "national", + "update_frequency": "monthly", + "domains": [ + "demographics", + "economics", + "trade", + "employment", + "social" + ], + "tags": [ + "statistics", + "argentina", + "south-america", + "government-data", + "census" + ], + "data_content": { + "en": [ + "National Census - population, housing, economic census", + "Consumer Price Index (IPC) and inflation statistics", + "Foreign trade - imports and exports by product and partner", + "Labour market - employment, unemployment, wages", + "National accounts - GDP, industrial production", + "Poverty and income distribution" + ], + "zh": [ + "国家普查 - 人口、住房、经济普查", + "消费者价格指数(IPC)和通胀统计", + "对外贸易 - 按产品和伙伴分类的进出口", + "劳动力市场 - 就业、失业、工资", + "国民账户 - GDP、工业生产", + "贫困和收入分配" + ] + }, + "has_api": true, + "file_path": "countries/south-america/argentina/argentina-indec.json" + }, + { + "id": "brazil-bcb", + "name": { + "en": "Central Bank of Brazil", + "zh": "巴西中央银行", + "native": "Banco Central do Brasil" + }, + "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访问。" + }, + "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", + "financial-statistics", + "banking", + "payment-systems", + "exchange-rates", + "interest-rates", + "credit-data", + "balance-of-payments", + "financial-stability", + "currency-and-coins" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "central-bank", + "brazil", + "monetary-policy", + "financial-statistics", + "exchange-rates", + "interest-rates", + "credit-data", + "payment-systems", + "banking", + "south-america", + "open-data", + "api" + ], + "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和通胀预期", + "开放金融数据 - 金融机构开放数据" + ] + }, + "authority_level": "government", + "has_api": true, + "file_path": "countries/south-america/brazil/brazil-bcb.json" + }, + { + "id": "brazil-mapa", + "name": { + "en": "Brazil Ministry of Agriculture and Livestock", + "zh": "巴西农业和畜牧部" + }, + "description": { + "en": "The Ministry of Agriculture and Livestock (MAPA) of Brazil is the federal government body responsible for formulating and implementing policies for the development of agriculture, livestock, and agribusiness. MAPA publishes comprehensive statistics on Brazilian agricultural production, crop forecasts, phytosanitary data, animal health, rural credit, and agricultural trade. Brazil is the world's largest producer and exporter of coffee, soybeans, sugar, and orange juice, making MAPA a critical global data source for agricultural commodities.", + "zh": "巴西农业和畜牧部(MAPA)是负责制定和实施农业、畜牧业和农业综合企业发展政策的联邦政府机构。MAPA发布巴西农业生产、作物预测、植物检疫、动物卫生、农村信贷和农业贸易的综合统计数据。巴西是全球最大的咖啡、大豆、糖和橙汁生产国和出口国,使MAPA成为农产品领域的关键全球数据源。" + }, + "website": "https://www.gov.br/agricultura", + "data_url": "https://indicadores.agricultura.gov.br/agrostat/index.htm", + "api_url": null, + "authority_level": "government", + "country": "BR", + "domains": [ + "agriculture", + "livestock", + "trade", + "food-safety" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "agriculture", + "livestock", + "coffee", + "soybean", + "sugar", + "corn", + "beef", + "poultry", + "crop-forecast", + "rural-credit", + "agribusiness", + "agrostat", + "brazil", + "巴西农业", + "咖啡", + "大豆", + "农产品" + ], + "data_content": { + "en": [ + "Crop Production Statistics - Area planted, harvested, and production volumes for major crops (soybeans, corn, coffee, sugar cane, cotton)", + "AgroStat Trade Data - Brazilian agricultural export and import statistics by product, country, and state of origin", + "Coffee Statistics - Production, exports, domestic consumption, and stocks of Brazilian coffee by variety and state", + "Livestock Data - Cattle herd size, beef and poultry production, slaughter volumes, and animal health indicators", + "Crop Forecasts - Monthly crop production forecasts and harvest estimates", + "Rural Credit - Agricultural financing data, credit disbursements by program, region, and crop", + "Phytosanitary Data - Plant health surveillance, pest and disease monitoring, quarantine statistics", + "Organic Agriculture - Certified organic producers, area, and product categories", + "Agricultural Insurance - Crop insurance coverage, claims, and indemnity data by state and product", + "Grain Stocks - Official grain stock positions and storage capacity by region" + ], + "zh": [ + "作物生产统计 - 主要作物(大豆、玉米、咖啡、甘蔗、棉花)的种植面积、收获面积和产量", + "AgroStat贸易数据 - 按产品、国家和产地州分类的巴西农产品进出口统计", + "咖啡统计 - 按品种和州分类的巴西咖啡产量、出口、国内消费和库存", + "畜牧数据 - 牛群规模、牛肉和家禽产量、屠宰量和动物卫生指标", + "作物预测 - 月度作物产量预测和收成估算", + "农村信贷 - 按项目、地区和作物分类的农业融资数据和信贷发放", + "植物检疫数据 - 植物健康监测、病虫害监测、检疫统计", + "有机农业 - 认证有机生产者、面积和产品类别", + "农业保险 - 按州和产品分类的作物保险覆盖、索赔和赔偿数据", + "粮食库存 - 按地区分类的官方粮食库存状况和仓储容量" + ] + }, + "has_api": false, + "file_path": "countries/south-america/brazil/brazil-mapa.json" + }, + { + "id": "brazil-mdic-secex", + "name": { + "en": "Brazil Ministry of Development, Industry, Commerce and Services - Foreign Trade Secretariat", + "zh": "巴西发展、工业、商业和服务部外贸秘书处" + }, + "description": { + "en": "The Foreign Trade Secretariat (SECEX) under Brazil's Ministry of Development, Industry, Commerce and Services (MDIC) is the official source for Brazilian foreign trade statistics. Through its ComexStat platform, SECEX provides comprehensive and granular data on Brazil's international trade, including exports and imports by product (NCM/HS codes), country, state, port of entry, and transportation mode. The data covers all officially registered foreign trade transactions and is widely used for economic analysis and trade policy research.", + "zh": "巴西发展、工业、商业和服务部(MDIC)下属的外贸秘书处(SECEX)是巴西外贸统计的官方来源。通过其ComexStat平台,SECEX提供全面细致的巴西国际贸易数据,包括按产品(NCM/HS编码)、国家、州、入境口岸和运输方式分类的进出口数据。数据涵盖所有官方登记的外贸交易,广泛用于经济分析和贸易政策研究。" + }, + "website": "https://www.gov.br/mdic", + "data_url": "https://comexstat.mdic.gov.br/en/home", + "api_url": "https://comexstat.mdic.gov.br/en/about/api", + "authority_level": "government", + "country": "BR", + "domains": [ + "trade", + "economics", + "industry" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "foreign-trade", + "export", + "import", + "comexstat", + "trade-balance", + "hs-code", + "ncm", + "customs", + "brazil", + "trade-statistics", + "巴西贸易", + "进出口", + "外贸统计", + "贸易平衡" + ], + "data_content": { + "en": [ + "Export Statistics - Brazilian exports by product (NCM/HS), destination country, state of origin, port, and transportation mode", + "Import Statistics - Imports by product, country of origin, state of destination, entry port, and transportation mode", + "Trade Balance - Monthly and annual trade balance data with breakdown by major trading partners", + "Historical Trade Series - Long-term foreign trade time series dating back to 1997", + "Trade by Economic Block - Export and import data aggregated by economic blocs (Mercosur, EU, NAFTA, BRICS, etc.)", + "Trade by Factor Aggregate - Exports classified by technology intensity and factor content (basic, semi-manufactured, manufactured)", + "State-Level Trade Data - Foreign trade statistics disaggregated by Brazilian state", + "Commodity Trade Detail - Detailed product-level trade data at 8-digit NCM code granularity" + ], + "zh": [ + "出口统计 - 按产品(NCM/HS)、目的地国家、产地州、港口和运输方式分类的巴西出口数据", + "进口统计 - 按产品、原产国、目的地州、入境港口和运输方式分类的进口数据", + "贸易平衡 - 按主要贸易伙伴细分的月度和年度贸易平衡数据", + "历史贸易序列 - 可追溯至1997年的长期外贸时间序列", + "按经济集团贸易 - 按经济集团(南方共同市场、欧盟、北美自贸区、金砖国家等)汇总的进出口数据", + "按要素分类贸易 - 按技术密度和要素含量(初级、半制成品、制成品)分类的出口", + "州级贸易数据 - 按巴西各州细分的外贸统计", + "商品贸易明细 - 8位NCM编码粒度的详细产品级贸易数据" + ] + }, + "has_api": true, + "file_path": "countries/south-america/brazil/brazil-mdic-secex.json" + }, + { + "id": "brazil-cecafe", + "name": { + "en": "Brazilian Coffee Exporters Council", + "zh": "巴西咖啡出口商协会" + }, + "description": { + "en": "CECAFE (Conselho dos Exportadores de Café do Brasil) is the Brazilian Coffee Exporters Council, serving as a national and international reference forum for discussing topics that add value to the export sector and Brazilian coffee. The council publishes comprehensive monthly statistical reports on Brazilian coffee exports, including detailed breakdowns by coffee type (Arabica, Robusta/Conilon, Soluble, Roasted), destination countries, export volumes, foreign exchange revenues, and average prices. CECAFE reports are widely used as authoritative sources for Brazil's coffee export performance and market trends.", + "zh": "CECAFE(巴西咖啡出口商协会)是巴西咖啡出口商理事会,是讨论为出口部门和巴西咖啡增值的主题的国家和国际参考论坛。该协会发布巴西咖啡出口的全面月度统计报告,包括按咖啡类型(阿拉比卡、罗布斯塔/科尼隆、速溶、烘焙)、目的地国家、出口量、外汇收入和平均价格的详细分类。CECAFE报告被广泛用作巴西咖啡出口表现和市场趋势的权威来源。" + }, + "website": "https://www.cecafe.com.br/", + "data_url": "https://www.cecafe.com.br/publicacoes/relatorio-de-exportacoes/", + "api_url": null, + "country": "BR", + "geographic_scope": "national", + "domains": [ + "trade", + "agriculture", + "commodities", + "exports" + ], + "update_frequency": "monthly", + "tags": [ + "brazil", + "巴西", + "coffee", + "咖啡", + "coffee-exports", + "咖啡出口", + "export-statistics", + "出口统计", + "trade-data", + "贸易数据", + "commodities", + "大宗商品", + "agriculture", + "农业", + "arabica", + "阿拉比卡", + "robusta", + "罗布斯塔", + "monthly-reports", + "月度报告", + "cecafe", + "south-america", + "南美洲", + "industry-association", + "行业协会" + ], + "data_content": { + "en": [ + "Monthly Coffee Export Statistics - total export volumes in 60kg bags by month and cumulative annual totals", + "Coffee Type Breakdown - detailed statistics for Arabica, Robusta/Conilon, Soluble coffee, and Roasted coffee", + "Export Destinations - country-by-country breakdown of Brazilian coffee exports", + "Foreign Exchange Revenue - total revenue and average prices per bag in US dollars", + "Specialty Coffee Exports - statistics on differentiated and specialty coffee categories", + "Port and Logistics Data - export data by Brazilian ports", + "Year-over-Year Comparisons - comparative analysis with previous year's export performance", + "Market Analysis - trends and insights on Brazilian coffee export market" + ], + "zh": [ + "月度咖啡出口统计 - 按月和累计年度总计的60公斤袋出口总量", + "咖啡类型分类 - 阿拉比卡、罗布斯塔/科尼隆、速溶咖啡和烘焙咖啡的详细统计", + "出口目的地 - 巴西咖啡出口的逐国分类", + "外汇收入 - 以美元计的总收入和每袋平均价格", + "特色咖啡出口 - 差异化和特色咖啡类别的统计数据", + "港口和物流数据 - 按巴西港口的出口数据", + "同比比较 - 与上一年出口表现的比较分析", + "市场分析 - 巴西咖啡出口市场的趋势和见解" + ] + }, + "authority_level": "market", + "has_api": false, + "file_path": "countries/south-america/brazil-cecafe.json" + }, + { + "id": "brazil-conab", + "name": { + "en": "National Supply Company (CONAB)", + "zh": "巴西国家商品供应公司" + }, + "description": { + "en": "CONAB (Companhia Nacional de Abastecimento) is a Brazilian government public enterprise under the Ministry of Agrarian Development and Family Farming. Established in 1990, CONAB is responsible for food supply management, agricultural support, and market information across Brazil. The organization publishes authoritative quarterly bulletins on Brazilian coffee production (Boletim de Acompanhamento da Safra de Café), providing detailed forecasts and analysis of coffee harvests including production volumes, planted area, productivity estimates, and breakdowns by coffee type (Arabica and Robusta/Conilon). CONAB also provides data on grains, storage facilities, agricultural pricing, and public food programs.", + "zh": "CONAB(巴西国家商品供应公司)是隶属于巴西农业发展和家庭农业部的政府公共企业。CONAB成立于1990年,负责巴西的粮食供应管理、农业支持和市场信息。该机构发布权威的巴西咖啡产量季度公报(Boletim de Acompanhamento da Safra de Café),提供咖啡收成的详细预测和分析,包括产量、种植面积、生产力估算以及按咖啡类型(阿拉比卡和罗布斯塔/科尼隆)的分类。CONAB还提供粮食、仓储设施、农产品定价和公共食品计划的数据。" + }, + "website": "https://www.gov.br/conab/pt-br", + "data_url": "https://www.gov.br/conab/pt-br/atuacao/informacoes-agropecuarias/safras/safra-de-cafe", + "api_url": null, + "authority_level": "government", + "country": "BR", + "domains": [ + "agriculture", + "commodities", + "food-supply", + "trade" + ], + "geographic_scope": "national", + "update_frequency": "quarterly", + "tags": [ + "brazil", + "巴西", + "coffee", + "咖啡", + "coffee-production", + "咖啡产量", + "crop-forecasts", + "作物预测", + "agriculture", + "农业", + "commodities", + "大宗商品", + "arabica", + "阿拉比卡", + "robusta", + "罗布斯塔", + "conilon", + "科尼隆", + "harvest", + "收成", + "grains", + "粮食", + "food-supply", + "粮食供应", + "agricultural-statistics", + "农业统计", + "quarterly-reports", + "季度报告", + "conab", + "south-america", + "南美洲", + "government-data", + "政府数据", + "production-estimates", + "产量估算", + "inventory", + "库存", + "exports", + "出口" + ], + "data_content": { + "en": [ + "Coffee Harvest Bulletins - quarterly monitoring reports (Boletim de Acompanhamento da Safra de Café) published four times per year (February, May, September, January)", + "Coffee Production Forecasts - detailed estimates of total production in 60kg bags for current harvest year", + "Coffee Type Breakdown - separate production data for Arabica and Robusta/Conilon varieties", + "Planted Area and Productivity - statistics on coffee cultivation area and yield per hectare by state", + "Geographic Distribution - coffee production data by Brazilian states and major producing regions", + "Year-over-Year Comparisons - analysis comparing current harvest forecasts with previous years", + "Grain Production Data - harvest forecasts and monitoring for major grains and oilseeds", + "Agricultural Pricing Information - minimum guaranteed prices and public program reference prices", + "Storage and Warehouse Data - information on certified storage facilities across Brazil", + "Family Farming Programs - data on public food acquisition programs (PAA) supporting small farmers" + ], + "zh": [ + "咖啡收成公报 - 每年发布四次的季度监测报告(Boletim de Acompanhamento da Safra de Café)(2月、5月、9月、1月)", + "咖啡产量预测 - 以60公斤袋为单位的当前收成年度总产量详细估算", + "咖啡类型分类 - 阿拉比卡和罗布斯塔/科尼隆品种的单独产量数据", + "种植面积和生产力 - 按州分类的咖啡种植面积和每公顷产量统计", + "地理分布 - 按巴西各州和主要产区的咖啡产量数据", + "同比比较 - 将当前收成预测与往年进行比较分析", + "粮食产量数据 - 主要粮食和油料作物的收成预测和监测", + "农产品定价信息 - 最低保证价格和公共计划参考价格", + "仓储和仓库数据 - 巴西各地认证仓储设施的信息", + "家庭农业计划 - 支持小农户的公共食品采购计划(PAA)数据" + ] + }, + "has_api": false, + "file_path": "countries/south-america/brazil-conab.json" + }, + { + "id": "brazil-ibge", + "name": { + "en": "Brazilian Institute of Geography and Statistics", + "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年,是巴西领土、人口和经济官方数据的主要来源。" + }, + "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": [ + "demographics", + "economics", + "geography", + "cartography", + "environment", + "population", + "census", + "labor", + "trade", + "agriculture", + "industry", + "social" + ], + "geographic_scope": "national", + "update_frequency": "irregular", + "tags": [ + "brazil", + "巴西", + "national-statistics", + "国家统计", + "census", + "人口普查", + "demographics", + "人口统计", + "economic-indicators", + "经济指标", + "geographic-data", + "地理数据", + "cartography", + "制图", + "population-data", + "人口数据", + "labor-statistics", + "劳动统计", + "trade-data", "贸易数据", "environmental-data", "环境数据", @@ -5984,218 +38378,1255 @@ "api-available", "south-america", "南美洲", - "IBGE" + "ibge" + ], + "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": "chile-ine", + "name": { + "en": "National Statistics Institute of Chile (INE)", + "zh": "智利国家统计局" + }, + "description": { + "en": "Official statistical agency of Chile providing demographic, economic, and social statistics", + "zh": "智利官方统计机构,提供人口、经济和社会统计数据" + }, + "website": "https://www.ine.gob.cl", + "data_url": "https://www.ine.gob.cl/estadisticas", + "api_url": null, + "authority_level": "government", + "country": "CL", + "geographic_scope": "national", + "update_frequency": "monthly", + "domains": [ + "demographics", + "economics", + "employment", + "social", + "environment" + ], + "tags": [ + "statistics", + "chile", + "south-america", + "government-data" + ], + "data_content": { + "en": [ + "Population Census and demographic projections", + "Consumer Price Index (IPC) and inflation", + "Employment and labour force surveys", + "Economic activity indicators", + "Environmental statistics", + "Gender and social statistics" + ], + "zh": [ + "人口普查和人口预测", + "消费者价格指数(IPC)和通胀", + "就业和劳动力调查", + "经济活动指标", + "环境统计", + "性别和社会统计" + ] + }, + "has_api": false, + "file_path": "countries/south-america/chile/chile-ine.json" + }, + { + "id": "colombia-dane", + "name": { + "en": "National Administrative Department of Statistics (DANE)", + "zh": "哥伦比亚国家统计局", + "native": "Departamento Administrativo Nacional de Estadística (DANE)" + }, + "description": { + "en": "The National Administrative Department of Statistics (DANE) is Colombia's official national statistics agency, responsible for the production and dissemination of official statistics on population, economy, industry, agriculture, and social conditions. DANE conducts national censuses, household surveys, and economic censuses, and provides open data access through its statistics portal and microdata repository.", + "zh": "哥伦比亚国家统计局(DANE)是哥伦比亚官方国家统计机构,负责生产和发布有关人口、经济、工业、农业和社会状况的官方统计数据。DANE开展全国人口普查、住户调查和经济普查,并通过其统计门户网站和微观数据库提供开放数据访问。" + }, + "website": "https://www.dane.gov.co", + "data_url": "https://www.dane.gov.co/index.php/estadisticas-por-tema", + "api_url": "https://microdatos.dane.gov.co/", + "authority_level": "government", + "country": "CO", + "domains": [ + "economics", + "demographics", + "agriculture", + "social", + "employment", + "prices", + "trade" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "colombia", + "dane", + "estadisticas", + "national-statistics", + "official-statistics", + "population", + "census", + "gdp", + "cpi", + "inflation", + "labor-market", + "employment", + "household-survey", + "encuesta", + "agriculture", + "trade", + "microdata", + "哥伦比亚", + "哥伦比亚统计局", + "人口普查", + "经济统计", + "就业", + "物价", + "农业", + "南美洲" + ], + "data_content": { + "en": [ + "Population census and demographic statistics", + "GDP and national accounts", + "Consumer price index and inflation", + "Labor market and employment (GEIH survey)", + "Foreign trade statistics (imports and exports)", + "Agricultural production and crop surveys", + "Industrial and manufacturing census", + "Housing and quality of life surveys", + "Income distribution and poverty indicators", + "Microdata repository for research access" + ], + "zh": [ + "人口普查与人口统计", + "GDP与国民账户", + "消费者价格指数与通货膨胀", + "劳动力市场与就业(GEIH调查)", + "对外贸易统计(进出口)", + "农业生产与作物调查", + "工业与制造业普查", + "住房与生活质量调查", + "收入分配与贫困指标", + "供研究使用的微观数据库" + ] + }, + "has_api": true, + "file_path": "countries/south-america/colombia/colombia-dane.json" + }, + { + "id": "peru-inei", + "name": { + "en": "National Institute of Statistics and Informatics of Peru (INEI)", + "zh": "秘鲁国家统计和信息学研究所" + }, + "description": { + "en": "The National Institute of Statistics and Informatics (Instituto Nacional de Estadística e Informática, INEI) is the official statistical agency of Peru, responsible for producing and disseminating official national statistics covering economic activity, population, employment, prices, trade, and social conditions. INEI conducts national censuses, household surveys, and compiles key macroeconomic indicators for Peru.", + "zh": "秘鲁国家统计和信息学研究所(INEI)是秘鲁官方统计机构,负责生产和发布涵盖经济活动、人口、就业、价格、贸易和社会状况的官方国家统计数据。INEI开展全国人口普查、家庭调查,并编制秘鲁主要宏观经济指标。" + }, + "website": "https://www.inei.gob.pe", + "data_url": "https://www.inei.gob.pe/estadisticas/", + "api_url": null, + "authority_level": "government", + "country": "PE", + "geographic_scope": "national", + "update_frequency": "monthly", + "domains": [ + "demographics", + "economics", + "employment", + "prices", + "trade", + "social", + "agriculture", + "industry" + ], + "tags": [ + "peru", + "inei", + "peru-statistics", + "instituto-nacional-estadistica", + "population-census", + "south-america", + "latin-america", + "gdp", + "national-accounts", + "cpi", + "inflation", + "employment", + "household-survey", + "poverty", + "秘鲁", + "秘鲁统计局", + "国家统计", + "人口普查", + "经济统计", + "消费价格", + "就业", + "家庭调查", + "贫困", + "拉丁美洲" + ], + "data_content": { + "en": [ + "GDP and national accounts by sector", + "Population census and demographic projections", + "Consumer price index (IPC) and inflation", + "National household survey (ENAHO) - poverty and living conditions", + "Employment and labour force survey", + "Foreign trade statistics by product and partner country", + "Industrial production and manufacturing output", + "Agricultural production statistics", + "Business and enterprise statistics", + "Health and education indicators", + "Regional and subnational statistics by department", + "Social and welfare statistics" + ], + "zh": [ + "按行业GDP与国民账户", + "人口普查与人口预测", + "消费者价格指数(IPC)与通货膨胀", + "全国家庭调查(ENAHO)- 贫困与生活条件", + "就业与劳动力调查", + "按产品和伙伴国分类的对外贸易统计", + "工业生产与制造业产出", + "农业生产统计", + "企业与工商统计", + "卫生和教育指标", + "按省份的地区和次国家统计", + "社会和福利统计" + ] + }, + "has_api": false, + "file_path": "countries/south-america/peru/peru-inei.json" + }, + { + "id": "usgs", + "name": { + "en": "U.S. Geological Survey (USGS)", + "zh": "美国地质调查局" + }, + "description": { + "en": "The U.S. Geological Survey is a scientific agency of the United States government providing reliable scientific information on natural hazards, natural resources, ecosystems, environmental health, and climate change. USGS provides extensive geospatial, geological, hydrological, and biological datasets covering earthquakes, volcanoes, minerals, water resources, and land use.", + "zh": "美国地质调查局是美国政府科学机构,提供有关自然灾害、自然资源、生态系统、环境健康和气候变化的可靠科学信息。USGS提供广泛的地理空间、地质、水文和生物数据集,涵盖地震、火山、矿产、水资源和土地利用。" + }, + "website": "https://www.usgs.gov", + "data_url": "https://www.usgs.gov/products/data", + "api_url": "https://www.usgs.gov/products/web-tools/apis", + "country": "US", + "domains": [ + "geology", + "earthquakes", + "volcanoes", + "water-resources", + "mineral-resources", + "natural-hazards", + "earth-science" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "geology", + "earthquakes", + "volcanoes", + "water", + "minerals", + "natural-hazards", + "geospatial", + "open-data", + "api", + "government-data" + ], + "data_content": { + "en": [ + "Earthquake data - Real-time and historical earthquake catalog, seismic hazard maps", + "Volcano monitoring - Eruption alerts, volcanic activity data, ash advisories", + "Mineral resources - Mineral commodity data, mine locations, resource assessments", + "Water resources - Streamflow, groundwater, water quality monitoring", + "Geologic maps - National and regional geologic mapping products", + "Land cover / Land use - NLCD, remote sensing, land change monitoring", + "Natural hazards - Landslide, flood, wildfire, coastal erosion data", + "Topographic maps - National Map, elevation data, lidar surveys" + ], + "zh": [ + "地震数据 - 实时和历史地震目录、地震危险性图", + "火山监测 - 喷发预警、火山活动数据、火山灰通报", + "矿产资源 - 矿产商品数据、矿点位置、资源评估", + "水资源 - 径流、地下水、水质监测", + "地质图 - 全国和区域地质制图产品", + "土地覆盖/利用 - 国家土地覆盖数据库、遥感、土地变化监测", + "自然灾害 - 滑坡、洪水、野火、海岸侵蚀数据", + "地形图 - 国家地图、高程数据、激光雷达测量" + ] + }, + "authority_level": "government", + "has_api": true, + "file_path": "countries/us/geology/usgs.json" + }, + { + "id": "india-meity", + "name": { + "en": "Ministry of Electronics and Information Technology of India", + "zh": "印度电子和信息技术部" + }, + "description": { + "en": "MeitY is the Indian government ministry responsible for IT policy, electronics manufacturing (including PLI scheme), digital governance, and cybersecurity. It publishes data on electronics production, exports, and digital infrastructure.", + "zh": "印度电子和信息技术部是负责IT政策、电子制造(包括PLI计划)、数字治理和网络安全的印度政府部门。发布电子产品生产、出口和数字基础设施数据。" + }, + "website": "https://www.meity.gov.in", + "data_url": "https://www.meity.gov.in/content/annual-report", + "country": "IN", + "domains": [ + "technology", + "manufacturing", + "trade" + ], + "tags": [ + "electronics", + "it-policy", + "pli-scheme", + "digital-governance" + ], + "authority_level": "government", + "update_frequency": "annual", + "geographic_scope": "national", + "data_content": { + "en": [ + "Electronics Production - Domestic electronics manufacturing output and growth", + "IT Exports - Software and IT services export revenue", + "PLI Scheme - Production Linked Incentive scheme progress and investments", + "Digital Infrastructure - Internet penetration, digital payment, and e-governance metrics" + ], + "zh": [ + "电子产品生产 - 国内电子制造产值和增长", + "IT出口 - 软件和IT服务出口收入", + "PLI计划 - 生产挂钩激励计划进展和投资", + "数字基础设施 - 互联网普及率、数字支付和电子政务指标" + ] + }, + "api_url": null, + "has_api": false, + "file_path": "india/technology/india-meity.json" + }, + { + "id": "cgiar-research-data", + "name": { + "en": "CGIAR Research Data", + "zh": "国际农业研究磋商组织研究数据" + }, + "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)。" + }, + "website": "https://www.cgiar.org", + "data_url": "https://gardian.cgiar.org/", + "api_url": "https://cgspace.cgiar.org/rest", + "country": null, + "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" + ], + "geographic_scope": "global", + "update_frequency": "daily", + "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" + ], + "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", + "name": { + "en": "FAOSTAT - Food and Agriculture Data", + "zh": "粮农组织统计数据库" + }, + "description": { + "en": "FAOSTAT provides free access to food and agriculture data for over 245 countries and territories, covering all FAO regional groupings from 1961 to the most recent year available. The database contains comprehensive statistics on agricultural production, trade, food balances, emissions, land use, inputs, population, and sustainable development indicators.", + "zh": "粮农组织统计数据库(FAOSTAT)提供超过245个国家和地区的粮食和农业数据免费访问,涵盖联合国粮农组织所有区域分组,时间跨度从1961年至最新年份。该数据库包含农业生产、贸易、粮食平衡、排放、土地利用、投入品、人口和可持续发展指标等综合统计数据。" + }, + "website": "https://www.fao.org", + "data_url": "https://www.fao.org/faostat/en/", + "api_url": "https://www.fao.org/faostat/en/#faq", + "country": null, + "domains": [ + "agriculture", + "food-security", + "nutrition", + "trade", + "climate-change", + "environment", + "land-use", + "forestry", + "fisheries", + "livestock", + "crops", + "investment", + "employment", + "prices" + ], + "geographic_scope": "global", + "update_frequency": "irregular", + "tags": [ + "agriculture", + "food-security", + "nutrition", + "trade", + "climate-change", + "land-use", + "forestry", + "fisheries", + "livestock", + "crops", + "fao", + "united-nations", + "sdg", + "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": "ico-coffee", + "name": { + "en": "International Coffee Organization", + "zh": "国际咖啡组织" + }, + "description": { + "en": "The International Coffee Organization (ICO) is the main intergovernmental organization for coffee, bringing together exporting and importing countries to address challenges facing the world coffee sector through international cooperation. Established in 1963 under the auspices of the United Nations, ICO collects and publishes comprehensive statistics on global coffee production, trade, consumption, and prices, serving as the authoritative source for the international coffee market.", + "zh": "国际咖啡组织(ICO)是咖啡领域的主要政府间国际组织,汇集出口国和进口国,通过国际合作应对全球咖啡行业面临的挑战。ICO于1963年在联合国主持下成立,收集并发布全球咖啡生产、贸易、消费和价格的综合统计数据,是国际咖啡市场的权威数据来源。" + }, + "website": "https://www.ico.org", + "data_url": "https://www.ico.org/trade_statistics.asp", + "api_url": null, + "authority_level": "international", + "country": null, + "domains": [ + "agriculture", + "commodity-markets", + "trade", + "food-and-beverage" + ], + "geographic_scope": "global", + "update_frequency": "monthly", + "tags": [ + "coffee", + "咖啡", + "commodity", + "agriculture", + "trade", + "production", + "consumption", + "export", + "import", + "coffee-prices", + "arabica", + "robusta", + "ico-composite-indicator", + "国际咖啡组织", + "咖啡贸易", + "大宗商品" + ], + "data_content": { + "en": [ + "Coffee Production - Annual and monthly production data by country, broken down by Arabica and Robusta varieties", + "Coffee Trade Statistics - Exports and imports by country, form (green, roasted, soluble), and destination/origin", + "Coffee Consumption - Per capita and total consumption by country and region", + "ICO Composite Indicator Price - Daily and monthly composite and group indicator prices for coffee", + "Coffee Inventories - Certified stocks in importing countries and port stocks", + "Historical Data Series - Long-term time series dating back to the 1960s for production, trade, and prices", + "Country Coffee Profiles - Detailed statistical profiles for major producing and consuming countries", + "Market Reports - Monthly and annual coffee market reports with analysis and forecasts" + ], + "zh": [ + "咖啡产量 - 按国家和阿拉比卡/罗布斯塔品种分类的年度和月度产量数据", + "咖啡贸易统计 - 按国家、形态(生豆、烘焙、速溶)和目的地/产地分类的进出口数据", + "咖啡消费 - 按国家和地区分类的人均和总消费量", + "ICO综合指标价格 - 咖啡的每日和每月综合及分组指标价格", + "咖啡库存 - 进口国认证库存和港口库存", + "历史数据系列 - 可追溯至1960年代的产量、贸易和价格长期时间序列", + "国家咖啡概况 - 主要生产国和消费国的详细统计概况", + "市场报告 - 附带分析和预测的月度和年度咖啡市场报告" + ] + }, + "has_api": false, + "file_path": "international/agriculture/ico-coffee.json" + }, + { + "id": "cdp", + "name": { + "en": "CDP - Carbon Disclosure Project", + "zh": "碳信息披露项目" + }, + "description": { + "en": "CDP (formerly the Carbon Disclosure Project) runs the world's largest environmental disclosure system for companies, cities, states, and regions. Its Open Data Portal provides company-level disclosures on climate change, water security, and forests, including Scope 1/2/3 greenhouse gas emissions, climate risk assessments, and emissions-reduction targets.", + "zh": "CDP(原碳信息披露项目)运营全球最大的企业、城市、州省和地区环境信息披露系统。其开放数据门户提供公司层级的气候变化、水安全与森林披露数据,包括范围1/2/3温室气体排放、气候风险评估和减排目标。" + }, + "website": "https://www.cdp.net", + "data_url": "https://www.cdp.net/en/data", + "api_url": null, + "authority_level": "research", + "country": null, + "domains": [ + "climate", + "environment", + "finance" + ], + "geographic_scope": "global", + "update_frequency": "annual", + "tags": [ + "esg", + "环境信息披露", + "climate-disclosure", + "气候披露", + "corporate-emissions", + "企业排放", + "scope-3", + "范围三", + "carbon-disclosure", + "碳披露", + "climate-risk", + "气候风险", + "CDP" + ], + "data_content": { + "en": [ + "Corporate climate change disclosures including Scope 1/2/3 greenhouse gas emissions", + "Water security and forests disclosures from thousands of companies worldwide", + "Company climate scores (A to D-) and sector-level benchmarking", + "City and regional government environmental disclosures", + "Supply chain emissions and science-based targets data" + ], + "zh": [ + "企业气候变化披露,包括范围1/2/3温室气体排放", + "全球数千家公司的水安全与森林披露", + "公司气候评分(A至D-)和行业基准对比", + "城市和区域政府环境信息披露", + "供应链排放与科学碳目标数据" + ] + }, + "has_api": false, + "file_path": "international/climate/cdp.json" + }, + { + "id": "ecmwf", + "name": { + "en": "European Centre for Medium-Range Weather Forecasts", + "zh": "欧洲中期天气预报中心" + }, + "description": { + "en": "ECMWF is an independent intergovernmental organisation producing global numerical weather predictions and reanalysis datasets including ERA5.", + "zh": "ECMWF是独立的政府间组织,生产全球数值天气预报和再分析数据集(包括ERA5)。" + }, + "website": "https://www.ecmwf.int", + "data_url": "https://cds.climate.copernicus.eu", + "api_url": "https://cds.climate.copernicus.eu/api", + "data_content": { + "en": [ + "Global weather forecasts", + "ERA5 reanalysis", + "seasonal predictions", + "atmospheric composition data", + "ocean wave data" + ], + "zh": [ + "全球天气预报、ERA5再分析数据、季节预测、大气成分数据、海洋波浪数据" + ] + }, + "authority_level": "international", + "update_frequency": "daily", + "domains": [ + "climate", + "environment" + ], + "tags": [ + "weather", + "era5", + "reanalysis", + "forecast", + "climate" + ], + "country": null, + "geographic_scope": "global", + "has_api": true, + "file_path": "international/climate/ecmwf.json" + }, + { + "id": "ember-climate", + "name": { + "en": "Ember Global Electricity Data", + "zh": "Ember全球电力数据平台" + }, + "description": { + "en": "Ember is an independent energy think tank that provides open, transparent data on global electricity generation and carbon emissions from the power sector. It publishes the annual Global Electricity Review and maintains comprehensive datasets covering electricity generation by source, power sector CO2 emissions, and clean energy transition progress for over 200 countries.", + "zh": "Ember是一家独立能源智库,提供全球电力生产和电力部门碳排放的开放透明数据。发布年度《全球电力评估》报告,维护覆盖200多个国家的电力生产来源、电力部门二氧化碳排放和清洁能源转型进展的综合数据集。" + }, + "website": "https://ember-climate.org", + "data_url": "https://ember-climate.org/data/", + "api_url": "https://ember-climate.org/data/data-tools/data-explorer/", + "authority_level": "research", + "country": null, + "domains": [ + "energy", + "climate", + "environment" + ], + "geographic_scope": "global", + "update_frequency": "monthly", + "tags": [ + "electricity", + "电力", + "carbon-emissions", + "碳排放", + "renewable-energy", + "可再生能源", + "power-sector", + "clean-energy", + "energy-transition", + "能源转型", + "coal", + "煤电" ], "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" + "Electricity generation by source (coal, gas, nuclear, wind, solar, hydro, etc.) for 200+ countries", + "Power sector CO2 emissions and carbon intensity of electricity", + "Clean energy share of electricity generation trends", + "Annual Global Electricity Review and regional analysis reports" ], "zh": [ - "人口普查 - 每10年进行一次的全面国家普查(最近一次:2022年)", - "人口统计 - 在两次普查之间进行的简化人口统计", - "年度人口估算 - 每年更新所有城市的人口估算", - "经济指标 - GDP、通货膨胀、贸易统计、月度经济报告", - "劳动统计 - 就业、失业、工资、劳动力调查", - "地理和制图数据 - 官方地图、领土边界、大地测量信息", - "环境统计 - 环境监测和保护数据", - "农业统计 - 作物生产、畜牧业、农村经济", - "工业统计 - 制造业、生产、企业调查", - "社会统计 - 教育、健康、生活条件、家庭调查", - "贸易数据 - 进出口统计、国际商务", - "市级数据 - 市、区和统计区域级别的综合数据" + "200多个国家按来源分类的发电量(煤、气、核、风、光、水等)", + "电力部门二氧化碳排放和电力碳强度", + "清洁能源占发电量比例趋势", + "年度全球电力评估和区域分析报告" ] }, - "authority_level": "government", "has_api": true, - "file_path": "countries/south-america/brazil-ibge.json" + "file_path": "international/climate/ember-climate.json" }, { - "id": "cgiar-research-data", + "id": "global-carbon-project", "name": { - "en": "CGIAR Research Data", - "zh": "国际农业研究磋商组织研究数据" + "en": "Global Carbon Project", + "zh": "全球碳项目" }, "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 Global Carbon Project (GCP) is an international scientific consortium that coordinates and publishes the annual Global Carbon Budget, providing the authoritative assessment of anthropogenic CO2, CH4, and N2O emissions, sinks, and atmospheric concentrations. Data products include country- and sector-level fossil fuel CO2 emissions, land-use change emissions, and ocean/land carbon sink estimates.", + "zh": "全球碳项目(GCP)是国际科学联盟,负责协调并发布年度《全球碳收支》报告,提供人为二氧化碳、甲烷和氧化亚氮排放、吸收汇及大气浓度的权威评估。数据产品包括国家与行业级化石燃料二氧化碳排放、土地利用变化排放以及海洋和陆地碳汇估算。" }, - "website": "https://www.cgiar.org", - "data_url": "https://gardian.cgiar.org/", - "api_url": "https://cgspace.cgiar.org/rest", + "website": "https://www.globalcarbonproject.org", + "data_url": "https://www.globalcarbonproject.org/carbonbudget/", + "api_url": null, + "authority_level": "research", "country": null, "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" + "climate", + "environment", + "energy" ], "geographic_scope": "global", - "update_frequency": "daily", + "update_frequency": "annual", "tags": [ - "agriculture", - "food-security", + "carbon-budget", + "全球碳收支", + "co2-emissions", + "二氧化碳排放", + "methane", + "甲烷", + "carbon-sink", + "碳汇", + "greenhouse-gas", + "温室气体", "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" + "气候变化", + "fossil-fuels", + "化石燃料", + "GCP" ], "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" + "Annual Global Carbon Budget: fossil fuel and land-use change CO2 emissions by country and sector", + "Global methane (CH4) and nitrous oxide (N2O) budgets", + "Ocean and terrestrial carbon sink estimates", + "Historical atmospheric CO2 concentrations and growth rates", + "National emissions trajectories and per-capita emissions data" + ], + "zh": [ + "年度全球碳收支:按国家和行业划分的化石燃料与土地利用变化二氧化碳排放", + "全球甲烷(CH4)和氧化亚氮(N2O)收支", + "海洋和陆地碳汇估算", + "历史大气二氧化碳浓度与增长率", + "各国排放轨迹和人均排放数据" + ] + }, + "has_api": false, + "file_path": "international/climate/global-carbon-project.json" + }, + { + "id": "ipcc", + "name": { + "en": "IPCC Data Distribution Centre", + "zh": "政府间气候变化专门委员会数据分发中心" + }, + "description": { + "en": "The IPCC Data Distribution Centre provides climate, socio-economic, and environmental data, both from the past and projected, to facilitate climate change research.", + "zh": "IPCC数据分发中心提供历史和预测的气候、社会经济及环境数据,用于促进气候变化研究。" + }, + "website": "https://www.ipcc-data.org", + "data_url": "https://www.ipcc-data.org/observ/index.html", + "api_url": null, + "data_content": { + "en": [ + "Climate model outputs", + "observed climate data", + "socio-economic scenarios", + "emission scenarios", + "sea level projections" + ], + "zh": [ + "气候模型输出、观测气候数据、社会经济情景、排放情景、海平面预测" + ] + }, + "authority_level": "international", + "update_frequency": "irregular", + "domains": [ + "climate", + "environment" + ], + "tags": [ + "ipcc", + "climate-change", + "greenhouse-gas", + "temperature", + "sea-level" + ], + "country": null, + "geographic_scope": "global", + "has_api": false, + "file_path": "international/climate/ipcc.json" + }, + { + "id": "unfccc", + "name": { + "en": "UNFCCC - United Nations Framework Convention on Climate Change", + "zh": "联合国气候变化框架公约" + }, + "description": { + "en": "The UNFCCC is the international treaty framework for climate change governance. Its data portal provides access to national greenhouse gas inventories, Nationally Determined Contributions (NDCs), climate finance reports, and adaptation communications submitted by parties to the Convention and the Paris Agreement.", + "zh": "联合国气候变化框架公约是气候变化治理的国际条约框架。其数据门户提供国家温室气体清单、国家自主贡献(NDC)、气候融资报告和缔约方提交的适应通讯。" + }, + "website": "https://unfccc.int", + "data_url": "https://di.unfccc.int", + "api_url": "https://di.unfccc.int/api", + "authority_level": "international", + "country": null, + "domains": [ + "climate", + "environment", + "energy" + ], + "geographic_scope": "global", + "update_frequency": "annual", + "tags": [ + "climate-change", + "气候变化", + "greenhouse-gas", + "温室气体", + "ndc", + "国家自主贡献", + "paris-agreement", + "巴黎协定", + "carbon-neutrality", + "碳中和", + "emissions-inventory", + "排放清单" + ], + "data_content": { + "en": [ + "National greenhouse gas inventory data reported by 197 parties", + "Nationally Determined Contributions (NDCs) and implementation progress", + "Climate finance flows from developed to developing countries", + "National adaptation plans and communications" + ], + "zh": [ + "197个缔约方报告的国家温室气体清单数据", + "国家自主贡献(NDC)及实施进展", + "发达国家向发展中国家的气候融资流量", + "国家适应计划和通讯" + ] + }, + "has_api": true, + "file_path": "international/climate/unfccc.json" + }, + { + "id": "eu-construction", + "name": { + "en": "European Commission - Construction and Buildings", + "zh": "欧盟委员会 - 建筑与建设", + "native": "European Commission - Construction and Buildings" + }, + "description": { + "en": "The European Commission provides comprehensive data on EU construction policies, the Construction Products Regulation (CPR), Energy Performance of Buildings Directive (EPBD), and the European construction industry. Covers sustainable construction, building renovation, and harmonized standards for construction products.", + "zh": "欧盟委员会提供欧盟建筑政策、建筑产品法规(CPR)、建筑能源性能指令(EPBD)和欧洲建筑行业的综合数据。涵盖可持续建筑、建筑翻新和建筑产品协调标准。" + }, + "website": "https://single-market-economy.ec.europa.eu/sectors/construction_en", + "data_url": "https://ec.europa.eu/growth/sectors/construction_en", + "api_url": null, + "country": null, + "domains": [ + "construction", + "regulation", + "energy-efficiency", + "standards" + ], + "geographic_scope": "regional", + "update_frequency": "quarterly", + "tags": [ + "eu", + "construction", + "building-regulation", + "energy-performance", + "sustainable-construction", + "construction-products", + "harmonized-standards" + ], + "data_content": { + "en": [ + "Construction Products Regulation - Harmonized standards and CE marking requirements for construction products", + "Energy Performance of Buildings - EPBD implementation data and nearly zero-energy building (NZEB) statistics", + "Building Renovation Wave - EU building renovation strategy data and progress indicators", + "Construction Industry Statistics - EU construction sector output, employment, and investment data", + "Sustainable Construction - Environmental assessment methods and sustainability criteria for buildings", + "Eurocodes - Structural design standards for buildings and civil engineering works" + ], + "zh": [ + "建筑产品法规 - 建筑产品协调标准和CE标志要求", + "建筑能源性能 - EPBD实施数据和近零能耗建筑(NZEB)统计", + "建筑翻新浪潮 - 欧盟建筑翻新战略数据和进展指标", + "建筑行业统计 - 欧盟建筑行业产出、就业和投资数据", + "可持续建筑 - 建筑环境评估方法和可持续性标准", + "欧洲规范 - 建筑和土木工程结构设计标准" + ] + }, + "authority_level": "international", + "has_api": false, + "file_path": "international/construction/eu-construction.json" + }, + { + "id": "iso-construction", + "name": { + "en": "ISO Technical Committee 59 - Buildings and Civil Engineering Works", + "zh": "ISO技术委员会59 - 建筑与土木工程", + "native": "ISO/TC 59 - Buildings and civil engineering works" + }, + "description": { + "en": "ISO Technical Committee 59 develops international standards for buildings and civil engineering works, including sustainability in buildings, design life, tolerances, and modular coordination. Covers environmental performance, building information modeling (BIM), and structural safety standards.", + "zh": "ISO技术委员会59制定建筑和土木工程国际标准,包括建筑可持续性、设计使用年限、公差和模块化协调。涵盖环境性能、建筑信息模型(BIM)和结构安全标准。" + }, + "website": "https://www.iso.org/committee/49070.html", + "data_url": "https://www.iso.org/committee/49070/x/catalogue/", + "api_url": null, + "country": null, + "domains": [ + "construction", + "standards", + "sustainability" + ], + "geographic_scope": "global", + "update_frequency": "quarterly", + "tags": [ + "iso", + "construction", + "building-standards", + "sustainability", + "bim", + "civil-engineering", + "international-standards" + ], + "data_content": { + "en": [ + "Building Sustainability Standards - ISO 15392 and related environmental performance standards", + "Design Life Standards - Service life planning for buildings and constructed assets", + "BIM Standards - Building Information Modeling data exchange standards (ISO 19650 series)", + "Modular Coordination - Dimensional coordination standards for building components", + "Structural Safety - Performance requirements for structural safety and serviceability" + ], + "zh": [ + "建筑可持续性标准 - ISO 15392及相关环境性能标准", + "设计使用年限标准 - 建筑和建造资产的使用寿命规划", + "BIM标准 - 建筑信息模型数据交换标准(ISO 19650系列)", + "模块化协调 - 建筑构件尺寸协调标准", + "结构安全 - 结构安全性和适用性的性能要求" + ] + }, + "authority_level": "international", + "has_api": false, + "file_path": "international/construction/iso-construction.json" + }, + { + "id": "us-hud", + "name": { + "en": "U.S. Department of Housing and Urban Development", + "zh": "美国住房和城市发展部", + "native": "U.S. Department of Housing and Urban Development" + }, + "description": { + "en": "The U.S. Department of Housing and Urban Development (HUD) provides data on housing markets, building codes, fair housing regulations, community development programs, and housing affordability. It offers comprehensive datasets on rental markets, homeownership, housing discrimination, and public housing.", + "zh": "美国住房和城市发展部(HUD)提供住房市场、建筑规范、公平住房法规、社区发展项目和住房可负担性数据。提供租赁市场、房屋所有权、住房歧视和公共住房的综合数据集。" + }, + "website": "https://www.hud.gov", + "data_url": "https://www.huduser.gov/portal/datasets/", + "api_url": "https://www.huduser.gov/hudapi/public/", + "country": "US", + "domains": [ + "construction", + "housing", + "urban-development", + "real-estate" + ], + "geographic_scope": "national", + "update_frequency": "quarterly", + "tags": [ + "usa", + "hud", + "housing", + "construction", + "building-codes", + "urban-development", + "fair-housing", + "real-estate" + ], + "data_content": { + "en": [ + "Housing Market Data - National and regional housing market indicators and trends", + "Building Codes - Federal building standards and manufactured housing construction codes", + "Fair Housing Data - Housing discrimination complaints and enforcement actions", + "Affordable Housing - Low-income housing tax credit data and Section 8 voucher statistics", + "Public Housing - Public housing inventory, occupancy, and condition data", + "Community Development - Community Development Block Grant (CDBG) allocation data", + "Housing Finance - FHA mortgage insurance data and housing counseling statistics" + ], + "zh": [ + "住房市场数据 - 全国及地区住房市场指标和趋势", + "建筑规范 - 联邦建筑标准和制造住房建设规范", + "公平住房数据 - 住房歧视投诉和执法行动", + "经济适用房 - 低收入住房税收抵免数据和第8条代金券统计", + "公共住房 - 公共住房库存、入住率和状况数据", + "社区发展 - 社区发展整体拨款(CDBG)分配数据", + "住房金融 - FHA抵押贷款保险数据和住房咨询统计" + ] + }, + "authority_level": "government", + "has_api": true, + "file_path": "international/construction/us-hud.json" + }, + { + "id": "unfpa-china", + "name": { + "en": "UNFPA China", + "zh": "联合国人口基金驻华代表处" + }, + "description": { + "en": "UNFPA is the United Nations sexual and reproductive health agency. UNFPA China works to ensure that every pregnancy is wanted, every childbirth is safe and every young person's potential is fulfilled. Since 1979, UNFPA has contributed to strengthened capacity for demographic analyses, policy planning, and addressing priorities related to population dynamics, youth empowerment, gender equality, and sexual and reproductive health.", + "zh": "联合国人口基金是联合国性与生殖健康机构。联合国人口基金驻华代表处致力于确保每个妊娠都是自愿的,每次分娩都是安全的,每个年轻人的潜力都能得到充分发挥。自1979年以来,联合国人口基金为加强人口分析、政策规划能力做出贡献,并致力于解决人口动态、青年赋能、性别平等以及性与生殖健康等重点问题。" + }, + "website": "https://china.unfpa.org/en", + "data_url": "https://china.unfpa.org/en/publications", + "api_url": null, + "authority_level": "international", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "population", + "demographics", + "health", + "reproductive-health", + "gender-equality", + "youth-development", + "sustainable-development" + ], + "update_frequency": "irregular", + "tags": [ + "population", + "人口", + "demographics", + "人口统计", + "census", + "人口普查", + "fertility", + "生育率", + "reproductive-health", + "生殖健康", + "maternal-health", + "孕产妇健康", + "gender-equality", + "性别平等", + "youth", + "青年", + "aging", + "老龄化", + "urbanization", + "城镇化", + "sustainable-development", + "可持续发展", + "sdg", + "united-nations", + "联合国", + "unfpa", + "人口基金", + "population-dynamics", + "人口动态", + "sex-ratio", + "性别比", + "migration", + "人口迁移", + "poverty", + "贫困" + ], + "data_content": { + "en": [ + "Population census data and analysis from China's National Population Censuses (including the Seventh Census in 2020)", + "Demographic trends including fertility rates, sex ratio at birth, aging population, and urbanization", + "Sexual and reproductive health data and indicators", + "Gender equality and women's empowerment statistics", + "Youth development and adolescent health data", + "State of World Population reports with China-specific analysis", + "Population data for sustainable development goals (SDG) tracking", + "Multi-dimensional poverty and migration data" ], "zh": [ - "研究出版物 - 同行评审文章、工作论文、农业研究技术报告", - "数据集 - 作物性能试验、遗传资源、土壤调查、气候数据、家庭调查", - "种质资源和基因库数据 - 来自 11 个国际基因库的遗传资源和作物品种信息", - "地理空间数据 - 农业景观的地图、遥感数据、GIS 图层", - "气候和天气数据 - 与农业相关的历史和预测气候数据", - "社会经济调查 - 家庭和农场调查、市场数据、农业经济学", - "作物建模数据 - 模拟输出、作物生长模型的校准数据集", - "生物多样性数据 - 物种分布、生态系统服务、农业生物多样性评估", - "畜牧业数据 - 动物健康、育种计划、牧区系统研究", - "水资源 - 灌溉效率、水质、流域管理数据", - "土壤数据 - 土壤肥力、土壤碳、土地退化评估", - "营养数据 - 作物营养成分、膳食多样性、食物成分" + "中国人口普查数据和分析(包括2020年第七次人口普查)", + "人口趋势数据,包括生育率、出生性别比、人口老龄化和城镇化", + "性与生殖健康数据和指标", + "性别平等和妇女赋权统计数据", + "青年发展和青少年健康数据", + "世界人口状况报告及中国专题分析", + "可持续发展目标(SDG)追踪的人口数据", + "多维贫困和人口迁移数据" ] }, - "authority_level": "international", - "has_api": true, - "file_path": "international/agriculture/cgiar-research-data.json" + "has_api": false, + "file_path": "international/demographics/unfpa-china.json" }, { - "id": "faostat", + "id": "unfpa-urbanization", "name": { - "en": "FAOSTAT - Food and Agriculture Data", - "zh": "粮农组织统计数据库" + "zh": "联合国人口基金 - 城镇化数据", + "en": "UNFPA - Urbanization Data" }, "description": { - "en": "FAOSTAT provides free access to food and agriculture data for over 245 countries and territories, covering all FAO regional groupings from 1961 to the most recent year available. The database contains comprehensive statistics on agricultural production, trade, food balances, emissions, land use, inputs, population, and sustainable development indicators.", - "zh": "粮农组织统计数据库(FAOSTAT)提供超过245个国家和地区的粮食和农业数据免费访问,涵盖联合国粮农组织所有区域分组,时间跨度从1961年至最新年份。该数据库包含农业生产、贸易、粮食平衡、排放、土地利用、投入品、人口和可持续发展指标等综合统计数据。" + "zh": "联合国人口基金(UNFPA)提供全球及中国城镇化趋势分析报告和数据。涵盖全球城市化进程、贫民窟人口、城市增长预测等主题,支持各国制定有效的城市发展政策和人口健康项目。UNFPA自1979年起在中国开展合作,提供人口分析、城镇化、老龄化、性别比等领域的数据支持。", + "en": "The United Nations Population Fund (UNFPA) provides global and China urbanization trend analysis reports and data. Covering topics such as global urbanization processes, slum populations, urban growth projections, and supporting countries in developing effective urban development policies and population health programs. UNFPA has been working in China since 1979, providing data support in areas such as demographic analysis, urbanization, aging, and sex ratios." }, - "website": "https://www.fao.org", - "data_url": "https://www.fao.org/faostat/en/", - "api_url": "https://www.fao.org/faostat/en/#faq", + "website": "https://www.unfpa.org", + "data_url": "https://www.unfpa.org/urbanization", + "api_url": null, + "authority_level": "international", "country": null, - "domains": [ - "Agriculture", - "Food Security", - "Nutrition", - "Trade", - "Climate Change", - "Environment", - "Land Use", - "Forestry", - "Fisheries", - "Livestock", - "Crops", - "Investment", - "Employment", - "Prices" - ], "geographic_scope": "global", - "update_frequency": "irregular", - "tags": [ - "agriculture", - "food-security", - "nutrition", - "trade", - "climate-change", - "land-use", - "forestry", - "fisheries", - "livestock", - "crops", - "fao", - "united-nations", - "sdg", - "global", - "time-series" + "update_frequency": "annual", + "domains": [ + "demographics", + "urbanization", + "population-development", + "slums", + "reproductive-health", + "gender-equality" ], "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监测", - "世界农业普查 - 农业结构数据" + "全球城镇化趋势和预测(2007-2050年)", + "中国人口中长期变动趋势预测(2021-2050年)", + "贫民窟人口统计(1990-2020年,全球约11亿人)", + "城市人口占比数据(2007年首次超过50%,2050年预计达68%)", + "中国流动人口报告(2018)", + "世界人口状况报告(年度)", + "中国城镇化率数据(2020年达63.9%)", + "青少年人口状况统计", + "性别比失衡分析", + "生殖健康服务数据" + ], + "en": [ + "Global urbanization trends and projections (2007-2050)", + "China population projection (2021-2050)", + "Slum population statistics (1990-2020, globally ~1.1 billion people)", + "Urban population percentage (crossed 50% in 2007, projected 68% by 2050)", + "China internal migration report (2018)", + "State of World Population reports (annual)", + "China urbanization rate (63.9% in 2020)", + "Adolescent population statistics", + "Sex ratio imbalance analysis", + "Reproductive health service data" ] }, - "authority_level": "international", - "has_api": true, - "file_path": "international/agriculture/faostat.json" + "tags": [ + "联合国", + "人口基金", + "unfpa", + "united-nations", + "population-fund", + "城镇化", + "城市化", + "urbanization", + "贫民窟", + "slums", + "人口预测", + "population-projections", + "中国人口", + "china-population", + "流动人口", + "migration", + "internal-migration", + "老龄化", + "aging", + "世界人口状况", + "state-of-world-population", + "人口发展", + "demographic-trends", + "性别比", + "sex-ratio", + "生殖健康", + "reproductive-health", + "gender-equality", + "性别平等", + "青少年", + "adolescents" + ], + "has_api": false, + "file_path": "international/demographics/unfpa-urbanization.json" }, { "id": "adb-data-library", @@ -6213,21 +39644,21 @@ "authority_level": "international", "country": null, "domains": [ - "Economics", - "Development Finance", - "Social Statistics", - "Infrastructure", - "Climate Change", - "Public Finance", - "Trade", - "Balance of Payments", - "Labor Market", - "Poverty and Inequality", - "Education", - "Health", - "Energy", - "Environment", - "Regional Integration" + "economics", + "development-finance", + "social-statistics", + "infrastructure", + "climate-change", + "public-finance", + "trade", + "balance-of-payments", + "labor-market", + "poverty-and-inequality", + "education", + "health", + "energy", + "environment", + "regional-integration" ], "geographic_scope": "regional", "update_frequency": "quarterly", @@ -6395,18 +39826,18 @@ "api_url": "https://kidb.adb.org/api", "country": null, "domains": [ - "Economics", - "Finance", - "Social Development", - "Demographics", - "Environment", - "Infrastructure", - "Energy", - "Transportation", - "Communications", - "Government Finance", - "Trade", - "Sustainable Development Goals" + "economics", + "finance", + "social-development", + "demographics", + "environment", + "infrastructure", + "energy", + "transportation", + "communications", + "government-finance", + "trade", + "sustainable-development-goals" ], "geographic_scope": "regional", "update_frequency": "annual", @@ -6566,16 +39997,16 @@ "api_url": "http://dataportal.opendataforafrica.org/", "country": null, "domains": [ - "Development Finance", - "Economic Statistics", - "Social Development", - "Infrastructure", - "Agriculture", - "Energy", - "Climate Change", - "Governance", - "Health", - "Education" + "development-finance", + "economic-statistics", + "social-development", + "infrastructure", + "agriculture", + "energy", + "climate-change", + "governance", + "health", + "education" ], "geographic_scope": "regional", "update_frequency": "annual", @@ -6585,11 +40016,11 @@ "economic-development", "social-development", "infrastructure", - "SDGs", + "sdgs", "multilateral-development-bank", "open-data", "project-data", - "IATI" + "iati" ], "data_content": { "en": [ @@ -6611,6 +40042,59 @@ "has_api": true, "file_path": "international/development/afdb.json" }, + { + "id": "aiddata", + "name": { + "en": "AidData - Global Development Finance", + "zh": "AidData全球发展援助数据库" + }, + "description": { + "en": "AidData is a research lab at William & Mary's Global Research Institute that tracks and geocodes international development finance from major bilateral and multilateral donors. It provides the most comprehensive dataset on Chinese overseas development finance and publishes project-level data covering aid, debt, and investment flows to developing countries.", + "zh": "AidData是威廉与玛丽学院全球研究所的研究实验室,追踪和地理编码主要双边及多边捐助方的国际发展融资。提供最全面的中国海外发展融资数据集,发布覆盖对发展中国家援助、债务和投资流向的项目级数据。" + }, + "website": "https://www.aiddata.org", + "data_url": "https://www.aiddata.org/datasets", + "api_url": null, + "authority_level": "research", + "country": null, + "domains": [ + "development", + "economics", + "finance" + ], + "geographic_scope": "global", + "update_frequency": "irregular", + "tags": [ + "development-aid", + "发展援助", + "oda", + "foreign-aid", + "对外援助", + "geocoded", + "地理编码", + "china-overseas-finance", + "中国海外融资", + "belt-and-road", + "一带一路", + "development-finance" + ], + "data_content": { + "en": [ + "Geocoded project-level data on international development finance from 2000 to present", + "Chinese overseas development finance tracking (loans, grants, technical assistance)", + "Bilateral and multilateral aid flow data with geographic coordinates", + "Development effectiveness research and impact evaluations" + ], + "zh": [ + "2000年至今的地理编码项目级国际发展融资数据", + "中国海外发展融资追踪(贷款、赠款、技术援助)", + "带有地理坐标的双边及多边援助流量数据", + "发展有效性研究和影响评估" + ] + }, + "has_api": false, + "file_path": "international/development/aiddata.json" + }, { "id": "caf", "name": { @@ -6627,23 +40111,23 @@ "api_url": null, "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" + "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", @@ -6725,16 +40209,16 @@ "api_url": null, "country": null, "domains": [ - "Development Finance", - "Economic Development", - "Infrastructure", - "Education", - "Health", - "Agriculture", - "Social Development", - "Environmental Sustainability", - "Climate Resilience", - "Poverty Reduction" + "development-finance", + "economic-development", + "infrastructure", + "education", + "health", + "agriculture", + "social-development", + "environmental-sustainability", + "climate-resilience", + "poverty-reduction" ], "geographic_scope": "regional", "update_frequency": "annual", @@ -6802,17 +40286,17 @@ "api_url": "https://data.iadb.org/dataset/", "country": null, "domains": [ - "Development Finance", - "Macroeconomic Statistics", - "Fiscal Policy", - "Social Development", - "Education", - "Health", - "Labor Markets", - "Trade and Integration", - "Agriculture", - "Public Sector", - "Financial Sector" + "development-finance", + "macroeconomic-statistics", + "fiscal-policy", + "social-development", + "education", + "health", + "labor-markets", + "trade-and-integration", + "agriculture", + "public-sector", + "financial-sector" ], "geographic_scope": "regional", "update_frequency": "quarterly", @@ -6854,6 +40338,72 @@ "has_api": true, "file_path": "international/development/idb.json" }, + { + "id": "undp-hdr", + "name": { + "en": "UNDP Human Development Reports", + "zh": "联合国开发计划署人类发展报告" + }, + "description": { + "en": "The United Nations Development Programme (UNDP) Human Development Report Office publishes the Human Development Index (HDI) and related composite indices since 1990. It provides authoritative data on human development across 190+ countries, including education, health, income, inequality, gender, and multidimensional poverty indicators. The HDI is the world's most widely cited measure of national development beyond GDP.", + "zh": "联合国开发计划署(UNDP)人类发展报告办公室自1990年起发布人类发展指数(HDI)及相关综合指数。它提供190多个国家的人类发展权威数据,涵盖教育、健康、收入、不平等、性别和多维贫困指标。HDI是全球引用最广泛的超越GDP的国家发展衡量指标。" + }, + "website": "https://hdr.undp.org", + "data_url": "https://hdr.undp.org/data-center", + "api_url": null, + "country": null, + "domains": [ + "development", + "social", + "economics", + "education", + "health" + ], + "geographic_scope": "global", + "update_frequency": "annual", + "tags": [ + "hdi", + "human-development", + "poverty", + "inequality", + "education", + "health", + "undp", + "人类发展指数", + "贫困", + "不平等", + "发展指标", + "mpi", + "gii", + "gender", + "sustainable-development" + ], + "data_content": { + "en": [ + "Human Development Index (HDI) - composite index of life expectancy, education, and income", + "Inequality-adjusted HDI (IHDI) - HDI adjusted for inequality in each dimension", + "Gender Development Index (GDI) - gender gaps in human development", + "Gender Inequality Index (GII) - gender-based disadvantage across health, empowerment, labor", + "Multidimensional Poverty Index (MPI) - non-income poverty across health, education, living standards", + "Planetary pressures-adjusted HDI (PHDI) - sustainability-adjusted development measure", + "Country profiles and dashboards - detailed statistics for 190+ countries", + "Historical time series data from 1990 onwards" + ], + "zh": [ + "人类发展指数(HDI)- 预期寿命、教育和收入的综合指数", + "不平等调整人类发展指数(IHDI)- 按各维度不平等调整的HDI", + "性别发展指数(GDI)- 人类发展中的性别差距", + "性别不平等指数(GII)- 健康、赋权、劳动方面的性别劣势", + "多维贫困指数(MPI)- 健康、教育、生活水平方面的非收入贫困", + "行星压力调整HDI(PHDI)- 可持续发展调整的发展指标", + "国家概况和仪表板 - 190多个国家的详细统计", + "1990年以来的历史时间序列数据" + ] + }, + "authority_level": "international", + "has_api": false, + "file_path": "international/development/undp-hdr.json" + }, { "id": "intl-copernicus-cdse", "name": { @@ -6869,15 +40419,15 @@ "api_url": "https://documentation.dataspace.copernicus.eu", "country": null, "domains": [ - "Earth Observation", - "Remote Sensing", - "Climate Change", - "Land Monitoring", - "Ocean Monitoring", - "Atmosphere Monitoring", - "Emergency Management", - "Agriculture", - "Forestry" + "earth-observation", + "remote-sensing", + "climate-change", + "land-monitoring", + "ocean-monitoring", + "atmosphere-monitoring", + "emergency-management", + "agriculture", + "forestry" ], "geographic_scope": "global", "update_frequency": "daily", @@ -6997,177 +40547,150 @@ "id": "adb-ado", "name": { "en": "Asian Development Outlook", - "zh": "亚洲开发展望" + "zh": "亚洲发展展望" }, "description": { - "en": "The Asian Development Outlook (ADO) is the flagship economic analysis publication of the Asian Development Bank. Published quarterly (April, July, September, and December), it provides comprehensive GDP growth forecasts, inflation rate projections, and economic analysis for 46 ADB developing member economies across five subregions: Caucasus and Central Asia, East Asia, South Asia, Southeast Asia, and The Pacific. The ADO delivers evidence-based policy recommendations for policymakers to address economic and development challenges in the Asia-Pacific region.", - "zh": "亚洲开发展望(ADO)是亚洲开发银行的旗舰经济分析出版物。该报告每季度发布一次(4月、7月、9月和12月),为亚行46个发展中成员经济体提供全面的GDP增长预测、通货膨胀率预测和经济分析,涵盖五个次区域:高加索和中亚、东亚、南亚、东南亚和太平洋地区。ADO为政策制定者提供基于证据的政策建议,以应对亚太地区的经济和发展挑战。" + "en": "The Asian Development Outlook (ADO) is the Asian Development Bank's flagship annual economic publication that analyzes economic and development issues in developing countries across Asia and the Pacific. It provides comprehensive GDP growth and inflation forecasts, examines social development issues, and offers policy recommendations for regional economies. Published quarterly with editions in April, July, September, and December.", + "zh": "亚洲发展展望(ADO)是亚洲开发银行的旗舰年度经济出版物,分析亚洲及太平洋地区发展中国家的经济和发展问题。它提供全面的GDP增长和通货膨胀预测,考察社会发展问题,并为区域经济提供政策建议。每年发布四次,分别在4月、7月、9月和12月出版。" }, - "website": "https://www.adb.org", - "data_url": "https://www.adb.org/outlook", + "website": "https://www.adb.org/", + "data_url": "https://www.adb.org/publications/series/asian-development-outlook", "api_url": null, + "authority_level": "international", "country": null, "domains": [ - "Economics", - "Economic Forecasting", - "Macroeconomics", - "Finance", - "Development Economics", - "GDP Growth", - "Inflation", - "Poverty Analysis", - "Regional Economics", - "Public Sector Management" + "economics", + "finance", + "development", + "social" ], "geographic_scope": "regional", "update_frequency": "quarterly", "tags": [ - "asian-development-bank", "adb", - "ado", - "asian-development-outlook", + "asian-development-bank", "亚洲开发银行", - "亚洲开发展望", - "economic-forecasting", - "经济预测", - "gdp-growth", - "gdp", - "国内生产总值", - "经济增长", - "inflation", - "通货膨胀", - "asia-pacific", - "亚太地区", - "developing-economies", - "发展中经济体", - "macroeconomic-indicators", - "宏观经济指标", - "economic-outlook", - "经济展望", - "regional-economics", - "区域经济", - "development-analysis", - "发展分析", - "poverty", - "贫困", - "china", - "中国", - "india", - "印度", - "southeast-asia", - "东南亚", - "central-asia", - "中亚", - "caucasus", - "高加索", - "pacific-islands", - "太平洋岛国" - ], - "data_content": { - "en": [ - "GDP Growth Forecasts - Quarterly projections for 46 developing member economies across the Asia-Pacific region", - "Inflation Rate Projections - Consumer price index forecasts and inflation analysis", - "Economic Analysis by Subregion - Detailed analysis for Caucasus and Central Asia (11 countries), East Asia (2 countries), South Asia (6 countries), Southeast Asia (8 countries), and The Pacific (15 countries)", - "Macroeconomic Indicators - Comprehensive economic statistics including fiscal policy, monetary policy, trade balance, and current account data", - "Development Trends - Analysis of poverty reduction, inclusive growth, and sustainable development progress", - "Risk Assessment - Evaluation of economic risks including global conditions, commodity prices, financial market volatility, and geopolitical factors", - "Policy Recommendations - Evidence-based policy guidance for economic development and crisis response for policymakers", - "Country-Specific Forecasts - Individual economic outlooks for major economies including China, India, and other developing Asian countries", - "Regional Economic Integration - Analysis of trade flows, investment patterns, and regional cooperation initiatives", - "Statistical Tables - Downloadable economic data linked to ADB Data Library" - ], - "zh": [ - "GDP增长预测 - 亚太地区46个发展中成员经济体的季度增长预测", - "通货膨胀率预测 - 消费者价格指数预测和通胀分析", - "分次区域经济分析 - 高加索和中亚(11国)、东亚(2国)、南亚(6国)、东南亚(8国)和太平洋地区(15国)的详细分析", - "宏观经济指标 - 包括财政政策、货币政策、贸易平衡和经常账户数据在内的综合经济统计", - "发展趋势 - 减贫、包容性增长和可持续发展进展分析", - "风险评估 - 经济风险评估,包括全球环境、大宗商品价格、金融市场波动和地缘政治因素", - "政策建议 - 为政策制定者提供基于证据的经济发展和危机应对政策指导", - "国别预测 - 包括中国、印度等主要经济体的单独经济展望", - "区域经济一体化 - 贸易流动、投资模式和区域合作倡议分析", - "统计表格 - 可下载的经济数据,链接到亚行数据库" + "ado", + "economic-outlook", + "经济展望", + "gdp-growth", + "GDP增长", + "inflation", + "通货膨胀", + "economic-forecast", + "经济预测", + "asia-pacific", + "亚太地区", + "developing-countries", + "发展中国家", + "economic-analysis", + "经济分析", + "development-policy", + "发展政策" + ], + "data_content": { + "en": [ + "GDP growth forecasts for developing Asian economies", + "Inflation rate projections and analysis", + "Subregional economic assessments (5 subregions)", + "Country-level economic indicators and trends", + "Social development indicators and analysis", + "Development policy recommendations", + "Economic risk assessments", + "Macroeconomic statistics and historical data" + ], + "zh": [ + "亚洲发展中经济体的GDP增长预测", + "通货膨胀率预测和分析", + "次区域经济评估(5个次区域)", + "国家级经济指标和趋势", + "社会发展指标和分析", + "发展政策建议", + "经济风险评估", + "宏观经济统计和历史数据" ] }, - "authority_level": "international", "has_api": false, "file_path": "international/economics/adb-ado.json" }, { - "id": "adb-data-library", + "id": "adb-vietnam-data", "name": { - "en": "ADB Data Library", - "zh": "亚洲开发银行数据库" + "en": "Asian Development Bank - Vietnam Country Data", + "zh": "亚洲开发银行越南国别数据" }, "description": { - "en": "The central repository for all of ADB's public data, providing free and open access to macro-economic and social data from the Asian Development Bank's flagship publications. Covers data from the Asian Development Outlook (ADO), Key Indicators for Asia and the Pacific, and other authoritative sources. Includes economic indicators, financial data, and project-level information for the Asia-Pacific region.", - "zh": "亚洲开发银行所有公开数据的中央存储库,提供来自亚洲开发银行旗舰出版物的宏观经济和社会数据的免费开放访问。涵盖《亚洲发展展望》(ADO)、《亚太地区关键指标》等权威来源的数据。包括亚太地区的经济指标、金融数据和项目级信息。" + "en": "Comprehensive economic development data and statistics for Vietnam provided by the Asian Development Bank (ADB). The platform provides country-specific economic indicators including GDP growth forecasts, inflation rates, poverty statistics, development project performance metrics, key economic and social indicators, and cofinancing data. ADB's Vietnam data supports policy analysis and tracks the country's economic performance and development progress across multiple sectors.", + "zh": "亚洲开发银行(ADB)提供的越南综合经济发展数据和统计资料。该平台提供特定国家的经济指标,包括GDP增长预测、通货膨胀率、贫困统计、发展项目绩效指标、关键经济和社会指标,以及联合融资数据。亚行的越南数据支持政策分析,跟踪该国在多个部门的经济表现和发展进展。" }, "website": "https://www.adb.org", - "data_url": "https://data.adb.org", - "api_url": "https://data.adb.org", - "authority_level": "international", - "country": null, + "data_url": "https://www.adb.org/countries/viet-nam/data", + "api_url": null, + "country": "VN", "domains": [ "economics", + "development", "finance", - "social", - "development" + "poverty", + "social-development", + "infrastructure" ], - "geographic_scope": "regional", - "update_frequency": "annual", + "geographic_scope": "national", + "update_frequency": "quarterly", "tags": [ "asian-development-bank", - "亚洲开发银行", "adb", - "asia-pacific", - "亚太地区", - "economic-indicators", - "经济指标", - "gdp", - "国内生产总值", - "poverty", - "贫困", - "development-data", - "发展数据", - "infrastructure", - "基础设施", "vietnam", - "越南", + "viet-nam", + "economic-indicators", + "gdp-forecast", + "inflation", + "poverty-statistics", + "development-projects", + "economic-growth", + "key-indicators", + "country-data", "quarterly-data", - "季度数据", - "open-data", - "开放数据", - "api" + "亚洲开发银行", + "亚行", + "越南", + "经济指标", + "GDP预测", + "通货膨胀", + "贫困统计", + "发展项目", + "经济增长", + "关键指标", + "国别数据", + "季度数据" ], "data_content": { "en": [ - "GDP and economic growth indicators for Asia-Pacific countries", - "Poverty and income distribution statistics", - "Population and demographic data", - "Education and health indicators", - "Infrastructure development metrics", - "Financial and corporate data from ADB Annual Report", - "Project-level data and development assistance", - "Key Indicators for Asia and the Pacific", - "Asian Development Outlook (ADO) economic forecasts", - "Quarterly economic indicators including Vietnam data" + "Economic Forecasts - GDP growth projections (6.7% in 2025, 6.0% in 2026), inflation forecasts (3.9% in 2025, 3.8% in 2026)", + "Key Economic Indicators - Comprehensive economic, financial, social, environmental, and SDG indicators for Vietnam", + "Poverty Statistics - Poverty levels, trends, and poverty reduction metrics", + "Development Project Performance - Success rates database (2000-2018), results tracking of ADB-supported operations", + "Cofinancing Data - Information on projects cofinanced during 2014-2018", + "Country Dashboard - Latest selected data on Vietnam's economy, poverty, socioeconomic development, and cumulative ADB assistance", + "Input-Output Economic Indicators - Statistics for analyzing cross-border production arrangements at local, regional, and global levels", + "GNI per capita - National income measurements", + "Asian Development Outlook Data - Regular economic analysis and forecasts specific to Vietnam" ], "zh": [ - "亚太国家GDP和经济增长指标", - "贫困和收入分配统计", - "人口和人口统计数据", - "教育和健康指标", - "基础设施发展指标", - "亚行年度报告中的金融和企业数据", - "项目级数据和发展援助", - "亚太地区关键指标", - "亚洲发展展望(ADO)经济预测", - "包括越南数据在内的季度经济指标" + "经济预测 - GDP增长预测(2025年6.7%,2026年6.0%)、通货膨胀预测(2025年3.9%,2026年3.8%)", + "关键经济指标 - 越南的综合经济、金融、社会、环境和可持续发展目标指标", + "贫困统计 - 贫困水平、趋势和减贫指标", + "发展项目绩效 - 成功率数据库(2000-2018)、亚行支持项目的成果跟踪", + "联合融资数据 - 2014-2018年期间联合融资项目信息", + "国家仪表板 - 越南经济、贫困、社会经济发展和亚行累计援助的最新精选数据", + "投入产出经济指标 - 用于分析地方、区域和全球层面跨境生产安排的统计数据", + "人均国民总收入 - 国民收入测量", + "亚洲发展展望数据 - 针对越南的定期经济分析和预测" ] }, - "has_api": true, - "file_path": "international/economics/adb-data-library.json" + "authority_level": "international", + "has_api": false, + "file_path": "international/economics/adb-vietnam-data.json" }, { "id": "adb-vietnam", @@ -7263,92 +40786,163 @@ "file_path": "international/economics/adb-vietnam.json" }, { - "id": "bis-statistics", + "id": "adb", "name": { - "en": "BIS Statistics - Bank for International Settlements", - "zh": "国际清算银行统计数据" + "en": "Asian Development Bank Data", + "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": "Asian Development Bank (ADB) is a leading multilateral development bank supporting inclusive, resilient, and sustainable growth across Asia and the Pacific. Established in 1966 with 69 member countries, ADB provides comprehensive economic, financial, social, and environmental data through multiple platforms including the ADB Data Library, Key Indicators Database (KIDB), and AsianBondsOnline. The data covers macroeconomic indicators, development statistics, project information, and sector-specific data across Asia-Pacific region.", + "zh": "亚洲开发银行(ADB)是支持亚太地区包容性、韧性和可持续增长的领先多边开发银行。成立于1966年,拥有69个成员国,亚行通过多个平台提供全面的经济、金融、社会和环境数据,包括亚行数据库、关键指标数据库(KIDB)和亚洲债券在线等。数据涵盖亚太地区的宏观经济指标、发展统计、项目信息和行业特定数据。" }, - "website": "https://www.bis.org", - "data_url": "https://data.bis.org/", - "api_url": "https://stats.bis.org/api-doc/v2/", + "website": "https://www.adb.org", + "data_url": "https://www.adb.org/what-we-do/data", + "api_url": null, + "authority_level": "international", "country": null, "domains": [ - "Banking", - "Finance", - "Securities", - "Credit", - "Liquidity", - "Derivatives", - "Real Estate", - "Prices", - "Exchange Rates", - "Central Banking", - "Payments" + "economics", + "finance", + "development", + "infrastructure", + "agriculture", + "education", + "health", + "environment", + "climate-change", + "energy", + "transport", + "water", + "urban-development", + "gender-equality", + "social-development", + "governance", + "regional-cooperation", + "trade", + "digital-technology" ], - "geographic_scope": "global", + "geographic_scope": "regional", "update_frequency": "quarterly", "tags": [ - "banking", - "finance", - "securities", - "credit", - "derivatives", - "real-estate", - "exchange-rates", - "central-banking", - "payments", - "financial-stability", - "bis", - "global", - "time-series" + "asian-development-bank", + "adb", + "multilateral-development-bank", + "asia", + "pacific", + "asia-pacific", + "economic-indicators", + "development-finance", + "infrastructure-investment", + "sustainable-development", + "sdg", + "climate-finance", + "poverty-reduction", + "macroeconomic-data", + "gdp-forecasts", + "asian-development-outlook", + "ado", + "key-indicators", + "kidb", + "regional-cooperation", + "bond-market", + "亚洲开发银行", + "亚行", + "多边开发银行", + "亚太地区", + "经济指标", + "发展融资", + "基础设施投资", + "可持续发展", + "气候融资", + "减贫", + "宏观经济数据", + "GDP预测", + "亚洲发展展望", + "关键指标", + "区域合作", + "债券市场" ], "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" + "Macroeconomic Indicators - GDP growth, inflation, fiscal balance, current account balance, exchange rates for 50 regional member countries", + "Asian Development Outlook (ADO) - Economic forecasts and analysis released regularly with growth projections for Asia-Pacific economies", + "Key Indicators for Asia and the Pacific - Annual comprehensive statistical compilation covering economic, social, and environmental indicators", + "Key Indicators Database (KIDB) - One of the world's most comprehensive resources for macroeconomic and social indicators from across Asia and the Pacific", + "Development Finance Data - ADB project financing information, loan disbursements, technical assistance, and grant allocations", + "Infrastructure Statistics - Infrastructure investment needs, project data, and sector-specific infrastructure indicators", + "Climate Change Data - Climate financing metrics, emissions data, environmental indicators, and climate vulnerability assessments", + "Asian Economic Integration Report - Regional integration trends, trade flows, and cross-border investment statistics", + "AsianBondsOnline - Bond market information and statistics for emerging East Asian markets", + "Sustainable Development Goals (SDG) Indicators - Progress monitoring and tracking for Asia-Pacific region", + "Social Development Data - Education, health, gender equality, poverty, and employment statistics", + "Sector-Specific Data - Agriculture, energy, transport, water, urban development, and digital technology statistics", + "Country Economic Profiles - Comprehensive country-level economic and development data for member countries" + ], + "zh": [ + "宏观经济指标 - 50个区域成员国的GDP增长、通货膨胀、财政平衡、经常账户余额、汇率", + "亚洲发展展望(ADO) - 定期发布的经济预测和分析,包含亚太经济体的增长预测", + "亚洲及太平洋地区关键指标 - 年度综合统计汇编,涵盖经济、社会和环境指标", + "关键指标数据库(KIDB) - 全球最全面的亚太地区宏观经济和社会指标资源之一", + "发展融资数据 - 亚行项目融资信息、贷款支付、技术援助和赠款分配", + "基础设施统计 - 基础设施投资需求、项目数据和特定部门基础设施指标", + "气候变化数据 - 气候融资指标、排放数据、环境指标和气候脆弱性评估", + "亚洲经济一体化报告 - 区域一体化趋势、贸易流量和跨境投资统计", + "亚洲债券在线 - 新兴东亚市场的债券市场信息和统计", + "可持续发展目标(SDG)指标 - 亚太地区的进展监测和跟踪", + "社会发展数据 - 教育、卫生、性别平等、贫困和就业统计", + "行业特定数据 - 农业、能源、交通、水资源、城市发展和数字技术统计", + "国家经济概况 - 成员国的全面国家级经济和发展数据" + ] + }, + "has_api": false, + "file_path": "international/economics/adb.json" + }, + { + "id": "asean-stats", + "name": { + "en": "ASEAN Statistics", + "zh": "东盟统计局", + "native": "ASEANstats" + }, + "description": { + "en": "ASEANstats is the statistical division of the ASEAN Secretariat, providing harmonized statistics on trade, investment, tourism, demographics, and economic indicators for the 10 ASEAN member states.", + "zh": "东盟统计局是东盟秘书处的统计部门,提供10个东盟成员国贸易、投资、旅游、人口和经济指标的统一口径统计数据。" + }, + "website": "https://www.aseanstats.org", + "data_url": "https://data.aseanstats.org", + "country": null, + "domains": [ + "economics", + "trade", + "demographics", + "tourism" + ], + "tags": [ + "asean", + "regional-statistics", + "trade", + "investment" + ], + "authority_level": "international", + "update_frequency": "annual", + "geographic_scope": "regional", + "data_content": { + "en": [ + "Trade Statistics - Intra-ASEAN and external trade flows", + "Investment - FDI inflows by source country and sector", + "Tourism - International visitor arrivals to ASEAN member states", + "Economic Indicators - GDP, inflation, employment across 10 member states" + ], + "zh": [ + "贸易统计 - 东盟内部和对外贸易流向", + "投资 - 按来源国和行业分类的FDI流入", + "旅游 - 东盟成员国国际游客人次", + "经济指标 - 10个成员国GDP、通胀、就业" + ] + }, + "api_url": null, + "has_api": false, + "file_path": "international/economics/asean-stats.json" }, { "id": "ceic-global-database", @@ -7526,16 +41120,16 @@ "api_url": "https://data.ecb.europa.eu/help/api/overview", "country": null, "domains": [ - "Monetary Policy", - "Banking Statistics", - "Balance of Payments", - "Government Finance", - "Financial Markets", - "Exchange Rates", - "Interest Rates", - "Financial Stability", - "Banking Supervision", - "National Accounts" + "monetary-policy", + "banking-statistics", + "balance-of-payments", + "government-finance", + "financial-markets", + "exchange-rates", + "interest-rates", + "financial-stability", + "banking-supervision", + "national-accounts" ], "geographic_scope": "regional", "update_frequency": "daily", @@ -7589,6 +41183,85 @@ "has_api": true, "file_path": "international/economics/ecb-sdw.json" }, + { + "id": "eurostat", + "name": { + "en": "Eurostat - Statistical Office of the European Union", + "zh": "欧盟统计局", + "native": "Eurostat" + }, + "description": { + "en": "Eurostat is the statistical office of the European Union, providing high-quality statistics on Europe. It produces comparable statistical information at European level and promotes the use of common statistical methods across EU member states. Data covers economics, population, social conditions, industry, trade, environment, and regional statistics for all 27 EU member states.", + "zh": "欧盟统计局(Eurostat)是欧盟的统计机构,提供有关欧洲的高质量统计数据。制作欧洲层面的可比统计信息,并推动欧盟成员国使用共同的统计方法。数据涵盖全部27个欧盟成员国的经济、人口、社会状况、工业、贸易、环境和区域统计。" + }, + "website": "https://ec.europa.eu/eurostat", + "data_url": "https://ec.europa.eu/eurostat/databrowser/explore/all/all_themes", + "api_url": "https://ec.europa.eu/eurostat/api/dissemination/statistics/1.0/data/", + "country": null, + "authority_level": "international", + "domains": [ + "economics", + "demographics", + "social", + "trade", + "environment", + "industry", + "agriculture" + ], + "geographic_scope": "regional", + "update_frequency": "monthly", + "tags": [ + "europe", + "eu", + "eurostat", + "欧盟", + "欧洲统计", + "gdp", + "inflation", + "employment", + "trade", + "population", + "official-statistics", + "government", + "regional-statistics" + ], + "data_content": { + "en": [ + "GDP and National Accounts - Gross domestic product, national income, and expenditure accounts for EU member states", + "Population and Demographics - Population size, age structure, fertility, mortality, and migration statistics", + "Employment and Labor Market - Employment rates, unemployment, working conditions, and labor costs by country", + "Prices and Inflation - Harmonised Index of Consumer Prices (HICP), producer prices, and purchasing power parities", + "International Trade - Intra-EU and extra-EU trade in goods and services by country and product", + "Industry and Energy - Industrial production indices, energy consumption, and production statistics", + "Agriculture and Food - Agricultural output, land use, farm structure, and food safety data", + "Environment and Climate - Greenhouse gas emissions, waste, water, and biodiversity indicators", + "Education and Training - Educational attainment, enrollment rates, and lifelong learning statistics", + "Health Statistics - Healthcare expenditure, life expectancy, causes of death, and health behaviors", + "Regional Statistics - NUTS-level data for sub-national regions across Europe", + "Digital Economy - Internet usage, e-commerce, and ICT adoption statistics", + "Government Finance - Public deficit, debt, revenue, and expenditure by country", + "Science and Technology - R&D expenditure, patent statistics, and innovation indicators" + ], + "zh": [ + "GDP与国民账户 - 欧盟成员国国内生产总值、国民收入和支出账户", + "人口与人口统计 - 人口规模、年龄结构、生育率、死亡率和移民统计", + "就业与劳动市场 - 各国就业率、失业率、劳动条件和劳动力成本", + "价格与通货膨胀 - 协调消费者价格指数(HICP)、生产者价格和购买力平价", + "国际贸易 - 欧盟内部和对外商品及服务贸易(按国家和产品分类)", + "工业与能源 - 工业生产指数、能源消耗和生产统计", + "农业与食品 - 农业产值、土地利用、农场结构和食品安全数据", + "环境与气候 - 温室气体排放、废物、水资源和生物多样性指标", + "教育与培训 - 教育程度、入学率和终身学习统计", + "健康统计 - 医疗支出、预期寿命、死亡原因和健康行为", + "区域统计 - 欧洲各次国家地区的NUTS级数据", + "数字经济 - 互联网使用、电子商务和信息通信技术普及统计", + "政府财政 - 各国公共赤字、债务、收入和支出", + "科学与技术 - 研发支出、专利统计和创新指标" + ] + }, + "has_api": true, + "file_path": "international/economics/eurostat.json" + }, { "id": "imf-data", "name": { @@ -7698,21 +41371,94 @@ "Social expenditure and inequality data" ], "zh": [ - "国民账户和GDP", - "劳动力市场和就业统计", - "国际贸易统计", - "教育指标(PISA、教育程度)", - "健康统计和医疗支出", - "生产力和竞争力指标", - "税收收入统计", - "环境指标", - "创新和研发统计", - "社会支出和不平等数据" + "国民账户和GDP", + "劳动力市场和就业统计", + "国际贸易统计", + "教育指标(PISA、教育程度)", + "健康统计和医疗支出", + "生产力和竞争力指标", + "税收收入统计", + "环境指标", + "创新和研发统计", + "社会支出和不平等数据" + ] + }, + "authority_level": "international", + "has_api": true, + "file_path": "international/economics/oecd.json" + }, + { + "id": "unsd-national-accounts", + "name": { + "en": "UN National Accounts Database", + "zh": "联合国统计司国民账户数据库" + }, + "description": { + "en": "The United Nations Statistics Division (UNSD) National Accounts Database provides comprehensive national accounts statistics for over 200 countries and territories worldwide. The database includes main aggregates, detailed tables, and analytical indicators following the System of National Accounts (SNA) framework. Data covers GDP, national income, consumption, investment, government finance, and other macroeconomic indicators from 1970 onwards, updated annually in December.", + "zh": "联合国统计司(UNSD)国民账户数据库为全球200多个国家和地区提供全面的国民账户统计数据。该数据库包括主要总量、详细表格和分析指标,遵循国民账户体系(SNA)框架。数据涵盖GDP、国民收入、消费、投资、政府财政和其他宏观经济指标,时间跨度从1970年至今,每年12月更新。" + }, + "website": "https://unstats.un.org", + "data_url": "https://unstats.un.org/unsd/snaama", + "api_url": "https://data.un.org/Host.aspx?Content=API", + "authority_level": "international", + "country": null, + "geographic_scope": "global", + "update_frequency": "annual", + "domains": [ + "economics", + "finance" + ], + "tags": [ + "national-accounts", + "gdp", + "经济统计", + "国民账户", + "宏观经济", + "sna", + "国民生产总值", + "macroeconomic-indicators", + "un", + "unsd", + "联合国", + "economic-growth", + "government-finance", + "consumption", + "investment", + "per-capita-gdp", + "人均gdp", + "gni", + "人均gni" + ], + "data_content": { + "en": [ + "GDP and GDP per capita by expenditure approach (current and constant prices)", + "National income and gross national income (GNI)", + "Final consumption expenditure by households and government", + "Gross capital formation and fixed capital formation", + "Exports and imports of goods and services", + "Government revenue and expenditure", + "Compensation of employees and operating surplus", + "Value added by economic activity", + "Population and employment data", + "National accounts main aggregates following SNA 2008 framework", + "Detailed national accounts tables for UN member states" + ], + "zh": [ + "按支出法计算的GDP和人均GDP(现价和不变价格)", + "国民收入和国民总收入(GNI)", + "住户和政府最终消费支出", + "资本形成总额和固定资本形成", + "货物和服务的进出口", + "政府收入和支出", + "雇员报酬和营业盈余", + "按经济活动分类的增加值", + "人口和就业数据", + "遵循SNA 2008框架的国民账户主要总量", + "联合国会员国详细国民账户表" ] }, - "authority_level": "international", "has_api": true, - "file_path": "international/economics/oecd.json" + "file_path": "international/economics/unsd-national-accounts.json" }, { "id": "worldbank-open-data", @@ -7805,11 +41551,11 @@ "国际评估", "student-achievement", "学生成就", - "TIMSS", - "PIRLS", - "ICCS", - "ICILS", - "LaNA", + "timss", + "pirls", + "iccs", + "icils", + "lana", "mathematics", "数学", "science", @@ -7873,14 +41619,14 @@ "api_url": null, "country": null, "domains": [ - "Education", - "Student Assessment", - "Reading Literacy", - "Mathematical Literacy", - "Scientific Literacy", - "Financial Literacy", - "Creative Thinking", - "Global Competence" + "education", + "student-assessment", + "reading-literacy", + "mathematical-literacy", + "scientific-literacy", + "financial-literacy", + "creative-thinking", + "global-competence" ], "geographic_scope": "global", "update_frequency": "irregular", @@ -7937,6 +41683,81 @@ "has_api": false, "file_path": "international/education/oecd-pisa.json" }, + { + "id": "unesco-uis", + "name": { + "en": "UNESCO Institute for Statistics", + "zh": "联合国教科文组织统计研究所" + }, + "description": { + "en": "The UNESCO Institute for Statistics (UIS) is the official statistical agency of UNESCO and the primary UN source for internationally comparable data on education, science, technology, innovation, culture, and communication. UIS maintains the most comprehensive global education database covering enrollment, literacy, expenditure, learning outcomes, and teacher statistics for over 200 countries.", + "zh": "联合国教科文组织统计研究所(UIS)是UNESCO的官方统计机构,也是联合国在教育、科学、技术、创新、文化和传播领域国际可比数据的主要来源。UIS维护着最全面的全球教育数据库,涵盖200多个国家的入学率、识字率、教育支出、学习成果和教师统计数据。" + }, + "website": "https://uis.unesco.org/", + "data_url": "https://data.uis.unesco.org/", + "api_url": null, + "country": null, + "domains": [ + "education", + "science", + "technology", + "innovation", + "culture", + "communication" + ], + "geographic_scope": "global", + "update_frequency": "annual", + "tags": [ + "unesco", + "education", + "literacy", + "enrollment", + "science-statistics", + "r&d", + "sdg4", + "learning-outcomes", + "education-expenditure", + "teachers", + "international-comparison", + "教育", + "识字率", + "入学率", + "科研统计" + ], + "data_content": { + "en": [ + "Education Enrollment and Completion Rates (Pre-primary to Tertiary)", + "Literacy and Educational Attainment by Age and Gender", + "Education Expenditure (Public and Private)", + "Teacher Statistics (Pupil-Teacher Ratios, Qualifications)", + "Learning Outcomes and Assessments", + "Out-of-School Children and Youth Statistics", + "SDG 4 Education Monitoring Indicators", + "Science, Technology and Innovation Statistics", + "R&D Expenditure and Researcher Data", + "Cultural Statistics and Heritage Data", + "ICT in Education Statistics", + "International Student Mobility Data" + ], + "zh": [ + "教育入学率和完成率(学前至高等教育)", + "识字率和受教育程度(按年龄和性别)", + "教育支出(公共和私人)", + "教师统计(师生比、教师资质)", + "学习成果和评估", + "失学儿童和青年统计", + "SDG 4教育监测指标", + "科学、技术和创新统计", + "研发支出和研究人员数据", + "文化统计和遗产数据", + "教育信息化统计", + "国际学生流动数据" + ] + }, + "authority_level": "international", + "has_api": false, + "file_path": "international/education/unesco-uis.json" + }, { "id": "iaea-energy-data", "name": { @@ -7960,24 +41781,24 @@ "geographic_scope": "global", "update_frequency": "monthly", "tags": [ - "nuclear energy", + "nuclear-energy", "核能", - "power reactors", + "power-reactors", "动力堆", - "PRIS", - "atomic energy", + "pris", + "atomic-energy", "原子能", - "reactor data", + "reactor-data", "反应堆数据", - "energy production", + "energy-production", "能源生产", - "nuclear statistics", + "nuclear-statistics", "核能统计", - "IAEA", + "iaea", "国际原子能机构", - "nuclear research", + "nuclear-research", "核研究", - "fuel testing", + "fuel-testing", "燃料测试" ], "data_content": { @@ -8089,6 +41910,199 @@ "has_api": true, "file_path": "international/energy/iea.json" }, + { + "id": "irena", + "name": { + "en": "IRENA - International Renewable Energy Agency", + "zh": "国际可再生能源署" + }, + "description": { + "en": "The International Renewable Energy Agency (IRENA) is an intergovernmental organisation supporting countries in their transition to a sustainable energy future. IRENA provides the most comprehensive global dataset on renewable energy capacity, generation, costs and investment. Its statistics cover 200+ countries with data from 2000 onwards, serving as the definitive reference for renewable energy deployment worldwide.", + "zh": "国际可再生能源署(IRENA)是支持各国向可持续能源未来转型的政府间组织。IRENA提供全球最全面的可再生能源装机容量、发电量、成本和投资数据集,统计覆盖200多个国家,数据从2000年起,是全球可再生能源部署的权威参考。" + }, + "website": "https://www.irena.org", + "data_url": "https://www.irena.org/Data", + "api_url": "https://pxweb.irena.org/pxweb/en/IRENASTAT", + "country": null, + "domains": [ + "energy", + "climate", + "environment", + "economics" + ], + "geographic_scope": "global", + "update_frequency": "annual", + "tags": [ + "renewable-energy", + "solar", + "wind", + "hydropower", + "bioenergy", + "geothermal", + "energy-transition", + "可再生能源", + "太阳能", + "风能", + "装机容量", + "发电量", + "能源成本", + "irena", + "clean-energy", + "energy-investment" + ], + "data_content": { + "en": [ + "Renewable Energy Statistics - capacity, generation and balances for 200+ countries", + "Renewable Power Generation Costs - LCOE data for solar, wind, hydro, bioenergy, geothermal", + "Renewable Energy Employment - jobs by technology and country", + "IRENA RE Capacity Statistics - installed capacity by technology and country", + "Global Landscape of Renewable Energy Finance", + "Renewable Energy Auctions - contract prices and volumes", + "Off-grid Renewable Energy Statistics", + "Hydrogen cost and production data", + "Energy Transition Investment Tracking" + ], + "zh": [ + "可再生能源统计 - 200多个国家的装机容量、发电量和能源平衡", + "可再生能源发电成本 - 太阳能、风能、水电、生物能源、地热的平准化度电成本", + "可再生能源就业 - 按技术和国家分类的就业数据", + "可再生能源装机容量统计 - 按技术和国家分类的装机容量", + "全球可再生能源融资格局", + "可再生能源拍卖 - 合同价格和交易量", + "离网可再生能源统计", + "氢能成本和生产数据", + "能源转型投资追踪" + ] + }, + "authority_level": "international", + "has_api": true, + "file_path": "international/energy/irena.json" + }, + { + "id": "jodi", + "name": { + "en": "JODI - Joint Organisations Data Initiative", + "zh": "联合组织数据倡议" + }, + "description": { + "en": "The Joint Organisations Data Initiative (JODI) is a concrete outcome of international efforts to improve the availability and reliability of energy data. It collects and disseminates data on oil and natural gas from over 100 countries, representing approximately 90% of global supply and demand. JODI is supported by seven international organizations (APEC, Eurostat, IEA, IEF, OLADE, OPEC, UNSD) and provides timely, transparent, and freely accessible energy statistics to enhance market transparency and reduce price volatility.", + "zh": "联合组织数据倡议(JODI)是国际社会提高能源数据可用性和可靠性的重要成果。它收集并发布来自100多个国家的石油和天然气数据,覆盖全球约90%的供需量。JODI由七个国际组织(APEC、Eurostat、IEA、IEF、OLADE、OPEC、UNSD)支持,提供及时、透明和免费的能源统计数据,以增强市场透明度并降低价格波动。" + }, + "website": "https://www.jodidata.org", + "data_url": "https://www.jodidata.org/oil/database/data-downloads.aspx", + "api_url": null, + "country": null, + "domains": [ + "energy", + "commodities" + ], + "geographic_scope": "global", + "update_frequency": "monthly", + "tags": [ + "jodi", + "oil", + "natural-gas", + "energy-data", + "energy-transparency", + "石油数据", + "天然气", + "能源统计", + "international-organization", + "market-transparency", + "energy-supply", + "energy-demand" + ], + "data_content": { + "en": [ + "JODI Oil World Database - monthly oil statistics from 100+ countries", + "JODI Gas World Database - monthly natural gas statistics", + "Production, imports, exports, refinery intake/output data", + "Stock levels and stock changes", + "Demand/consumption data by product category", + "Country-level data with historical time series", + "Data quality assessments and timeliness indicators" + ], + "zh": [ + "JODI石油世界数据库 - 100多个国家的月度石油统计", + "JODI天然气世界数据库 - 月度天然气统计", + "生产、进口、出口、炼油进出料数据", + "库存水平和库存变化", + "按产品类别的需求/消费数据", + "国家级数据及历史时间序列", + "数据质量评估和时效性指标" + ] + }, + "authority_level": "international", + "has_api": false, + "file_path": "international/energy/jodi.json" + }, + { + "id": "opec-statistics", + "name": { + "en": "OPEC Statistics", + "zh": "石油输出国组织统计数据" + }, + "description": { + "en": "The Organization of the Petroleum Exporting Countries (OPEC) provides authoritative data on global oil markets, including crude oil production, exports, prices, and demand forecasts. OPEC publishes the Monthly Oil Market Report (MOMR) and the Annual Statistical Bulletin (ASB), covering oil supply/demand balances, refinery operations, tanker markets, and macroeconomic indicators for its 13 member countries and beyond. Founded in 1960, OPEC coordinates petroleum policies among member states and is a primary source for global oil market intelligence.", + "zh": "石油输出国组织(OPEC)提供全球石油市场的权威数据,包括原油产量、出口量、价格和需求预测。OPEC发布月度石油市场报告(MOMR)和年度统计公报(ASB),涵盖石油供需平衡、炼油作业、油轮市场和13个成员国及全球宏观经济指标。OPEC成立于1960年,负责协调成员国的石油政策,是全球石油市场情报的主要来源。" + }, + "website": "https://www.opec.org", + "data_url": "https://asb.opec.org", + "api_url": null, + "country": null, + "domains": [ + "energy", + "economics", + "commodities" + ], + "geographic_scope": "global", + "update_frequency": "monthly", + "tags": [ + "opec", + "oil", + "petroleum", + "crude-oil", + "石油", + "原油", + "energy", + "能源", + "oil-production", + "oil-prices", + "oil-market", + "international-organization", + "commodities", + "大宗商品" + ], + "data_content": { + "en": [ + "Monthly Oil Market Report (MOMR) - oil supply/demand analysis and forecasts", + "Annual Statistical Bulletin (ASB) - comprehensive oil and energy statistics", + "Crude oil production data by member country", + "Oil exports and import data", + "OPEC Reference Basket price tracking", + "World oil demand and supply estimates", + "Refinery throughput and capacity data", + "Natural gas production statistics for member countries", + "Macroeconomic indicators for oil-producing nations", + "Tanker and freight market data" + ], + "zh": [ + "月度石油市场报告(MOMR)- 石油供需分析与预测", + "年度统计公报(ASB)- 综合石油和能源统计", + "成员国原油产量数据", + "石油进出口数据", + "OPEC参考篮子价格跟踪", + "全球石油需求和供应估计", + "炼油产能和加工量数据", + "成员国天然气生产统计", + "产油国宏观经济指标", + "油轮和运费市场数据" + ] + }, + "authority_level": "international", + "has_api": false, + "file_path": "international/energy/opec-statistics.json" + }, { "id": "basel-convention", "name": { @@ -8104,26 +42118,26 @@ "api_url": null, "country": null, "domains": [ - "Environment", - "Waste Management", - "Hazardous Materials", - "International Trade", - "Environmental Law" + "environment", + "waste-management", + "hazardous-materials", + "international-trade", + "environmental-law" ], "geographic_scope": "global", "update_frequency": "annual", "tags": [ - "hazardous waste", - "environmental protection", - "waste management", - "transboundary movements", - "international convention", - "UNEP", + "hazardous-waste", + "environmental-protection", + "waste-management", + "transboundary-movements", + "international-convention", + "unep", "e-waste", - "plastic waste", - "circular economy", - "environmental law", - "illegal trafficking" + "plastic-waste", + "circular-economy", + "environmental-law", + "illegal-trafficking" ], "data_content": { "en": [ @@ -8182,12 +42196,12 @@ "api_url": "https://api-sandbox.ess-dive.lbl.gov/", "country": null, "domains": [ - "Climate Change", - "Environment", - "Carbon Emissions", - "Atmospheric Science", - "Energy Statistics", - "Greenhouse Gases" + "climate-change", + "environment", + "carbon-emissions", + "atmospheric-science", + "energy-statistics", + "greenhouse-gases" ], "geographic_scope": "global", "update_frequency": "irregular", @@ -8261,27 +42275,27 @@ "api_url": null, "country": null, "domains": [ - "Wildlife Conservation", - "Endangered Species", - "International Trade", - "Environmental Protection", - "Biodiversity" + "wildlife-conservation", + "endangered-species", + "international-trade", + "environmental-protection", + "biodiversity" ], "geographic_scope": "global", "update_frequency": "annual", "tags": [ - "CITES", - "wildlife trade", - "endangered species", + "cites", + "wildlife-trade", + "endangered-species", "conservation", "biodiversity", - "international trade", - "environmental protection", - "UNEP-WCMC", - "species monitoring", - "wildlife conservation", - "trade regulations", - "fauna and flora" + "international-trade", + "environmental-protection", + "unep-wcmc", + "species-monitoring", + "wildlife-conservation", + "trade-regulations", + "fauna-and-flora" ], "data_content": { "en": [ @@ -8313,6 +42327,194 @@ "has_api": false, "file_path": "international/environment/cites-trade-database.json" }, + { + "id": "eea-climate", + "name": { + "en": "European Environment Agency", + "zh": "欧洲环境署" + }, + "description": { + "en": "The European Environment Agency (EEA) is an agency of the European Union whose task is to provide sound, independent information on the environment. The EEA collects, manages, and publishes comprehensive data on Europe's environment, including climate change indicators, greenhouse gas emissions, air quality, biodiversity, and resource use. It supports EU environmental policy development and public awareness through its data portal and indicator assessments.", + "zh": "欧洲环境署(EEA)是欧盟的一个机构,其任务是提供关于环境的可靠、独立的信息。EEA收集、管理和发布关于欧洲环境的综合数据,包括气候变化指标、温室气体排放、空气质量、生物多样性和资源利用。通过其数据门户和指标评估,支持欧盟环境政策制定和公众意识提升。" + }, + "website": "https://www.eea.europa.eu", + "data_url": "https://www.eea.europa.eu/en/datahub", + "api_url": "https://discodata.eea.europa.eu/", + "authority_level": "international", + "country": null, + "domains": [ + "environment", + "climate", + "energy", + "air-quality", + "biodiversity", + "water" + ], + "geographic_scope": "regional", + "update_frequency": "annual", + "tags": [ + "climate-change", + "greenhouse-gas", + "emissions", + "air-quality", + "biodiversity", + "environment", + "europe", + "eu", + "carbon", + "renewable-energy", + "water-quality", + "waste", + "pollution", + "eea", + "气候变化", + "温室气体", + "欧洲环境", + "空气质量" + ], + "data_content": { + "en": [ + "Greenhouse Gas Emissions - National and EU-level GHG emission inventories, trends, and projections by sector", + "Climate Change Indicators - Temperature anomalies, sea level rise, glacier retreat, extreme weather events across Europe", + "Air Quality Data - Real-time and historical air pollutant concentrations (PM2.5, PM10, NO2, O3) from monitoring stations across Europe", + "Renewable Energy Statistics - Share of renewable energy in gross final energy consumption by country and sector", + "EU Emissions Trading System (ETS) - Verified emissions, allowances, and compliance data from EU ETS installations", + "Biodiversity Indicators - Species population trends, habitat conservation status, protected area coverage", + "Water Quality and Quantity - Bathing water quality, river and lake ecological status, water exploitation index", + "Waste Generation and Recycling - Municipal waste generation, recycling rates, and circular economy indicators by country", + "Land Use and Land Cover - CORINE Land Cover data and land use change statistics across Europe", + "Transport and Environment - Transport-related emissions, fuel consumption, and modal split data" + ], + "zh": [ + "温室气体排放 - 国家和欧盟层面的温室气体排放清单、趋势和按部门分类的预测", + "气候变化指标 - 欧洲各地的温度异常、海平面上升、冰川退缩、极端天气事件", + "空气质量数据 - 欧洲各监测站的实时和历史空气污染物浓度(PM2.5、PM10、NO2、O3)", + "可再生能源统计 - 按国家和部门分类的可再生能源在最终能源消费总量中的占比", + "欧盟排放交易体系(ETS)- 来自EU ETS设施的核实排放量、配额和合规数据", + "生物多样性指标 - 物种种群趋势、栖息地保护状况、保护区覆盖率", + "水质和水量 - 浴场水质、河流和湖泊生态状况、水资源开发指数", + "废物产生和回收 - 按国家分类的城市废物产生量、回收率和循环经济指标", + "土地利用和土地覆盖 - CORINE土地覆盖数据和欧洲各地的土地利用变化统计", + "交通与环境 - 交通相关排放、燃料消耗和运输方式分担率数据" + ] + }, + "has_api": true, + "file_path": "international/environment/eea-climate.json" + }, + { + "id": "isric-world-soil", + "name": { + "en": "ISRIC World Soil Information", + "zh": "ISRIC世界土壤信息中心" + }, + "description": { + "en": "ISRIC - World Soil Information is an independent foundation established in 1966, serving as the global reference center for soil data and information. It hosts SoilGrids, a global gridded soil information system providing predictions of soil properties at 250m resolution, and the World Soil Reference Collection. ISRIC supports sustainable land management and food security through standardized soil data.", + "zh": "ISRIC世界土壤信息中心成立于1966年,是全球土壤数据和信息的参考中心。托管SoilGrids全球网格化土壤信息系统,提供250米分辨率的土壤属性预测,以及世界土壤参考收藏。通过标准化土壤数据支持可持续土地管理和粮食安全。" + }, + "website": "https://www.isric.org", + "data_url": "https://www.isric.org/explore", + "api_url": "https://rest.isric.org", + "authority_level": "research", + "country": null, + "domains": [ + "environment", + "agriculture", + "earth-science" + ], + "geographic_scope": "global", + "update_frequency": "annual", + "tags": [ + "soil", + "土壤", + "land-degradation", + "土地退化", + "soil-carbon", + "土壤碳", + "soilgrids", + "erosion", + "侵蚀", + "food-security", + "粮食安全", + "land-management" + ], + "data_content": { + "en": [ + "SoilGrids: global soil property maps at 250m resolution (organic carbon, pH, texture, etc.)", + "World Soil Reference Collection with 1,000+ soil profiles", + "Soil erosion risk assessments and land degradation indicators", + "Harmonized soil property databases (WoSIS)" + ], + "zh": [ + "SoilGrids:250米分辨率的全球土壤属性图(有机碳、pH、质地等)", + "包含1000多个土壤剖面的世界土壤参考收藏", + "土壤侵蚀风险评估和土地退化指标", + "统一的土壤属性数据库(WoSIS)" + ] + }, + "has_api": true, + "file_path": "international/environment/isric-world-soil.json" + }, + { + "id": "bis-cbta", + "name": { + "en": "BIS Central Bank Total Assets", + "zh": "国际清算银行中央银行总资产统计" + }, + "description": { + "en": "The BIS Central Bank Total Assets dataset tracks the evolution of central bank balance sheets across more than 50 advanced and emerging market economies. Financial assets include gold, foreign exchange reserves, and claims on government, financial and non-financial sectors. The dataset features long historical series, with annual data averaging approximately 100 years and some series extending back to the 19th century.", + "zh": "国际清算银行中央银行总资产数据集追踪全球50多个发达和新兴市场经济体的中央银行资产负债表变化。金融资产包括黄金、外汇储备以及对政府、金融和非金融部门的债权。该数据集提供长期历史序列,年度数据平均约100年,部分序列可追溯至19世纪。" + }, + "website": "https://www.bis.org", + "data_url": "https://data.bis.org/topics/CBTA", + "api_url": "https://stats.bis.org/api-doc/v2/", + "authority_level": "international", + "country": null, + "domains": [ + "finance", + "monetary-policy", + "central-banking" + ], + "geographic_scope": "global", + "update_frequency": "quarterly", + "tags": [ + "central-bank", + "中央银行", + "foreign-exchange-reserves", + "外汇储备", + "balance-sheet", + "资产负债表", + "monetary-statistics", + "货币统计", + "gold-reserves", + "黄金储备", + "bis", + "国际清算银行", + "official-reserves", + "官方储备", + "total-assets", + "总资产" + ], + "data_content": { + "en": [ + "Central bank total assets for 50+ countries", + "Gold and foreign exchange reserves holdings", + "Claims on government, financial and non-financial sectors", + "Monthly, quarterly, and annual time series", + "Historical data extending back to the 19th century for some countries", + "Data available in domestic currency, percentage of GDP, and US dollars" + ], + "zh": [ + "50多个国家的中央银行总资产", + "黄金和外汇储备持有量", + "对政府、金融和非金融部门的债权", + "月度、季度和年度时间序列", + "部分国家的历史数据可追溯至19世纪", + "提供本币、GDP百分比和美元三种计量单位" + ] + }, + "has_api": true, + "file_path": "international/finance/bis-cbta.json" + }, { "id": "bis-reserves", "name": { @@ -8329,11 +42531,11 @@ "authority_level": "international", "country": null, "domains": [ - "Central Banking", - "Foreign Exchange Reserves", - "Monetary Policy", - "Financial Markets", - "International Finance" + "central-banking", + "foreign-exchange-reserves", + "monetary-policy", + "financial-markets", + "international-finance" ], "geographic_scope": "global", "update_frequency": "quarterly", @@ -8377,123 +42579,10 @@ "对金融部门债权 - 中央银行对金融机构的贷款", "历史时间序列 - 年度数据中位数起始年份为1942年,部分序列可追溯至19世纪", "多种计价单位 - 数据以本币、GDP百分比和美元提供" - ] - }, - "has_api": true, - "file_path": "international/finance/bis-reserves.json" - }, - { - "id": "bis-statistics", - "name": { - "en": "BIS Statistics - Bank for International Settlements", - "zh": "国际清算银行统计数据" - }, - "description": { - "en": "The Bank for International Settlements (BIS) Statistics Portal provides comprehensive global financial and monetary statistics compiled in cooperation with 63 central banks and national authorities worldwide. Established in 1930, BIS serves central banks in their pursuit of monetary and financial stability through international cooperation. The statistics cover international banking, debt securities, credit, global liquidity, derivatives, property prices, consumer prices, exchange rates, and central bank statistics.", - "zh": "国际清算银行(BIS)统计门户提供与全球63家中央银行和国家当局合作编制的综合全球金融和货币统计数据。BIS成立于1930年,通过国际合作支持中央银行追求货币和金融稳定。统计数据涵盖国际银行业、债务证券、信贷、全球流动性、衍生品、房地产价格、消费者价格、汇率和中央银行统计。" + ] }, - "website": "https://www.bis.org", - "data_url": "https://data.bis.org", - "api_url": "https://stats.bis.org/api-doc/v2/", - "authority_level": "international", - "country": null, - "domains": [ - "Banking", - "Finance", - "Securities", - "Credit", - "Liquidity", - "Derivatives", - "Real Estate", - "Exchange Rates", - "Central Banking", - "Monetary Policy", - "Payments" - ], - "geographic_scope": "global", - "update_frequency": "quarterly", - "tags": [ - "bis", - "bank-for-international-settlements", - "国际清算银行", - "central-bank", - "中央银行", - "banking-statistics", - "银行统计", - "international-banking", - "国际银行业", - "foreign-exchange", - "外汇", - "derivatives", - "衍生品", - "otc-derivatives", - "场外衍生品", - "global-liquidity", - "全球流动性", - "financial-stability", - "金融稳定", - "monetary-statistics", - "货币统计", - "credit", - "信贷", - "debt-securities", - "债券", - "exchange-rates", - "汇率", - "property-prices", - "房地产价格", - "triennial-survey", - "三年期调查", - "sdmx-api", - "consolidated-banking", - "银行业综合统计", - "locational-banking", - "区域银行统计" - ], - "data_content": { - "en": [ - "Locational Banking Statistics - International banking activity from a residence perspective, covering cross-border positions", - "Consolidated Banking Statistics - Worldwide consolidated positions of internationally active banking groups", - "Global Liquidity Indicators - Foreign currency credit to non-bank borrowers outside the United States", - "Debt Securities Statistics - Issuance and amounts outstanding of international and domestic debt securities", - "Credit to Non-Financial Sector - Credit aggregates to households, non-financial corporations, and government", - "Credit-to-GDP Gaps - Deviations of credit-to-GDP ratios from long-term trends as early warning indicators", - "Debt Service Ratios - Principal and interest payments of private non-financial sector relative to income", - "Triennial Central Bank Survey - Foreign exchange and OTC derivatives market turnover and positions", - "OTC Derivatives Statistics - Notional amounts outstanding and gross market values of over-the-counter derivatives", - "Exchange-Traded Derivatives Statistics - Turnover and open interest in exchange-traded derivatives", - "Residential Property Prices - Real and nominal residential property price indices for advanced and emerging economies", - "Commercial Property Prices - Commercial real estate price indices", - "Effective Exchange Rates - Broad and narrow nominal and real effective exchange rate indices", - "US Dollar Exchange Rates - Bilateral exchange rates against the US dollar", - "Consumer Price Indices - Consumer price inflation measures for international comparison", - "Central Bank Total Assets - Evolution of central bank balance sheets across 50+ economies", - "Central Bank Policy Rates - Policy interest rates set by central banks", - "Payment Statistics - Retail and large-value payment instruments, systems, and transactions" - ], - "zh": [ - "区域性银行统计 - 从居住地角度的国际银行业活动,涵盖跨境头寸", - "合并银行统计 - 国际活跃银行集团的全球合并头寸", - "全球流动性指标 - 美国以外非银行借款人的外币信贷", - "债务证券统计 - 国际和国内债务证券的发行和未偿余额", - "非金融部门信贷 - 对家庭、非金融企业和政府的信贷总量", - "信贷与GDP缺口 - 信贷与GDP比率相对于长期趋势的偏差,作为早期预警指标", - "偿债比率 - 私人非金融部门的本金和利息支付相对于收入的比率", - "三年期中央银行调查 - 外汇和场外衍生品市场成交量及头寸", - "场外衍生品统计 - 场外衍生品的名义金额未偿余额和总市值", - "交易所交易衍生品统计 - 交易所交易衍生品的成交量和未平仓合约", - "住宅房地产价格 - 发达和新兴经济体的实际和名义住宅房地产价格指数", - "商业房地产价格 - 商业地产价格指数", - "有效汇率 - 广义和狭义的名义和实际有效汇率指数", - "美元汇率 - 相对于美元的双边汇率", - "消费者价格指数 - 用于国际比较的消费者价格通胀衡量指标", - "中央银行总资产 - 50多个经济体中央银行资产负债表的演变", - "中央银行政策利率 - 中央银行设定的政策利率", - "支付统计 - 零售和大额支付工具、系统和交易" - ] - }, - "has_api": true, - "file_path": "international/finance/bis-statistics.json" + "has_api": true, + "file_path": "international/finance/bis-reserves.json" }, { "id": "ebrd", @@ -8574,14 +42663,14 @@ "保险监管", "financial-stability", "金融稳定", - "GIMAR", + "gimar", "全球保险市场报告", - "ICS", + "ics", "insurance-capital-standard", "保险资本标准", "systemic-risk", "系统性风险", - "ComFrame", + "comframe", "insurance-core-principles", "保险核心原则", "climate-risk", @@ -8683,30 +42772,30 @@ "api_url": null, "country": null, "domains": [ - "public health", + "public-health", "epidemiology", - "disease surveillance", - "outbreak response", - "laboratory systems", - "health security" + "disease-surveillance", + "outbreak-response", + "laboratory-systems", + "health-security" ], "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" + "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": [ @@ -8733,93 +42822,452 @@ ] }, "authority_level": "international", - "has_api": false, - "file_path": "international/health/africa-cdc.json" + "has_api": false, + "file_path": "international/health/africa-cdc.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、流感、艾滋病毒/艾滋病、肝炎、麻疹、结核病和抗菌素耐药性。数据通过交互式仪表板、可下载数据集和传染病监测地图集等形式提供。" + }, + "website": "https://www.ecdc.europa.eu", + "data_url": "https://www.ecdc.europa.eu/en/data-dashboards-and-databases", + "api_url": null, + "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", + "tags": [ + "infectious-diseases", + "public-health", + "surveillance", + "epidemiology", + "europe", + "ecdc", + "covid-19", + "influenza", + "antimicrobial-resistance", + "tuberculosis", + "hiv-aids", + "hepatitis", + "vaccination", + "outbreak", + "disease-control" + ], + "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": "gavi", + "name": { + "en": "GAVI, the Vaccine Alliance", + "zh": "全球疫苗免疫联盟" + }, + "description": { + "en": "GAVI, the Vaccine Alliance is an international organisation that brings together public and private sectors to create equal access to new and underused vaccines for children in the world's poorest countries. GAVI provides data on global immunization coverage, vaccine supply and procurement, COVAX facility allocations, country-level vaccination programs, and financing for immunization. It is the primary data source for equitable vaccine distribution in developing countries.", + "zh": "全球疫苗免疫联盟(GAVI)是一个国际组织,汇集公共和私营部门,为世界最贫穷国家的儿童创造平等获取新型和未充分使用疫苗的机会。GAVI提供全球免疫覆盖、疫苗供应和采购、COVAX分配、国家级疫苗接种计划和免疫融资数据。它是发展中国家公平疫苗分配的主要数据来源。" + }, + "website": "https://www.gavi.org", + "data_url": "https://www.gavi.org/programmes-impact/our-impact/facts-and-figures", + "api_url": null, + "country": null, + "domains": [ + "health", + "immunization", + "vaccines", + "global-health", + "development" + ], + "geographic_scope": "global", + "update_frequency": "quarterly", + "tags": [ + "gavi", + "vaccines", + "immunization", + "covax", + "global-health", + "疫苗", + "免疫接种", + "全球卫生", + "疫苗联盟" + ], + "data_content": { + "en": [ + "Immunization Coverage - Country-level vaccination coverage rates", + "COVAX Facility - COVID-19 vaccine allocation and delivery data", + "Vaccine Supply - Procurement, supply chain, and market data", + "Financing - Donor contributions and co-financing data", + "Programme Impact - Lives saved, future deaths averted estimates", + "Country Profiles - Individual country immunization programme data" + ], + "zh": [ + "免疫覆盖 - 国家级疫苗接种覆盖率", + "COVAX设施 - COVID-19疫苗分配和交付数据", + "疫苗供应 - 采购、供应链和市场数据", + "融资 - 捐助方贡献和联合融资数据", + "项目影响 - 挽救生命和避免死亡估计", + "国家概况 - 各国免疫项目数据" + ] + }, + "authority_level": "international", + "has_api": false, + "file_path": "international/health/gavi.json" + }, + { + "id": "who-gho", + "name": { + "en": "WHO Global Health Observatory", + "zh": "世界卫生组织全球卫生观察站" + }, + "description": { + "en": "WHO's Global Health Observatory provides access to health statistics for WHO member states, including disease burden, health systems, and risk factors.", + "zh": "世界卫生组织全球卫生观察站提供成员国的卫生统计数据,包括疾病负担、卫生系统和风险因素。" + }, + "website": "https://www.who.int/data/gho", + "data_url": "https://www.who.int/data/gho/data/indicators", + "api_url": "https://ghoapi.azureedge.net/api", + "data_content": { + "en": [ + "Mortality", + "disease incidence", + "health workforce", + "immunization coverage", + "environmental health", + "NCDs", + "infectious diseases", + "UHC indicators" + ], + "zh": [ + "死亡率、疾病发病率、卫生人力、免疫覆盖率、环境卫生、非传染性疾病、传染病、全民健康覆盖指标" + ] + }, + "authority_level": "international", + "update_frequency": "annual", + "domains": [ + "health" + ], + "tags": [ + "who", + "health", + "mortality", + "disease", + "immunization" + ], + "country": null, + "geographic_scope": "global", + "has_api": true, + "file_path": "international/health/who-gho.json" + }, + { + "id": "un-ocha-fts", + "name": { + "en": "UN OCHA Financial Tracking Service", + "zh": "联合国人道主义事务协调厅资金追踪系统" + }, + "description": { + "en": "The Financial Tracking Service (FTS) is a centralized platform maintained by the United Nations Office for the Coordination of Humanitarian Affairs (OCHA) that records all reported humanitarian aid contributions and pledges worldwide. It tracks funding flows from donors to implementing organizations across humanitarian emergencies, providing real-time transparency on humanitarian financing.", + "zh": "资金追踪系统(FTS)是联合国人道主义事务协调厅(OCHA)维护的全球人道主义援助资金追踪平台,记录所有已报告的人道主义捐款和承诺,追踪从捐助方到执行组织的资金流向,为人道主义融资提供实时透明度。" + }, + "website": "https://www.unocha.org", + "data_url": "https://fts.unocha.org", + "api_url": "https://fts.unocha.org/content/fts-public-api", + "authority_level": "international", + "country": null, + "domains": [ + "humanitarian", + "development", + "finance" + ], + "geographic_scope": "global", + "update_frequency": "daily", + "tags": [ + "humanitarian-aid", + "人道主义援助", + "funding", + "资金追踪", + "ocha", + "联合国", + "emergency-response", + "donor-contributions", + "development-assistance", + "人道主义融资" + ], + "data_content": { + "en": [ + "Humanitarian aid contributions and pledges by donor country and organization", + "Funding flows by emergency, sector, and recipient organization", + "Appeals and response plans funding status", + "Historical humanitarian financing data from 1992 to present" + ], + "zh": [ + "按捐助国和组织分类的人道主义援助捐款和承诺", + "按紧急事件、部门和受援组织分类的资金流向", + "呼吁和应对计划的资金状况", + "1992年至今的历史人道主义融资数据" + ] + }, + "has_api": true, + "file_path": "international/humanitarian/un-ocha-fts.json" + }, + { + "id": "un-population", + "name": { + "en": "UN Population Division", + "zh": "联合国人口司" + }, + "description": { + "en": "The UN Population Division provides authoritative estimates and projections of world population, fertility, mortality, and migration.", + "zh": "联合国人口司提供权威的全球人口估计和预测,涵盖生育率、死亡率和迁移数据。" + }, + "website": "https://population.un.org", + "data_url": "https://population.un.org/wpp/", + "api_url": "https://population.un.org/dataportalapi/api/v1", + "data_content": { + "en": [ + "World population prospects", + "population estimates", + "fertility rates", + "life expectancy", + "migration flows", + "urbanization projections" + ], + "zh": [ + "世界人口展望、人口估计、生育率、预期寿命、迁移流动、城市化预测" + ] + }, + "authority_level": "international", + "update_frequency": "irregular", + "domains": [ + "demographics" + ], + "tags": [ + "population", + "fertility", + "mortality", + "migration", + "urbanization" + ], + "country": null, + "geographic_scope": "global", + "has_api": true, + "file_path": "international/humanitarian/un-population.json" + }, + { + "id": "unhcr", + "name": { + "en": "UNHCR Refugee Data Finder", + "zh": "联合国难民署难民数据查询" + }, + "description": { + "en": "UNHCR's statistical database on refugees, asylum-seekers, internally displaced persons, and stateless people worldwide.", + "zh": "联合国难民署关于全球难民、寻求庇护者、境内流离失所者和无国籍人的统计数据库。" + }, + "website": "https://www.unhcr.org", + "data_url": "https://www.unhcr.org/refugee-statistics/", + "api_url": "https://api.unhcr.org/population/v1/", + "data_content": { + "en": [ + "Refugee populations", + "asylum applications", + "internally displaced persons", + "stateless persons", + "resettlement data", + "country of origin/asylum statistics" + ], + "zh": [ + "难民人口、庇护申请、境内流离失所者、无国籍人、重新安置数据、来源国/庇护国统计" + ] + }, + "authority_level": "international", + "update_frequency": "annual", + "domains": [ + "demographics", + "humanitarian" + ], + "tags": [ + "unhcr", + "refugees", + "asylum", + "displacement", + "humanitarian" + ], + "country": null, + "geographic_scope": "global", + "has_api": true, + "file_path": "international/humanitarian/unhcr.json" + }, + { + "id": "unicef", + "name": { + "en": "UNICEF Data", + "zh": "联合国儿童基金会数据" + }, + "description": { + "en": "UNICEF collects and disseminates data on the situation of children and women worldwide, including health, education, and child protection indicators.", + "zh": "联合国儿童基金会收集和发布全球儿童和妇女状况数据,包括健康、教育和儿童保护指标。" + }, + "website": "https://data.unicef.org", + "data_url": "https://data.unicef.org/resources/resource-type/datasets/", + "api_url": "https://sdmx.data.unicef.org/ws/public/sdmxapi/rest", + "data_content": { + "en": [ + "Child mortality", + "immunization", + "nutrition", + "education", + "child protection", + "water and sanitation", + "HIV/AIDS indicators" + ], + "zh": [ + "儿童死亡率、免疫接种、营养、教育、儿童保护、水与卫生、艾滋病指标" + ] + }, + "authority_level": "international", + "update_frequency": "annual", + "domains": [ + "health", + "demographics", + "education" + ], + "tags": [ + "unicef", + "children", + "health", + "education", + "development" + ], + "country": null, + "geographic_scope": "global", + "has_api": true, + "file_path": "international/humanitarian/unicef.json" }, { - "id": "ecdc-surveillance", + "id": "unctad-infrastructure-statistics", "name": { - "en": "ECDC Surveillance Data", - "zh": "欧洲疾病预防控制中心监测数据" + "en": "UNCTAD Infrastructure Statistics Database", + "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、流感、艾滋病毒/艾滋病、肝炎、麻疹、结核病和抗菌素耐药性。数据通过交互式仪表板、可下载数据集和传染病监测地图集等形式提供。" + "en": "UNCTADstat provides comprehensive infrastructure statistics covering transport, telecommunications, electricity, and water sectors as part of its Production Capacity Index (PCI). The database harmonizes and integrates infrastructure-related indicators for 193 economies, including both developed and developing countries, with particular focus on developing nations and transition economies.", + "zh": "联合国贸发会议统计数据库(UNCTADstat)提供涵盖运输、电信、电力和水利等部门的全面基础设施统计数据,作为其生产能力指数(PCI)的一部分。该数据库整合了193个经济体的基础设施相关指标,包括发达国家和发展中国家,特别关注发展中国家和转型经济体。" }, - "website": "https://www.ecdc.europa.eu", - "data_url": "https://www.ecdc.europa.eu/en/data-dashboards-and-databases", - "api_url": null, + "website": "https://unctad.org", + "data_url": "https://unctadstat.unctad.org/datacentre", + "api_url": "https://unctadstat.unctad.org/EN/Documentation.html", + "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" + "infrastructure", + "transport", + "telecommunications", + "energy", + "water-utilities", + "ict" ], - "geographic_scope": "regional", - "update_frequency": "weekly", + "geographic_scope": "global", + "update_frequency": "annual", "tags": [ - "infectious-diseases", - "public-health", - "surveillance", - "epidemiology", - "europe", - "ecdc", - "covid-19", - "influenza", - "antimicrobial-resistance", - "tuberculosis", - "hiv-aids", - "hepatitis", - "vaccination", - "outbreak", - "disease-control" + "infrastructure", + "基础设施", + "transport", + "运输", + "telecommunications", + "电信", + "ict", + "信息通信技术", + "electricity", + "电力", + "water-utilities", + "水利", + "production-capacity", + "生产能力", + "development-indicators", + "发展指标", + "unctad", + "贸发会议", + "un-statistics", + "联合国统计", + "trade-and-development", + "贸易与发展", + "developing-countries", + "发展中国家", + "global-infrastructure", + "全球基础设施" ], "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" + "Transport infrastructure indicators (roads, railways, ports, airports)", + "Telecommunications and ICT infrastructure statistics", + "Electricity generation and distribution infrastructure data", + "Water utilities and infrastructure indicators", + "Production Capacity Index (PCI) with 46 indicators across 8 components", + "Infrastructure investment and development statistics" ], "zh": [ - "抗菌素耐药性 - EARS-Net监测数据", - "抗菌素消耗 - ESAC-Net数据", - "COVID-19 - 病例通报、检测、疫苗接种、变异株", - "流感 - EISN网络监测数据", - "呼吸道病毒 - 流感、RSV、SARS-CoV-2综合监测", - "艾滋病毒/艾滋病 - 病例通报、患病率、发病率", - "结核病 - 病例通报、耐药性", - "肝炎 - 乙型和丙型肝炎监测", - "性传播感染 - 性传播感染监测数据", - "疫苗可预防疾病 - 麻疹、风疹、百日咳、白喉", - "食源性和水源性疾病 - 沙门氏菌、弯曲杆菌、大肠杆菌、军团菌", - "媒介传播疾病 - 登革热、基孔肯雅热、西尼罗病毒、疟疾", - "医疗相关感染 - HAI-Net监测", - "侵袭性细菌性疾病 - 脑膜炎球菌病、肺炎球菌病", - "新发传染病 - 新型病原体和疫情数据" + "运输基础设施指标(道路、铁路、港口、机场)", + "电信和信息通信技术基础设施统计", + "电力生产和配送基础设施数据", + "水利公用事业和基础设施指标", + "生产能力指数(PCI),涵盖8个组成部分的46个指标", + "基础设施投资和发展统计" ] }, - "authority_level": "international", - "has_api": false, - "file_path": "international/health/ecdc-surveillance.json" + "has_api": true, + "file_path": "international/infrastructure/unctad-infrastructure-statistics.json" }, { "id": "wipo-ip-statistics", @@ -8837,7 +43285,7 @@ "api_url": null, "country": null, "domains": [ - "intellectual property", + "intellectual-property", "patents", "trademarks", "innovation", @@ -8900,6 +43348,167 @@ "has_api": false, "file_path": "international/intellectual-property/wipo.json" }, + { + "id": "ilo-statistics", + "name": { + "en": "International Labour Organization Statistics (ILOSTAT)", + "zh": "国际劳工组织统计数据库" + }, + "description": { + "en": "The world's leading source for international labour statistics, providing comprehensive data on employment, wages, working conditions, and social protection across 230+ countries.", + "zh": "世界领先的国际劳工统计来源,提供230多个国家的就业、工资、工作条件和社会保障数据。" + }, + "website": "https://ilostat.ilo.org/", + "data_url": "https://ilostat.ilo.org/data/", + "api_url": "https://ilostat.ilo.org/resources/sdmx-tools/", + "authority_level": "international", + "country": null, + "domains": [ + "labor", + "economics" + ], + "tags": [ + "employment", + "wages", + "labor-market", + "unemployment", + "social-protection", + "ilo" + ], + "update_frequency": "annual", + "data_content": { + "en": [ + "Employment and unemployment rates", + "Wages and earnings", + "Working conditions", + "Child labour statistics", + "Social protection coverage" + ], + "zh": [ + "就业和失业率", + "工资和收入", + "工作条件", + "童工统计", + "社会保障覆盖" + ] + }, + "geographic_scope": "global", + "has_api": true, + "file_path": "international/labor/ilo-statistics.json" + }, + { + "id": "gbif", + "name": { + "en": "Global Biodiversity Information Facility (GBIF)", + "zh": "全球生物多样性信息设施" + }, + "description": { + "en": "GBIF is an international network and data infrastructure providing open access to biodiversity data from around the world. It aggregates over 2.6 billion species occurrence records from thousands of institutions, including museum specimens, citizen science observations, and environmental DNA samples. Essential for research in ecology, conservation, paleontology, and evolution.", + "zh": "GBIF是一个国际网络和数据基础设施,提供全球生物多样性数据的开放访问。汇聚来自数千家机构的超过26亿条物种记录,包括博物馆标本、公民科学观测和环境DNA样本。是生态学、保护、古生物学和进化研究的重要资源。" + }, + "website": "https://www.gbif.org", + "data_url": "https://www.gbif.org/occurrence/search", + "api_url": "https://www.gbif.org/developer/summary", + "country": null, + "domains": [ + "biodiversity", + "ecology", + "paleontology", + "biology", + "conservation" + ], + "geographic_scope": "global", + "update_frequency": "daily", + "tags": [ + "biodiversity", + "species", + "ecology", + "conservation", + "specimens", + "citizen-science", + "open-data", + "api" + ], + "data_content": { + "en": [ + "Species occurrences - Over 2.6 billion georeferenced records worldwide", + "Taxonomy backbone - Standardized species classification and nomenclature", + "Museum specimens - Digitized natural history collections from global institutions", + "Citizen science data - Observations from platforms like iNaturalist, eBird", + "Environmental DNA - Metabarcoding and eDNA sampling records", + "Fossil records - Paleontological specimen data from natural history museums", + "Species checklists - Regional and thematic species inventories" + ], + "zh": [ + "物种记录 - 全球超过26亿条地理参考记录", + "分类学骨架 - 标准化物种分类和命名", + "博物馆标本 - 全球机构数字化自然历史收藏", + "公民科学数据 - 来自 iNaturalist、eBird 等平台的观测", + "环境DNA - 宏条形码和eDNA采样记录", + "化石记录 - 自然历史博物馆的古生物标本数据", + "物种名录 - 区域和专题物种清单" + ] + }, + "authority_level": "international", + "has_api": true, + "file_path": "international/paleontology/gbif.json" + }, + { + "id": "paleobiodb", + "name": { + "en": "Paleobiology Database (PBDB)", + "zh": "古生物学数据库" + }, + "description": { + "en": "The Paleobiology Database is a public resource for paleontological data, providing information on the fossil record of plants, animals, and microorganisms. It contains over 1.5 million fossil occurrences from more than 80,000 collections worldwide, spanning the entire Phanerozoic eon. The database supports research on biodiversity, extinction, evolution, and paleoecology.", + "zh": "古生物学数据库是古生物数据的公共资源,提供植物、动物和微生物的化石记录信息。包含全球超过80,000个采集点的150多万条化石记录,时间跨度涵盖整个显生宙。支持生物多样性、灭绝、进化和古生态学研究。" + }, + "website": "https://paleobiodb.org", + "data_url": "https://paleobiodb.org/navigator/", + "api_url": "https://paleobiodb.org/data1.2/", + "country": null, + "domains": [ + "paleontology", + "biology", + "geology", + "evolution" + ], + "geographic_scope": "global", + "update_frequency": "weekly", + "tags": [ + "paleontology", + "fossils", + "biodiversity", + "evolution", + "extinction", + "stratigraphy", + "open-data", + "api" + ], + "data_content": { + "en": [ + "Fossil occurrences - Over 1.5 million records with taxonomic, geographic, and stratigraphic data", + "Taxonomic database - Classification of fossil organisms across all major groups", + "Geologic time scale - Temporal framework for fossil record analysis", + "Paleogeographic data - Ancient plate positions and continental configurations", + "Collection records - Locality, lithology, and environmental information", + "Diversity curves - Biodiversity trends through geological time", + "Mass extinction data - Records of major extinction events" + ], + "zh": [ + "化石记录 - 超过150万条含分类学、地理和地层信息的记录", + "分类数据库 - 所有主要类群化石生物的分类", + "地质年代表 - 化石记录分析的时间框架", + "古地理数据 - 古板块位置和大陆构型", + "采集记录 - 产地、岩性和环境信息", + "多样性曲线 - 地质时期生物多样性趋势", + "大灭绝数据 - 主要灭绝事件记录" + ] + }, + "authority_level": "research", + "has_api": true, + "file_path": "international/paleontology/paleobiodb.json" + }, { "id": "bipm-kcdb", "name": { @@ -8916,31 +43525,31 @@ "api_url": "https://www.bipm.org/en/cipm-mra/kcdb-api", "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" + "metrology", + "measurement-standards", + "international-system-of-units", + "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", "tags": [ "metrology", "measurement-standards", - "SI-units", + "si-units", "calibration", "international-standards", "quality-assurance", - "UTC", + "utc", "traceability", - "CIPM-MRA", + "cipm-mra", "national-metrology-institutes" ], "data_content": { @@ -8990,78 +43599,188 @@ "api_url": null, "country": null, "domains": [ - "Food Safety", - "Food Standards", - "Food Labeling", - "Food Hygiene", - "Food Additives", - "Pesticide Residues", - "Veterinary Drug Residues", - "Contaminants", - "Food Inspection", - "Certification Systems", - "Nutrition", - "Food Quality" + "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": "annual", + "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" + ], + "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": "global-reporting-initiative", + "name": { + "en": "GRI - Global Reporting Initiative", + "zh": "全球报告倡议组织" + }, + "description": { + "en": "The Global Reporting Initiative (GRI) is an independent international organization that publishes the most widely adopted sustainability reporting standards. GRI provides the GRI Standards for economic, environmental, social and governance disclosures, a Sustainability Disclosure Database of corporate reports, and topic-specific guidance used by companies and regulators worldwide.", + "zh": "全球报告倡议组织(GRI)是独立的国际组织,发布全球采用最广泛的可持续发展报告标准。GRI 提供涵盖经济、环境、社会和治理披露的《GRI 准则》、企业报告的可持续发展披露数据库以及各议题专项指南,被全球企业和监管机构广泛使用。" + }, + "website": "https://www.globalreporting.org", + "data_url": "https://www.globalreporting.org/standards/", + "api_url": null, + "authority_level": "international", + "country": null, + "domains": [ + "esg-data", + "sustainability", + "standards" + ], + "geographic_scope": "global", + "update_frequency": "irregular", + "tags": [ + "esg", + "esg-reporting", + "esg披露", + "sustainability-reporting", + "可持续发展报告", + "gri-standards", + "gri准则", + "sustainability", + "可持续发展", + "corporate-disclosure", + "企业披露", + "GRI" + ], + "data_content": { + "en": [ + "GRI Standards: Universal, Sector and Topic Standards for sustainability reporting", + "GRI Sustainability Disclosure Database of corporate reports", + "Sector-specific reporting guidance (e.g., oil & gas, agriculture, coal)", + "Interoperability mappings with TCFD, ISSB, SASB and EU CSRD", + "Topic-specific standards on GHG emissions, water, biodiversity, labor and human rights" + ], + "zh": [ + "GRI 准则:可持续发展报告的通用、行业和议题标准", + "GRI 可持续发展披露数据库中的企业报告", + "行业专项报告指南(如油气、农业、煤炭)", + "与 TCFD、ISSB、SASB 和欧盟 CSRD 的互操作映射", + "有关温室气体排放、水、生物多样性、劳工和人权等议题的专项标准" + ] + }, + "has_api": false, + "file_path": "international/standards-metrology/global-reporting-initiative.json" + }, + { + "id": "sasb-standards", + "name": { + "en": "SASB Standards (IFRS Foundation)", + "zh": "SASB可持续发展会计准则(IFRS基金会)" + }, + "description": { + "en": "SASB Standards, now maintained by the IFRS Foundation alongside the ISSB, provide industry-specific sustainability disclosure standards covering 77 industries. They identify the subset of environmental, social, and governance (ESG) issues most relevant to financial performance and enterprise value, and are widely used for investor-focused sustainability disclosure globally.", + "zh": "SASB 可持续发展会计准则现由 IFRS 基金会与国际可持续准则理事会(ISSB)共同维护,提供覆盖 77 个行业的专项可持续披露准则。该准则识别与财务表现和企业价值最相关的环境、社会与治理(ESG)议题,是面向投资者的可持续信息披露的全球通用标准。" + }, + "website": "https://sasb.ifrs.org", + "data_url": "https://sasb.ifrs.org/standards/", + "api_url": null, + "authority_level": "international", + "country": null, + "domains": [ + "esg-data", + "sustainability", + "standards", + "finance" ], "geographic_scope": "global", - "update_frequency": "annual", + "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" + "sasb", + "esg", + "esg披露", + "sustainability-accounting", + "可持续会计", + "industry-standards", + "行业标准", + "issb", + "国际可持续准则", + "investor-disclosure", + "投资者披露", + "IFRS" ], "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" + "SASB Standards covering 77 industries across 11 sectors", + "Industry-specific financially material ESG disclosure topics and metrics", + "Materiality Finder tool for identifying relevant sustainability topics by industry", + "Mapping between SASB Standards and IFRS S1/S2 (ISSB) disclosure requirements", + "Implementation resources, FAQs, and downloadable standards" ], "zh": [ - "通用标准 - 食品卫生通用原则、食品标签、食品添加剂、污染物和毒素", - "商品标准 - 特定食品产品标准(谷物、油脂、鱼类和渔业产品、新鲜水果和蔬菜、肉类和肉制品、奶和奶制品、糖类、加工和速冻食品)", - "最大残留限量(MRLs) - 农药残留、兽药残留限量", - "操作规范 - 各类食品的卫生操作规范", - "指南 - 风险分析、营养、食品进出口检验和认证", - "食品添加剂 - 食品添加剂规格和每日允许摄入量", - "污染物水平 - 食品和饲料中污染物和毒素的最高限量", - "分析和采样方法 - 食品检测的标准分析方法" + "覆盖 11 个行业板块、77 个细分行业的 SASB 准则", + "财务重要的行业特定 ESG 披露议题与指标", + "重要性查询工具(Materiality Finder),按行业识别相关可持续议题", + "SASB 准则与 IFRS S1/S2(ISSB)披露要求的映射", + "实施资源、常见问题和可下载准则文本" ] }, - "authority_level": "international", "has_api": false, - "file_path": "international/standards-metrology/codex-alimentarius.json" + "file_path": "international/standards-metrology/sasb-standards.json" }, { "id": "bea-international-trade", "name": { - "en": "BEA International Trade in Goods and Services", - "zh": "美国经济分析局国际贸易数据" + "en": "BEA Interactive Data - International Trade", + "zh": "美国经济分析局国际贸易互动数据" }, "description": { - "en": "The U.S. Bureau of Economic Analysis (BEA) provides comprehensive monthly statistics on U.S. international trade in goods and services. The dataset includes detailed historical data from 1960 to present, covering exports and imports by country and product category, with both seasonally adjusted and unadjusted figures. Data is accessible through interactive tables, API, and downloadable formats.", - "zh": "美国经济分析局(BEA)提供全面的美国国际货物和服务贸易月度统计数据。数据集包含从1960年至今的详细历史数据,涵盖按国家和产品类别分类的出口和进口数据,提供季节性调整和未调整数据。数据可通过交互式表格、API和可下载格式访问。" + "en": "The Bureau of Economic Analysis (BEA) Interactive Data application provides comprehensive U.S. international trade statistics including goods and services trade, bilateral trade flows, and services supplied through affiliates. Features customizable time ranges from 1960 to present with monthly and annual data releases.", + "zh": "美国经济分析局(BEA)互动数据应用提供全面的美国国际贸易统计数据,包括商品和服务贸易、双边贸易流以及通过附属机构提供的服务。提供从1960年至今的可自定义时间范围,包含月度和年度数据发布。" }, "website": "https://www.bea.gov", "data_url": "https://apps.bea.gov/iTable/index_ita.cfm", - "api_url": "https://apps.bea.gov/API/signup/index.html", - "authority_level": "government", + "api_url": "https://apps.bea.gov/API/docs/index.htm", "country": "US", "domains": [ "trade", @@ -9072,48 +43791,45 @@ "update_frequency": "monthly", "tags": [ "international_trade", - "国际贸易", - "exports", - "出口", - "imports", - "进口", + "美国贸易数据", + "us_trade_statistics", + "goods_and_services", + "bilateral_trade", + "双边贸易", "trade_balance", - "贸易差额", - "goods_trade", - "货物贸易", + "贸易平衡", "services_trade", "服务贸易", - "us_trade", - "美国贸易", - "bilateral_trade", - "双边贸易", - "trade_statistics", - "贸易统计", "bea", - "bureau_of_economic_analysis" + "economic_analysis", + "trade_deficit", + "贸易逆差", + "export_import", + "进出口", + "international_transactions", + "国际交易", + "trade_in_value_added", + "增加值贸易" ], "data_content": { "en": [ - "Monthly U.S. international trade in goods and services from 1960 to present, including total exports, imports, and trade balance", - "Bilateral trade data by country and geographic area (available from 1999 onwards) covering major trading partners", - "Trade in goods with detailed product category breakdowns (seasonally adjusted and unadjusted)", - "Trade in services including categories such as travel, transport, intellectual property, financial services, and other business services", - "International Transactions Balance of Payments - comprehensive U.S. transactions in goods, services, income, and investment with other countries", - "International Services Expanded Detail - detailed service sector information including multinational enterprise activities", - "International Investment Position - financial asset and liability records between the U.S. and other nations", - "Direct Investment by Country and Industry - investment data involving business control or significant influence" + "International Trade in Goods and Services - Monthly and annual U.S. trade data including goods trade deficit, services surplus, and geographic breakdowns by country and region (1960-present)", + "International Transactions Accounts - Comprehensive data on all transactions between U.S. and foreign residents including trade, investment income, and financial flows", + "International Services Trade - Detailed annual statistics on U.S. trade in services by type of service for 90+ countries and areas, including ICT-related services", + "Trade by Country and Area - Bilateral trade statistics with selected countries and geographic regions from 1999 onwards", + "Trade in Value Added (TiVA) - Analysis of domestic and foreign value-added content in exports and imports", + "International Services Supplied Through Affiliates - Data on services supplied by affiliates of multinational enterprises operating across borders" ], "zh": [ - "从1960年至今的美国国际货物和服务贸易月度数据,包括总出口、进口和贸易差额", - "按国家和地理区域分类的双边贸易数据(1999年起可用),涵盖主要贸易伙伴", - "货物贸易详细产品类别细分(包含季节性调整和未调整数据)", - "服务贸易,包括旅行、运输、知识产权、金融服务和其他商业服务等类别", - "国际交易收支平衡表 - 美国与其他国家在货物、服务、收入和投资方面的全面交易数据", - "国际服务扩展详细信息 - 详细的服务业信息,包括跨国企业活动", - "国际投资头寸 - 美国与其他国家之间的金融资产和负债记录", - "按国家和行业分类的直接投资 - 涉及企业控制权或重大影响力的投资数据" + "国际商品和服务贸易 - 月度和年度美国贸易数据,包括商品贸易逆差、服务顺差以及按国家和地区的地理细分(1960年至今)", + "国际交易账户 - 美国与外国居民之间所有交易的综合数据,包括贸易、投资收入和金融流动", + "国际服务贸易 - 按服务类型分类的美国与90多个国家和地区的服务贸易详细年度统计,包括信息通信技术相关服务", + "按国家和地区分类的贸易 - 1999年以来与特定国家和地理区域的双边贸易统计", + "增加值贸易(TiVA) - 分析出口和进口中的国内和国外增加值含量", + "通过附属机构提供的国际服务 - 跨国企业附属机构跨境提供服务的数据" ] }, + "authority_level": "government", "has_api": true, "file_path": "international/trade/bea-international-trade.json" }, @@ -9188,29 +43904,29 @@ "geographic_scope": "global", "update_frequency": "annual", "tags": [ - "trade finance", + "trade-finance", "贸易融资", - "supply chain finance", + "supply-chain-finance", "供应链金融", - "trade statistics", + "trade-statistics", "贸易统计", - "default rates", + "default-rates", "违约率", - "loss given default", + "loss-given-default", "违约损失率", - "trade register", + "trade-register", "贸易登记", - "ICC", + "icc", "国际商会", "banking", "银行业", - "risk assessment", + "risk-assessment", "风险评估", - "trade credit", + "trade-credit", "贸易信贷", - "documentary trade", + "documentary-trade", "跟单贸易", - "letter of credit", + "letter-of-credit", "信用证", "guarantees", "保函" @@ -9244,6 +43960,89 @@ "has_api": false, "file_path": "international/trade/icc-trade-register.json" }, + { + "id": "unctad-trade-transport", + "name": { + "en": "UNCTAD Trade-and-Transport Dataset", + "zh": "联合国贸发会议贸易与运输数据集" + }, + "description": { + "en": "The Trade-and-Transport Dataset, developed by UNCTAD and the World Bank, provides comprehensive data on merchandise trade value and volume, freight transport costs, and transport work required per shipment between over 170 economies from 2016 to 2021. Data is broken down by commodity group and mode of transport, offering derived indicators such as freight rates and transport cost intensities.", + "zh": "贸易与运输数据集由联合国贸发会议(UNCTAD)和世界银行联合开发,提供2016-2021年间170多个经济体的货物贸易价值和数量、货运成本以及每次装运所需运输工作量的综合数据。数据按商品组和运输方式细分,提供运费率和运输成本强度等衍生指标。" + }, + "website": "https://unctad.org", + "data_url": "https://unctadstat.unctad.org/EN/TransportCost.html", + "api_url": "https://unctadstat.unctad.org/datacentre", + "authority_level": "international", + "country": null, + "domains": [ + "trade", + "transportation", + "logistics", + "economics" + ], + "geographic_scope": "global", + "update_frequency": "annual", + "tags": [ + "unctad", + "联合国贸发会议", + "trade", + "贸易", + "transport", + "运输", + "logistics", + "物流", + "freight-cost", + "运费成本", + "shipping", + "海运", + "transport-cost", + "运输成本", + "merchandise-trade", + "货物贸易", + "freight-rates", + "运费率", + "unctadstat", + "trade-statistics", + "贸易统计", + "transport-statistics", + "运输统计", + "global-trade", + "全球贸易", + "supply-chain", + "供应链", + "world-bank", + "世界银行" + ], + "data_content": { + "en": [ + "Merchandise trade value and volume for 170+ economies (2016-2021)", + "Freight transport costs per shipment by commodity group", + "Transport work required (ton-kilometers) by mode of transport", + "Freight rates by commodity and transport mode", + "Transport cost intensities by value and volume", + "Trade flows broken down by mode of transport (sea, air, land, rail)", + "Liner shipping connectivity index", + "Maritime transport costs and seaborne trade statistics", + "Country-pair bilateral trade and transport data", + "Data available via UNCTADstat portal, API, and bulk file downloads" + ], + "zh": [ + "170多个经济体的货物贸易价值和数量(2016-2021年)", + "按商品组分类的每次装运货运成本", + "按运输方式分类的所需运输工作量(吨公里)", + "按商品和运输方式分类的运费率", + "按价值和数量分类的运输成本强度", + "按运输方式(海运、空运、陆运、铁路)细分的贸易流量", + "班轮航运连通性指数", + "海运成本和海运贸易统计", + "国家对之间的双边贸易和运输数据", + "通过UNCTADstat门户、API和批量文件下载提供数据" + ] + }, + "has_api": true, + "file_path": "international/trade/unctad-trade-transport.json" + }, { "id": "unctad", "name": { @@ -9381,30 +44180,30 @@ "tags": [ "aviation", "航空", - "civil aviation", + "civil-aviation", "民用航空", - "airport codes", + "airport-codes", "机场代码", - "airline codes", + "airline-codes", "航空公司代码", - "aircraft codes", + "aircraft-codes", "飞机代码", - "ICAO", + "icao", "国际民航组织", - "NOTAM", + "notam", "航行通告", - "flight data", + "flight-data", "飞行数据", - "air traffic", + "air-traffic", "空中交通", - "aviation safety", + "aviation-safety", "航空安全", - "accident statistics", + "accident-statistics", "事故统计", - "DOC7910", - "DOC8585", - "DOC8643", - "API" + "doc7910", + "doc8585", + "doc8643", + "api" ], "data_content": { "en": [ @@ -9447,6 +44246,257 @@ "has_api": true, "file_path": "international/transportation/icao-aviation-data.json" }, + { + "id": "itf-transport", + "name": { + "en": "ITF Transport Statistics", + "zh": "国际交通论坛交通统计" + }, + "description": { + "en": "The International Transport Forum (ITF), an intergovernmental organisation with 68 member countries affiliated with the OECD, publishes comprehensive global transport statistics covering road safety, infrastructure investment, passenger and freight transport volumes, CO2 emissions from transport, and modal split across all transport modes including road, rail, aviation, and maritime.", + "zh": "国际交通论坛(ITF)是附属于经合组织的政府间国际组织,拥有68个成员国,发布涵盖道路安全、基础设施投资、客货运量、交通碳排放以及公路、铁路、航空和海运等各运输方式运量份额的综合全球交通统计数据。" + }, + "website": "https://www.itf-oecd.org/", + "data_url": "https://www.itf-oecd.org/transport-statistics", + "api_url": "https://data-explorer.oecd.org/vis?df[ds]=dsDisseminateFinalDMZ&df[id]=ITF_INDICATORS&df[ag]=ITF", + "authority_level": "international", + "country": null, + "domains": [ + "transportation", + "infrastructure", + "environment", + "statistics" + ], + "geographic_scope": "global", + "update_frequency": "annual", + "tags": [ + "transport", + "交通", + "road-safety", + "道路安全", + "freight", + "货运", + "passenger-transport", + "客运", + "infrastructure-investment", + "基础设施投资", + "co2-emissions", + "碳排放", + "modal-split", + "运输方式结构", + "itf", + "国际交通论坛", + "oecd", + "经合组织", + "rail", + "铁路", + "maritime", + "海运", + "logistics", + "物流" + ], + "data_content": { + "en": [ + "Road fatalities and injury statistics by country and year", + "Passenger transport volumes by mode (road, rail, air, waterborne)", + "Freight transport volumes by mode (road, rail, inland waterways, maritime)", + "Transport infrastructure investment and maintenance expenditure", + "CO2 emissions from transport sector by country and mode", + "Vehicle fleet size and composition statistics", + "Transport network length (road, rail, waterways) by country", + "Urban public transport statistics", + "Port and maritime shipping traffic data", + "Transport price indices and economic indicators" + ], + "zh": [ + "各国历年道路死亡和受伤统计数据", + "各运输方式客运量(公路、铁路、航空、水运)", + "各运输方式货运量(公路、铁路、内河航运、海运)", + "交通基础设施投资和维护支出", + "各国各运输方式交通碳排放量", + "车辆保有量及结构统计", + "各国交通网络里程(公路、铁路、内河航道)", + "城市公共交通统计数据", + "港口和海上航运流量数据", + "交通价格指数和经济指标" + ] + }, + "has_api": true, + "file_path": "international/transportation/itf-transport.json" + }, + { + "id": "japan-customs", + "name": { + "en": "Japan Customs Trade Statistics", + "zh": "日本财务省贸易统计", + "native": "貿易統計" + }, + "description": { + "en": "Trade Statistics of Japan, compiled by the Ministry of Finance, provides detailed import and export data by commodity, country, and customs district. Covers all goods crossing Japanese borders.", + "zh": "日本贸易统计由财务省编制,提供按商品、国家和海关辖区分类的详细进出口数据。覆盖所有进出日本国境的商品。" + }, + "website": "https://www.customs.go.jp", + "data_url": "https://www.customs.go.jp/toukei/info/index_e.htm", + "api_url": "https://www.e-stat.go.jp/api/", + "country": "JP", + "domains": [ + "trade", + "economics" + ], + "tags": [ + "customs", + "imports", + "exports", + "trade-statistics" + ], + "authority_level": "government", + "update_frequency": "monthly", + "geographic_scope": "national", + "data_content": { + "en": [ + "Trade Statistics - Monthly import/export by commodity and country", + "Customs District Data - Trade volumes by port and customs office", + "HS Code Analysis - Detailed commodity-level trade classification", + "Trade Trends - Year-over-year trade value and volume changes" + ], + "zh": [ + "贸易统计 - 按商品和国家分类的月度进出口", + "海关辖区数据 - 按港口和海关办事处分类的贸易量", + "HS编码分析 - 详细商品级贸易分类", + "贸易趋势 - 贸易额和贸易量同比变化" + ] + }, + "has_api": true, + "file_path": "japan/trade/japan-customs.json" + }, + { + "id": "asean-centre-for-energy", + "name": { + "en": "ASEAN Centre for Energy", + "zh": "东盟能源中心" + }, + "description": { + "en": "The ASEAN Centre for Energy (ACE) is an intergovernmental organisation established by ASEAN member states to accelerate the integration of energy strategies across Southeast Asia. ACE publishes authoritative regional energy data covering energy supply and demand balances, electricity generation mix, renewable energy capacity, energy efficiency indicators, and the flagship ASEAN Energy Outlook which projects long-term energy pathways for the ten ASEAN countries.", + "zh": "东盟能源中心(ACE)是由东盟成员国共同设立的政府间组织,致力于推进东南亚地区能源战略一体化。ACE发布权威的区域能源数据,涵盖能源供需平衡、电力生产结构、可再生能源装机容量、能效指标,以及其旗舰出版物《东盟能源展望》——对东盟十国的中长期能源发展路径进行预测。" + }, + "website": "https://aseanenergy.org", + "data_url": "https://aseanenergy.org/publications/", + "api_url": null, + "authority_level": "international", + "country": null, + "domains": [ + "energy", + "environment", + "economics" + ], + "geographic_scope": "regional", + "update_frequency": "annual", + "tags": [ + "asean", + "southeast-asia", + "energy", + "renewable-energy", + "electricity", + "energy-outlook", + "energy-efficiency", + "intergovernmental", + "ACE", + "东盟", + "东南亚", + "能源", + "可再生能源", + "能源展望", + "能源中心" + ], + "data_content": { + "en": [ + "ASEAN Energy Outlook (long-term projections)", + "Regional energy balances (supply/demand)", + "Electricity generation mix and capacity", + "Renewable energy deployment statistics", + "Energy efficiency and conservation indicators", + "Cross-border power trade (ASEAN Power Grid)", + "Country-level energy profiles for 10 ASEAN members" + ], + "zh": [ + "《东盟能源展望》长期预测报告", + "区域能源平衡(供需)数据", + "电力生产结构与装机容量", + "可再生能源部署统计", + "能效与节能指标", + "跨境电力贸易(东盟电网)", + "东盟十国国别能源数据" + ] + }, + "has_api": false, + "file_path": "regional/asean-centre-for-energy.json" + }, + { + "id": "entso-e", + "name": { + "en": "ENTSO-E Transparency Platform", + "zh": "欧洲输电系统运营商联盟透明平台" + }, + "description": { + "en": "The European Network of Transmission System Operators for Electricity (ENTSO-E) Transparency Platform provides free, continuous access to pan-European electricity market data. Mandated by EU Regulation 543/2013, it publishes data from 42 TSOs across 36 countries covering generation, load, transmission, balancing, and outages. It is the authoritative source for European electricity market transparency, serving policymakers, researchers, traders, and the public.", + "zh": "欧洲输电系统运营商联盟(ENTSO-E)透明平台提供泛欧电力市场数据的免费持续访问。根据欧盟法规543/2013的要求,该平台发布来自36个国家42个输电系统运营商的数据,涵盖发电、负荷、输电、平衡和停运信息。这是欧洲电力市场透明度的权威数据来源,服务于政策制定者、研究人员、交易商和公众。" + }, + "website": "https://www.entsoe.eu", + "data_url": "https://transparency.entsoe.eu", + "api_url": "https://transparency.entsoe.eu/content/static_content/Static%20content/web%20api/Guide.html", + "country": null, + "domains": [ + "energy", + "infrastructure" + ], + "geographic_scope": "regional", + "update_frequency": "real-time", + "tags": [ + "entso-e", + "electricity", + "power-grid", + "european-energy", + "电力市场", + "欧洲电力", + "transmission", + "输电", + "generation", + "发电", + "energy-market", + "renewable-energy", + "cross-border-flow", + "day-ahead-prices" + ], + "data_content": { + "en": [ + "Actual generation output per generation unit and type", + "Day-ahead and intraday electricity prices", + "Cross-border physical flows between countries", + "Total load (actual and forecast)", + "Installed generation capacity by fuel type", + "Transmission capacity and congestion data", + "Balancing market data", + "Planned and forced outages (generation and transmission)", + "Wind and solar generation forecasts", + "Net transfer capacity (NTC) between bidding zones" + ], + "zh": [ + "各发电机组和类型的实际发电量", + "日前和日内电力价格", + "跨境物理电力流", + "总负荷(实际和预测)", + "按燃料类型的装机容量", + "输电容量和拥塞数据", + "平衡市场数据", + "计划和非计划停运(发电和输电)", + "风电和光伏发电预测", + "竞价区域间的净传输容量(NTC)" + ] + }, + "authority_level": "international", + "has_api": true, + "file_path": "regional/europe/entso-e.json" + }, { "id": "amis", "name": { @@ -9462,13 +44512,13 @@ "api_url": null, "country": null, "domains": [ - "Agriculture", - "Food Security", - "Commodity Markets", - "Agricultural Trade", - "Food Prices", - "Market Transparency", - "Policy Coordination" + "agriculture", + "food-security", + "commodity-markets", + "agricultural-trade", + "food-prices", + "market-transparency", + "policy-coordination" ], "geographic_scope": "global", "update_frequency": "monthly", @@ -9534,12 +44584,12 @@ "api_url": null, "country": "CN", "domains": [ - "Mining", - "Rare Earth Industry", - "Metal Materials", - "Resource Management", - "Industrial Economics", - "Commodity Price" + "mining", + "rare-earth-industry", + "metal-materials", + "resource-management", + "industrial-economics", + "commodity-price" ], "geographic_scope": "national", "update_frequency": "daily", @@ -9570,7 +44620,7 @@ "rare-earth-applications", "稀土资源", "rare-earth-resources", - "ACREI" + "acrei" ], "data_content": { "en": [ @@ -9613,13 +44663,13 @@ "api_url": null, "country": "CN", "domains": [ - "Additive Manufacturing", - "3D Printing", - "Advanced Manufacturing", - "Industrial Statistics", - "Manufacturing Technology", - "Materials Science", - "Equipment Manufacturing" + "additive-manufacturing", + "3d-printing", + "advanced-manufacturing", + "industrial-statistics", + "manufacturing-technology", + "materials-science", + "equipment-manufacturing" ], "geographic_scope": "national", "update_frequency": "monthly", @@ -9696,11 +44746,11 @@ "api_url": null, "country": "CN", "domains": [ - "Automotive", - "Manufacturing", - "Transportation", - "New Energy Vehicles", - "Industrial Statistics" + "automotive", + "manufacturing", + "transportation", + "new-energy-vehicles", + "industrial-statistics" ], "geographic_scope": "national", "update_frequency": "monthly", @@ -9789,11 +44839,11 @@ "electric-vehicle", "电动汽车", "新能源汽车", - "NEV", + "nev", "充电站", "charging-station", "充电联盟", - "EVCIPA", + "evcipa", "运营商统计", "operator-statistics", "充电设施", @@ -9839,14 +44889,14 @@ "api_url": null, "country": "CN", "domains": [ - "Chemical Industry", - "Petroleum Industry", - "Industrial Statistics", - "Catalysts", - "Chemical Materials", - "Petrochemicals", - "Industry Standards", - "Economic Analysis" + "chemical-industry", + "petroleum-industry", + "industrial-statistics", + "catalysts", + "chemical-materials", + "petrochemicals", + "industry-standards", + "economic-analysis" ], "geographic_scope": "national", "update_frequency": "monthly", @@ -9865,7 +44915,7 @@ "industry-statistics", "经济运行", "economic-operation", - "CPCIF", + "cpcif", "中国石油和化学工业联合会", "行业协会", "industry-association", @@ -9915,7 +44965,6 @@ "file_path": "sectors/C-manufacturing/chemicals/china-petroleum-chemical-federation.json" }, { - "$schema": "https://firstdata.org/schemas/firstdata-v2.json", "id": "china-lcd-association", "name": { "en": "China Optoelectronic Display Association - Liquid Crystal Division (CODA)", @@ -9925,8 +44974,8 @@ "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": "http://www.coda.org.cn/", - "data_url": "http://www.coda.org.cn/#/details/more?type=list-info&id=61b1c9ec105e35101858fc49&bannerId=61b30eaa105e353264b3f083", + "website": "https://www.coda.org.cn/", + "data_url": "https://www.coda.org.cn", "api_url": null, "authority_level": "market", "country": "CN", @@ -9939,28 +44988,28 @@ ], "update_frequency": "irregular", "tags": [ - "LCD", - "OLED", - "Micro-LED", + "lcd", + "oled", + "micro-led", "液晶面板", "显示面板", - "panel capacity", + "panel-capacity", "面板产能", - "TFT-LCD", - "AMOLED", - "display industry", + "tft-lcd", + "amoled", + "display-industry", "显示产业", "面板制造", - "panel manufacturing", + "panel-manufacturing", "驱动芯片", - "driver IC", - "display technology", + "driver-ic", + "display-technology", "显示技术", "产业数据", - "industry statistics", - "market forecast", + "industry-statistics", + "market-forecast", "市场预测", - "CODA", + "coda", "光电子", "optoelectronics" ], @@ -10027,34 +45076,34 @@ "红外", "infrared", "液晶", - "LCD", + "lcd", "LED显示", - "LED display", + "led-display", "光通信", - "optical communication", + "optical-communication", "硅光子", - "silicon photonics", + "silicon-photonics", "光学元件", - "optical components", + "optical-components", "光学仪器", - "optical instruments", + "optical-instruments", "行业协会", - "industry association", - "COEMA", + "industry-association", + "coema", "制造业", "manufacturing", "光电器件", - "photoelectric devices", + "photoelectric-devices", "光伏", "photovoltaic", "机器视觉", - "machine vision", + "machine-vision", "显示面板", - "display panel", + "display-panel", "行业数据", - "industry data", + "industry-data", "行业分析", - "industry analysis" + "industry-analysis" ], "data_content": { "en": [ @@ -10106,22 +45155,22 @@ "半导体", "semiconductor", "集成电路", - "integrated circuit", + "integrated-circuit", "IC产业", - "IC industry", + "ic-industry", "晶圆产能", - "wafer capacity", + "wafer-capacity", "芯片制造", - "chip manufacturing", + "chip-manufacturing", "封装测试", - "packaging and testing", + "packaging-and-testing", "行业统计", - "industry statistics", + "industry-statistics", "产业运行", - "industrial operation", - "CSIA", + "industrial-operation", + "csia", "中国半导体", - "China semiconductors" + "china-semiconductors" ], "data_content": { "en": [ @@ -10134,17 +45183,84 @@ "Member enterprise directory and development status" ], "zh": [ - "集成电路产业运行统计数据(设计业、制造业、封装测试业分项)", - "半导体行业销售收入及增长分析(季度、年度)", - "IC产品进出口数量及金额统计", - "晶圆产能及产能利用率数据", - "半导体市场趋势及预测分析", - "行业研究报告及白皮书", - "会员企业名录及发展状况" + "集成电路产业运行统计数据(设计业、制造业、封装测试业分项)", + "半导体行业销售收入及增长分析(季度、年度)", + "IC产品进出口数量及金额统计", + "晶圆产能及产能利用率数据", + "半导体市场趋势及预测分析", + "行业研究报告及白皮书", + "会员企业名录及发展状况" + ] + }, + "has_api": false, + "file_path": "sectors/C-manufacturing/electronics/china-semiconductor-association.json" + }, + { + "id": "semi", + "name": { + "en": "SEMI - Semiconductor Equipment and Materials International", + "zh": "SEMI国际半导体产业协会" + }, + "description": { + "en": "SEMI is the global industry association connecting over 3,000 member companies across the electronics design and manufacturing supply chain. Founded in 1970, SEMI provides authoritative market data and industry statistics for the semiconductor equipment, materials, and manufacturing sectors. It publishes the World Fab Forecast, equipment market statistics, materials market reports, and comprehensive industry analysis covering wafer fabrication, packaging, and testing. SEMI's data is the industry standard reference for semiconductor capital expenditure trends, fab construction activity, equipment billings, and supply chain dynamics worldwide. Note: Website returns 403 for automated requests (WAF/bot protection). Content accessible via standard browser.", + "zh": "SEMI国际半导体产业协会是连接全球3000多家会员企业的电子设计和制造供应链行业协会。SEMI成立于1970年,为半导体设备、材料和制造行业提供权威的市场数据和行业统计。发布全球晶圆厂预测报告、设备市场统计、材料市场报告以及涵盖晶圆制造、封装和测试的综合行业分析。SEMI的数据是半导体资本支出趋势、晶圆厂建设动态、设备出货额和全球供应链分析的行业标准参考。" + }, + "website": "https://semi.org", + "data_url": "https://semi.org/en/products-services/market-data", + "api_url": null, + "authority_level": "research", + "country": null, + "geographic_scope": "global", + "domains": [ + "semiconductors", + "electronics", + "manufacturing" + ], + "update_frequency": "quarterly", + "tags": [ + "半导体", + "semiconductor", + "芯片", + "chip", + "半导体设备", + "semiconductor-equipment", + "半导体材料", + "semiconductor-materials", + "晶圆厂", + "wafer-fab", + "semi", + "芯片制造", + "chip-manufacturing", + "设备出货", + "equipment-billings", + "封装测试", + "packaging-and-testing", + "world-fab-forecast", + "半导体产业", + "semiconductor-industry", + "集成电路", + "integrated-circuit" + ], + "data_content": { + "en": [ + "World Fab Forecast: quarterly database tracking global semiconductor fabrication facilities, capacity, and construction plans", + "Equipment market statistics: monthly and quarterly semiconductor equipment billings data by region (North America, Japan, Europe, China, etc.)", + "Materials market reports: annual silicon wafer, photomask, CMP, gases, and other materials shipment data", + "Industry outlook: annual semiconductor industry forecasts covering revenue, capex, and technology trends", + "Fab construction: new fab announcements, construction timelines, and investment amounts worldwide", + "Regional analysis: semiconductor market data broken down by major regions including China, Taiwan, South Korea, and North America" + ], + "zh": [ + "全球晶圆厂预测:追踪全球半导体制造设施、产能和建设计划的季度数据库", + "设备市场统计:按地区(北美、日本、欧洲、中国等)分类的月度和季度半导体设备出货数据", + "材料市场报告:硅晶圆、光掩模、CMP、气体等材料的年度出货数据", + "行业展望:涵盖收入、资本支出和技术趋势的年度半导体行业预测", + "晶圆厂建设:全球新晶圆厂公告、建设时间表和投资金额", + "区域分析:按中国、台湾、韩国、北美等主要地区分类的半导体市场数据" ] }, "has_api": false, - "file_path": "sectors/C-manufacturing/electronics/china-semiconductor-association.json" + "file_path": "sectors/C-manufacturing/electronics/semi.json" }, { "id": "china-machine-tool-association", @@ -10191,9 +45307,9 @@ "industry-statistics", "经济运行", "economic-performance", - "CMTBA", - "CIMT", - "CCMT" + "cmtba", + "cimt", + "ccmt" ], "data_content": { "en": [ @@ -10234,16 +45350,16 @@ "en": "The Robot Branch of China Machinery Industry Federation (formerly China Robot Industry Alliance, established in April 2013) is a national industry organization led by China Machinery Industry Federation. With over 520 member units including domestic and international robot companies, research institutes, and universities, it serves as a collaborative platform for industry-academia-research-application cooperation. The branch provides industry statistical reports, organizes conferences and competitions, promotes standardization, and coordinates resources to enhance the competitiveness of China's robot industry.", "zh": "中国机械工业联合会机器人分会(前身为2013年4月成立的中国机器人产业联盟)是由中国机械工业联合会领导的全国性行业组织。拥有520余家会员单位,包括国内外机器人企业、科研院所和高校,是我国机器人产业全国性产、学、研、用行业协同工作平台。分会发布行业统计报告,组织会议和竞赛活动,推进标准化工作,协调产业资源,提升中国机器人产业竞争力。" }, - "website": "http://cria.mei.net.cn/", - "data_url": "http://cria.mei.net.cn/gzpt.asp?lm=/1310", + "website": "https://cria.mei.net.cn/", + "data_url": "https://cria.mei.net.cn/gzpt.asp?lm=/1310", "api_url": null, "country": "CN", "domains": [ - "Robotics", - "Industrial Automation", - "Manufacturing", - "Industry Statistics", - "Technology Standards" + "robotics", + "industrial-automation", + "manufacturing", + "industry-statistics", + "technology-standards" ], "geographic_scope": "national", "update_frequency": "annual", @@ -10312,16 +45428,16 @@ "api_url": null, "country": null, "domains": [ - "Energy", - "Energy Economics", - "Energy Statistics", - "Energy Production", - "Energy Consumption", - "Energy Trade", - "Renewable Energy", - "Fossil Fuels", - "Climate Change", - "Energy Transition" + "energy", + "energy-economics", + "energy-statistics", + "energy-production", + "energy-consumption", + "energy-trade", + "renewable-energy", + "fossil-fuels", + "climate-change", + "energy-transition" ], "geographic_scope": "global", "update_frequency": "annual", @@ -10400,29 +45516,29 @@ "api_url": null, "country": null, "domains": [ - "Natural Language Processing", - "Machine Learning", - "Computational Linguistics", - "Text Mining", - "Deep Learning" + "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", + "natural-language-processing", + "nlp", + "text-corpus", + "language-modeling", + "bert", + "gpt", "transformer", "pre-training", - "unsupervised learning", + "unsupervised-learning", "books", - "narrative text", - "machine learning", - "deep learning", - "computational linguistics" + "narrative-text", + "machine-learning", + "deep-learning", + "computational-linguistics" ], "data_content": { "en": [ @@ -10479,8 +45595,8 @@ "geographic_scope": "national", "update_frequency": "irregular", "tags": [ - "6G", - "IMT-2030", + "6g", + "imt-2030", "sixth-generation", "第六代移动通信", "wireless-communication", @@ -10494,7 +45610,7 @@ "5g", "next-generation", "下一代通信", - "CAICT", + "caict", "中国信息通信研究院", "空天地一体化", "integrated-space-air-ground", @@ -10555,22 +45671,22 @@ "geographic_scope": "national", "update_frequency": "annual", "tags": [ - "software industry", + "software-industry", "软件产业", - "enterprise ranking", + "enterprise-ranking", "企业排行", - "industry revenue", + "industry-revenue", "产业收入", - "CSIA", + "csia", "软件百强", - "top 100 software", - "information technology", + "top-100-software", + "information-technology", "信息技术服务", - "software revenue", + "software-revenue", "软件业务收入", - "industry association", + "industry-association", "行业协会", - "benchmark data", + "benchmark-data", "基准数据" ], "data_content": { @@ -10606,17 +45722,17 @@ "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", + "website": "https://web.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" + "computer-vision", + "deep-learning", + "machine-learning", + "image-classification", + "object-recognition", + "artificial-intelligence" ], "geographic_scope": "global", "update_frequency": "irregular", @@ -10669,15 +45785,15 @@ "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" + "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", @@ -10740,29 +45856,29 @@ "api_url": null, "country": null, "domains": [ - "Natural Language Processing", - "Computational Linguistics", - "Machine Learning", - "Named Entity Recognition", - "Parsing", - "Semantic Analysis" + "natural-language-processing", + "computational-linguistics", + "machine-learning", + "named-entity-recognition", + "parsing", + "semantic-analysis" ], "geographic_scope": "global", "update_frequency": "annual", "tags": [ - "NLP", - "natural language processing", - "machine learning", - "named entity recognition", - "NER", + "nlp", + "natural-language-processing", + "machine-learning", + "named-entity-recognition", + "ner", "parsing", "chunking", - "semantic role labeling", - "coreference resolution", + "semantic-role-labeling", + "coreference-resolution", "multilingual", - "benchmark datasets", - "shared task", - "computational linguistics" + "benchmark-datasets", + "shared-task", + "computational-linguistics" ], "data_content": { "en": [ @@ -10809,12 +45925,12 @@ "api_url": null, "country": null, "domains": [ - "Computer Vision", - "Deep Learning", - "Machine Learning", - "Artificial Intelligence", - "Image Classification", - "Object Recognition" + "computer-vision", + "deep-learning", + "machine-learning", + "artificial-intelligence", + "image-classification", + "object-recognition" ], "geographic_scope": "global", "update_frequency": "irregular", @@ -10857,30 +45973,30 @@ { "id": "akshare", "name": { - "en": "AKShare - Open Source Financial Data Interface Library", - "zh": "AKShare - 开源财经数据接口库" + "en": "AkShare", + "zh": "AkShare" }, "description": { - "en": "AKShare is an elegant and simple financial data interface library for Python, built for human beings. It provides comprehensive access to financial data including stocks, futures, options, funds, forex, bonds, indices, and cryptocurrencies. The library aggregates data from authoritative financial websites and is designed for academic research and quantitative analysis. Emphasizing the philosophy of 'Write less, get more!', it enables users to obtain complex financial data with simple one-line commands.", - "zh": "AKShare 是一个优雅简洁的 Python 财经数据接口库,专为人类设计。它提供对股票、期货、期权、基金、外汇、债券、指数和加密货币等金融数据的全面访问。该库聚合了来自权威财经网站的数据,专为学术研究和量化分析设计。秉承'代码更少,数据更多'的理念,用户可以用简单的单行命令获取复杂的财经数据。" + "en": "AkShare is an elegant and simple financial data interface library for Python, built for human beings. It provides a comprehensive collection of financial data APIs covering stocks, futures, options, funds, forex, bonds, indices, cryptocurrencies, and macroeconomic indicators. The library aims to simplify the process of acquiring financial data from authoritative sources and is primarily designed for academic research purposes. AkShare aggregates data from over 25 major financial data providers and exchanges, offering unified, well-documented Python interfaces with consistent naming conventions.", + "zh": "AkShare 是一个优雅而简洁的 Python 财经数据接口库,为人类而生。它提供了全面的金融数据 API 集合,覆盖股票、期货、期权、基金、外汇、债券、指数、加密货币和宏观经济指标。该库旨在简化从权威来源获取金融数据的过程,主要用于学术研究目的。AkShare 聚合了超过 25 个主要金融数据提供商和交易所的数据,提供统一的、文档完善的 Python 接口,具有一致的命名规范。" }, "website": "https://akshare.akfamily.xyz/", "data_url": "https://github.com/akfamily/akshare", - "api_url": "https://akshare.akfamily.xyz/", - "country": null, - "domains": [ - "Finance", - "Financial Markets", - "Stock Market", - "Futures", - "Options", - "Funds", - "Foreign Exchange", - "Bonds", - "Indices", - "Cryptocurrency", - "Macroeconomic Data", - "Quantitative Finance" + "api_url": "https://akshare.akfamily.xyz/introduction.html", + "country": null, + "domains": [ + "finance", + "stock-market", + "futures", + "options", + "funds", + "foreign-exchange", + "bonds", + "indices", + "cryptocurrency", + "macroeconomics", + "economic-indicators", + "financial-data" ], "geographic_scope": "global", "update_frequency": "daily", @@ -10888,59 +46004,62 @@ "akshare", "python", "financial-data", - "stock-data", + "stock-market", + "股票", + "期货", "futures", "options", + "期权", "funds", - "forex", - "bonds", - "cryptocurrency", - "quantitative-finance", - "open-source", - "数据接口", - "财经数据", - "股票数据", - "期货", "基金", + "forex", "外汇", + "bonds", "债券", + "indices", + "指数", + "cryptocurrency", "加密货币", + "macroeconomics", + "宏观经济", + "quantitative-finance", "量化金融", - "开源库", - "金融API", - "数据聚合", "financial-api", - "data-aggregation", - "market-data", - "东方财富", - "新浪财经" + "open-source", + "开源", + "data-interface", + "数据接口", + "financial-research", + "金融研究" ], "data_content": { "en": [ - "Stock Market Data - Real-time and historical stock prices, trading volumes, market indices from major exchanges", - "Futures Market - Commodity futures, financial futures, options data and derivatives pricing", - "Bond Market - Government bonds, corporate bonds, bond indices and fixed income securities", - "Fund Data - Mutual funds, ETFs, private funds, fund net values and performance metrics", - "Foreign Exchange - Currency exchange rates, forex trading data and currency pairs", - "Cryptocurrency - Digital currency prices, trading volumes, and blockchain data", - "Macroeconomic Indicators - GDP, CPI, interest rates, employment data and economic statistics", - "Market Indices - Stock indices, commodity indices, volatility indices from global markets", - "Alternative Data - Migration data, natural language processing, high-frequency data, policy uncertainty indices", - "Energy Data - Energy consumption, production and pricing information", - "Multi-factor Data - Quantitative factors for investment analysis and portfolio construction" + "Stock Market Data - Real-time and historical quotes, trading volumes, market depth, IPO data, and corporate fundamentals from major exchanges including Shanghai, Shenzhen, Beijing, Hong Kong, and international markets", + "Futures Data - Futures prices, trading volumes, open interest, and contract specifications for commodity futures, financial futures, and index futures", + "Options Data - Options chains, Greeks, implied volatility, and trading statistics for equity and index options", + "Fund Data - Mutual funds, ETFs, private equity funds performance, NAV, holdings, and fund manager information", + "Foreign Exchange - Spot rates, forward rates, and historical exchange rates for major currency pairs", + "Bond Market - Government bonds, corporate bonds, convertible bonds prices, yields, and issuance data", + "Market Indices - Price levels, composition, and historical data for domestic and international indices", + "Cryptocurrency - Real-time and historical prices, trading volumes, and market capitalization for major cryptocurrencies", + "Macroeconomic Indicators - GDP, CPI, PPI, unemployment rate, money supply, and other economic statistics from various countries", + "Interest Rates - Central bank rates, interbank rates (SHIBOR, LIBOR), and benchmark lending rates", + "Commodity Prices - Spot and futures prices for energy, metals, agricultural products, and other commodities", + "Financial News and Sentiment - News feeds, financial reports, and market sentiment indicators" ], "zh": [ - "股票市场数据 - 主要交易所的实时和历史股价、交易量、市场指数", - "期货市场 - 商品期货、金融期货、期权数据和衍生品定价", - "债券市场 - 国债、企业债券、债券指数和固定收益证券", - "基金数据 - 公募基金、ETF、私募基金、基金净值和业绩指标", - "外汇市场 - 货币汇率、外汇交易数据和货币对", - "加密货币 - 数字货币价格、交易量和区块链数据", - "宏观经济指标 - GDP、CPI、利率、就业数据和经济统计", - "市场指数 - 全球市场的股票指数、商品指数、波动率指数", - "另类数据 - 迁徙数据、自然语言处理、高频数据、政策不确定性指数", - "能源数据 - 能源消费、生产和价格信息", - "多因子数据 - 用于投资分析和组合构建的量化因子" + "股票市场数据 - 来自上海、深圳、北京、香港等主要交易所的实时和历史行情、成交量、盘口数据、IPO 数据和公司基本面信息", + "期货数据 - 商品期货、金融期货和指数期货的价格、成交量、持仓量和合约规格", + "期权数据 - 股票和指数期权的期权链、希腊字母、隐含波动率和交易统计", + "基金数据 - 公募基金、ETF、私募基金的业绩、净值、持仓和基金经理信息", + "外汇数据 - 主要货币对的即期汇率、远期汇率和历史汇率", + "债券市场 - 国债、公司债、可转债的价格、收益率和发行数据", + "市场指数 - 国内外指数的价格水平、成份股和历史数据", + "加密货币 - 主要加密货币的实时和历史价格、交易量和市值", + "宏观经济指标 - 来自各国的 GDP、CPI、PPI、失业率、货币供应量等经济统计数据", + "利率数据 - 央行利率、银行间拆借利率(SHIBOR、LIBOR)和基准贷款利率", + "大宗商品价格 - 能源、金属、农产品等大宗商品的现货和期货价格", + "金融新闻和情绪 - 新闻源、财经报告和市场情绪指标" ] }, "authority_level": "other", @@ -10962,12 +46081,12 @@ "api_url": "https://www.alphavantage.co/documentation/", "country": null, "domains": [ - "Stock Markets", - "Foreign Exchange", - "Cryptocurrencies", - "Commodities", - "Economic Indicators", - "Technical Analysis" + "stock-markets", + "foreign-exchange", + "cryptocurrencies", + "commodities", + "economic-indicators", + "technical-analysis" ], "geographic_scope": "global", "update_frequency": "real-time", @@ -11011,6 +46130,90 @@ "has_api": true, "file_path": "sectors/K-finance-insurance/alpha-vantage.json" }, + { + "id": "bloomberg-ipo-database", + "name": { + "en": "Bloomberg IPO Database", + "zh": "彭博IPO数据库" + }, + "description": { + "en": "Bloomberg IPO Database is a comprehensive database of Initial Public Offering (IPO) data accessible through the Bloomberg Terminal (Bloomberg Professional Service). The database provides detailed information on equity offerings globally, including IPO announcements, pricing, underwriters, deal structure, and post-IPO performance. Users can search and filter IPO data by offer type, date range, equity index, and other criteria, with results exportable to Excel. The database is part of Bloomberg L.P.'s financial data ecosystem, serving institutional investors, research analysts, and academic institutions worldwide.", + "zh": "彭博IPO数据库是通过彭博终端(Bloomberg Professional Service)访问的全面的首次公开募股(IPO)数据库。该数据库提供全球股权发行的详细信息,包括IPO公告、定价、承销商、交易结构和上市后表现。用户可以按发行类型、日期范围、股票指数和其他标准搜索和筛选IPO数据,结果可导出至Excel。该数据库是彭博有限合伙公司(Bloomberg L.P.)金融数据生态系统的一部分,为全球机构投资者、研究分析师和学术机构提供服务。" + }, + "website": "https://www.bloomberg.com", + "data_url": "https://www.bloomberg.com/professional/products/bloomberg-terminal/", + "api_url": "https://www.bloomberg.com/professional/support/api-library/", + "country": null, + "domains": [ + "finance", + "capital-markets", + "equity-markets", + "ipo", + "corporate-finance", + "investment-banking", + "securities" + ], + "geographic_scope": "global", + "update_frequency": "real-time", + "tags": [ + "ipo", + "initial-public-offering", + "首次公开募股", + "equity-offerings", + "股权发行", + "capital-markets", + "资本市场", + "bloomberg", + "彭博", + "bloomberg-terminal", + "彭博终端", + "underwriters", + "承销商", + "prospectus", + "招股书", + "ipo-pricing", + "IPO定价", + "listing", + "上市", + "stock-exchange", + "证券交易所", + "financial-data", + "金融数据", + "investment-banking", + "投资银行", + "securities", + "证券" + ], + "data_content": { + "en": [ + "IPO Announcements - Initial public offering announcements and filing dates", + "IPO Pricing - Offer price, price range, and final pricing details", + "Deal Structure - Share quantity, deal size, and offering structure", + "Underwriters - Lead underwriters, syndicate members, and banking fees", + "Company Information - Issuer details, industry sector, and business description", + "Index Membership - Coverage of major equity indices (S&P 500, FTSE, etc.)", + "Historical Data - Historical IPO records and time series data", + "Post-IPO Performance - First-day trading performance and aftermarket metrics", + "Geographic Coverage - Global IPO data across major stock exchanges", + "Export Capabilities - Simple and advanced export options to Excel" + ], + "zh": [ + "IPO公告 - 首次公开募股公告和申报日期", + "IPO定价 - 发行价格、价格区间和最终定价详情", + "交易结构 - 股份数量、交易规模和发行结构", + "承销商 - 主承销商、辛迪加成员和银行费用", + "公司信息 - 发行人详情、行业部门和业务描述", + "指数成分 - 主要股票指数成分(标普500、富时等)", + "历史数据 - 历史IPO记录和时间序列数据", + "上市后表现 - 首日交易表现和后市指标", + "地理覆盖 - 全球主要证券交易所的IPO数据", + "导出功能 - 简单和高级导出选项至Excel" + ] + }, + "authority_level": "commercial", + "has_api": true, + "file_path": "sectors/K-finance-insurance/bloomberg-ipo-database.json" + }, { "id": "bloomberg-terminal-ipo", "name": { @@ -11026,11 +46229,11 @@ "api_url": "https://www.bloomberg.com/professional/support/api-library/", "country": null, "domains": [ - "IPO", - "Equity Offerings", - "Capital Markets", - "Investment Banking", - "Securities Issuance" + "ipo", + "equity-offerings", + "capital-markets", + "investment-banking", + "securities-issuance" ], "geographic_scope": "global", "update_frequency": "real-time", @@ -11110,15 +46313,15 @@ "api_url": "https://www.bloomberg.com/professional/support/api-library/", "country": null, "domains": [ - "Equities", - "Fixed Income", - "Currencies", - "Commodities", - "Derivatives", - "Economic Data", - "Financial News", - "Corporate Fundamentals", - "ESG Data" + "equities", + "fixed-income", + "currencies", + "commodities", + "derivatives", + "economic-data", + "financial-news", + "corporate-fundamentals", + "esg-data" ], "geographic_scope": "global", "update_frequency": "real-time", @@ -11183,12 +46386,12 @@ "api_url": "https://www.crsp.org/products/documentation/getting-started", "country": "US", "domains": [ - "Stock Markets", - "Equities", - "Market Indices", - "Corporate Actions", - "Investment Research", - "Asset Pricing" + "stock-markets", + "equities", + "market-indices", + "corporate-actions", + "investment-research", + "asset-pricing" ], "geographic_scope": "national", "update_frequency": "monthly", @@ -11196,10 +46399,10 @@ "stock-market", "equities", "historical-data", - "US-markets", - "NYSE", - "NASDAQ", - "AMEX", + "us-markets", + "nyse", + "nasdaq", + "amex", "academic-research", "financial-data", "market-indices", @@ -11207,7 +46410,7 @@ "asset-pricing", "corporate-actions", "subscription-based", - "WRDS", + "wrds", "investment-research" ], "data_content": { @@ -11259,13 +46462,13 @@ "api_url": "https://coinmarketcap.com/api/documentation/v1/", "country": null, "domains": [ - "Cryptocurrency Markets", - "Blockchain Analytics", - "Digital Assets", - "DeFi (Decentralized Finance)", - "NFT Markets", - "Trading Data", - "Financial Technology" + "cryptocurrency-markets", + "blockchain-analytics", + "digital-assets", + "defi", + "nft-markets", + "trading-data", + "financial-technology" ], "geographic_scope": "global", "update_frequency": "real-time", @@ -11317,6 +46520,210 @@ "has_api": true, "file_path": "sectors/K-finance-insurance/cryptocurrency-data.json" }, + { + "id": "hundsun-juyuan", + "name": { + "en": "Hundsun JuYuan Financial Data", + "zh": "恒生聚源金融数据" + }, + "description": { + "en": "Shanghai Hundsun JuYuan Data Service Co., Ltd., established in 2000 and a wholly-owned subsidiary of Hundsun Technologies since 2010, is a leading financial and industrial data and information service provider in China. The company has established extensive business partnerships with domestic securities, funds, insurance, trusts, banks, futures, and asset management companies, serving over 700 financial institutions. JuYuan offers comprehensive financial databases, terminals, and intelligent analytics tools covering A-shares, Hong Kong stocks, New Third Board, bonds, funds, wealth management products, macroeconomic data, industry data, and indices.", + "zh": "上海恒生聚源数据服务有限公司成立于2000年9月,2010年1月起成为恒生电子全资子公司,是中国领先的金融、产业数据资讯服务提供商。公司与国内券商、基金、保险、信托、银行、期货、资产管理公司等700多家金融机构建立了广泛的业务合作。聚源拥有金融数据库、金融终端、智能分析工具等产品线,涵盖A股、港股、新三板、债券、基金、理财、宏观、行业、指数等全方位金融数据。" + }, + "website": "https://www.gildata.com/", + "data_url": "https://gildata.hs.net/", + "api_url": "https://gildata.hs.net/wiki", + "country": "CN", + "domains": [ + "finance", + "securities", + "funds", + "insurance", + "banking", + "futures", + "asset-management", + "bonds", + "macroeconomics", + "financial-markets" + ], + "geographic_scope": "national", + "update_frequency": "real-time", + "tags": [ + "finance", + "金融数据", + "financial-data", + "securities", + "证券", + "funds", + "基金", + "bonds", + "债券", + "insurance", + "保险", + "banking", + "银行", + "futures", + "期货", + "asset-management", + "资产管理", + "stock-market", + "股票市场", + "a-shares", + "A股", + "hong-kong-stocks", + "港股", + "new-third-board", + "新三板", + "macroeconomic-data", + "宏观经济", + "financial-terminal", + "金融终端", + "hundsun", + "恒生", + "juyuan", + "聚源", + "gildata", + "financial-database", + "金融数据库", + "market-data", + "行情数据", + "financial-analytics", + "金融分析" + ], + "data_content": { + "en": [ + "A-Share Market Data - Stock prices, trading volumes, corporate actions, and market indices", + "Hong Kong Stocks - HKEX listed securities data, prices, and trading information", + "New Third Board - NEEQ (National Equities Exchange and Quotations) data", + "Bond Markets - Government bonds, corporate bonds, convertible bonds, and bond indices", + "Funds Data - Mutual funds, ETFs, private equity funds performance and holdings", + "Wealth Management - Bank wealth management products, trust products, and asset management plans", + "Macroeconomic Indicators - GDP, CPI, PMI, and other key economic statistics", + "Industry Data - Sector-specific data, industry indices, and industry analysis", + "Financial News & Announcements - Real-time market news, company announcements, and regulatory filings", + "Research Reports - Analyst reports, investment research, and market analysis", + "Alternative Data - AI-friendly financial database (AIDB) for large language model applications", + "Smart Analytics - Intelligent tools including Gil-GPT for financial information generation" + ], + "zh": [ + "A股市场数据 - 股票价格、交易量、公司行为和市场指数", + "港股数据 - 香港交易所上市证券数据、价格和交易信息", + "新三板数据 - 全国中小企业股份转让系统数据", + "债券市场 - 国债、企业债、可转债和债券指数", + "基金数据 - 公募基金、ETF、私募基金业绩和持仓", + "理财产品 - 银行理财产品、信托产品和资管计划", + "宏观经济指标 - GDP、CPI、PMI等关键经济统计数据", + "行业数据 - 行业专项数据、行业指数和行业分析", + "金融资讯与公告 - 实时市场新闻、公司公告和监管文件", + "研究报告 - 分析师报告、投资研究和市场分析", + "AI友好型数据 - 为大模型金融业务场景提供的高精准底层数据(AIDB)", + "智能分析工具 - 包括Gil-GPT金融资讯生成等智能工具" + ] + }, + "authority_level": "commercial", + "has_api": true, + "file_path": "sectors/K-finance-insurance/hundsun-juyuan.json" + }, + { + "id": "refinitiv-lseg", + "name": { + "en": "LSEG Data & Analytics (Refinitiv)", + "zh": "伦敦证交所数据分析(路孚特)" + }, + "description": { + "en": "LSEG Data & Analytics, formerly known as Refinitiv, is a global provider of financial markets data and infrastructure. Originally the Financial & Risk division of Thomson Reuters, it became independent in 2018 and was acquired by London Stock Exchange Group (LSEG) in 2021. The platform provides comprehensive financial data, analytics, trading platforms, and risk management solutions to over 40,000 institutions across 190+ countries. Key products include LSEG Workspace (formerly Eikon), Datastream for historical financial data, real-time market data via Elektron, and the Refinitiv Data Platform APIs for programmatic access.", + "zh": "伦敦证交所数据分析(原路孚特)是全球领先的金融市场数据和基础设施提供商。最初为汤森路透金融与风险部门,2018年独立,2021年被伦敦证券交易所集团(LSEG)收购。该平台为全球190多个国家的40,000多家机构提供全面的金融数据、分析、交易平台和风险管理解决方案。主要产品包括LSEG Workspace(原Eikon)、Datastream历史金融数据库、Elektron实时市场数据服务,以及用于程序化访问的Refinitiv数据平台API。" + }, + "website": "https://www.lseg.com/en/data-analytics", + "data_url": "https://www.lseg.com/en/data-analytics/products/workspace", + "api_url": "https://developers.lseg.com/en/api-catalog/refinitiv-data-platform/refinitiv-data-platform-apis", + "country": null, + "domains": [ + "financial-markets", + "financial-data", + "market-data", + "economic-data", + "trading", + "risk-management", + "investment-analysis", + "fixed-income", + "equities", + "foreign-exchange", + "commodities", + "derivatives", + "esg-data", + "alternative-data" + ], + "geographic_scope": "global", + "update_frequency": "real-time", + "tags": [ + "financial-data", + "market-data", + "real-time-data", + "historical-data", + "refinitiv", + "lseg", + "eikon", + "datastream", + "workspace", + "trading-platform", + "financial-analytics", + "risk-management", + "equities", + "fixed-income", + "forex", + "fx", + "commodities", + "derivatives", + "bonds", + "stocks", + "economic-indicators", + "company-financials", + "esg", + "api", + "路孚特", + "金融数据", + "市场数据", + "实时数据" + ], + "data_content": { + "en": [ + "Real-time market data - Live prices, quotes, and trades across global exchanges", + "Equities - Company fundamentals, financial statements, analyst estimates, ownership data", + "Fixed Income - Bond prices, yields, ratings, issuance data for government and corporate bonds", + "Foreign Exchange - Real-time and historical FX rates, forwards, options across 180+ currencies", + "Commodities - Prices and analytics for energy, metals, agriculture commodities", + "Derivatives - Futures, options, swaps data across asset classes", + "Economic Data - Macroeconomic indicators, GDP, inflation, employment from 200+ countries", + "Company Financials - Income statements, balance sheets, cash flows dating back to 1960s", + "News & Research - Real-time financial news, analyst reports, research from global sources", + "ESG Data - Environmental, Social, Governance scores and metrics for companies worldwide", + "Reference Data - Security master data, corporate actions, dividends, splits", + "Time Series Data - Historical price and volume data via Datastream", + "Analytics - Valuation models, risk analytics, portfolio analytics, screening tools", + "Alternative Data - Sentiment analysis, supply chain data, satellite imagery insights" + ], + "zh": [ + "实时市场数据 - 全球交易所的实时价格、报价和交易数据", + "股票 - 公司基本面、财务报表、分析师预测、持股数据", + "固定收益 - 政府和企业债券的价格、收益率、评级、发行数据", + "外汇 - 180多种货币的实时和历史汇率、远期、期权数据", + "大宗商品 - 能源、金属、农产品的价格和分析", + "衍生品 - 跨资产类别的期货、期权、掉期数据", + "经济数据 - 来自200多个国家的宏观经济指标、GDP、通胀、就业数据", + "公司财务 - 可追溯至1960年代的损益表、资产负债表、现金流量表", + "新闻与研究 - 来自全球来源的实时金融新闻、分析师报告、研究", + "ESG数据 - 全球公司的环境、社会、治理评分和指标", + "参考数据 - 证券主数据、公司行为、股息、拆股信息", + "时间序列数据 - 通过Datastream提供的历史价格和成交量数据", + "分析工具 - 估值模型、风险分析、投资组合分析、筛选工具", + "另类数据 - 情绪分析、供应链数据、卫星图像洞察" + ] + }, + "authority_level": "commercial", + "has_api": true, + "file_path": "sectors/K-finance-insurance/refinitiv-lseg.json" + }, { "id": "cambridge-structural-database", "name": { @@ -11332,18 +46739,18 @@ "api_url": "https://downloads.ccdc.cam.ac.uk/documentation/API/", "country": null, "domains": [ - "Crystallography", - "Structural Chemistry", - "Pharmaceutical Sciences", - "Drug Discovery", - "Drug Development", - "Agrochemical Research", - "Materials Science", - "Metal-Organic Frameworks", - "Catalysis", - "Functional Materials", - "Organic Chemistry", - "Inorganic Chemistry" + "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", @@ -11482,21 +46889,21 @@ "api_url": "https://developer.clarivate.com/apis", "country": null, "domains": [ - "Patents", - "Innovation", - "Intellectual Property", - "Pharmaceuticals", - "Biotechnology", - "Chemistry", - "Electronics", - "Engineering", - "Telecommunications", - "Materials Science", - "Medical Technology", - "Mechanical Engineering", - "Computer Science", - "Aerospace", - "Automotive" + "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": "weekly", @@ -11569,11 +46976,11 @@ "api_url": null, "country": null, "domains": [ - "Higher Education", - "University Rankings", - "Research Performance", - "Academic Excellence", - "Education Assessment" + "higher-education", + "university-rankings", + "research-performance", + "academic-excellence", + "education-assessment" ], "geographic_scope": "global", "update_frequency": "annual", @@ -11632,14 +47039,14 @@ "api_url": null, "country": null, "domains": [ - "Higher Education", - "Education Assessment", - "University Rankings", - "Education Quality", - "Academic Research", - "Student Outcomes", - "Education Statistics", - "Global Education" + "higher-education", + "education-assessment", + "university-rankings", + "education-quality", + "academic-research", + "student-outcomes", + "education-statistics", + "global-education" ], "geographic_scope": "global", "update_frequency": "annual", @@ -11720,26 +47127,26 @@ "api_url": null, "country": null, "domains": [ - "Cultural Heritage", - "Archaeology", - "Art History", - "Anthropology", - "Ancient Civilizations", - "Museum Studies" + "cultural-heritage", + "archaeology", + "art-history", + "anthropology", + "ancient-civilizations", + "museum-studies" ], "geographic_scope": "global", "update_frequency": "daily", "tags": [ - "cultural heritage", + "cultural-heritage", "museum", "archaeology", - "art history", + "art-history", "artifacts", - "world history", + "world-history", "anthropology", "ethnography", - "ancient civilizations", - "British Museum" + "ancient-civilizations", + "british-museum" ], "data_content": { "en": [ @@ -11786,10 +47193,10 @@ "api_url": null, "country": null, "domains": [ - "Sports Statistics", - "Tennis", - "Professional Sports Data", - "Player Performance Analytics" + "sports-statistics", + "tennis", + "professional-sports-data", + "player-performance-analytics" ], "geographic_scope": "global", "update_frequency": "irregular", @@ -11838,6 +47245,558 @@ "authority_level": "research", "has_api": false, "file_path": "sectors/R-arts-entertainment/tennis-atp-wta-data.json" + }, + { + "id": "aws-open-data-registry", + "name": { + "en": "Registry of Open Data on AWS", + "zh": "AWS开放数据注册表" + }, + "description": { + "en": "The Registry of Open Data on AWS is a comprehensive repository of publicly available datasets hosted on Amazon Web Services infrastructure. It helps people discover and share datasets that are available via AWS resources. The registry contains over 650 datasets spanning multiple domains including machine learning, astronomy, climate science, economics, genomics, geospatial sciences, life sciences, sustainability, and more. Anyone can access these datasets and build services on top of them using AWS compute and analytics services such as Amazon EC2, Amazon Athena, AWS Lambda, and Amazon EMR. The AWS Open Data Sponsorship Program covers the cost of storage for high-value, cloud-optimized datasets, making them freely accessible to researchers, developers, and data scientists worldwide.", + "zh": "AWS开放数据注册表是托管在亚马逊云科技基础设施上的公开可用数据集的综合存储库。它帮助人们发现和共享通过AWS资源可用的数据集。该注册表包含超过650个数据集,涵盖多个领域,包括机器学习、天文学、气候科学、经济学、基因组学、地理空间科学、生命科学、可持续发展等。任何人都可以访问这些数据集,并使用AWS计算和分析服务(如Amazon EC2、Amazon Athena、AWS Lambda和Amazon EMR)在其基础上构建服务。AWS开放数据赞助计划承担高价值、云优化数据集的存储成本,使全球研究人员、开发人员和数据科学家可以免费访问这些数据。" + }, + "website": "https://aws.amazon.com/opendata/", + "data_url": "https://registry.opendata.aws/", + "api_url": null, + "country": "US", + "domains": [ + "machine-learning", + "artificial-intelligence", + "computer-science", + "astronomy", + "climate-science", + "economics", + "genomics", + "geospatial", + "life-sciences", + "sustainability", + "transportation", + "chemistry", + "imaging", + "medical-imaging", + "computer-vision", + "disaster-response" + ], + "geographic_scope": "global", + "update_frequency": "irregular", + "tags": [ + "aws", + "open-data", + "cloud", + "machine-learning", + "ai", + "artificial-intelligence", + "deep-learning", + "computer-vision", + "nlp", + "genomics", + "climate", + "satellite-imagery", + "geospatial", + "earth-observation", + "life-sciences", + "astronomy", + "sustainability", + "public-datasets", + "data-lake", + "s3", + "开放数据", + "机器学习", + "人工智能", + "深度学习", + "计算机视觉", + "基因组学", + "气候科学", + "卫星影像", + "地理空间", + "生命科学", + "公共数据集", + "云计算", + "数据湖" + ], + "data_content": { + "en": [ + "Machine Learning & AI Datasets - Pre-processed datasets for training and testing ML/AI models including computer vision, NLP, and deep learning applications", + "Genomics & Life Sciences - DNA sequences, protein structures, biological datasets from NIH, Allen Institute, and other research institutions", + "Climate & Weather Data - Atmospheric data, climate models, weather forecasts, and environmental monitoring datasets from NOAA, NASA, and climate research centers", + "Satellite & Geospatial Data - Earth observation imagery, satellite data, GIS datasets from NASA, ESA, USGS, and Digital Earth Africa", + "Astronomy & Space Science - Astronomical observations, space mission data, and celestial object catalogs", + "Medical Imaging - Radiology images, pathology slides, and medical imaging datasets for healthcare AI research", + "Transportation & Mobility - Traffic data, autonomous vehicle datasets, and transportation network information", + "Economics & Social Sciences - Economic indicators, survey data, and social science research datasets", + "Disaster Response & Emergency Management - Real-time disaster data, emergency response datasets, and hazard mapping", + "Sustainability & Energy - Renewable energy data, carbon emissions tracking, and environmental sustainability datasets", + "Chemistry & Materials Science - Molecular structures, chemical compounds, and materials research data", + "Government & Public Sector Data - Open government datasets from EPA, NOAA, NASA, and other federal agencies" + ], + "zh": [ + "机器学习与AI数据集 - 用于训练和测试ML/AI模型的预处理数据集,包括计算机视觉、自然语言处理和深度学习应用", + "基因组学与生命科学 - 来自NIH、艾伦研究所和其他研究机构的DNA序列、蛋白质结构、生物数据集", + "气候与天气数据 - 来自NOAA、NASA和气候研究中心的大气数据、气候模型、天气预报和环境监测数据集", + "卫星与地理空间数据 - 来自NASA、ESA、USGS和Digital Earth Africa的地球观测影像、卫星数据、GIS数据集", + "天文学与空间科学 - 天文观测、太空任务数据和天体目录", + "医学影像 - 用于医疗AI研究的放射学图像、病理切片和医学影像数据集", + "交通与移动出行 - 交通数据、自动驾驶车辆数据集和交通网络信息", + "经济学与社会科学 - 经济指标、调查数据和社会科学研究数据集", + "灾害响应与应急管理 - 实时灾害数据、应急响应数据集和灾害地图", + "可持续发展与能源 - 可再生能源数据、碳排放跟踪和环境可持续性数据集", + "化学与材料科学 - 分子结构、化学化合物和材料研究数据", + "政府与公共部门数据 - 来自EPA、NOAA、NASA和其他联邦机构的开放政府数据集" + ] + }, + "authority_level": "commercial", + "has_api": false, + "file_path": "sectors/computer_science_ai/aws-open-data-registry.json" + }, + { + "id": "joinquant", + "name": { + "zh": "聚宽量化交易平台", + "en": "JoinQuant Quantitative Trading Platform" + }, + "description": { + "zh": "聚宽是中国领先的量化投资交易服务平台,成立于2015年,由北京小龙虾科技有限公司运营。平台提供经过专业清洗的A股、期货、期权、基金、宏观等全面的金融数据,支持策略研究、历史回测、模拟交易和实盘交易。用户可通过Web平台或本地SDK(jqdatasdk)访问数据,日均免费调用量达100万条记录。平台注册用户近50万,是国内量化交易领域的先行者之一,已获得国家高新技术企业、北京市专精特新企业等认证。", + "en": "JoinQuant is a leading quantitative investment and trading platform in China, founded in 2015 and operated by Beijing Xiaolongxia Technology Co., Ltd. The platform offers professionally cleaned financial data including A-shares, futures, options, funds, and macroeconomic data, supporting strategy research, historical backtesting, simulated trading, and live trading. Users can access data through the web platform or local SDK (jqdatasdk), with up to 1 million free API calls per day. With nearly 500,000 registered users, it is one of the pioneers in China's quantitative trading industry and has been certified as a National High-Tech Enterprise and Beijing Specialized and Innovative Enterprise." + }, + "website": "https://www.joinquant.com/", + "data_url": "https://www.joinquant.com/data", + "api_url": "https://www.joinquant.com/help/api/doc?name=JQDatadoc", + "authority_level": "commercial", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "securities", + "quantitative-trading" + ], + "update_frequency": "daily", + "tags": [ + "量化交易", + "quantitative-trading", + "A股数据", + "a-share-data", + "期货数据", + "futures-data", + "基金数据", + "fund-data", + "回测平台", + "backtesting-platform", + "策略研发", + "strategy-research", + "金融数据", + "financial-data", + "joinquant", + "聚宽", + "量化投资", + "quantitative-investing", + "python-sdk", + "jqdatasdk", + "财务数据", + "financial-statements", + "宏观数据", + "macroeconomic-data", + "期权", + "options", + "etf", + "lof", + "融资融券", + "margin-trading" + ], + "data_content": { + "zh": [ + "A股股票行情数据(日线、分钟线、Tick级)", + "上市公司财务数据(2005年以来)", + "期货行情数据(中金所金融期货产品)", + "基金数据(ETF、LOF、分级基金、货币基金等600+品种)", + "股票指数数据(近600种指数及成分股)", + "期权数据(行情与基本信息)", + "宏观经济数据", + "融资融券数据", + "数百个量化因子库" + ], + "en": [ + "A-share stock market data (daily, minute, tick-level)", + "Listed company financial data (since 2005)", + "Futures market data (CFFEX financial futures products)", + "Fund data (ETF, LOF, structured funds, money market funds, 600+ varieties)", + "Stock index data (nearly 600 indexes and constituents)", + "Options data (market data and basic information)", + "Macroeconomic data", + "Margin trading data", + "Hundreds of quantitative factor libraries" + ] + }, + "has_api": true, + "file_path": "sectors/finance_markets/joinquant.json" + }, + { + "id": "tennis-abstract-atp-wta", + "name": { + "en": "Tennis Abstract - ATP/WTA Data", + "zh": "Tennis Abstract - ATP/WTA网球数据" + }, + "description": { + "en": "Comprehensive open-source database of professional tennis match results, rankings, and statistics maintained by Jeff Sackmann. Covers all ATP and WTA tour-level singles matches from the Open Era (1968-present) with detailed match information, player biographical data, rankings, and in-match statistics. The dataset includes yearly CSV files with match results, rankings data, and player statistics. Data is updated weekly with new rankings and tournament results. Licensed under Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.", + "zh": "由Jeff Sackmann维护的全面开源专业网球比赛结果、排名和统计数据库。涵盖公开赛时代(1968年至今)所有ATP和WTA巡回赛级别单打比赛,包含详细的比赛信息、球员传记数据、排名和比赛内统计数据。数据集包括按年份分类的CSV文件,包含比赛结果、排名数据和球员统计。数据每周更新,包含新的排名和锦标赛结果。根据知识共享署名-非商业性使用-相同方式共享4.0国际许可证授权。" + }, + "website": "https://www.tennisabstract.com", + "data_url": "https://github.com/JeffSackmann/tennis_atp", + "api_url": null, + "country": null, + "domains": [ + "sports", + "tennis", + "sports-statistics", + "sports-analytics", + "player-performance", + "tournament-data" + ], + "geographic_scope": "global", + "update_frequency": "weekly", + "tags": [ + "tennis", + "网球", + "atp", + "wta", + "sports-data", + "体育数据", + "match-results", + "比赛结果", + "rankings", + "排名", + "sports-statistics", + "体育统计", + "tennis-analytics", + "网球分析", + "open-era", + "公开赛时代", + "grand-slam", + "大满贯", + "tennis-abstract", + "jeff-sackmann", + "player-stats", + "球员统计", + "tournament-data", + "锦标赛数据", + "historical-data", + "历史数据", + "csv-data", + "open-source", + "开源数据" + ], + "data_content": { + "en": [ + "Match Results - All tour-level singles matches since 1968 with tournament, date, surface, round, winner/loser information, and scores", + "Player Rankings - Weekly ATP and WTA rankings data (ATP rankings since 1973, estimated rankings for 1968-1972)", + "Player Statistics - Biographical information including date of birth, height, handedness, and backhand type", + "In-Match Statistics - Aces, double faults, serve percentages, break points, and other match statistics (available from 1991 onwards)", + "Tournament Information - Tournament level, surface type, draw size, and match format details", + "Match Charting Project - Point-by-point data including shot types, directions, depth, and error classifications", + "Point-by-Point Data - Sequential point-level data for tens of thousands of professional matches", + "Historical Coverage - Complete Open Era coverage from 1968 to present with continuous updates", + "Data Dictionary - Comprehensive documentation of all data fields and coding schemes" + ], + "zh": [ + "比赛结果 - 自1968年以来所有巡回赛级别单打比赛,包含锦标赛、日期、场地、轮次、胜者/负者信息和比分", + "球员排名 - 每周ATP和WTA排名数据(ATP排名自1973年起,1968-1972年为估算排名)", + "球员统计 - 传记信息,包括出生日期、身高、惯用手和反手类型", + "比赛内统计 - ACE球、双误、发球成功率、破发点等比赛统计数据(从1991年开始提供)", + "锦标赛信息 - 锦标赛级别、场地类型、签表大小和比赛赛制详情", + "比赛图表项目 - 逐分数据,包括击球类型、方向、深度和失误分类", + "逐分数据 - 数万场职业比赛的连续分级数据", + "历史覆盖 - 完整的公开赛时代覆盖,从1968年至今持续更新", + "数据字典 - 所有数据字段和编码方案的全面文档说明" + ] + }, + "authority_level": "research", + "has_api": false, + "file_path": "sectors/sports/tennis-abstract-atp-wta.json" + }, + { + "id": "tennis-sackmann", + "name": { + "en": "Tennis Abstract - ATP/WTA Match Data", + "zh": "网球数据摘要 - ATP/WTA 比赛数据" + }, + "description": { + "en": "Comprehensive open-source database of professional tennis statistics maintained by Jeff Sackmann (Tennis Abstract). Includes historical ATP and WTA rankings, match results, player biographical data, and detailed match statistics from 1968 to present. The dataset covers tour-level events, qualifying rounds, challengers, futures, and ITF tournaments, making it one of the most complete publicly available tennis databases.", + "zh": "由 Jeff Sackmann(Tennis Abstract)维护的综合性开源职业网球统计数据库。包含1968年至今的ATP和WTA历史排名、比赛结果、球员传记数据和详细的比赛统计。数据集涵盖巡回赛级别赛事、资格赛、挑战赛、期货赛和ITF锦标赛,是最完整的公开网球数据库之一。" + }, + "website": "https://github.com/JeffSackmann", + "data_url": "https://github.com/JeffSackmann/tennis_atp", + "api_url": null, + "authority_level": "research", + "country": null, + "domains": [ + "sports", + "statistics", + "athletics" + ], + "geographic_scope": "global", + "update_frequency": "irregular", + "tags": [ + "tennis", + "网球", + "atp", + "wta", + "rankings", + "排名", + "match-results", + "比赛结果", + "player-statistics", + "球员统计", + "sports-data", + "体育数据", + "open-data", + "开放数据", + "csv", + "grand-slam", + "大满贯", + "professional-tennis", + "职业网球" + ], + "data_content": { + "en": [ + "ATP player biographical data (name, birth date, country, playing hand, height)", + "WTA player biographical data (name, birth date, country, playing hand)", + "Historical ATP rankings from 1973 to present (with gaps in early years)", + "Historical WTA rankings from 1975 to present", + "ATP match results from 1968 to 2024 (tour-level, challengers, futures, qualifying)", + "WTA match results from 1968 to 2024 (tour-level, ITF, qualifying)", + "Detailed match statistics including aces, double faults, service points, break points", + "Point-by-point data for select Grand Slam matches", + "Match Charting Project with shot-by-shot analysis for thousands of professional matches" + ], + "zh": [ + "ATP球员传记数据(姓名、出生日期、国家、握拍手、身高)", + "WTA球员传记数据(姓名、出生日期、国家、握拍手)", + "1973年至今的ATP历史排名(早期年份有间断)", + "1975年至今的WTA历史排名", + "1968年至2024年的ATP比赛结果(巡回赛级别、挑战赛、期货赛、资格赛)", + "1968年至2024年的WTA比赛结果(巡回赛级别、ITF、资格赛)", + "详细的比赛统计数据,包括ace球、双误、发球得分、破发点", + "部分大满贯比赛的逐分数据", + "包含数千场职业比赛逐球分析的比赛图表项目" + ] + }, + "has_api": false, + "file_path": "sectors/sports/tennis-sackmann.json" + }, + { + "id": "singapore-dos", + "name": { + "en": "Department of Statistics Singapore", + "zh": "新加坡统计局" + }, + "description": { + "en": "The Department of Statistics Singapore (DOS) is the national statistical authority providing official statistics on population, economy, trade, digital economy, and social indicators.", + "zh": "新加坡统计局是新加坡国家统计机构,提供人口、经济、贸易、数字经济和社会指标的官方统计数据。" + }, + "website": "https://www.singstat.gov.sg", + "data_url": "https://tablebuilder.singstat.gov.sg", + "api_url": "https://tablebuilder.singstat.gov.sg/api", + "country": "SG", + "domains": [ + "economics", + "demographics", + "trade", + "technology" + ], + "tags": [ + "statistics", + "gdp", + "population", + "digital-economy" + ], + "authority_level": "government", + "update_frequency": "monthly", + "geographic_scope": "national", + "data_content": { + "en": [ + "GDP and Economic Performance - Quarterly national accounts and growth forecasts", + "Population and Demographics - Resident population, age structure, and labor force", + "Trade Statistics - Merchandise and services trade by partner and commodity", + "Digital Economy - ICT sector performance and digital adoption metrics" + ], + "zh": [ + "GDP和经济表现 - 季度国民账户和增长预测", + "人口和人口统计 - 常住人口、年龄结构和劳动力", + "贸易统计 - 按伙伴和商品分类的货物和服务贸易", + "数字经济 - ICT部门表现和数字化采用指标" + ] + }, + "has_api": true, + "file_path": "singapore/national/singapore-dos.json" + }, + { + "id": "thailand-nso", + "name": { + "en": "National Statistical Office of Thailand", + "zh": "泰国国家统计局", + "native": "สำนักงานสถิติแห่งชาติ" + }, + "description": { + "en": "The National Statistical Office (NSO) is Thailand's central government agency for statistical data. It provides data on demographics, economy, labor, trade, and social indicators.", + "zh": "泰国国家统计局是泰国统计数据的中央政府机构。提供人口、经济、劳动力、贸易和社会指标数据。" + }, + "website": "https://www.nso.go.th", + "data_url": "https://www.nso.go.th/nsoweb/officialStatistics", + "country": "TH", + "domains": [ + "economics", + "demographics", + "labor", + "trade" + ], + "tags": [ + "statistics", + "gdp", + "population", + "employment" + ], + "authority_level": "government", + "update_frequency": "quarterly", + "geographic_scope": "national", + "data_content": { + "en": [ + "Population Census - Demographics, households, and urbanization", + "Labor Force Survey - Employment, unemployment, and wage statistics", + "Economic Statistics - GDP components, prices, and business surveys", + "Social Indicators - Education, health, and income distribution" + ], + "zh": [ + "人口普查 - 人口、家庭和城镇化", + "劳动力调查 - 就业、失业和工资统计", + "经济统计 - GDP构成、价格和企业调查", + "社会指标 - 教育、卫生和收入分配" + ] + }, + "api_url": null, + "has_api": false, + "file_path": "thailand/national/thailand-nso.json" + }, + { + "id": "us-fred", + "name": { + "en": "FRED - Federal Reserve Economic Data", + "zh": "美联储经济数据库" + }, + "description": { + "en": "FRED (Federal Reserve Economic Data) is a comprehensive database maintained by the Federal Reserve Bank of St. Louis containing over 800,000 economic time series from 100+ sources. It is one of the most widely used free macroeconomic data platforms globally, covering GDP, employment, inflation, interest rates, money supply, trade, housing, and hundreds of other economic indicators for the US and international economies.", + "zh": "FRED(美联储经济数据)是由圣路易斯联邦储备银行维护的综合数据库,包含来自100多个数据源的超过80万条经济时间序列。它是全球使用最广泛的免费宏观经济数据平台之一,涵盖美国和国际经济的GDP、就业、通胀、利率、货币供应、贸易、住房等数百种经济指标。" + }, + "website": "https://fred.stlouisfed.org", + "data_url": "https://fred.stlouisfed.org", + "api_url": "https://fred.stlouisfed.org/docs/api/fred/", + "country": "US", + "domains": [ + "economics", + "finance", + "labor", + "trade" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "fred", + "federal-reserve", + "macroeconomics", + "gdp", + "inflation", + "interest-rates", + "unemployment", + "money-supply", + "cpi", + "美联储", + "宏观经济", + "经济数据", + "利率", + "通胀", + "m2", + "time-series", + "economic-indicators" + ], + "data_content": { + "en": [ + "GDP and National Accounts - real/nominal GDP, GDP components, growth rates", + "Employment and Labor - unemployment rate, nonfarm payrolls, labor force participation", + "Prices and Inflation - CPI, PCE, PPI, breakeven inflation", + "Interest Rates - federal funds rate, Treasury yields, LIBOR/SOFR", + "Money Supply - M1, M2, monetary base", + "Banking - commercial bank assets/liabilities, lending standards", + "Housing - home prices, housing starts, mortgage rates", + "International Trade - trade balance, exchange rates", + "Industrial Production and Capacity Utilization", + "Consumer and Business Surveys - consumer confidence, PMI", + "Regional Data - state and metro area economic indicators", + "International data from IMF, World Bank, OECD, and other sources" + ], + "zh": [ + "GDP和国民账户 - 实际/名义GDP、GDP构成、增长率", + "就业和劳动力 - 失业率、非农就业、劳动参与率", + "物价和通胀 - CPI、PCE、PPI、盈亏平衡通胀率", + "利率 - 联邦基金利率、国债收益率、LIBOR/SOFR", + "货币供应量 - M1、M2、基础货币", + "银行业 - 商业银行资产负债、贷款标准", + "住房 - 房价、新房开工、抵押贷款利率", + "国际贸易 - 贸易差额、汇率", + "工业生产和产能利用率", + "消费者和商业调查 - 消费者信心、PMI", + "地区数据 - 州和都会区经济指标", + "来自IMF、世界银行、OECD等来源的国际数据" + ] + }, + "authority_level": "government", + "has_api": true, + "file_path": "us/economics/us-fred.json" + }, + { + "id": "sec-edgar", + "name": { + "en": "SEC EDGAR", + "zh": "美国证券交易委员会EDGAR系统" + }, + "description": { + "en": "U.S. Securities and Exchange Commission's Electronic Data Gathering, Analysis, and Retrieval system. Provides free public access to corporate filings including 10-K, 10-Q, 8-K, proxy statements, and insider trading reports for all publicly traded companies in the United States.", + "zh": "美国证券交易委员会的电子数据收集、分析和检索系统,提供所有美国上市公司的10-K、10-Q、8-K等财务报告的免费公开访问。" + }, + "website": "https://www.sec.gov/edgar", + "data_url": "https://www.sec.gov/cgi-bin/browse-edgar?action=getcompany", + "api_url": "https://efts.sec.gov/LATEST/search-index?q=", + "authority_level": "government", + "country": "US", + "domains": [ + "finance", + "economics" + ], + "tags": [ + "securities", + "corporate-filings", + "financial-reporting", + "stock-market", + "sec" + ], + "update_frequency": "daily", + "data_content": { + "en": [ + "Corporate annual reports (10-K)", + "Quarterly reports (10-Q)", + "Current reports (8-K)", + "Proxy statements", + "Insider trading reports" + ], + "zh": [ + "企业年度报告(10-K)", + "季度报告(10-Q)", + "临时报告(8-K)", + "代理声明", + "内幕交易报告" + ] + }, + "geographic_scope": "national", + "has_api": true, + "file_path": "usa/finance/sec-edgar.json" } ] } diff --git a/firstdata/indexes/by-authority.json b/firstdata/indexes/by-authority.json index 77dbdaaf..60db458f 100644 --- a/firstdata/indexes/by-authority.json +++ b/firstdata/indexes/by-authority.json @@ -1,14 +1,14 @@ { "metadata": { - "generated_at": "2026-03-02T08:05:03.494144+00:00", - "total_sources": 156, + "generated_at": "2026-05-04T06:42:43.195561+00:00", + "total_sources": 679, "authority_counts": { - "research": 28, - "international": 44, - "government": 59, - "commercial": 10, - "market": 14, - "other": 1 + "research": 123, + "international": 77, + "government": 348, + "other": 61, + "market": 43, + "commercial": 27 }, "version": "2.0" }, @@ -147,6 +147,30 @@ "file_path": "academic/health/ghdx.json", "geographic_scope": "global" }, + { + "id": "ieee-xplore", + "name": { + "en": "IEEE Xplore Digital Library", + "zh": "IEEE Xplore数字图书馆" + }, + "authority_level": "research", + "data_url": "https://ieeexplore.ieee.org", + "has_api": true, + "file_path": "academic/ieee-xplore.json", + "geographic_scope": "global" + }, + { + "id": "owid", + "name": { + "en": "Our World in Data", + "zh": "用数据看世界" + }, + "authority_level": "research", + "data_url": "https://github.com/owid/owid-datasets", + "has_api": true, + "file_path": "academic/multidisciplinary/owid.json", + "geographic_scope": "global" + }, { "id": "cern-open-data", "name": { @@ -196,1552 +220,7534 @@ "geographic_scope": "regional" }, { - "id": "china-caict", + "id": "china-caupd", "name": { - "en": "China Academy of Information and Communications Technology", - "zh": "中国信息通信研究院" + "en": "China Academy of Urban Planning and Design", + "zh": "中国城市规划设计研究院" }, "authority_level": "research", - "data_url": "http://www.caict.ac.cn/kxyj/qwfb/", + "data_url": "https://www.caupd.com/", "has_api": false, - "file_path": "china/research/china-caict.json", + "file_path": "china/construction/china-caupd.json", "geographic_scope": "national" }, { - "id": "cdiac", + "id": "china-cih-index", "name": { - "en": "Carbon Dioxide Information Analysis Center", - "zh": "碳信息分析中心" + "en": "China Index Academy (CIH Cloud)", + "zh": "中指研究院(中指云)" }, "authority_level": "research", - "data_url": "https://data.ess-dive.lbl.gov/portals/CDIAC", - "has_api": true, - "file_path": "international/environment/cdiac.json", - "geographic_scope": "global" + "data_url": "https://www.cih-index.com", + "has_api": false, + "file_path": "china/construction/china-cih-index.json", + "geographic_scope": "national" }, { - "id": "bookscorpus", + "id": "china-urban-planning", "name": { - "en": "BooksCorpus", - "zh": "图书语料库" + "en": "Chinese Society for Urban Studies", + "zh": "中国城市规划学会" }, "authority_level": "research", - "data_url": "https://github.com/soskek/bookcorpus", + "data_url": "https://www.planning.org.cn/paper", "has_api": false, - "file_path": "sectors/J-information-communication/bookscorpus.json", - "geographic_scope": "global" + "file_path": "china/construction/china-urban-planning.json", + "geographic_scope": "national" }, { - "id": "cifar", + "id": "china-catas", "name": { - "en": "CIFAR-10 and CIFAR-100", - "zh": "CIFAR-10 和 CIFAR-100 数据集" + "en": "Chinese Academy of Tropical Agricultural Sciences", + "zh": "中国热带农业科学院" }, "authority_level": "research", - "data_url": "https://www.cs.toronto.edu/~kriz/cifar.html", + "data_url": "https://www.catas.cn", "has_api": false, - "file_path": "sectors/J-information-communication/cifar.json", - "geographic_scope": "global" + "file_path": "china/economy/agriculture/china-catas.json", + "geographic_scope": "national" }, { - "id": "common-crawl", + "id": "china-passenger-car-association", "name": { - "en": "Common Crawl", - "zh": "Common Crawl 网络爬取数据" + "en": "China Passenger Car Association", + "zh": "全国乘用车市场信息联席会" }, "authority_level": "research", - "data_url": "https://commoncrawl.org", - "has_api": true, - "file_path": "sectors/J-information-communication/common-crawl.json", - "geographic_scope": "global" + "data_url": "https://www.cpcaauto.com/newslist.php?types=csjd", + "has_api": false, + "file_path": "china/economy/automotive/china-passenger-car-association.json", + "geographic_scope": "national" }, { - "id": "conll-shared-tasks", + "id": "china-drcnet", "name": { - "en": "CoNLL Shared Tasks Data", - "zh": "CoNLL共享任务数据集" + "en": "DRCNET - Development Research Center Network", + "zh": "国研网" }, "authority_level": "research", - "data_url": "https://www.conll.org/previous-tasks", + "data_url": "https://www.drcnet.com.cn", "has_api": false, - "file_path": "sectors/J-information-communication/conll-shared-tasks.json", - "geographic_scope": "global" + "file_path": "china/economy/macro/china-drcnet.json", + "geographic_scope": "national" }, { - "id": "imagenet", + "id": "china-iprcc", "name": { - "en": "ImageNet", - "zh": "ImageNet 图像数据库" + "en": "International Poverty Reduction Center in China", + "zh": "中国国际减贫中心" }, "authority_level": "research", - "data_url": "https://www.image-net.org", + "data_url": "https://www.iprcc.org.cn", "has_api": false, - "file_path": "sectors/J-information-communication/imagenet.json", - "geographic_scope": "global" + "file_path": "china/economy/macro/china-iprcc.json", + "geographic_scope": "national" }, { - "id": "crsp", + "id": "china-nifd", "name": { - "en": "CRSP - Center for Research in Security Prices", - "zh": "证券价格研究中心" + "en": "National Institution for Finance and Development", + "zh": "国家金融与发展实验室" }, "authority_level": "research", - "data_url": "https://www.crsp.org/", - "has_api": true, - "file_path": "sectors/K-finance-insurance/crsp.json", + "data_url": "http://www.nifd.cn", + "has_api": false, + "file_path": "china/finance/china-nifd.json", "geographic_scope": "national" }, { - "id": "cambridge-structural-database", + "id": "china-pkulaw", "name": { - "en": "Cambridge Structural Database (CSD)", - "zh": "剑桥晶体结构数据库" + "en": "PKU Law (Peking University Law Database)", + "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" + "data_url": "https://www.pkulaw.com/law", + "has_api": false, + "file_path": "china/governance/china-pkulaw.json", + "geographic_scope": "national" }, { - "id": "china-instrument-society", + "id": "china-cacm", "name": { - "en": "China Instrument and Control Society", - "zh": "中国仪器仪表学会" + "en": "Chinese Association of Chinese Medicine", + "zh": "中华中医药学会" }, "authority_level": "research", - "data_url": "https://www.cis.org.cn/post/index/162", + "data_url": "https://www.cacm.org.cn", "has_api": false, - "file_path": "sectors/M-professional-scientific/china-instrument-society.json", + "file_path": "china/health/china-cacm.json", "geographic_scope": "national" }, { - "id": "arwu", + "id": "china-cacms", "name": { - "en": "Academic Ranking of World Universities", - "zh": "世界大学学术排名" + "en": "China Academy of Chinese Medical Sciences", + "zh": "中国中医科学院" }, "authority_level": "research", - "data_url": "https://www.shanghairanking.com/rankings/arwu/2025", + "data_url": "https://www.cacms.ac.cn/index.html", "has_api": false, - "file_path": "sectors/P-education/arwu.json", - "geographic_scope": "global" + "file_path": "china/health/china-cacms.json", + "geographic_scope": "national" }, { - "id": "british-museum-collection", + "id": "china-cams", "name": { - "en": "British Museum Collection", - "zh": "大英博物馆馆藏" + "en": "Chinese Academy of Medical Sciences (CAMS)", + "zh": "中国医学科学院" }, "authority_level": "research", - "data_url": "https://www.britishmuseum.org/collection", + "data_url": "https://www.cams.cn", "has_api": false, - "file_path": "sectors/R-arts-entertainment/british-museum-collection.json", - "geographic_scope": "global" + "file_path": "china/health/china-cams.json", + "geographic_scope": "national" }, { - "id": "tennis-atp-wta-data", + "id": "china-class", "name": { - "en": "ATP/WTA Tennis Data", - "zh": "ATP/WTA网球数据" + "en": "China Longitudinal Aging Social Survey (CLASS)", + "zh": "中国老年社会追踪调查(CLASS)" }, "authority_level": "research", - "data_url": "https://github.com/JeffSackmann/tennis_atp", + "data_url": "http://class.ruc.edu.cn/", "has_api": false, - "file_path": "sectors/R-arts-entertainment/tennis-atp-wta-data.json", - "geographic_scope": "global" - } - ], - "international": [ + "file_path": "china/health/china-class.json", + "geographic_scope": "national" + }, { - "id": "alphafold-db", + "id": "china-cpdrc", "name": { - "en": "AlphaFold Protein Structure Database", - "zh": "AlphaFold蛋白质结构数据库" + "en": "China Population and Development Research Center", + "zh": "中国人口与发展研究中心" }, - "authority_level": "international", - "data_url": "https://alphafold.com", - "has_api": true, - "file_path": "academic/biology/alphafold-db.json", - "geographic_scope": "global" + "authority_level": "research", + "data_url": "https://www.cpdrc.org.cn/sjzw/", + "has_api": false, + "file_path": "china/health/china-cpdrc.json", + "geographic_scope": "national" }, { - "id": "ena", + "id": "china-cpharma", "name": { - "en": "European Nucleotide Archive", - "zh": "欧洲核苷酸档案库" + "en": "Chinese Pharmaceutical Association", + "zh": "中国药学会" }, - "authority_level": "international", - "data_url": "https://www.ebi.ac.uk/ena/browser/", - "has_api": true, - "file_path": "academic/biology/ena.json", - "geographic_scope": "global" + "authority_level": "research", + "data_url": "https://www.cpa.org.cn/?do=class&classid=250", + "has_api": false, + "file_path": "china/health/china-cpharma.json", + "geographic_scope": "national" }, { - "id": "intl-chemspider", + "id": "china-cpma", "name": { - "en": "ChemSpider", - "zh": "化学蜘蛛数据库" + "en": "Chinese Preventive Medicine Association", + "zh": "中华预防医学会" }, - "authority_level": "international", - "data_url": "https://www.chemspider.com", + "authority_level": "research", + "data_url": "https://www.cpma.org.cn", "has_api": false, - "file_path": "academic/chemistry/chemspider.json", - "geographic_scope": "global" + "file_path": "china/health/china-cpma.json", + "geographic_scope": "national" }, { - "id": "copernicus-open-access-hub", + "id": "china-medical-association", "name": { - "en": "Copernicus Open Access Hub", - "zh": "哥白尼开放访问中心" + "en": "Chinese Medical Association", + "zh": "中华医学会" }, - "authority_level": "international", - "data_url": "https://dataspace.copernicus.eu/", - "has_api": true, - "file_path": "academic/environment/copernicus-open-access-hub.json", - "geographic_scope": "global" + "authority_level": "research", + "data_url": "https://www.cma.org.cn/col/col5601/index.html", + "has_api": false, + "file_path": "china/health/china-medical-association.json", + "geographic_scope": "national" }, { - "id": "dhs", + "id": "china-nhei", "name": { - "en": "Demographic and Health Surveys (DHS) Program", - "zh": "人口与健康调查项目" + "en": "China National Health Development Research Center", + "zh": "国家卫生健康委卫生发展研究中心" }, - "authority_level": "international", - "data_url": "https://dhsprogram.com/", - "has_api": true, - "file_path": "academic/health/dhs.json", - "geographic_scope": "regional" + "authority_level": "research", + "data_url": "https://www.nhei.cn", + "has_api": false, + "file_path": "china/health/china-nhei.json", + "geographic_scope": "national" }, { - "id": "cgiar-research-data", + "id": "china-nphsd", "name": { - "en": "CGIAR Research Data", - "zh": "国际农业研究磋商组织研究数据" + "en": "National Population and Health Science Data Center", + "zh": "国家人口与健康科学数据中心" }, - "authority_level": "international", - "data_url": "https://gardian.cgiar.org/", - "has_api": true, - "file_path": "international/agriculture/cgiar-research-data.json", - "geographic_scope": "global" + "authority_level": "research", + "data_url": "https://www.phsciencedata.cn", + "has_api": false, + "file_path": "china/health/china-nphsd.json", + "geographic_scope": "national" }, { - "id": "faostat", + "id": "china-csei", "name": { - "en": "FAOSTAT - Food and Agriculture Data", - "zh": "粮农组织统计数据库" + "en": "China Special Equipment Inspection and Research Institute", + "zh": "中国特种设备检测研究院" }, - "authority_level": "international", - "data_url": "https://www.fao.org/faostat/en/", - "has_api": true, - "file_path": "international/agriculture/faostat.json", - "geographic_scope": "global" + "authority_level": "research", + "data_url": "https://www.csei.org.cn", + "has_api": false, + "file_path": "china/industry/china-csei.json", + "geographic_scope": "national" }, { - "id": "adb-data-library", + "id": "china-highway-society", "name": { - "en": "Asian Development Bank Data Library", - "zh": "亚洲开发银行数据库" + "en": "China Highway and Transportation Society", + "zh": "中国公路学会" }, - "authority_level": "international", - "data_url": "https://data.adb.org", - "has_api": true, - "file_path": "international/development/adb-data-library.json", - "geographic_scope": "regional" + "authority_level": "research", + "data_url": "https://www.chts.cn", + "has_api": false, + "file_path": "china/infrastructure/china-highway-society.json", + "geographic_scope": "national" }, { - "id": "adb-data", + "id": "china-cta", "name": { - "en": "Asian Development Bank Data Library", - "zh": "亚洲开发银行数据库", - "native": "ADB Data Library" + "en": "China Tourism Academy", + "zh": "中国旅游研究院" }, - "authority_level": "international", - "data_url": "https://data.adb.org", - "has_api": true, - "file_path": "international/development/adb-data.json", - "geographic_scope": "regional" + "authority_level": "research", + "data_url": "https://www.ctaweb.org.cn/index.php?m=home&c=Lists&a=index&tid=21", + "has_api": false, + "file_path": "china/national/china-cta.json", + "geographic_scope": "national" }, { - "id": "adb-key-indicators", + "id": "china-cabr", "name": { - "en": "Asian Development Bank Key Indicators", - "zh": "亚洲开发银行关键指标" + "en": "China Academy of Building Research", + "zh": "中国建筑科学研究院有限公司" }, - "authority_level": "international", - "data_url": "https://kidb.adb.org", - "has_api": true, - "file_path": "international/development/adb-key-indicators.json", - "geographic_scope": "regional" + "authority_level": "research", + "data_url": "https://www.cabr.cn", + "has_api": false, + "file_path": "china/research/china-cabr.json", + "geographic_scope": "national" }, { - "id": "afdb-statistics", + "id": "china-cae", "name": { - "en": "African Development Bank Statistics", - "zh": "非洲开发银行统计数据" + "en": "Chinese Academy of Engineering", + "zh": "中国工程院" }, - "authority_level": "international", - "data_url": "https://dataportal.opendataforafrica.org", - "has_api": true, - "file_path": "international/development/afdb-statistics.json", - "geographic_scope": "regional" + "authority_level": "research", + "data_url": "https://www.cae.cn/cae/html/main/col73/column_73_1.html", + "has_api": false, + "file_path": "china/research/china-cae.json", + "geographic_scope": "national" }, { - "id": "afdb", + "id": "china-caict", "name": { - "en": "African Development Bank", - "zh": "非洲开发银行" + "en": "China Academy of Information and Communications Technology", + "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" + "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": "caf", + "id": "china-cas", "name": { - "en": "Development Bank of Latin America and the Caribbean (CAF)", - "zh": "拉美和加勒比开发银行", - "native": "Banco de Desarrollo de América Latina y El Caribe" + "en": "Chinese Academy of Sciences - Science Data Bank", + "zh": "中国科学院科学数据库" }, - "authority_level": "international", - "data_url": "https://www.caf.com/en/", + "authority_level": "research", + "data_url": "https://www.scidb.cn/", "has_api": false, - "file_path": "international/development/caf.json", - "geographic_scope": "regional" + "file_path": "china/research/china-cas.json", + "geographic_scope": "national" }, { - "id": "caribbean-development-bank", + "id": "china-casm", "name": { - "en": "Caribbean Development Bank", - "zh": "加勒比开发银行" + "en": "Chinese Academy of Surveying and Mapping", + "zh": "中国测绘科学研究院" }, - "authority_level": "international", - "data_url": "https://www.caribank.org/data/country-data-reports", + "authority_level": "research", + "data_url": "https://www.casm.ac.cn", "has_api": false, - "file_path": "international/development/caribbean-development-bank.json", - "geographic_scope": "regional" + "file_path": "china/research/china-casm.json", + "geographic_scope": "national" }, { - "id": "idb", + "id": "china-cass", "name": { - "en": "Inter-American Development Bank", - "zh": "美洲开发银行" + "en": "Chinese Academy of Social Sciences", + "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" + "authority_level": "research", + "data_url": "http://www.cass.ac.cn/list/zw_sscp.html", + "has_api": false, + "file_path": "china/research/china-cass.json", + "geographic_scope": "national" }, { - "id": "intl-copernicus-cdse", + "id": "china-casted", "name": { - "en": "Copernicus Data Space Ecosystem", - "zh": "哥白尼数据空间生态系统" + "en": "China Academy of Science and Technology for Development", + "zh": "中国科学技术发展战略研究院" }, - "authority_level": "international", - "data_url": "https://dataspace.copernicus.eu", - "has_api": true, - "file_path": "international/earth-science/copernicus-data-space.json", - "geographic_scope": "global" + "authority_level": "research", + "data_url": "http://www.casted.org.cn/channel/", + "has_api": false, + "file_path": "china/research/china-casted.json", + "geographic_scope": "national" }, { - "id": "adb-ado", + "id": "china-catarc", "name": { - "en": "Asian Development Outlook", - "zh": "亚洲开发展望" + "en": "China Automotive Technology and Research Center", + "zh": "中国汽车技术研究中心" }, - "authority_level": "international", - "data_url": "https://www.adb.org/outlook", + "authority_level": "research", + "data_url": "https://www.catarc.ac.cn", "has_api": false, - "file_path": "international/economics/adb-ado.json", - "geographic_scope": "regional" + "file_path": "china/research/china-catarc.json", + "geographic_scope": "national" }, { - "id": "adb-data-library", + "id": "china-cciee", "name": { - "en": "ADB Data Library", - "zh": "亚洲开发银行数据库" + "en": "China Center for International Economic Exchanges", + "zh": "中国国际经济交流中心" }, - "authority_level": "international", - "data_url": "https://data.adb.org", - "has_api": true, - "file_path": "international/economics/adb-data-library.json", - "geographic_scope": "regional" + "authority_level": "research", + "data_url": "https://www.cciee.org.cn/ktcglistall.aspx?clmId=650", + "has_api": false, + "file_path": "china/research/china-cciee.json", + "geographic_scope": "national" }, { - "id": "adb-vietnam", + "id": "china-ccs-crop", "name": { - "en": "Asian Development Bank - Vietnam Country Data", - "zh": "亚洲开发银行越南国别数据" + "en": "Chinese Crop Science Society", + "zh": "中国作物学会" }, - "authority_level": "international", - "data_url": "https://www.adb.org/countries/viet-nam/data", + "authority_level": "research", + "data_url": "https://www.chinacrops.org", "has_api": false, - "file_path": "international/economics/adb-vietnam.json", + "file_path": "china/research/china-ccs-crop.json", "geographic_scope": "national" }, { - "id": "imf-data", + "id": "china-cdrf", "name": { - "en": "IMF Data", - "zh": "国际货币基金组织数据", - "native": "IMF Data" + "en": "China Development Research Foundation (CDRF)", + "zh": "中国发展研究基金会" }, - "authority_level": "international", - "data_url": "https://data.imf.org", - "has_api": true, - "file_path": "international/economics/imf.json", - "geographic_scope": "global" + "authority_level": "research", + "data_url": "https://www.cdrf.org.cn", + "has_api": false, + "file_path": "china/research/china-cdrf.json", + "geographic_scope": "national" }, { - "id": "oecd-statistics", + "id": "china-cf40", "name": { - "en": "OECD Statistics", - "zh": "经合组织统计数据", - "native": "OECD Statistics" + "en": "China Finance 40 Forum (CF40)", + "zh": "中国金融四十人论坛" }, - "authority_level": "international", - "data_url": "https://stats.oecd.org", - "has_api": true, - "file_path": "international/economics/oecd.json", - "geographic_scope": "regional" + "authority_level": "research", + "data_url": "https://www.cf40.com/research", + "has_api": false, + "file_path": "china/research/china-cf40.json", + "geographic_scope": "national" }, { - "id": "worldbank-open-data", + "id": "china-cfps", "name": { - "en": "World Bank Open Data", - "zh": "世界银行开放数据", - "native": "World Bank Open Data" + "en": "China Family Panel Studies (CFPS)", + "zh": "中国家庭追踪调查(CFPS)" }, - "authority_level": "international", - "data_url": "https://data.worldbank.org", - "has_api": true, - "file_path": "international/economics/worldbank.json", - "geographic_scope": "global" + "authority_level": "research", + "data_url": "https://opendata.pku.edu.cn/dataverse/CFPS", + "has_api": false, + "file_path": "china/research/china-cfps.json", + "geographic_scope": "national" }, { - "id": "iea-education-studies", + "id": "china-cgss", "name": { - "en": "IEA Education Studies Data", - "zh": "国际教育成就评价协会教育研究数据" + "en": "Chinese General Social Survey (CGSS)", + "zh": "中国综合社会调查(CGSS)" }, - "authority_level": "international", - "data_url": "https://www.iea.nl/data-tools/repository", + "authority_level": "research", + "data_url": "http://cgss.ruc.edu.cn/", "has_api": false, - "file_path": "international/education/iea-education-studies.json", - "geographic_scope": "global" + "file_path": "china/research/china-cgss.json", + "geographic_scope": "national" }, { - "id": "oecd-pisa", + "id": "china-chfs", "name": { - "en": "PISA - Programme for International Student Assessment", - "zh": "国际学生评估项目" + "en": "China Household Finance Survey (CHFS)", + "zh": "中国家庭金融调查(CHFS)" }, - "authority_level": "international", - "data_url": "https://www.oecd.org/en/about/programmes/pisa.html", + "authority_level": "research", + "data_url": "https://chfs.swufe.edu.cn", "has_api": false, - "file_path": "international/education/oecd-pisa.json", - "geographic_scope": "global" + "file_path": "china/research/china-chfs.json", + "geographic_scope": "national" }, { - "id": "iaea-energy-data", + "id": "china-cipd", "name": { - "en": "IAEA Energy Data", - "zh": "国际原子能机构能源数据" + "en": "China Population and Development Research Center", + "zh": "中国人口与发展研究中心" }, - "authority_level": "international", - "data_url": "https://data.iaea.org/", - "has_api": true, - "file_path": "international/energy/iaea-energy-data.json", - "geographic_scope": "global" + "authority_level": "research", + "data_url": "https://www.cpirc.org.cn", + "has_api": false, + "file_path": "china/research/china-cipd.json", + "geographic_scope": "national" }, { - "id": "iea-energy-data", + "id": "china-cisri", "name": { - "en": "IEA Energy Data", - "zh": "国际能源署能源数据", - "native": "IEA Energy Data" + "en": "China Iron & Steel Research Institute Group", + "zh": "中国钢研科技集团有限公司" }, - "authority_level": "international", - "data_url": "https://www.iea.org/data-and-statistics", - "has_api": true, - "file_path": "international/energy/iea.json", - "geographic_scope": "global" + "authority_level": "research", + "data_url": "https://www.cisri.com.cn", + "has_api": false, + "file_path": "china/research/china-cisri.json", + "geographic_scope": "national" }, { - "id": "basel-convention", + "id": "china-csic", "name": { - "en": "Basel Convention Data", - "zh": "巴塞尔公约数据" + "en": "Institute of Sociology, Chinese Academy of Social Sciences", + "zh": "中国社会科学院社会学研究所" }, - "authority_level": "international", - "data_url": "https://www.basel.int", + "authority_level": "research", + "data_url": "https://sociology.cssn.cn", "has_api": false, - "file_path": "international/environment/basel-convention.json", - "geographic_scope": "global" + "file_path": "china/research/china-csic.json", + "geographic_scope": "national" }, { - "id": "cites-trade-database", + "id": "china-cste", "name": { - "en": "CITES Trade Database", - "zh": "濒危物种国际贸易公约贸易数据库" + "en": "China Society for Technology Economics", + "zh": "中国技术经济学会" }, - "authority_level": "international", - "data_url": "https://trade.cites.org", + "authority_level": "research", + "data_url": "https://www.cste.org.cn", "has_api": false, - "file_path": "international/environment/cites-trade-database.json", - "geographic_scope": "global" + "file_path": "china/research/china-cste.json", + "geographic_scope": "national" }, { - "id": "bis-reserves", + "id": "china-cufe-iigf", "name": { - "en": "BIS Central Bank Reserves Statistics", - "zh": "国际清算银行外汇储备统计" + "en": "International Institute of Green Finance (IIGF), Central University of Finance and Economics", + "zh": "中央财经大学绿色金融国际研究院" }, - "authority_level": "international", - "data_url": "https://data.bis.org/topics/CBTA", - "has_api": true, - "file_path": "international/finance/bis-reserves.json", - "geographic_scope": "global" + "authority_level": "research", + "data_url": "https://iigf.cufe.edu.cn/yjcg/yjbg.htm", + "has_api": false, + "file_path": "china/research/china-cufe-iigf.json", + "geographic_scope": "national" }, { - "id": "bis-statistics", + "id": "china-giec", "name": { - "en": "BIS Statistics - Bank for International Settlements", - "zh": "国际清算银行统计数据" + "en": "Guangzhou Institute of Energy Conversion, Chinese Academy of Sciences", + "zh": "中国科学院广州能源研究所" }, - "authority_level": "international", - "data_url": "https://data.bis.org", - "has_api": true, - "file_path": "international/finance/bis-statistics.json", - "geographic_scope": "global" + "authority_level": "research", + "data_url": "http://www.giec.ac.cn", + "has_api": false, + "file_path": "china/research/china-giec.json", + "geographic_scope": "national" }, { - "id": "ebrd", + "id": "china-gscloud", "name": { - "en": "European Bank for Reconstruction and Development", - "zh": "欧洲复兴开发银行" + "en": "Geospatial Data Cloud - Computer Network Information Center, CAS", + "zh": "地理空间数据云(中国科学院计算机网络信息中心)" }, - "authority_level": "international", - "data_url": "https://www.ebrd.com", + "authority_level": "research", + "data_url": "https://www.gscloud.cn/search", "has_api": false, - "file_path": "international/finance/ebrd.json", - "geographic_scope": "regional" + "file_path": "china/research/china-gscloud.json", + "geographic_scope": "global" }, { - "id": "iais", + "id": "china-iap", "name": { - "en": "IAIS - International Association of Insurance Supervisors", - "zh": "国际保险监督官协会" + "en": "Institute of Atmospheric Physics, Chinese Academy of Sciences", + "zh": "中国科学院大气物理研究所" }, - "authority_level": "international", - "data_url": "https://www.iais.org/activities-topics/financial-stability/gimar/", + "authority_level": "research", + "data_url": "https://www.iap.ac.cn", "has_api": false, - "file_path": "international/finance/iais.json", - "geographic_scope": "global" + "file_path": "china/research/china-iap.json", + "geographic_scope": "national" }, { - "id": "paris-club", + "id": "china-ibcas", "name": { - "en": "Paris Club", - "zh": "巴黎俱乐部" + "en": "Institute of Botany, Chinese Academy of Sciences", + "zh": "中国科学院植物研究所" }, - "authority_level": "international", - "data_url": "https://www.clubdeparis.org", + "authority_level": "research", + "data_url": "https://www.ibcas.ac.cn", "has_api": false, - "file_path": "international/finance/paris-club.json", - "geographic_scope": "regional" + "file_path": "china/research/china-ibcas.json", + "geographic_scope": "national" }, { - "id": "africa-cdc", + "id": "china-igsnrr", "name": { - "en": "Africa CDC Health Data", - "zh": "非洲疾控中心健康数据" + "en": "Institute of Geographic Sciences and Natural Resources Research, Chinese Academy of Sciences", + "zh": "中国科学院地理科学与资源研究所" }, - "authority_level": "international", - "data_url": "https://africacdc.org", + "authority_level": "research", + "data_url": "http://www.igsnrr.ac.cn", "has_api": false, - "file_path": "international/health/africa-cdc.json", - "geographic_scope": "regional" + "file_path": "china/research/china-igsnrr.json", + "geographic_scope": "national" }, { - "id": "ecdc-surveillance", + "id": "china-imcas", "name": { - "en": "ECDC Surveillance Data", - "zh": "欧洲疾病预防控制中心监测数据" + "en": "Institute of Microbiology, Chinese Academy of Sciences", + "zh": "中国科学院微生物研究所" }, - "authority_level": "international", - "data_url": "https://www.ecdc.europa.eu/en/data-dashboards-and-databases", + "authority_level": "research", + "data_url": "https://www.im.cas.cn", "has_api": false, - "file_path": "international/health/ecdc-surveillance.json", - "geographic_scope": "regional" + "file_path": "china/research/china-imcas.json", + "geographic_scope": "national" }, { - "id": "wipo-ip-statistics", + "id": "china-ioz", "name": { - "en": "WIPO IP Statistics", - "zh": "世界知识产权组织知识产权统计", - "native": "WIPO IP Statistics" + "en": "Institute of Zoology, Chinese Academy of Sciences", + "zh": "中国科学院动物研究所" }, - "authority_level": "international", - "data_url": "https://www3.wipo.int/ipstats/", + "authority_level": "research", + "data_url": "http://www.ioz.ac.cn", "has_api": false, - "file_path": "international/intellectual-property/wipo.json", - "geographic_scope": "global" + "file_path": "china/research/china-ioz.json", + "geographic_scope": "national" }, { - "id": "bipm-kcdb", + "id": "china-istic", "name": { - "en": "BIPM Key Comparison Database (KCDB)", - "zh": "国际度量衡局关键比对数据库", - "native": "Bureau International des Poids et Mesures (BIPM)" + "en": "Institute of Scientific and Technical Information of China", + "zh": "中国科学技术信息研究所" }, - "authority_level": "international", - "data_url": "https://www.bipm.org/kcdb", - "has_api": true, - "file_path": "international/standards-metrology/bipm-kcdb.json", - "geographic_scope": "global" + "authority_level": "research", + "data_url": "https://www.istic.ac.cn/", + "has_api": false, + "file_path": "china/research/china-istic.json", + "geographic_scope": "national" }, { - "id": "codex-alimentarius", + "id": "china-ncsti", "name": { - "en": "Codex Alimentarius Standards", - "zh": "国际食品法典委员会标准" + "en": "National Center for Science and Technology Information", + "zh": "中国科学技术信息研究所" }, - "authority_level": "international", - "data_url": "https://www.fao.org/fao-who-codexalimentarius/codex-texts/all-standards/en/", + "authority_level": "research", + "data_url": "https://www.ncsti.gov.cn", "has_api": false, - "file_path": "international/standards-metrology/codex-alimentarius.json", - "geographic_scope": "global" + "file_path": "china/research/china-ncsti.json", + "geographic_scope": "national" }, { - "id": "un-comtrade", + "id": "china-ngeos", "name": { - "en": "UN Comtrade - United Nations International Trade Statistics Database", - "zh": "联合国国际贸易统计数据库" + "en": "National Earth System Science Data Center", + "zh": "国家地球系统科学数据中心" }, - "authority_level": "international", - "data_url": "https://comtradeplus.un.org", - "has_api": true, - "file_path": "international/trade/comtrade.json", - "geographic_scope": "global" + "authority_level": "research", + "data_url": "https://www.geodata.cn/data/", + "has_api": false, + "file_path": "china/research/china-ngeos.json", + "geographic_scope": "national" }, { - "id": "icc-trade-register", + "id": "china-nigpas", "name": { - "en": "ICC Trade Register", - "zh": "国际商会贸易统计" + "en": "Nanjing Institute of Geology and Palaeontology, Chinese Academy of Sciences", + "zh": "中国科学院南京地质古生物研究所" }, - "authority_level": "international", - "data_url": "https://iccwbo.org/news-publications/policies-reports/icc-trade-register-report/", + "authority_level": "research", + "data_url": "http://www.nigpas.ac.cn", "has_api": false, - "file_path": "international/trade/icc-trade-register.json", - "geographic_scope": "global" + "file_path": "china/research/china-nigpas.json", + "geographic_scope": "national" }, { - "id": "unctad", + "id": "china-nsii", "name": { - "en": "UNCTAD - United Nations Conference on Trade and Development", - "zh": "联合国贸易和发展会议" + "en": "National Specimen Information Infrastructure of China", + "zh": "中国国家标本资源平台" }, - "authority_level": "international", - "data_url": "https://unctadstat.unctad.org", - "has_api": true, - "file_path": "international/trade/unctad.json", - "geographic_scope": "global" + "authority_level": "research", + "data_url": "https://www.nsii.org.cn/2017/home.php", + "has_api": false, + "file_path": "china/research/china-nsii.json", + "geographic_scope": "national" }, { - "id": "wto-statistics", + "id": "china-nssdc", "name": { - "en": "WTO Statistics Database", - "zh": "世界贸易组织统计数据库", - "native": "WTO Statistics Database" + "en": "National Space Science Data Center", + "zh": "国家空间科学数据中心" }, - "authority_level": "international", - "data_url": "https://stats.wto.org", - "has_api": true, - "file_path": "international/trade/wto.json", - "geographic_scope": "global" + "authority_level": "research", + "data_url": "https://www.nssdc.ac.cn", + "has_api": false, + "file_path": "china/research/china-nssdc.json", + "geographic_scope": "national" }, { - "id": "icao-aviation-data", + "id": "china-pku-opendata", "name": { - "en": "ICAO Aviation Data", - "zh": "国际民航组织航空数据" + "en": "Peking University Open Research Data Platform", + "zh": "北京大学开放研究数据平台" }, - "authority_level": "international", - "data_url": "https://dataservices.icao.int/", - "has_api": true, - "file_path": "international/transportation/icao-aviation-data.json", - "geographic_scope": "global" + "authority_level": "research", + "data_url": "https://opendata.pku.edu.cn", + "has_api": false, + "file_path": "china/research/china-pku-opendata.json", + "geographic_scope": "national" }, { - "id": "amis", + "id": "china-plant-csdb", "name": { - "en": "Agricultural Market Information System (AMIS)", - "zh": "农业市场信息系统" + "en": "China Plant Thematic Database (CAS Science Database)", + "zh": "中国植物主题数据库" }, - "authority_level": "international", - "data_url": "https://www.amis-outlook.org", + "authority_level": "research", + "data_url": "https://www.plant.csdb.cn", "has_api": false, - "file_path": "sectors/A-agriculture/amis.json", - "geographic_scope": "global" - } - ], - "government": [ + "file_path": "china/research/china-plant-csdb.json", + "geographic_scope": "national" + }, { - "id": "us-ncbi-genbank", + "id": "china-pmo", "name": { - "en": "GenBank", - "zh": "基因库" + "en": "Purple Mountain Observatory, Chinese Academy of Sciences", + "zh": "中国科学院紫金山天文台" }, - "authority_level": "government", - "data_url": "https://www.ncbi.nlm.nih.gov/genbank/", - "has_api": true, - "file_path": "academic/biology/genbank.json", - "geographic_scope": "global" + "authority_level": "research", + "data_url": "http://www.pmo.ac.cn", + "has_api": false, + "file_path": "china/research/china-pmo.json", + "geographic_scope": "national" }, { - "id": "pubchem", + "id": "china-pric", "name": { - "en": "PubChem", - "zh": "PubChem化学数据库" + "en": "Polar Research Institute of China", + "zh": "中国极地研究中心" }, - "authority_level": "government", - "data_url": "https://pubchem.ncbi.nlm.nih.gov/", - "has_api": true, - "file_path": "academic/chemistry/pubchem.json", + "authority_level": "research", + "data_url": "https://www.pric.org.cn/", + "has_api": false, + "file_path": "china/research/china-pric.json", "geographic_scope": "global" }, { - "id": "bis-statistics", + "id": "china-resdc", "name": { - "en": "BIS Statistics", - "zh": "国际清算银行统计数据" + "en": "Resource and Environment Science and Data Center, Chinese Academy of Sciences", + "zh": "中国科学院资源环境科学与数据中心" }, - "authority_level": "government", - "data_url": "https://data.bis.org/", - "has_api": true, - "file_path": "academic/economics/bis-statistics.json", - "geographic_scope": "global" + "authority_level": "research", + "data_url": "https://www.resdc.cn", + "has_api": false, + "file_path": "china/research/china-resdc.json", + "geographic_scope": "national" }, { - "id": "clinicaltrials-gov", + "id": "china-sass", "name": { - "en": "ClinicalTrials.gov", - "zh": "临床试验注册数据库" + "en": "Shanghai Academy of Social Sciences", + "zh": "上海社会科学院" }, - "authority_level": "government", - "data_url": "https://clinicaltrials.gov/", - "has_api": true, - "file_path": "academic/health/clinicaltrials-gov.json", - "geographic_scope": "global" + "authority_level": "research", + "data_url": "https://www.sass.org.cn", + "has_api": false, + "file_path": "china/research/china-sass.json", + "geographic_scope": "national" }, { - "id": "pubmed", + "id": "china-scidb", "name": { - "en": "PubMed", - "zh": "PubMed生物医学文献数据库" + "en": "Science Data Bank (ScienceDB)", + "zh": "中国科学数据银行" }, - "authority_level": "government", - "data_url": "https://pubmed.ncbi.nlm.nih.gov/", - "has_api": true, - "file_path": "academic/health/pubmed.json", + "authority_level": "research", + "data_url": "https://www.scidb.cn/list?type=all", + "has_api": false, + "file_path": "china/research/china-scidb.json", "geographic_scope": "global" }, { - "id": "tcga", + "id": "china-tpdc", "name": { - "en": "The Cancer Genome Atlas (TCGA)", - "zh": "癌症基因组图谱" + "en": "National Tibetan Plateau Data Center", + "zh": "国家青藏高原科学数据中心" }, - "authority_level": "government", - "data_url": "https://portal.gdc.cancer.gov/", + "authority_level": "research", + "data_url": "https://data.tpdc.ac.cn", + "has_api": false, + "file_path": "china/research/china-tpdc.json", + "geographic_scope": "regional" + }, + { + "id": "china-ngdc", + "name": { + "en": "National Genomics Data Center", + "zh": "国家基因组科学数据中心" + }, + "authority_level": "research", + "data_url": "https://ngdc.cncb.ac.cn/gsub/", "has_api": true, - "file_path": "academic/health/tcga.json", + "file_path": "china/research/ngdc.json", "geographic_scope": "national" }, { - "id": "china-ndrc-computing", + "id": "china-caep", "name": { - "en": "NDRC East-to-West Computing Resources Project", - "zh": "国家发展改革委东数西算工程" + "en": "Chinese Academy of Environmental Planning", + "zh": "生态环境部环境规划院" }, - "authority_level": "government", - "data_url": "https://www.ndrc.gov.cn/xxgk/zcfb/tz/202312/t20231229_1363000.html", + "authority_level": "research", + "data_url": "http://www.caep.org.cn", "has_api": false, - "file_path": "china/economy/macro/china-ndrc-computing.json", + "file_path": "china/resources/environment/china-caep.json", "geographic_scope": "national" }, { - "id": "china-ndrc", + "id": "china-ceads", "name": { - "en": "National Development and Reform Commission", - "zh": "国家发展和改革委员会", - "native": "国家发展和改革委员会" + "en": "Carbon Emission Accounts and Datasets for China (CEADs)", + "zh": "中国碳排放核算数据库(CEADs)" }, - "authority_level": "government", - "data_url": "https://www.ndrc.gov.cn/fgsj/", + "authority_level": "research", + "data_url": "https://ceads.net.cn/data/", "has_api": false, - "file_path": "china/economy/macro/ndrc.json", + "file_path": "china/resources/environment/china-ceads.json", "geographic_scope": "national" }, { - "id": "china-customs", + "id": "china-cern", "name": { - "en": "General Administration of Customs of China", - "zh": "中华人民共和国海关总署", - "native": "中华人民共和国海关总署" + "en": "Chinese Ecosystem Research Network (CERN)", + "zh": "中国生态系统研究网络" }, - "authority_level": "government", - "data_url": "http://www.customs.gov.cn", + "authority_level": "research", + "data_url": "https://cern.ac.cn/0index/index.asp", "has_api": false, - "file_path": "china/economy/trade/customs.json", + "file_path": "china/resources/environment/china-cern.json", "geographic_scope": "national" }, { - "id": "china-mofcom", + "id": "china-craes", "name": { - "en": "Ministry of Commerce of China", - "zh": "中华人民共和国商务部", - "native": "中华人民共和国商务部" + "en": "Chinese Research Academy of Environmental Sciences", + "zh": "中国环境科学研究院" }, - "authority_level": "government", - "data_url": "https://data.mofcom.gov.cn", + "authority_level": "research", + "data_url": "https://www.craes.cn", "has_api": false, - "file_path": "china/economy/trade/mofcom.json", + "file_path": "china/resources/environment/china-craes.json", "geographic_scope": "national" }, { - "id": "cscse", + "id": "china-ipe", + "name": { + "en": "Institute of Public & Environmental Affairs", + "zh": "公众环境研究中心" + }, + "authority_level": "research", + "data_url": "https://www.ipe.org.cn/AirMap_fxy/AirMap.html", + "has_api": false, + "file_path": "china/resources/environment/china-ipe.json", + "geographic_scope": "national" + }, + { + "id": "china-ncsc", + "name": { + "en": "National Center for Climate Change Strategy and International Cooperation", + "zh": "国家应对气候变化战略研究和国际合作中心" + }, + "authority_level": "research", + "data_url": "http://www.ncsc.org.cn", + "has_api": false, + "file_path": "china/resources/environment/china-ncsc.json", + "geographic_scope": "national" + }, + { + "id": "china-nesdc", + "name": { + "en": "National Ecosystem Science Data Center", + "zh": "国家生态科学数据中心" + }, + "authority_level": "research", + "data_url": "https://www.nesdc.org.cn", + "has_api": false, + "file_path": "china/resources/environment/china-nesdc.json", + "geographic_scope": "national" + }, + { + "id": "china-nies", + "name": { + "en": "Nanjing Institute of Environmental Sciences, MEE", + "zh": "生态环境部南京环境科学研究所" + }, + "authority_level": "research", + "data_url": "https://www.nies.org", + "has_api": false, + "file_path": "china/resources/environment/china-nies.json", + "geographic_scope": "national" + }, + { + "id": "china-ches", + "name": { + "en": "China Hydraulic Engineering Society", + "zh": "中国水利学会" + }, + "authority_level": "research", + "data_url": "http://www.ches.org.cn", + "has_api": false, + "file_path": "china/resources/water/china-ches.json", + "geographic_scope": "national" + }, + { + "id": "china-crsri", + "name": { + "en": "Changjiang River Scientific Research Institute", + "zh": "长江科学院" + }, + "authority_level": "research", + "data_url": "http://www.crsri.cn", + "has_api": false, + "file_path": "china/resources/water/china-crsri.json", + "geographic_scope": "national" + }, + { + "id": "china-iwhr", + "name": { + "en": "China Institute of Water Resources and Hydropower Research", + "zh": "中国水利水电科学研究院" + }, + "authority_level": "research", + "data_url": "http://www.iwhr.com/", + "has_api": false, + "file_path": "china/resources/water/china-iwhr.json", + "geographic_scope": "national" + }, + { + "id": "china-caai", + "name": { + "en": "Chinese Association for Artificial Intelligence", + "zh": "中国人工智能学会" + }, + "authority_level": "research", + "data_url": "https://www.caai.cn/index.php?s=/home/article/lists/category/baokan.html", + "has_api": false, + "file_path": "china/technology/china-caai.json", + "geographic_scope": "national" + }, + { + "id": "china-ccf", + "name": { + "en": "China Computer Federation", + "zh": "中国计算机学会" + }, + "authority_level": "research", + "data_url": "https://www.ccf.org.cn/Academic_Evaluation/By_category/", + "has_api": false, + "file_path": "china/technology/china-ccf.json", + "geographic_scope": "national" + }, + { + "id": "china-cagis", + "name": { + "en": "China Association for Geographic Information Industry", + "zh": "中国地理信息产业协会" + }, + "authority_level": "research", + "data_url": "https://www.cagis.org.cn", + "has_api": false, + "file_path": "china/technology/industry-associations/china-cagis.json", + "geographic_scope": "national" + }, + { + "id": "china-sae", + "name": { + "en": "Society of Automotive Engineers of China", + "zh": "中国汽车工程学会" + }, + "authority_level": "research", + "data_url": "https://www.sae-china.org/newsdata/reportdata/", + "has_api": false, + "file_path": "china/technology/industry-associations/china-sae.json", + "geographic_scope": "national" + }, + { + "id": "china-ces", + "name": { + "en": "China Electrotechnical Society", + "zh": "中国电工技术学会" + }, + "authority_level": "research", + "data_url": "https://www.ces.org.cn", + "has_api": false, + "file_path": "china/technology/industry_associations/china-ces.json", + "geographic_scope": "national" + }, + { + "id": "china-ciesc", + "name": { + "en": "Chemical Industry and Engineering Society of China", + "zh": "中国化工学会" + }, + "authority_level": "research", + "data_url": "https://www.ciesc.cn", + "has_api": false, + "file_path": "china/technology/industry_associations/china-ciesc.json", + "geographic_scope": "national" + }, + { + "id": "china-cmes", + "name": { + "en": "Chinese Mechanical Engineering Society", + "zh": "中国机械工程学会" + }, + "authority_level": "research", + "data_url": "https://www.cmes.org", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cmes.json", + "geographic_scope": "national" + }, + { + "id": "china-csee", + "name": { + "en": "Chinese Society for Electrical Engineering", + "zh": "中国电机工程学会" + }, + "authority_level": "research", + "data_url": "https://www.csee.org.cn/", + "has_api": false, + "file_path": "china/technology/industry_associations/china-csee.json", + "geographic_scope": "national" + }, + { + "id": "china-csm", + "name": { + "en": "Chinese Society for Metals", + "zh": "中国金属学会" + }, + "authority_level": "research", + "data_url": "https://www.csm.org.cn", + "has_api": false, + "file_path": "china/technology/industry_associations/china-csm.json", + "geographic_scope": "national" + }, + { + "id": "china-naoc", + "name": { + "en": "National Astronomical Observatories of China (NAOC)", + "zh": "中国科学院国家天文台" + }, + "authority_level": "research", + "data_url": "https://nadc.china-vo.org", + "has_api": false, + "file_path": "china/technology/sci_resources/china-naoc.json", + "geographic_scope": "national" + }, + { + "id": "cdp", + "name": { + "en": "CDP - Carbon Disclosure Project", + "zh": "碳信息披露项目" + }, + "authority_level": "research", + "data_url": "https://www.cdp.net/en/data", + "has_api": false, + "file_path": "international/climate/cdp.json", + "geographic_scope": "global" + }, + { + "id": "ember-climate", + "name": { + "en": "Ember Global Electricity Data", + "zh": "Ember全球电力数据平台" + }, + "authority_level": "research", + "data_url": "https://ember-climate.org/data/", + "has_api": true, + "file_path": "international/climate/ember-climate.json", + "geographic_scope": "global" + }, + { + "id": "global-carbon-project", + "name": { + "en": "Global Carbon Project", + "zh": "全球碳项目" + }, + "authority_level": "research", + "data_url": "https://www.globalcarbonproject.org/carbonbudget/", + "has_api": false, + "file_path": "international/climate/global-carbon-project.json", + "geographic_scope": "global" + }, + { + "id": "aiddata", + "name": { + "en": "AidData - Global Development Finance", + "zh": "AidData全球发展援助数据库" + }, + "authority_level": "research", + "data_url": "https://www.aiddata.org/datasets", + "has_api": false, + "file_path": "international/development/aiddata.json", + "geographic_scope": "global" + }, + { + "id": "cdiac", + "name": { + "en": "Carbon Dioxide Information Analysis Center", + "zh": "碳信息分析中心" + }, + "authority_level": "research", + "data_url": "https://data.ess-dive.lbl.gov/portals/CDIAC", + "has_api": true, + "file_path": "international/environment/cdiac.json", + "geographic_scope": "global" + }, + { + "id": "isric-world-soil", + "name": { + "en": "ISRIC World Soil Information", + "zh": "ISRIC世界土壤信息中心" + }, + "authority_level": "research", + "data_url": "https://www.isric.org/explore", + "has_api": true, + "file_path": "international/environment/isric-world-soil.json", + "geographic_scope": "global" + }, + { + "id": "paleobiodb", + "name": { + "en": "Paleobiology Database (PBDB)", + "zh": "古生物学数据库" + }, + "authority_level": "research", + "data_url": "https://paleobiodb.org/navigator/", + "has_api": true, + "file_path": "international/paleontology/paleobiodb.json", + "geographic_scope": "global" + }, + { + "id": "semi", + "name": { + "en": "SEMI - Semiconductor Equipment and Materials International", + "zh": "SEMI国际半导体产业协会" + }, + "authority_level": "research", + "data_url": "https://semi.org/en/products-services/market-data", + "has_api": false, + "file_path": "sectors/C-manufacturing/electronics/semi.json", + "geographic_scope": "global" + }, + { + "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", + "geographic_scope": "global" + }, + { + "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, + "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, + "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", + "name": { + "en": "ImageNet", + "zh": "ImageNet 图像数据库" + }, + "authority_level": "research", + "data_url": "https://www.image-net.org", + "has_api": false, + "file_path": "sectors/J-information-communication/imagenet.json", + "geographic_scope": "global" + }, + { + "id": "crsp", + "name": { + "en": "CRSP - Center for Research in Security Prices", + "zh": "证券价格研究中心" + }, + "authority_level": "research", + "data_url": "https://www.crsp.org/", + "has_api": true, + "file_path": "sectors/K-finance-insurance/crsp.json", + "geographic_scope": "national" + }, + { + "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" + }, + { + "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" + }, + { + "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, + "file_path": "sectors/P-education/arwu.json", + "geographic_scope": "global" + }, + { + "id": "british-museum-collection", + "name": { + "en": "British Museum Collection", + "zh": "大英博物馆馆藏" + }, + "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": "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, + "file_path": "sectors/R-arts-entertainment/tennis-atp-wta-data.json", + "geographic_scope": "global" + }, + { + "id": "tennis-abstract-atp-wta", + "name": { + "en": "Tennis Abstract - ATP/WTA Data", + "zh": "Tennis Abstract - ATP/WTA网球数据" + }, + "authority_level": "research", + "data_url": "https://github.com/JeffSackmann/tennis_atp", + "has_api": false, + "file_path": "sectors/sports/tennis-abstract-atp-wta.json", + "geographic_scope": "global" + }, + { + "id": "tennis-sackmann", + "name": { + "en": "Tennis Abstract - ATP/WTA Match Data", + "zh": "网球数据摘要 - ATP/WTA 比赛数据" + }, + "authority_level": "research", + "data_url": "https://github.com/JeffSackmann/tennis_atp", + "has_api": false, + "file_path": "sectors/sports/tennis-sackmann.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, + "file_path": "academic/biology/alphafold-db.json", + "geographic_scope": "global" + }, + { + "id": "ena", + "name": { + "en": "European Nucleotide Archive", + "zh": "欧洲核苷酸档案库" + }, + "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": "intl-chemspider", + "name": { + "en": "ChemSpider", + "zh": "化学蜘蛛数据库" + }, + "authority_level": "international", + "data_url": "https://www.chemspider.com", + "has_api": false, + "file_path": "academic/chemistry/chemspider.json", + "geographic_scope": "global" + }, + { + "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", + "geographic_scope": "global" + }, + { + "id": "dhs", + "name": { + "en": "Demographic and Health Surveys (DHS) Program", + "zh": "人口与健康调查项目" + }, + "authority_level": "international", + "data_url": "https://dhsprogram.com/", + "has_api": true, + "file_path": "academic/health/dhs.json", + "geographic_scope": "regional" + }, + { + "id": "cgiar-research-data", + "name": { + "en": "CGIAR Research Data", + "zh": "国际农业研究磋商组织研究数据" + }, + "authority_level": "international", + "data_url": "https://gardian.cgiar.org/", + "has_api": true, + "file_path": "international/agriculture/cgiar-research-data.json", + "geographic_scope": "global" + }, + { + "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": "ico-coffee", + "name": { + "en": "International Coffee Organization", + "zh": "国际咖啡组织" + }, + "authority_level": "international", + "data_url": "https://www.ico.org/trade_statistics.asp", + "has_api": false, + "file_path": "international/agriculture/ico-coffee.json", + "geographic_scope": "global" + }, + { + "id": "ecmwf", + "name": { + "en": "European Centre for Medium-Range Weather Forecasts", + "zh": "欧洲中期天气预报中心" + }, + "authority_level": "international", + "data_url": "https://cds.climate.copernicus.eu", + "has_api": true, + "file_path": "international/climate/ecmwf.json", + "geographic_scope": "global" + }, + { + "id": "ipcc", + "name": { + "en": "IPCC Data Distribution Centre", + "zh": "政府间气候变化专门委员会数据分发中心" + }, + "authority_level": "international", + "data_url": "https://www.ipcc-data.org/observ/index.html", + "has_api": false, + "file_path": "international/climate/ipcc.json", + "geographic_scope": "global" + }, + { + "id": "unfccc", + "name": { + "en": "UNFCCC - United Nations Framework Convention on Climate Change", + "zh": "联合国气候变化框架公约" + }, + "authority_level": "international", + "data_url": "https://di.unfccc.int", + "has_api": true, + "file_path": "international/climate/unfccc.json", + "geographic_scope": "global" + }, + { + "id": "eu-construction", + "name": { + "en": "European Commission - Construction and Buildings", + "zh": "欧盟委员会 - 建筑与建设", + "native": "European Commission - Construction and Buildings" + }, + "authority_level": "international", + "data_url": "https://ec.europa.eu/growth/sectors/construction_en", + "has_api": false, + "file_path": "international/construction/eu-construction.json", + "geographic_scope": "regional" + }, + { + "id": "iso-construction", + "name": { + "en": "ISO Technical Committee 59 - Buildings and Civil Engineering Works", + "zh": "ISO技术委员会59 - 建筑与土木工程", + "native": "ISO/TC 59 - Buildings and civil engineering works" + }, + "authority_level": "international", + "data_url": "https://www.iso.org/committee/49070/x/catalogue/", + "has_api": false, + "file_path": "international/construction/iso-construction.json", + "geographic_scope": "global" + }, + { + "id": "unfpa-china", + "name": { + "en": "UNFPA China", + "zh": "联合国人口基金驻华代表处" + }, + "authority_level": "international", + "data_url": "https://china.unfpa.org/en/publications", + "has_api": false, + "file_path": "international/demographics/unfpa-china.json", + "geographic_scope": "national" + }, + { + "id": "unfpa-urbanization", + "name": { + "zh": "联合国人口基金 - 城镇化数据", + "en": "UNFPA - Urbanization Data" + }, + "authority_level": "international", + "data_url": "https://www.unfpa.org/urbanization", + "has_api": false, + "file_path": "international/demographics/unfpa-urbanization.json", + "geographic_scope": "global" + }, + { + "id": "adb-data-library", + "name": { + "en": "Asian Development Bank Data Library", + "zh": "亚洲开发银行数据库" + }, + "authority_level": "international", + "data_url": "https://data.adb.org", + "has_api": true, + "file_path": "international/development/adb-data-library.json", + "geographic_scope": "regional" + }, + { + "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", + "geographic_scope": "regional" + }, + { + "id": "adb-key-indicators", + "name": { + "en": "Asian Development Bank Key Indicators", + "zh": "亚洲开发银行关键指标" + }, + "authority_level": "international", + "data_url": "https://kidb.adb.org", + "has_api": true, + "file_path": "international/development/adb-key-indicators.json", + "geographic_scope": "regional" + }, + { + "id": "afdb-statistics", + "name": { + "en": "African Development Bank Statistics", + "zh": "非洲开发银行统计数据" + }, + "authority_level": "international", + "data_url": "https://dataportal.opendataforafrica.org", + "has_api": true, + "file_path": "international/development/afdb-statistics.json", + "geographic_scope": "regional" + }, + { + "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": "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, + "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", + "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" + }, + { + "id": "undp-hdr", + "name": { + "en": "UNDP Human Development Reports", + "zh": "联合国开发计划署人类发展报告" + }, + "authority_level": "international", + "data_url": "https://hdr.undp.org/data-center", + "has_api": false, + "file_path": "international/development/undp-hdr.json", + "geographic_scope": "global" + }, + { + "id": "intl-copernicus-cdse", + "name": { + "en": "Copernicus Data Space Ecosystem", + "zh": "哥白尼数据空间生态系统" + }, + "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": "adb-ado", + "name": { + "en": "Asian Development Outlook", + "zh": "亚洲发展展望" + }, + "authority_level": "international", + "data_url": "https://www.adb.org/publications/series/asian-development-outlook", + "has_api": false, + "file_path": "international/economics/adb-ado.json", + "geographic_scope": "regional" + }, + { + "id": "adb-vietnam-data", + "name": { + "en": "Asian Development Bank - Vietnam Country Data", + "zh": "亚洲开发银行越南国别数据" + }, + "authority_level": "international", + "data_url": "https://www.adb.org/countries/viet-nam/data", + "has_api": false, + "file_path": "international/economics/adb-vietnam-data.json", + "geographic_scope": "national" + }, + { + "id": "adb-vietnam", + "name": { + "en": "Asian Development Bank - Vietnam Country Data", + "zh": "亚洲开发银行越南国别数据" + }, + "authority_level": "international", + "data_url": "https://www.adb.org/countries/viet-nam/data", + "has_api": false, + "file_path": "international/economics/adb-vietnam.json", + "geographic_scope": "national" + }, + { + "id": "adb", + "name": { + "en": "Asian Development Bank Data", + "zh": "亚洲开发银行数据" + }, + "authority_level": "international", + "data_url": "https://www.adb.org/what-we-do/data", + "has_api": false, + "file_path": "international/economics/adb.json", + "geographic_scope": "regional" + }, + { + "id": "asean-stats", + "name": { + "en": "ASEAN Statistics", + "zh": "东盟统计局", + "native": "ASEANstats" + }, + "authority_level": "international", + "data_url": "https://data.aseanstats.org", + "has_api": false, + "file_path": "international/economics/asean-stats.json", + "geographic_scope": "regional" + }, + { + "id": "eurostat", + "name": { + "en": "Eurostat - Statistical Office of the European Union", + "zh": "欧盟统计局", + "native": "Eurostat" + }, + "authority_level": "international", + "data_url": "https://ec.europa.eu/eurostat/databrowser/explore/all/all_themes", + "has_api": true, + "file_path": "international/economics/eurostat.json", + "geographic_scope": "regional" + }, + { + "id": "imf-data", + "name": { + "en": "IMF Data", + "zh": "国际货币基金组织数据", + "native": "IMF Data" + }, + "authority_level": "international", + "data_url": "https://data.imf.org", + "has_api": true, + "file_path": "international/economics/imf.json", + "geographic_scope": "global" + }, + { + "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": "unsd-national-accounts", + "name": { + "en": "UN National Accounts Database", + "zh": "联合国统计司国民账户数据库" + }, + "authority_level": "international", + "data_url": "https://unstats.un.org/unsd/snaama", + "has_api": true, + "file_path": "international/economics/unsd-national-accounts.json", + "geographic_scope": "global" + }, + { + "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, + "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" + }, + { + "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, + "file_path": "international/education/oecd-pisa.json", + "geographic_scope": "global" + }, + { + "id": "unesco-uis", + "name": { + "en": "UNESCO Institute for Statistics", + "zh": "联合国教科文组织统计研究所" + }, + "authority_level": "international", + "data_url": "https://data.uis.unesco.org/", + "has_api": false, + "file_path": "international/education/unesco-uis.json", + "geographic_scope": "global" + }, + { + "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": "irena", + "name": { + "en": "IRENA - International Renewable Energy Agency", + "zh": "国际可再生能源署" + }, + "authority_level": "international", + "data_url": "https://www.irena.org/Data", + "has_api": true, + "file_path": "international/energy/irena.json", + "geographic_scope": "global" + }, + { + "id": "jodi", + "name": { + "en": "JODI - Joint Organisations Data Initiative", + "zh": "联合组织数据倡议" + }, + "authority_level": "international", + "data_url": "https://www.jodidata.org/oil/database/data-downloads.aspx", + "has_api": false, + "file_path": "international/energy/jodi.json", + "geographic_scope": "global" + }, + { + "id": "opec-statistics", + "name": { + "en": "OPEC Statistics", + "zh": "石油输出国组织统计数据" + }, + "authority_level": "international", + "data_url": "https://asb.opec.org", + "has_api": false, + "file_path": "international/energy/opec-statistics.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" + }, + { + "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" + }, + { + "id": "eea-climate", + "name": { + "en": "European Environment Agency", + "zh": "欧洲环境署" + }, + "authority_level": "international", + "data_url": "https://www.eea.europa.eu/en/datahub", + "has_api": true, + "file_path": "international/environment/eea-climate.json", + "geographic_scope": "regional" + }, + { + "id": "bis-cbta", + "name": { + "en": "BIS Central Bank Total Assets", + "zh": "国际清算银行中央银行总资产统计" + }, + "authority_level": "international", + "data_url": "https://data.bis.org/topics/CBTA", + "has_api": true, + "file_path": "international/finance/bis-cbta.json", + "geographic_scope": "global" + }, + { + "id": "bis-reserves", + "name": { + "en": "BIS Central Bank Reserves Statistics", + "zh": "国际清算银行外汇储备统计" + }, + "authority_level": "international", + "data_url": "https://data.bis.org/topics/CBTA", + "has_api": true, + "file_path": "international/finance/bis-reserves.json", + "geographic_scope": "global" + }, + { + "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/ebrd.json", + "geographic_scope": "regional" + }, + { + "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" + }, + { + "id": "paris-club", + "name": { + "en": "Paris Club", + "zh": "巴黎俱乐部" + }, + "authority_level": "international", + "data_url": "https://www.clubdeparis.org", + "has_api": false, + "file_path": "international/finance/paris-club.json", + "geographic_scope": "regional" + }, + { + "id": "africa-cdc", + "name": { + "en": "Africa CDC Health Data", + "zh": "非洲疾控中心健康数据" + }, + "authority_level": "international", + "data_url": "https://africacdc.org", + "has_api": false, + "file_path": "international/health/africa-cdc.json", + "geographic_scope": "regional" + }, + { + "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, + "file_path": "international/health/ecdc-surveillance.json", + "geographic_scope": "regional" + }, + { + "id": "gavi", + "name": { + "en": "GAVI, the Vaccine Alliance", + "zh": "全球疫苗免疫联盟" + }, + "authority_level": "international", + "data_url": "https://www.gavi.org/programmes-impact/our-impact/facts-and-figures", + "has_api": false, + "file_path": "international/health/gavi.json", + "geographic_scope": "global" + }, + { + "id": "who-gho", + "name": { + "en": "WHO Global Health Observatory", + "zh": "世界卫生组织全球卫生观察站" + }, + "authority_level": "international", + "data_url": "https://www.who.int/data/gho/data/indicators", + "has_api": true, + "file_path": "international/health/who-gho.json", + "geographic_scope": "global" + }, + { + "id": "un-ocha-fts", + "name": { + "en": "UN OCHA Financial Tracking Service", + "zh": "联合国人道主义事务协调厅资金追踪系统" + }, + "authority_level": "international", + "data_url": "https://fts.unocha.org", + "has_api": true, + "file_path": "international/humanitarian/un-ocha-fts.json", + "geographic_scope": "global" + }, + { + "id": "un-population", + "name": { + "en": "UN Population Division", + "zh": "联合国人口司" + }, + "authority_level": "international", + "data_url": "https://population.un.org/wpp/", + "has_api": true, + "file_path": "international/humanitarian/un-population.json", + "geographic_scope": "global" + }, + { + "id": "unhcr", + "name": { + "en": "UNHCR Refugee Data Finder", + "zh": "联合国难民署难民数据查询" + }, + "authority_level": "international", + "data_url": "https://www.unhcr.org/refugee-statistics/", + "has_api": true, + "file_path": "international/humanitarian/unhcr.json", + "geographic_scope": "global" + }, + { + "id": "unicef", + "name": { + "en": "UNICEF Data", + "zh": "联合国儿童基金会数据" + }, + "authority_level": "international", + "data_url": "https://data.unicef.org/resources/resource-type/datasets/", + "has_api": true, + "file_path": "international/humanitarian/unicef.json", + "geographic_scope": "global" + }, + { + "id": "unctad-infrastructure-statistics", + "name": { + "en": "UNCTAD Infrastructure Statistics Database", + "zh": "联合国贸发会议基础设施统计数据库" + }, + "authority_level": "international", + "data_url": "https://unctadstat.unctad.org/datacentre", + "has_api": true, + "file_path": "international/infrastructure/unctad-infrastructure-statistics.json", + "geographic_scope": "global" + }, + { + "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, + "file_path": "international/intellectual-property/wipo.json", + "geographic_scope": "global" + }, + { + "id": "ilo-statistics", + "name": { + "en": "International Labour Organization Statistics (ILOSTAT)", + "zh": "国际劳工组织统计数据库" + }, + "authority_level": "international", + "data_url": "https://ilostat.ilo.org/data/", + "has_api": true, + "file_path": "international/labor/ilo-statistics.json", + "geographic_scope": "global" + }, + { + "id": "gbif", + "name": { + "en": "Global Biodiversity Information Facility (GBIF)", + "zh": "全球生物多样性信息设施" + }, + "authority_level": "international", + "data_url": "https://www.gbif.org/occurrence/search", + "has_api": true, + "file_path": "international/paleontology/gbif.json", + "geographic_scope": "global" + }, + { + "id": "bipm-kcdb", + "name": { + "en": "BIPM Key Comparison Database (KCDB)", + "zh": "国际度量衡局关键比对数据库", + "native": "Bureau International des Poids et Mesures (BIPM)" + }, + "authority_level": "international", + "data_url": "https://www.bipm.org/kcdb", + "has_api": true, + "file_path": "international/standards-metrology/bipm-kcdb.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" + }, + { + "id": "global-reporting-initiative", + "name": { + "en": "GRI - Global Reporting Initiative", + "zh": "全球报告倡议组织" + }, + "authority_level": "international", + "data_url": "https://www.globalreporting.org/standards/", + "has_api": false, + "file_path": "international/standards-metrology/global-reporting-initiative.json", + "geographic_scope": "global" + }, + { + "id": "sasb-standards", + "name": { + "en": "SASB Standards (IFRS Foundation)", + "zh": "SASB可持续发展会计准则(IFRS基金会)" + }, + "authority_level": "international", + "data_url": "https://sasb.ifrs.org/standards/", + "has_api": false, + "file_path": "international/standards-metrology/sasb-standards.json", + "geographic_scope": "global" + }, + { + "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, + "file_path": "international/trade/comtrade.json", + "geographic_scope": "global" + }, + { + "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, + "file_path": "international/trade/icc-trade-register.json", + "geographic_scope": "global" + }, + { + "id": "unctad-trade-transport", + "name": { + "en": "UNCTAD Trade-and-Transport Dataset", + "zh": "联合国贸发会议贸易与运输数据集" + }, + "authority_level": "international", + "data_url": "https://unctadstat.unctad.org/EN/TransportCost.html", + "has_api": true, + "file_path": "international/trade/unctad-trade-transport.json", + "geographic_scope": "global" + }, + { + "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, + "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" + }, + { + "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" + }, + { + "id": "itf-transport", + "name": { + "en": "ITF Transport Statistics", + "zh": "国际交通论坛交通统计" + }, + "authority_level": "international", + "data_url": "https://www.itf-oecd.org/transport-statistics", + "has_api": true, + "file_path": "international/transportation/itf-transport.json", + "geographic_scope": "global" + }, + { + "id": "asean-centre-for-energy", + "name": { + "en": "ASEAN Centre for Energy", + "zh": "东盟能源中心" + }, + "authority_level": "international", + "data_url": "https://aseanenergy.org/publications/", + "has_api": false, + "file_path": "regional/asean-centre-for-energy.json", + "geographic_scope": "regional" + }, + { + "id": "entso-e", + "name": { + "en": "ENTSO-E Transparency Platform", + "zh": "欧洲输电系统运营商联盟透明平台" + }, + "authority_level": "international", + "data_url": "https://transparency.entsoe.eu", + "has_api": true, + "file_path": "regional/europe/entso-e.json", + "geographic_scope": "regional" + }, + { + "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" + } + ], + "government": [ + { + "id": "us-ncbi-genbank", + "name": { + "en": "GenBank", + "zh": "基因库" + }, + "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": "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": "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", + "geographic_scope": "global" + }, + { + "id": "clinicaltrials-gov", + "name": { + "en": "ClinicalTrials.gov", + "zh": "临床试验注册数据库" + }, + "authority_level": "government", + "data_url": "https://clinicaltrials.gov/", + "has_api": true, + "file_path": "academic/health/clinicaltrials-gov.json", + "geographic_scope": "global" + }, + { + "id": "pubmed", + "name": { + "en": "PubMed", + "zh": "PubMed生物医学文献数据库" + }, + "authority_level": "government", + "data_url": "https://pubmed.ncbi.nlm.nih.gov/", + "has_api": true, + "file_path": "academic/health/pubmed.json", + "geographic_scope": "global" + }, + { + "id": "tcga", + "name": { + "en": "The Cancer Genome Atlas (TCGA)", + "zh": "癌症基因组图谱" + }, + "authority_level": "government", + "data_url": "https://portal.gdc.cancer.gov/", + "has_api": true, + "file_path": "academic/health/tcga.json", + "geographic_scope": "national" + }, + { + "id": "china-nea", + "name": { + "en": "National Energy Administration of China", + "zh": "国家能源局" + }, + "authority_level": "government", + "data_url": "https://www.nea.gov.cn/sjzz/", + "has_api": false, + "file_path": "china/china-nea.json", + "geographic_scope": "national" + }, + { + "id": "cninfo", + "name": { + "en": "CNINFO (Shenzhen Stock Exchange Information)", + "zh": "巨潮资讯网" + }, + "authority_level": "government", + "data_url": "https://www.cninfo.com.cn/new/commonUrl?url=disclosure/list/search", + "has_api": true, + "file_path": "china/cninfo.json", + "geographic_scope": "national" + }, + { + "id": "china-construction-standards", + "name": { + "en": "China Engineering Construction Standardization Association", + "zh": "中国工程建设标准化协会", + "native": "中国工程建设标准化协会" + }, + "authority_level": "government", + "data_url": "https://www.cecs.org.cn/biaozhun/", + "has_api": false, + "file_path": "china/construction/china-construction-standards.json", + "geographic_scope": "national" + }, + { + "id": "china-gd-housing", + "name": { + "en": "Guangdong Provincial Department of Housing and Urban-Rural Development", + "zh": "广东省住房和城乡建设厅" + }, + "authority_level": "government", + "data_url": "https://zfcxjst.gd.gov.cn/xxgk/", + "has_api": false, + "file_path": "china/construction/china-gd-housing.json", + "geographic_scope": "subnational" + }, + { + "id": "china-mohurd", + "name": { + "en": "Ministry of Housing and Urban-Rural Development", + "zh": "住房和城乡建设部", + "native": "住房和城乡建设部" + }, + "authority_level": "government", + "data_url": "https://www.mohurd.gov.cn/gongkai/zhengce/", + "has_api": false, + "file_path": "china/construction/china-mohurd.json", + "geographic_scope": "national" + }, + { + "id": "china-shenzhen-housing", + "name": { + "en": "Shenzhen Municipal Housing and Construction Bureau", + "zh": "深圳市住房和建设局" + }, + "authority_level": "government", + "data_url": "https://zjj.sz.gov.cn/xxgk/", + "has_api": false, + "file_path": "china/construction/china-shenzhen-housing.json", + "geographic_scope": "subnational" + }, + { + "id": "china-agri", + "name": { + "en": "China Agricultural and Rural Information Network", + "zh": "中国农业农村信息网" + }, + "authority_level": "government", + "data_url": "https://www.agri.cn/", + "has_api": false, + "file_path": "china/economy/agriculture/china-agri.json", + "geographic_scope": "national" + }, + { + "id": "china-cofco", + "name": { + "en": "COFCO Corporation", + "zh": "中粮集团有限公司" + }, + "authority_level": "government", + "data_url": "https://www.cofco.com", + "has_api": false, + "file_path": "china/economy/agriculture/china-cofco.json", + "geographic_scope": "global" + }, + { + "id": "china-moa", + "name": { + "en": "Ministry of Agriculture and Rural Affairs of China - Agricultural Statistics", + "zh": "中华人民共和国农业农村部农业统计" + }, + "authority_level": "government", + "data_url": "https://www.moa.gov.cn/nybgb/", + "has_api": false, + "file_path": "china/economy/agriculture/china-moa.json", + "geographic_scope": "national" + }, + { + "id": "china-natesc", + "name": { + "en": "National Agro-Tech Extension and Service Center", + "zh": "全国农业技术推广服务中心" + }, + "authority_level": "government", + "data_url": "https://www.natesc.org.cn", + "has_api": false, + "file_path": "china/economy/agriculture/china-natesc.json", + "geographic_scope": "national" + }, + { + "id": "china-nfsra", + "name": { + "en": "National Food and Strategic Reserves Administration of China", + "zh": "国家粮食和物资储备局" + }, + "authority_level": "government", + "data_url": "https://lswz.gov.cn/html/xwzx/sjfb/index.html", + "has_api": false, + "file_path": "china/economy/agriculture/china-nfsra.json", + "geographic_scope": "national" + }, + { + "id": "china-sinograin", + "name": { + "en": "Sinograin - China Grain Reserves Corporation", + "zh": "中国储备粮管理集团有限公司" + }, + "authority_level": "government", + "data_url": "https://www.sinograin.com.cn", + "has_api": false, + "file_path": "china/economy/agriculture/china-sinograin.json", + "geographic_scope": "national" + }, + { + "id": "china-bof", + "name": { + "en": "Bureau of Fisheries, Ministry of Agriculture and Rural Affairs", + "zh": "农业农村部渔业渔政管理局" + }, + "authority_level": "government", + "data_url": "https://yyj.moa.gov.cn", + "has_api": false, + "file_path": "china/economy/agriculture/fishery/china-bof.json", + "geographic_scope": "national" + }, + { + "id": "china-caac", + "name": { + "en": "Civil Aviation Administration of China", + "zh": "中国民用航空局", + "native": "中国民用航空局" + }, + "authority_level": "government", + "data_url": "https://www.caac.gov.cn/XXGK/XXGK/TJSJ/index.html", + "has_api": false, + "file_path": "china/economy/china-caac.json", + "geographic_scope": "national" + }, + { + "id": "china-mct", + "name": { + "en": "Ministry of Culture and Tourism of China", + "zh": "中华人民共和国文化和旅游部", + "native": "中华人民共和国文化和旅游部" + }, + "authority_level": "government", + "data_url": "https://www.mct.gov.cn/zwgk/tjsj/", + "has_api": false, + "file_path": "china/economy/china-mct.json", + "geographic_scope": "national" + }, + { + "id": "china-miit-sme", + "name": { + "en": "China Center for Promotion of SME Development (MIIT)", + "zh": "中国中小企业发展促进中心(工业和信息化部中小企业发展促进中心)" + }, + "authority_level": "government", + "data_url": "https://www.chinasme.org.cn/html/mcms/daohang/tongzhigonggao/index.html", + "has_api": false, + "file_path": "china/economy/china-miit-sme.json", + "geographic_scope": "national" + }, + { + "id": "china-cantonfair", + "name": { + "en": "China Import and Export Fair (Canton Fair)", + "zh": "中国进出口商品交易会(广交会)" + }, + "authority_level": "government", + "data_url": "https://www.cantonfair.org.cn", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cantonfair.json", + "geographic_scope": "national" + }, + { + "id": "china-acftu", + "name": { + "en": "All-China Federation of Trade Unions", + "zh": "中华全国总工会" + }, + "authority_level": "government", + "data_url": "https://www.acftu.org", + "has_api": false, + "file_path": "china/economy/labor/china-acftu.json", + "geographic_scope": "national" + }, + { + "id": "china-mohrss", + "name": { + "en": "Ministry of Human Resources and Social Security of China - Employment and Social Security Statistics", + "zh": "人力资源和社会保障部统计数据" + }, + "authority_level": "government", + "data_url": "https://www.mohrss.gov.cn/SYrlzyhshbzb/zwgk/szrs/", + "has_api": false, + "file_path": "china/economy/labor/china-mohrss.json", + "geographic_scope": "national" + }, + { + "id": "china-shenzhen-hrss", + "name": { + "en": "Shenzhen Municipal Human Resources and Social Security Bureau", + "zh": "深圳市人力资源和社会保障局" + }, + "authority_level": "government", + "data_url": "https://hrss.sz.gov.cn/xxgk/index.html", + "has_api": false, + "file_path": "china/economy/labor/china-shenzhen-hrss.json", + "geographic_scope": "subnational" + }, + { + "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-sasac", + "name": { + "en": "State-owned Assets Supervision and Administration Commission of the State Council", + "zh": "国务院国有资产监督管理委员会" + }, + "authority_level": "government", + "data_url": "https://www.sasac.gov.cn/n2588030/index.html", + "has_api": false, + "file_path": "china/economy/macro/china-sasac.json", + "geographic_scope": "national" + }, + { + "id": "china-shenzhen-drc", + "name": { + "en": "Shenzhen Municipal Development and Reform Commission", + "zh": "深圳市发展和改革委员会" + }, + "authority_level": "government", + "data_url": "http://fgw.sz.gov.cn/zwgk/", + "has_api": false, + "file_path": "china/economy/macro/china-shenzhen-drc.json", + "geographic_scope": "subnational" + }, + { + "id": "china-sic", + "name": { + "en": "State Information Center of China", + "zh": "国家信息中心" + }, + "authority_level": "government", + "data_url": "https://www.sic.gov.cn/", + "has_api": false, + "file_path": "china/economy/macro/china-sic.json", + "geographic_scope": "national" + }, + { + "id": "china-ndrc", + "name": { + "en": "National Development and Reform Commission", + "zh": "国家发展和改革委员会", + "native": "国家发展和改革委员会" + }, + "authority_level": "government", + "data_url": "https://www.ndrc.gov.cn/fgsj/", + "has_api": false, + "file_path": "china/economy/macro/ndrc.json", + "geographic_scope": "national" + }, + { + "id": "china-gsxt", + "name": { + "en": "National Enterprise Credit Information Publicity System", + "zh": "国家企业信用信息公示系统" + }, + "authority_level": "government", + "data_url": "https://www.gsxt.gov.cn", + "has_api": false, + "file_path": "china/economy/market/china-gsxt.json", + "geographic_scope": "national" + }, + { + "id": "china-samr", + "name": { + "en": "State Administration for Market Regulation", + "zh": "国家市场监督管理总局", + "native": "国家市场监督管理总局" + }, + "authority_level": "government", + "data_url": "https://www.samr.gov.cn/zw/sj/sjzx/", + "has_api": false, + "file_path": "china/economy/market/china-samr.json", + "geographic_scope": "national" + }, + { + "id": "china-shenzhen-prtc", + "name": { + "en": "Shenzhen Public Resource Trading Center", + "zh": "深圳市公共资源交易中心" + }, + "authority_level": "government", + "data_url": "https://www.szggzy.com/", + "has_api": false, + "file_path": "china/economy/market/china-shenzhen-prtc.json", + "geographic_scope": "subnational" + }, + { + "id": "china-ah-stats", + "name": { + "en": "Anhui Bureau of Statistics", + "zh": "安徽省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.ah.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-ah-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-beijing-stats", + "name": { + "en": "Beijing Bureau of Statistics", + "zh": "北京市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.beijing.gov.cn/tjsj_31433/", + "has_api": false, + "file_path": "china/economy/provincial/china-beijing-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-chengdu-stats", + "name": { + "en": "Chengdu Bureau of Statistics", + "zh": "成都市统计局" + }, + "authority_level": "government", + "data_url": "http://cdstats.chengdu.gov.cn/", + "has_api": false, + "file_path": "china/economy/provincial/china-chengdu-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-cq-stats", + "name": { + "en": "Chongqing Bureau of Statistics", + "zh": "重庆市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.cq.gov.cn/zwgk_233040/zfxxgkml/tjxx/", + "has_api": false, + "file_path": "china/economy/provincial/china-cq-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-fj-stats", + "name": { + "en": "Fujian Bureau of Statistics", + "zh": "福建省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.fujian.gov.cn/xxgk/tjxx/", + "has_api": false, + "file_path": "china/economy/provincial/china-fj-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-fuzhou-stats", + "name": { + "en": "Fuzhou Bureau of Statistics", + "zh": "福州市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.fuzhou.gov.cn", + "has_api": false, + "file_path": "china/economy/provincial/china-fuzhou-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-gd-stats", + "name": { + "en": "Guangdong Bureau of Statistics", + "zh": "广东省统计局" + }, + "authority_level": "government", + "data_url": "https://stats.gd.gov.cn/tjsj186/index.html", + "has_api": false, + "file_path": "china/economy/provincial/china-gd-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-gs-stats", + "name": { + "en": "Gansu Bureau of Statistics", + "zh": "甘肃省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.gansu.gov.cn/tjj/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-gs-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-gx-stats", + "name": { + "en": "Guangxi Bureau of Statistics", + "zh": "广西壮族自治区统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.gxzf.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-gx-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-gz-stats", + "name": { + "en": "Guizhou Bureau of Statistics", + "zh": "贵州省统计局" + }, + "authority_level": "government", + "data_url": "https://stjj.guizhou.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-gz-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-ha-stats", + "name": { + "en": "Henan Bureau of Statistics", + "zh": "河南省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.henan.gov.cn/tjfw/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-ha-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-hb-stats", + "name": { + "en": "Hubei Bureau of Statistics", + "zh": "湖北省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.hubei.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-hb-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-heb-stats", + "name": { + "en": "Hebei Bureau of Statistics", + "zh": "河北省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.hebei.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-heb-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-hi-stats", + "name": { + "en": "Hainan Bureau of Statistics", + "zh": "海南省统计局" + }, + "authority_level": "government", + "data_url": "https://stats.hainan.gov.cn/hntjj/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-hi-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-hlj-stats", + "name": { + "en": "Heilongjiang Bureau of Statistics", + "zh": "黑龙江省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.hlj.gov.cn/tjj/c106777/common_zfxxgk.shtml?tab=tjxx", + "has_api": false, + "file_path": "china/economy/provincial/china-hlj-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-hn-stats", + "name": { + "en": "Hunan Bureau of Statistics", + "zh": "湖南省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.hunan.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-hn-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-jl-stats", + "name": { + "en": "Jilin Bureau of Statistics", + "zh": "吉林省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.jl.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-jl-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-js-stats", + "name": { + "en": "Jiangsu Bureau of Statistics", + "zh": "江苏省统计局" + }, + "authority_level": "government", + "data_url": "https://tj.jiangsu.gov.cn/col/col85273/index.html", + "has_api": false, + "file_path": "china/economy/provincial/china-js-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-jx-stats", + "name": { + "en": "Jiangxi Bureau of Statistics", + "zh": "江西省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.jiangxi.gov.cn/jxstjj/col/col40939/index.html", + "has_api": false, + "file_path": "china/economy/provincial/china-jx-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-ln-stats", + "name": { + "en": "Liaoning Bureau of Statistics", + "zh": "辽宁省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.ln.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-ln-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-nanchang-stats", + "name": { + "en": "Nanchang Bureau of Statistics", + "zh": "南昌市统计局" + }, + "authority_level": "government", + "data_url": "http://tjj.nc.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-nanchang-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-nanjing-stats", + "name": { + "en": "Nanjing Bureau of Statistics", + "zh": "南京市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.nanjing.gov.cn/", + "has_api": false, + "file_path": "china/economy/provincial/china-nanjing-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-nm-stats", + "name": { + "en": "Inner Mongolia Bureau of Statistics", + "zh": "内蒙古自治区统计局" + }, + "authority_level": "government", + "data_url": "http://tj.nmg.gov.cn", + "has_api": false, + "file_path": "china/economy/provincial/china-nm-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-nx-stats", + "name": { + "en": "Ningxia Bureau of Statistics", + "zh": "宁夏回族自治区统计局" + }, + "authority_level": "government", + "data_url": "https://tj.nx.gov.cn/tjsj_htr/jdsj_htr/", + "has_api": false, + "file_path": "china/economy/provincial/china-nx-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-qh-stats", + "name": { + "en": "Qinghai Bureau of Statistics", + "zh": "青海省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.qinghai.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-qh-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-qingdao-stats", + "name": { + "en": "Qingdao Bureau of Statistics", + "zh": "青岛市统计局" + }, + "authority_level": "government", + "data_url": "http://qdtj.qingdao.gov.cn/", + "has_api": false, + "file_path": "china/economy/provincial/china-qingdao-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-sc-stats", + "name": { + "en": "Sichuan Bureau of Statistics", + "zh": "四川省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.sc.gov.cn/scstjj/c112124/sjcx.shtml", + "has_api": false, + "file_path": "china/economy/provincial/china-sc-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-sd-stats", + "name": { + "en": "Shandong Bureau of Statistics", + "zh": "山东省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.shandong.gov.cn/col/col8456/index.html", + "has_api": false, + "file_path": "china/economy/provincial/china-sd-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-shanghai-stats", + "name": { + "en": "Shanghai Municipal Bureau of Statistics", + "zh": "上海市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.sh.gov.cn/sjxx/index.html", + "has_api": false, + "file_path": "china/economy/provincial/china-shanghai-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-shenzhen-open-data", + "name": { + "en": "Shenzhen Open Data Platform", + "zh": "深圳市政府数据开放平台" + }, + "authority_level": "government", + "data_url": "https://opendata.sz.gov.cn/data/dataSet/toDataList", + "has_api": true, + "file_path": "china/economy/provincial/china-shenzhen-open-data.json", + "geographic_scope": "subnational" + }, + { + "id": "china-shenzhen-stats", + "name": { + "en": "Shenzhen Bureau of Statistics", + "zh": "深圳市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.sz.gov.cn/zwgk/zfxxgkml/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-shenzhen-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-sn-stats", + "name": { + "en": "Shaanxi Bureau of Statistics", + "zh": "陕西省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.shaanxi.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-sn-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-suzhou-stats", + "name": { + "en": "Suzhou Bureau of Statistics", + "zh": "苏州市统计局" + }, + "authority_level": "government", + "data_url": "http://tjj.suzhou.gov.cn/", + "has_api": false, + "file_path": "china/economy/provincial/china-suzhou-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-sx-stats", + "name": { + "en": "Shanxi Bureau of Statistics", + "zh": "山西省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.shanxi.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-sx-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-tj-stats", + "name": { + "en": "Tianjin Bureau of Statistics", + "zh": "天津市统计局" + }, + "authority_level": "government", + "data_url": "https://stats.tj.gov.cn/tjsj_52032/", + "has_api": false, + "file_path": "china/economy/provincial/china-tj-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-wuhan-stats", + "name": { + "en": "Wuhan Bureau of Statistics", + "zh": "武汉市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.wuhan.gov.cn/zfxxgk/", + "has_api": false, + "file_path": "china/economy/provincial/china-wuhan-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-xian-stats", + "name": { + "en": "Xi'an Bureau of Statistics", + "zh": "西安市统计局" + }, + "authority_level": "government", + "data_url": "http://tjj.xa.gov.cn/", + "has_api": false, + "file_path": "china/economy/provincial/china-xian-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-xj-stats", + "name": { + "en": "Xinjiang Bureau of Statistics", + "zh": "新疆维吾尔自治区统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.xinjiang.gov.cn/tjj/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-xj-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-xz-stats", + "name": { + "en": "Xizang (Tibet) Bureau of Statistics", + "zh": "西藏自治区统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.xizang.gov.cn/xxgk/tjxx/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-xz-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-yn-stats", + "name": { + "en": "Yunnan Bureau of Statistics", + "zh": "云南省统计局" + }, + "authority_level": "government", + "data_url": "http://stats.yn.gov.cn", + "has_api": false, + "file_path": "china/economy/provincial/china-yn-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-zhengzhou-stats", + "name": { + "en": "Zhengzhou Bureau of Statistics", + "zh": "郑州市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.zhengzhou.gov.cn/tjsj/index.jhtml", + "has_api": false, + "file_path": "china/economy/provincial/china-zhengzhou-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-zj-stats", + "name": { + "en": "Zhejiang Bureau of Statistics", + "zh": "浙江省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.zj.gov.cn/col/col1525563/index.html", + "has_api": false, + "file_path": "china/economy/provincial/china-zj-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-hk-censtatd", + "name": { + "en": "Hong Kong Census and Statistics Department", + "zh": "香港政府统计处" + }, + "authority_level": "government", + "data_url": "https://www.censtatd.gov.hk/", + "has_api": false, + "file_path": "china/economy/special_admin_regions/china-hk-censtatd.json", + "geographic_scope": "subnational" + }, + { + "id": "china-ccpit", + "name": { + "en": "China Council for the Promotion of International Trade", + "zh": "中国国际贸易促进委员会" + }, + "authority_level": "government", + "data_url": "https://www.ccpit.org/", + "has_api": false, + "file_path": "china/economy/trade/china-ccpit.json", + "geographic_scope": "national" + }, + { + "id": "china-cfsmc", + "name": { + "en": "All-China Federation of Supply and Marketing Cooperatives", + "zh": "中华全国供销合作总社" + }, + "authority_level": "government", + "data_url": "https://www.chinacoop.gov.cn/", + "has_api": false, + "file_path": "china/economy/trade/china-cfsmc.json", + "geographic_scope": "national" + }, + { + "id": "china-gacc", + "name": { + "en": "General Administration of Customs of China", + "zh": "中华人民共和国海关总署", + "native": "中华人民共和国海关总署" + }, + "authority_level": "government", + "data_url": "https://www.customs.gov.cn/customs/302249/zfxxgk/2799825/302274/302277/index.html", + "has_api": false, + "file_path": "china/economy/trade/china-gacc.json", + "geographic_scope": "national" + }, + { + "id": "china-sinosure", + "name": { + "en": "China Export & Credit Insurance Corporation", + "zh": "中国出口信用保险公司" + }, + "authority_level": "government", + "data_url": "https://www.sinosure.com.cn/gywm/gsjj/xxpl/index.shtml", + "has_api": false, + "file_path": "china/economy/trade/china-sinosure.json", + "geographic_scope": "national" + }, + { + "id": "china-customs", + "name": { + "en": "General Administration of Customs of China", + "zh": "中华人民共和国海关总署", + "native": "中华人民共和国海关总署" + }, + "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", + "name": { + "en": "Ministry of Commerce of China", + "zh": "中华人民共和国商务部", + "native": "中华人民共和国商务部" + }, + "authority_level": "government", + "data_url": "https://data.mofcom.gov.cn", + "has_api": false, + "file_path": "china/economy/trade/mofcom.json", + "geographic_scope": "national" + }, + { + "id": "china-csdp", + "name": { + "en": "China School Development Planning Center", + "zh": "教育部学校规划建设发展中心" + }, + "authority_level": "government", + "data_url": "https://www.csdp.edu.cn", + "has_api": false, + "file_path": "china/education/china-csdp.json", + "geographic_scope": "national" + }, + { + "id": "china-nlc", + "name": { + "en": "National Library of China", + "zh": "中国国家图书馆" + }, + "authority_level": "government", + "data_url": "https://www.nlc.cn/pcab/", + "has_api": false, + "file_path": "china/education/china-nlc.json", + "geographic_scope": "national" + }, + { + "id": "cscse", + "name": { + "en": "Chinese Service Center for Scholarly Exchange", + "zh": "教育部留学服务中心" + }, + "authority_level": "government", + "data_url": "https://zwfw.cscse.edu.cn", + "has_api": false, + "file_path": "china/education/cscse.json", + "geographic_scope": "national" + }, + { + "id": "cdgdc", + "name": { + "en": "China Academic Degrees & Graduate Education Development Center", + "zh": "教育部学位与研究生教育发展中心" + }, + "authority_level": "government", + "data_url": "https://www.chinadegrees.cn/", + "has_api": false, + "file_path": "china/education/higher_education/cdgdc.json", + "geographic_scope": "national" + }, + { + "id": "china-gaokao-chsi", + "name": { + "en": "China Postgraduate Admissions Information Network", + "zh": "中国研究生招生信息网" + }, + "authority_level": "government", + "data_url": "https://yz.chsi.com.cn/sch/", + "has_api": false, + "file_path": "china/education/higher_education/china-gaokao-chsi.json", + "geographic_scope": "national" + }, + { + "id": "china-moe-higher-education", + "name": { + "en": "Ministry of Education of China - Higher Education Statistics", + "zh": "中华人民共和国教育部高等教育统计" + }, + "authority_level": "government", + "data_url": "https://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": "moe-china", + "name": { + "en": "Ministry of Education of the People's Republic of China", + "zh": "中华人民共和国教育部" + }, + "authority_level": "government", + "data_url": "https://www.moe.gov.cn/jyb_xxgk/xxgk/neirong/tongji/", + "has_api": false, + "file_path": "china/education/moe-china.json", + "geographic_scope": "national" + }, + { + "id": "moe-gaokao", + "name": { + "en": "Sunshine Gaokao Platform", + "zh": "阳光高考信息平台" + }, + "authority_level": "government", + "data_url": "https://gaokao.chsi.com.cn/", + "has_api": false, + "file_path": "china/education/moe-gaokao.json", + "geographic_scope": "national" + }, + { + "id": "china-cdb", + "name": { + "en": "China Development Bank", + "zh": "国家开发银行" + }, + "authority_level": "government", + "data_url": "https://www.cdb.com.cn", + "has_api": false, + "file_path": "china/finance/banking/cdb.json", + "geographic_scope": "national" + }, + { + "id": "china-adbc", + "name": { + "en": "Agricultural Development Bank of China", + "zh": "中国农业发展银行" + }, + "authority_level": "government", + "data_url": "https://www.adbc.com.cn/", + "has_api": false, + "file_path": "china/finance/banking/china-adbc.json", + "geographic_scope": "national" + }, + { + "id": "china-pbccrc", + "name": { + "en": "People's Bank of China Credit Reference Center", + "zh": "中国人民银行征信中心" + }, + "authority_level": "government", + "data_url": "https://www.pbccrc.org.cn", + "has_api": false, + "file_path": "china/finance/banking/china-pbccrc.json", + "geographic_scope": "national" + }, + { + "id": "china-eximbank", + "name": { + "en": "Export-Import Bank of China", + "zh": "中国进出口银行" + }, + "authority_level": "government", + "data_url": "http://www.eximbank.gov.cn/cn/index/information/annual/index.html", + "has_api": false, + "file_path": "china/finance/banking/eximbank.json", + "geographic_scope": "national" + }, + { + "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": "china-pbc", + "name": { + "en": "People's Bank of China", + "zh": "中国人民银行", + "native": "中国人民银行" + }, + "authority_level": "government", + "data_url": "https://www.pbc.gov.cn/diaochatongjisi/116219/index.html", + "has_api": false, + "file_path": "china/finance/banking/pbc.json", + "geographic_scope": "national" + }, + { + "id": "china-amac", + "name": { + "en": "Asset Management Association of China", + "zh": "中国证券投资基金业协会" + }, + "authority_level": "government", + "data_url": "https://www.amac.org.cn/informationpublicity/", + "has_api": false, + "file_path": "china/finance/capital-markets/china-amac.json", + "geographic_scope": "national" + }, + { + "id": "china-nafmii", + "name": { + "en": "National Association of Financial Market Institutional Investors", + "zh": "中国银行间市场交易商协会" + }, + "authority_level": "government", + "data_url": "https://www.nafmii.org.cn/", + "has_api": false, + "file_path": "china/finance/capital-markets/china-nafmii.json", + "geographic_scope": "national" + }, + { + "id": "china-shenzhen-jrj", + "name": { + "en": "Shenzhen Local Financial Supervision and Administration Bureau", + "zh": "深圳市地方金融监督管理局" + }, + "authority_level": "government", + "data_url": "https://jr.sz.gov.cn/sjrb/xxgk/index.html", + "has_api": false, + "file_path": "china/finance/china-shenzhen-jrj.json", + "geographic_scope": "subnational" + }, + { + "id": "china-mof", + "name": { + "en": "Ministry of Finance of China", + "zh": "中华人民共和国财政部" + }, + "authority_level": "government", + "data_url": "https://www.mof.gov.cn/gkml/", + "has_api": false, + "file_path": "china/finance/fiscal/china-mof.json", + "geographic_scope": "national" + }, + { + "id": "china-nssf", + "name": { + "en": "National Social Security Fund Council of China", + "zh": "全国社会保障基金理事会" + }, + "authority_level": "government", + "data_url": "http://www.ssf.gov.cn/", + "has_api": false, + "file_path": "china/finance/fiscal/china-nssf.json", + "geographic_scope": "national" + }, + { + "id": "china-cfets", + "name": { + "en": "China Foreign Exchange Trade System", + "zh": "中国外汇交易中心" + }, + "authority_level": "government", + "data_url": "https://www.chinamoney.com.cn/chinese/bkccpr/", + "has_api": false, + "file_path": "china/finance/forex/china-cfets.json", + "geographic_scope": "national" + }, + { + "id": "china-safe", + "name": { + "en": "State Administration of Foreign Exchange of China", + "zh": "国家外汇管理局", + "native": "国家外汇管理局" + }, + "authority_level": "government", + "data_url": "https://www.safe.gov.cn/safe/tjsj1/index.html", + "has_api": false, + "file_path": "china/finance/forex/china-safe.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": "china/finance/securities/csrc.json", + "geographic_scope": "national" + }, + { + "id": "china-szse", + "name": { + "en": "Shenzhen Stock Exchange", + "zh": "深圳证券交易所", + "native": "深圳证券交易所" + }, + "authority_level": "government", + "data_url": "https://www.szse.cn/market/trend/index.html", + "has_api": true, + "file_path": "china/finance/securities/szse.json", + "geographic_scope": "national" + }, + { + "id": "china-chinatax", + "name": { + "en": "State Taxation Administration of China", + "zh": "国家税务总局" + }, + "authority_level": "government", + "data_url": "https://www.chinatax.gov.cn/chinatax/n810219/", + "has_api": false, + "file_path": "china/finance/taxation/china-chinatax.json", + "geographic_scope": "national" + }, + { + "id": "china-bankruptcy-court", + "name": { + "en": "National Enterprise Bankruptcy and Restructuring Case Information Network", + "zh": "全国企业破产重整案件信息网" + }, + "authority_level": "government", + "data_url": "https://pccz.court.gov.cn/pcajxxw/index/xxwsy", + "has_api": false, + "file_path": "china/governance/china-bankruptcy-court.json", + "geographic_scope": "national" + }, + { + "id": "china-ccdi", + "name": { + "en": "Central Commission for Discipline Inspection of the Communist Party of China", + "zh": "中央纪律检查委员会" + }, + "authority_level": "government", + "data_url": "https://www.ccdi.gov.cn/xxgk/", + "has_api": false, + "file_path": "china/governance/china-ccdi.json", + "geographic_scope": "national" + }, + { + "id": "china-ccgp", + "name": { + "en": "China Government Procurement Network", + "zh": "中国政府采购网" + }, + "authority_level": "government", + "data_url": "https://www.ccgp.gov.cn/cggg/index.htm", + "has_api": false, + "file_path": "china/governance/china-ccgp.json", + "geographic_scope": "national" + }, + { + "id": "china-cdpf", + "name": { + "en": "China Disabled Persons' Federation", + "zh": "中国残疾人联合会" + }, + "authority_level": "government", + "data_url": "https://www.cdpf.org.cn/zwgk/index.htm", + "has_api": false, + "file_path": "china/governance/china-cdpf.json", + "geographic_scope": "national" + }, + { + "id": "china-cidca", + "name": { + "en": "China International Development Cooperation Agency", + "zh": "国家国际发展合作署" + }, + "authority_level": "government", + "data_url": "http://www.cidca.gov.cn/ywgz.htm", + "has_api": false, + "file_path": "china/governance/china-cidca.json", + "geographic_scope": "global" + }, + { + "id": "china-cnao", + "name": { + "en": "National Audit Office of China", + "zh": "中华人民共和国审计署" + }, + "authority_level": "government", + "data_url": "https://www.audit.gov.cn", + "has_api": false, + "file_path": "china/governance/china-cnao.json", + "geographic_scope": "national" + }, + { + "id": "china-cnas", + "name": { + "en": "China National Accreditation Service for Conformity Assessment", + "zh": "中国合格评定国家认可委员会" + }, + "authority_level": "government", + "data_url": "https://www.cnas.org.cn/", + "has_api": false, + "file_path": "china/governance/china-cnas.json", + "geographic_scope": "national" + }, + { + "id": "china-cnca", + "name": { + "en": "China National Accreditation Service for Conformity Assessment", + "zh": "中国国家认证认可监督管理委员会" + }, + "authority_level": "government", + "data_url": "https://www.cnca.gov.cn", + "has_api": false, + "file_path": "china/governance/china-cnca.json", + "geographic_scope": "national" + }, + { + "id": "china-court-auction", + "name": { + "en": "People's Court Litigation Assets Network", + "zh": "人民法院诉讼资产网" + }, + "authority_level": "government", + "data_url": "https://www.rmfysszc.gov.cn", + "has_api": false, + "file_path": "china/governance/china-court-auction.json", + "geographic_scope": "national" + }, + { + "id": "china-court-execution", + "name": { + "en": "China Court Execution Information Disclosure Network", + "zh": "全国法院被执行人信息查询平台" + }, + "authority_level": "government", + "data_url": "https://zxgk.court.gov.cn", + "has_api": false, + "file_path": "china/governance/china-court-execution.json", + "geographic_scope": "national" + }, + { + "id": "china-cppcc", + "name": { + "en": "Chinese People's Political Consultative Conference", + "zh": "中国人民政治协商会议" + }, + "authority_level": "government", + "data_url": "http://www.cppcc.gov.cn", + "has_api": false, + "file_path": "china/governance/china-cppcc.json", + "geographic_scope": "national" + }, + { + "id": "china-cqc", + "name": { + "en": "China Quality Certification Centre", + "zh": "中国质量认证中心" + }, + "authority_level": "government", + "data_url": "https://www.cqc.com.cn/", + "has_api": false, + "file_path": "china/governance/china-cqc.json", + "geographic_scope": "national" + }, + { + "id": "china-ggzy", + "name": { + "en": "China National Public Resources Trading Platform", + "zh": "全国公共资源交易平台" + }, + "authority_level": "government", + "data_url": "https://www.ggzy.gov.cn/", + "has_api": false, + "file_path": "china/governance/china-ggzy.json", + "geographic_scope": "national" + }, + { + "id": "china-mem", + "name": { + "en": "Ministry of Emergency Management of China", + "zh": "中华人民共和国应急管理部" + }, + "authority_level": "government", + "data_url": "https://www.mem.gov.cn/gk/tjsj/", + "has_api": false, + "file_path": "china/governance/china-mem.json", + "geographic_scope": "national" + }, + { + "id": "china-mofa", + "name": { + "en": "Ministry of Foreign Affairs of China", + "zh": "中华人民共和国外交部" + }, + "authority_level": "government", + "data_url": "https://www.mfa.gov.cn/web/system/index_17321.shtml", + "has_api": false, + "file_path": "china/governance/china-mofa.json", + "geographic_scope": "national" + }, + { + "id": "china-moj", + "name": { + "en": "Ministry of Justice of China", + "zh": "中华人民共和国司法部" + }, + "authority_level": "government", + "data_url": "https://www.moj.gov.cn/pub/sfbgw/zwgkzl/tjsj/", + "has_api": false, + "file_path": "china/governance/china-moj.json", + "geographic_scope": "national" + }, + { + "id": "china-mva", + "name": { + "en": "Ministry of Veterans Affairs of China", + "zh": "中华人民共和国退役军人事务部" + }, + "authority_level": "government", + "data_url": "https://www.mva.gov.cn/gongkai/", + "has_api": false, + "file_path": "china/governance/china-mva.json", + "geographic_scope": "national" + }, + { + "id": "china-napp", + "name": { + "en": "National Administration of Press and Publication", + "zh": "国家新闻出版署" + }, + "authority_level": "government", + "data_url": "https://www.nppa.gov.cn/xxfb/", + "has_api": false, + "file_path": "china/governance/china-napp.json", + "geographic_scope": "national" + }, + { + "id": "china-ncac", + "name": { + "en": "National Copyright Administration of China", + "zh": "国家版权局" + }, + "authority_level": "government", + "data_url": "https://www.ncac.gov.cn/chinacopyright/channels/634.html", + "has_api": false, + "file_path": "china/governance/china-ncac.json", + "geographic_scope": "national" + }, + { + "id": "china-ncha", + "name": { + "en": "National Cultural Heritage Administration of China", + "zh": "国家文物局" + }, + "authority_level": "government", + "data_url": "http://www.ncha.gov.cn/col/col2276/index.html", + "has_api": false, + "file_path": "china/governance/china-ncha.json", + "geographic_scope": "national" + }, + { + "id": "china-neac", + "name": { + "en": "National Ethnic Affairs Commission of China", + "zh": "国家民族事务委员会" + }, + "authority_level": "government", + "data_url": "https://www.neac.gov.cn/seac/xxgk/tjsj/", + "has_api": false, + "file_path": "china/governance/china-neac.json", + "geographic_scope": "national" + }, + { + "id": "china-nfra-fire", + "name": { + "en": "National Fire and Rescue Administration of China", + "zh": "国家消防救援局" + }, + "authority_level": "government", + "data_url": "https://www.119.gov.cn", + "has_api": false, + "file_path": "china/governance/china-nfra-fire.json", + "geographic_scope": "national" + }, + { + "id": "china-nia", + "name": { + "en": "National Immigration Administration of China", + "zh": "国家移民管理局" + }, + "authority_level": "government", + "data_url": "https://www.nia.gov.cn/n741440/n741547/index.html", + "has_api": false, + "file_path": "china/governance/china-nia.json", + "geographic_scope": "national" + }, + { + "id": "china-nncc", + "name": { + "en": "China National Narcotics Control Commission", + "zh": "中国国家禁毒委员会" + }, + "authority_level": "government", + "data_url": "http://www.nncc626.com", + "has_api": false, + "file_path": "china/governance/china-nncc.json", + "geographic_scope": "national" + }, + { + "id": "china-nnsa", + "name": { + "en": "National Nuclear Safety Administration", + "zh": "国家核安全局" + }, + "authority_level": "government", + "data_url": "http://nnsa.mee.gov.cn", + "has_api": false, + "file_path": "china/governance/china-nnsa.json", + "geographic_scope": "national" + }, + { + "id": "china-npc-law", + "name": { + "en": "National People's Congress Law Database", + "zh": "全国人大法律法规数据库" + }, + "authority_level": "government", + "data_url": "https://flk.npc.gov.cn/", + "has_api": true, + "file_path": "china/governance/china-npc-law.json", + "geographic_scope": "national" + }, + { + "id": "china-nrta", + "name": { + "en": "National Radio and Television Administration of China", + "zh": "国家广播电视总局" + }, + "authority_level": "government", + "data_url": "https://www.nrta.gov.cn/col/col2040/index.html", + "has_api": false, + "file_path": "china/governance/china-nrta.json", + "geographic_scope": "national" + }, + { + "id": "china-saac", + "name": { + "en": "National Archives Administration of China", + "zh": "中华人民共和国国家档案局" + }, + "authority_level": "government", + "data_url": "https://www.saac.gov.cn/daj/fzgz/lmlist.shtml", + "has_api": false, + "file_path": "china/governance/china-saac.json", + "geographic_scope": "national" + }, + { + "id": "china-spc", + "name": { + "en": "Supreme People's Court of China", + "zh": "最高人民法院" + }, + "authority_level": "government", + "data_url": "https://www.court.gov.cn/sfsj.html", + "has_api": false, + "file_path": "china/governance/china-spc.json", + "geographic_scope": "national" + }, + { + "id": "china-spp", + "name": { + "en": "Supreme People's Procuratorate of China", + "zh": "最高人民检察院" + }, + "authority_level": "government", + "data_url": "https://www.spp.gov.cn/spp/jcdt/jcgzdt/index_1.shtml", + "has_api": false, + "file_path": "china/governance/china-spp.json", + "geographic_scope": "national" + }, + { + "id": "china-stma", + "name": { + "en": "State Tobacco Monopoly Administration of China", + "zh": "国家烟草专卖局" + }, + "authority_level": "government", + "data_url": "https://www.tobacco.gov.cn/html/42/index.html", + "has_api": false, + "file_path": "china/governance/china-stma.json", + "geographic_scope": "national" + }, + { + "id": "china-wenshu", + "name": { + "en": "China Judgments Online", + "zh": "中国裁判文书网" + }, + "authority_level": "government", + "data_url": "https://wenshu.court.gov.cn/website/wenshu/181107ANFZ0BXSK4/index.html", + "has_api": false, + "file_path": "china/governance/china-wenshu.json", + "geographic_scope": "national" + }, + { + "id": "china-cnaf", + "name": { + "en": "China National Arts Fund", + "zh": "国家艺术基金" + }, + "authority_level": "government", + "data_url": "https://www.cnaf.cn", + "has_api": false, + "file_path": "china/governance/culture/china-cnaf.json", + "geographic_scope": "national" + }, + { + "id": "china-film-admin", + "name": { + "en": "National Film Administration of China", + "zh": "国家电影局" + }, + "authority_level": "government", + "data_url": "https://www.chinafilm.gov.cn", + "has_api": false, + "file_path": "china/governance/culture/china-film-admin.json", + "geographic_scope": "national" + }, + { + "id": "china-national-museum", + "name": { + "en": "National Museum of China", + "zh": "中国国家博物馆" + }, + "authority_level": "government", + "data_url": "https://www.chnmuseum.cn/zp/zpml/", + "has_api": false, + "file_path": "china/governance/culture/china-national-museum.json", + "geographic_scope": "national" + }, + { + "id": "china-gas", + "name": { + "en": "General Administration of Sport of China", + "zh": "国家体育总局" + }, + "authority_level": "government", + "data_url": "https://www.sport.gov.cn/n315/n330/index.html", + "has_api": false, + "file_path": "china/governance/sports/china-gas.json", + "geographic_scope": "national" + }, + { + "id": "china-cdc", + "name": { + "en": "Chinese Center for Disease Control and Prevention", + "zh": "中国疾病预防控制中心" + }, + "authority_level": "government", + "data_url": "https://www.chinacdc.cn/gzdt/", + "has_api": false, + "file_path": "china/health/china-cdc.json", + "geographic_scope": "national" + }, + { + "id": "china-chinadrugtrials", + "name": { + "en": "China Drug Clinical Trials Registration and Information Disclosure Platform", + "zh": "药物临床试验登记与信息公示平台" + }, + "authority_level": "government", + "data_url": "https://www.chinadrugtrials.org.cn", + "has_api": false, + "file_path": "china/health/china-chinadrugtrials.json", + "geographic_scope": "national" + }, + { + "id": "china-natcm", + "name": { + "en": "National Administration of Traditional Chinese Medicine", + "zh": "国家中医药管理局" + }, + "authority_level": "government", + "data_url": "https://www.natcm.gov.cn/guihuacaiwusi/gongzuodongtai/index.html", + "has_api": false, + "file_path": "china/health/china-natcm.json", + "geographic_scope": "national" + }, + { + "id": "china-ndcpa", + "name": { + "en": "National Disease Control and Prevention Administration of China", + "zh": "国家疾病预防控制局" + }, + "authority_level": "government", + "data_url": "https://www.ndcpa.gov.cn/jbkzzx/c100016/second/list.html", + "has_api": false, + "file_path": "china/health/china-ndcpa.json", + "geographic_scope": "national" + }, + { + "id": "china-nhc", + "name": { + "en": "National Health Commission of China", + "zh": "国家卫生健康委员会", + "native": "国家卫生健康委员会" + }, + "authority_level": "government", + "data_url": "https://www.nhc.gov.cn/mohwsbwstjxxzx/s7967/new_list.shtml", + "has_api": false, + "file_path": "china/health/china-nhc.json", + "geographic_scope": "national" + }, + { + "id": "china-nhsa", + "name": { + "en": "National Healthcare Security Administration of China", + "zh": "国家医疗保障局" + }, + "authority_level": "government", + "data_url": "https://www.nhsa.gov.cn/col/col7/index.html", + "has_api": false, + "file_path": "china/health/china-nhsa.json", + "geographic_scope": "national" + }, + { + "id": "china-nifdc", + "name": { + "en": "National Institutes for Food and Drug Control", + "zh": "中国食品药品检定研究院" + }, + "authority_level": "government", + "data_url": "https://www.nifdc.org.cn", + "has_api": false, + "file_path": "china/health/china-nifdc.json", + "geographic_scope": "national" + }, + { + "id": "china-nmpa", + "name": { + "en": "National Medical Products Administration of China", + "zh": "国家药品监督管理局" + }, + "authority_level": "government", + "data_url": "https://www.nmpa.gov.cn/datasearch/home-index.html", + "has_api": false, + "file_path": "china/health/china-nmpa.json", + "geographic_scope": "national" + }, + { + "id": "china-avic", + "name": { + "en": "Aviation Industry Corporation of China (AVIC)", + "zh": "中国航空工业集团有限公司" + }, + "authority_level": "government", + "data_url": "https://www.avic.com", + "has_api": false, + "file_path": "china/industry/aerospace/china-avic.json", + "geographic_scope": "national" + }, + { + "id": "china-casc", + "name": { + "en": "China Aerospace Science and Technology Corporation (CASC)", + "zh": "中国航天科技集团有限公司" + }, + "authority_level": "government", + "data_url": "https://www.spacechina.com/n25/index.html", + "has_api": false, + "file_path": "china/industry/aerospace/china-casc.json", + "geographic_scope": "national" + }, + { + "id": "china-miit-eidc", + "name": { + "en": "MIIT Equipment Industry Development Center", + "zh": "工业和信息化部装备工业发展中心" + }, + "authority_level": "government", + "data_url": "https://www.miit-eidc.org.cn/", + "has_api": false, + "file_path": "china/industry/china-miit-eidc.json", + "geographic_scope": "national" + }, + { + "id": "china-ccs", + "name": { + "en": "China Classification Society", + "zh": "中国船级社" + }, + "authority_level": "government", + "data_url": "https://www.ccs.org.cn/", + "has_api": false, + "file_path": "china/infrastructure/china-ccs.json", + "geographic_scope": "national" + }, + { + "id": "china-crg", + "name": { + "en": "China State Railway Group", + "zh": "中国国家铁路集团有限公司" + }, + "authority_level": "government", + "data_url": "http://www.china-railway.com.cn/", + "has_api": false, + "file_path": "china/infrastructure/china-crg.json", + "geographic_scope": "national" + }, + { + "id": "china-cttic", + "name": { + "en": "China Transport Telecommunications & Information Center", + "zh": "中国交通通信信息中心" + }, + "authority_level": "government", + "data_url": "https://www.cttic.cn", + "has_api": false, + "file_path": "china/infrastructure/china-cttic.json", + "geographic_scope": "national" + }, + { + "id": "china-mot", + "name": { + "en": "Ministry of Transport of China", + "zh": "中华人民共和国交通运输部", + "native": "中华人民共和国交通运输部" + }, + "authority_level": "government", + "data_url": "https://www.mot.gov.cn/shuju/", + "has_api": false, + "file_path": "china/infrastructure/china-mot.json", + "geographic_scope": "national" + }, + { + "id": "china-msa", + "name": { + "en": "China Maritime Safety Administration", + "zh": "中国海事局" + }, + "authority_level": "government", + "data_url": "https://www.msa.gov.cn/page/zxgk/tjsj.html", + "has_api": false, + "file_path": "china/infrastructure/china-msa.json", + "geographic_scope": "national" + }, + { + "id": "china-nra", + "name": { + "en": "National Railway Administration of China", + "zh": "国家铁路局" + }, + "authority_level": "government", + "data_url": "https://www.nra.gov.cn/xxgk/gkml/", + "has_api": false, + "file_path": "china/infrastructure/china-nra.json", + "geographic_scope": "national" + }, + { + "id": "china-post-group", + "name": { + "en": "China Post Group Corporation", + "zh": "中国邮政集团有限公司" + }, + "authority_level": "government", + "data_url": "https://www.chinapost.com.cn/", + "has_api": false, + "file_path": "china/infrastructure/china-post-group.json", + "geographic_scope": "national" + }, + { + "id": "china-spb", + "name": { + "en": "State Post Bureau of China", + "zh": "国家邮政局" + }, + "authority_level": "government", + "data_url": "https://www.spb.gov.cn/gjyzj/c100009/c100014/xxgk_index.shtml", + "has_api": false, + "file_path": "china/infrastructure/china-spb.json", + "geographic_scope": "national" + }, + { + "id": "china-acwf", + "name": { + "en": "All-China Women's Federation", + "zh": "中华全国妇女联合会" + }, + "authority_level": "government", + "data_url": "https://www.women.org.cn/", + "has_api": false, + "file_path": "china/national/china-acwf.json", + "geographic_scope": "national" + }, + { + "id": "china-cncaprc", + "name": { + "en": "China National Committee on Ageing", + "zh": "中国老龄协会" + }, + "authority_level": "government", + "data_url": "https://www.cncaprc.gov.cn", + "has_api": false, + "file_path": "china/national/china-cncaprc.json", + "geographic_scope": "national" + }, + { + "id": "china-mca", + "name": { + "en": "Ministry of Civil Affairs of China", + "zh": "中华人民共和国民政部", + "native": "中华人民共和国民政部" + }, + "authority_level": "government", + "data_url": "https://www.mca.gov.cn/n156/n2679/index.html", + "has_api": false, + "file_path": "china/national/china-mca.json", + "geographic_scope": "national" + }, + { + "id": "china-mps", + "name": { + "en": "Ministry of Public Security of China", + "zh": "中华人民共和国公安部" + }, + "authority_level": "government", + "data_url": "https://www.mps.gov.cn/n6557558/index.html", + "has_api": false, + "file_path": "china/national/china-mps.json", + "geographic_scope": "national" + }, + { + "id": "china-cma", + "name": { + "en": "China Meteorological Administration", + "zh": "中国气象局" + }, + "authority_level": "government", + "data_url": "https://data.cma.cn", + "has_api": false, + "file_path": "china/national/meteorology/china-cma.json", + "geographic_scope": "national" + }, + { + "id": "china-ncc", + "name": { + "en": "National Climate Center of China (NCC-CMA)", + "zh": "国家气候中心" + }, + "authority_level": "government", + "data_url": "https://cmdp.ncc-cma.net", + "has_api": false, + "file_path": "china/national/meteorology/china-ncc.json", + "geographic_scope": "national" + }, + { + "id": "china-nmc", + "name": { + "en": "National Meteorological Centre of China", + "zh": "中央气象台" + }, + "authority_level": "government", + "data_url": "https://www.nmc.cn/publish/observations.html", + "has_api": false, + "file_path": "china/national/meteorology/china-nmc.json", + "geographic_scope": "national" + }, + { + "id": "china-nmic", + "name": { + "en": "National Meteorological Information Center", + "zh": "国家气象信息中心" + }, + "authority_level": "government", + "data_url": "https://data.cma.cn/data/index.html", + "has_api": false, + "file_path": "china/national/meteorology/china-nmic.json", + "geographic_scope": "national" + }, + { + "id": "china-nsmc", + "name": { + "en": "National Satellite Meteorological Center of China", + "zh": "国家卫星气象中心" + }, + "authority_level": "government", + "data_url": "https://www.nsmc.org.cn/nsmc/cn/satellite/index.html", + "has_api": false, + "file_path": "china/national/meteorology/china-nsmc.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": "china/national/nbs.json", + "geographic_scope": "national" + }, + { + "id": "china-ciecc", + "name": { + "en": "China International Engineering Consulting Corporation", + "zh": "中国国际工程咨询有限公司" + }, + "authority_level": "government", + "data_url": "https://www.ciecc.com.cn", + "has_api": false, + "file_path": "china/research/china-ciecc.json", + "geographic_scope": "national" + }, + { + "id": "china-cncbd", + "name": { + "en": "China National Center for Biotechnology Development", + "zh": "中国生物技术发展中心" + }, + "authority_level": "government", + "data_url": "https://www.cncbd.org.cn", + "has_api": false, + "file_path": "china/research/china-cncbd.json", + "geographic_scope": "national" + }, + { + "id": "china-cstr", + "name": { + "en": "China Science & Technology Resource Identifier Platform", + "zh": "科技资源标识服务平台" + }, + "authority_level": "government", + "data_url": "https://cstr.cn/resreg", + "has_api": false, + "file_path": "china/research/china-cstr.json", + "geographic_scope": "national" + }, + { + "id": "china-drc", + "name": { + "en": "Development Research Center of the State Council of China", + "zh": "国务院发展研究中心" + }, + "authority_level": "government", + "data_url": "https://www.drc.gov.cn/yjcg.htm", + "has_api": false, + "file_path": "china/research/china-drc.json", + "geographic_scope": "national" + }, + { + "id": "china-nsfc", + "name": { + "en": "National Natural Science Foundation of China", + "zh": "国家自然科学基金委员会" + }, + "authority_level": "government", + "data_url": "https://www.nsfc.gov.cn/p1/2961/2964/3655/cg.html", + "has_api": false, + "file_path": "china/research/china-nsfc.json", + "geographic_scope": "national" + }, + { + "id": "china-nstl", + "name": { + "en": "National Science and Technology Library of China", + "zh": "国家科技图书文献中心" + }, + "authority_level": "government", + "data_url": "https://www.nstl.gov.cn/search.html", + "has_api": false, + "file_path": "china/research/china-nstl.json", + "geographic_scope": "national" + }, + { + "id": "china-polar-service", + "name": { + "en": "China Polar Operations Service Platform (CHINARE Data)", + "zh": "中国极地业务服务平台" + }, + "authority_level": "government", + "data_url": "https://www.chinare.org.cn/", + "has_api": false, + "file_path": "china/research/china-polar-service.json", + "geographic_scope": "global" + }, + { + "id": "china-caea", + "name": { + "en": "China National Nuclear Safety Administration", + "zh": "国家原子能机构" + }, + "authority_level": "government", + "data_url": "https://www.caea.gov.cn", + "has_api": false, + "file_path": "china/resources/china-caea.json", + "geographic_scope": "national" + }, + { + "id": "china-chnenergy", + "name": { + "en": "China Energy Investment Corporation (CHN Energy)", + "zh": "国家能源投资集团有限责任公司" + }, + "authority_level": "government", + "data_url": "https://www.chnenergy.com.cn", + "has_api": false, + "file_path": "china/resources/china-chnenergy.json", + "geographic_scope": "national" + }, + { + "id": "china-cnooc", + "name": { + "en": "China National Offshore Oil Corporation", + "zh": "中国海洋石油集团有限公司" + }, + "authority_level": "government", + "data_url": "https://www.cnooc.com.cn", + "has_api": false, + "file_path": "china/resources/china-cnooc.json", + "geographic_scope": "national" + }, + { + "id": "china-cnpc", + "name": { + "en": "China National Petroleum Corporation", + "zh": "中国石油天然气集团有限公司" + }, + "authority_level": "government", + "data_url": "https://www.cnpc.com.cn/cnpc/nybg/common_index.shtml", + "has_api": false, + "file_path": "china/resources/china-cnpc.json", + "geographic_scope": "national" + }, + { + "id": "china-ctg", + "name": { + "en": "China Three Gorges Corporation (CTG)", + "zh": "中国长江三峡集团有限公司" + }, + "authority_level": "government", + "data_url": "https://www.ctg.com.cn", + "has_api": false, + "file_path": "china/resources/china-ctg.json", + "geographic_scope": "national" + }, + { + "id": "china-guangdong-nr", + "name": { + "en": "Guangdong Provincial Department of Natural Resources", + "zh": "广东省自然资源厅" + }, + "authority_level": "government", + "data_url": "https://nr.gd.gov.cn/zwgknew/index.html", + "has_api": false, + "file_path": "china/resources/china-guangdong-nr.json", + "geographic_scope": "subnational" + }, + { + "id": "china-landchina", + "name": { + "en": "China Land Market Network", + "zh": "中国土地市场网" + }, + "authority_level": "government", + "data_url": "https://www.landchina.com/default.aspx?tabid=226", + "has_api": false, + "file_path": "china/resources/china-landchina.json", + "geographic_scope": "national" + }, + { + "id": "china-ngcc", + "name": { + "en": "National Geomatics Center of China", + "zh": "国家基础地理信息中心" + }, + "authority_level": "government", + "data_url": "https://www.ngcc.cn/dlxxzy/gjjcdlxxsjk/", + "has_api": false, + "file_path": "china/resources/china-ngcc.json", + "geographic_scope": "national" + }, + { + "id": "china-shenzhen-pnr", + "name": { + "en": "Shenzhen Municipal Planning and Natural Resources Bureau", + "zh": "深圳市规划和自然资源局" + }, + "authority_level": "government", + "data_url": "https://pnr.sz.gov.cn/xxgk/", + "has_api": false, + "file_path": "china/resources/china-shenzhen-pnr.json", + "geographic_scope": "subnational" + }, + { + "id": "china-sinopec", + "name": { + "en": "China Petrochemical Corporation (Sinopec Group)", + "zh": "中国石油化工集团有限公司" + }, + "authority_level": "government", + "data_url": "http://www.sinopecgroup.com/group/xhtml/shzr/", + "has_api": false, + "file_path": "china/resources/china-sinopec.json", + "geographic_scope": "national" + }, + { + "id": "china-chinacoal", + "name": { + "en": "China National Coal Group Corporation", + "zh": "中国中煤能源集团有限公司" + }, + "authority_level": "government", + "data_url": "https://www.chinacoal.com", + "has_api": false, + "file_path": "china/resources/energy/china-chinacoal.json", + "geographic_scope": "national" + }, + { + "id": "china-csg", + "name": { + "en": "China Southern Power Grid", + "zh": "中国南方电网有限责任公司" + }, + "authority_level": "government", + "data_url": "https://www.csg.cn", + "has_api": false, + "file_path": "china/resources/energy/china-csg.json", + "geographic_scope": "subnational" + }, + { + "id": "china-cigem", + "name": { + "en": "China Institute of Geo-Environment Monitoring", + "zh": "中国地质环境监测院" + }, + "authority_level": "government", + "data_url": "http://www.cigem.cgs.gov.cn/", + "has_api": false, + "file_path": "china/resources/environment/china-cigem.json", + "geographic_scope": "national" + }, + { + "id": "china-cnemc", + "name": { + "en": "China National Environmental Monitoring Centre", + "zh": "中国环境监测总站" + }, + "authority_level": "government", + "data_url": "https://www.cnemc.cn/sssj/", + "has_api": false, + "file_path": "china/resources/environment/china-cnemc.json", + "geographic_scope": "national" + }, + { + "id": "china-mee", + "name": { + "en": "Ministry of Ecology and Environment of China - Environmental Data", + "zh": "生态环境部环境数据" + }, + "authority_level": "government", + "data_url": "https://www.mee.gov.cn/hjzl/", + "has_api": false, + "file_path": "china/resources/environment/china-mee.json", + "geographic_scope": "national" + }, + { + "id": "china-ndrcc", + "name": { + "en": "National Disaster Reduction Center of China", + "zh": "国家减灾中心" + }, + "authority_level": "government", + "data_url": "https://www.ndrcc.org.cn/", + "has_api": false, + "file_path": "china/resources/environment/china-ndrcc.json", + "geographic_scope": "national" + }, + { + "id": "china-nfga", + "name": { + "en": "National Forestry and Grassland Administration of China", + "zh": "国家林业和草原局" + }, + "authority_level": "government", + "data_url": "https://www.forestry.gov.cn/gjlcj/5462/index.html", + "has_api": false, + "file_path": "china/resources/forestry/china-nfga.json", + "geographic_scope": "national" + }, + { + "id": "china-cgas", + "name": { + "en": "China Geological Survey", + "zh": "中国地质调查局" + }, + "authority_level": "government", + "data_url": "https://www.cgs.gov.cn/", + "has_api": false, + "file_path": "china/resources/mineral/china-cgas.json", + "geographic_scope": "national" + }, + { + "id": "china-miit-rare-earth", + "name": { + "en": "MIIT Rare Earth Office - Rare Earth Industry Regulation and Production Quotas", + "zh": "工业和信息化部稀土办公室 - 稀土行业规范与生产配额" + }, + "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": "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", + "geographic_scope": "national" + }, + { + "id": "china-nmsa", + "name": { + "en": "National Mine Safety Administration of China", + "zh": "国家矿山安全监察局" + }, + "authority_level": "government", + "data_url": "https://www.chinamine-safety.gov.cn/zfxxgk/", + "has_api": false, + "file_path": "china/resources/mineral/china-nmsa.json", + "geographic_scope": "national" + }, + { + "id": "china-nmdis", + "name": { + "en": "National Marine Data and Information Service", + "zh": "国家海洋信息中心" + }, + "authority_level": "government", + "data_url": "https://mds.nmdis.org.cn/", + "has_api": false, + "file_path": "china/resources/ocean/china-nmdis.json", + "geographic_scope": "national" + }, + { + "id": "china-nsoas", + "name": { + "en": "National Satellite Ocean Application Service", + "zh": "国家卫星海洋应用中心" + }, + "authority_level": "government", + "data_url": "http://www.nsoas.org.cn", + "has_api": false, + "file_path": "china/resources/ocean/china-nsoas.json", + "geographic_scope": "national" + }, + { + "id": "china-cea", + "name": { + "en": "China Earthquake Administration", + "zh": "中国地震局" + }, + "authority_level": "government", + "data_url": "https://www.cea.gov.cn/cea/dzpd/dzzt/index.html", + "has_api": false, + "file_path": "china/resources/seismology/china-cea.json", + "geographic_scope": "national" + }, + { + "id": "china-cenc", + "name": { + "en": "China Earthquake Networks Center", + "zh": "中国地震台网中心" + }, + "authority_level": "government", + "data_url": "https://www.cenc.ac.cn/", + "has_api": false, + "file_path": "china/resources/seismology/china-cenc.json", + "geographic_scope": "national" + }, + { + "id": "china-chinawater", + "name": { + "en": "China Water Resources Portal", + "zh": "中国水利网" + }, + "authority_level": "government", + "data_url": "https://www.chinawater.com.cn", + "has_api": false, + "file_path": "china/resources/water/china-chinawater.json", + "geographic_scope": "national" + }, + { + "id": "china-hrc", + "name": { + "en": "Huai River Water Resources Commission", + "zh": "水利部淮河水利委员会" + }, + "authority_level": "government", + "data_url": "http://www.hrc.gov.cn", + "has_api": false, + "file_path": "china/resources/water/china-hrc.json", + "geographic_scope": "subnational" + }, + { + "id": "china-hwcc", + "name": { + "en": "Hai River Water Resources Commission", + "zh": "水利部海河水利委员会" + }, + "authority_level": "government", + "data_url": "http://www.hwcc.gov.cn", + "has_api": false, + "file_path": "china/resources/water/china-hwcc.json", + "geographic_scope": "subnational" + }, + { + "id": "china-mwr", + "name": { + "en": "Ministry of Water Resources of China - Water Resources Statistics", + "zh": "中华人民共和国水利部水资源统计" + }, + "authority_level": "government", + "data_url": "http://www.mwr.gov.cn/sj/", + "has_api": false, + "file_path": "china/resources/water/china-mwr.json", + "geographic_scope": "national" + }, + { + "id": "china-slwr", + "name": { + "en": "Songliao River Water Resources Commission", + "zh": "水利部松辽水利委员会" + }, + "authority_level": "government", + "data_url": "http://www.slwr.gov.cn/gbjb.jhtml", + "has_api": false, + "file_path": "china/resources/water/china-slwr.json", + "geographic_scope": "subnational" + }, + { + "id": "china-yrcc", + "name": { + "en": "Yellow River Conservancy Commission", + "zh": "水利部黄河水利委员会" + }, + "authority_level": "government", + "data_url": "http://www.yrcc.gov.cn", + "has_api": false, + "file_path": "china/resources/water/china-yrcc.json", + "geographic_scope": "subnational" + }, + { + "id": "china-beidou", + "name": { + "en": "BeiDou Navigation Satellite System", + "zh": "北斗卫星导航系统" + }, + "authority_level": "government", + "data_url": "http://www.beidou.gov.cn", + "has_api": false, + "file_path": "china/technology/china-beidou.json", + "geographic_scope": "global" + }, + { + "id": "china-cmse", + "name": { + "en": "China Manned Space Engineering Office", + "zh": "中国载人航天工程办公室" + }, + "authority_level": "government", + "data_url": "https://www.cmse.gov.cn", + "has_api": false, + "file_path": "china/technology/china-cmse.json", + "geographic_scope": "national" + }, + { + "id": "china-cnsa", + "name": { + "en": "China National Space Administration", + "zh": "国家航天局" + }, + "authority_level": "government", + "data_url": "https://www.cnsa.gov.cn/n6758823/index.html", + "has_api": false, + "file_path": "china/technology/china-cnsa.json", + "geographic_scope": "national" + }, + { + "id": "china-shenzhen-stic", + "name": { + "en": "Shenzhen Science, Technology and Innovation Commission", + "zh": "深圳市科技创新局" + }, + "authority_level": "government", + "data_url": "https://stic.sz.gov.cn/xxgk/index.html", + "has_api": false, + "file_path": "china/technology/china-shenzhen-stic.json", + "geographic_scope": "subnational" + }, + { + "id": "china-national-data-bureau", + "name": { + "en": "National Data Administration of China", + "zh": "国家数据局" + }, + "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": "china-cnipa-patents", + "name": { + "en": "China National Intellectual Property Administration - Patent Statistics", + "zh": "国家知识产权局专利统计" + }, + "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": "china-ctmo", + "name": { + "en": "China Trademark Office (CNIPA Trademark Bureau)", + "zh": "国家知识产权局商标局" + }, + "authority_level": "government", + "data_url": "https://sbj.cnipa.gov.cn", + "has_api": false, + "file_path": "china/technology/intellectual_property/china-ctmo.json", + "geographic_scope": "national" + }, + { + "id": "china-cac", + "name": { + "en": "Cyberspace Administration of China", + "zh": "国家互联网信息办公室" + }, + "authority_level": "government", + "data_url": "https://www.cac.gov.cn/wxzw/sjzl/A093708index_1.htm", + "has_api": false, + "file_path": "china/technology/internet/china-cac.json", + "geographic_scope": "national" + }, + { + "id": "china-cncert", + "name": { + "en": "National Computer Network Emergency Response Technical Team/Coordination Center of China", + "zh": "国家互联网应急中心" + }, + "authority_level": "government", + "data_url": "https://www.cert.org.cn/publish/main/45/index.html", + "has_api": false, + "file_path": "china/technology/internet/china-cncert.json", + "geographic_scope": "national" + }, + { + "id": "china-cinic", + "name": { + "en": "China Internet Network Information Center", + "zh": "中国互联网络信息中心", + "native": "中国互联网络信息中心" + }, + "authority_level": "government", + "data_url": "https://www.cnnic.cn/11/38/326/index.html", + "has_api": false, + "file_path": "china/technology/internet/cnnic.json", + "geographic_scope": "national" + }, + { + "id": "china-most-infrastructure", + "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, + "file_path": "china/technology/sci_resources/china-most-infrastructure.json", + "geographic_scope": "national" + }, + { + "id": "china-most-rnd", + "name": { + "en": "National Key R&D Program of China - Industrial Software and 16 Key Special Projects", + "zh": "国家重点研发计划 - 工业软件专项及16个重点专项" + }, + "authority_level": "government", + "data_url": "https://service.most.gov.cn/", + "has_api": false, + "file_path": "china/technology/sci_resources/china-most-rnd.json", + "geographic_scope": "national" + }, + { + "id": "china-cnis", + "name": { + "en": "China National Institute of Standardization", + "zh": "中国标准化研究院" + }, + "authority_level": "government", + "data_url": "https://www.cnis.ac.cn/kycg/", + "has_api": false, + "file_path": "china/technology/standards/china-cnis.json", + "geographic_scope": "national" + }, + { + "id": "china-nim", + "name": { + "en": "National Institute of Metrology China", + "zh": "中国计量科学研究院" + }, + "authority_level": "government", + "data_url": "https://www.nim.ac.cn/nim_time", + "has_api": false, + "file_path": "china/technology/standards/china-nim.json", + "geographic_scope": "national" + }, + { + "id": "china-openstd", + "name": { + "en": "China National Standards Full Text Public Access System", + "zh": "国家标准全文公开系统" + }, + "authority_level": "government", + "data_url": "https://openstd.samr.gov.cn/", + "has_api": false, + "file_path": "china/technology/standards/china-openstd.json", + "geographic_scope": "national" + }, + { + "id": "china-sac-standards", + "name": { + "en": "Standardization Administration of China (SAC)", + "zh": "国家标准化管理委员会" + }, + "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": "china-miit", + "name": { + "en": "Ministry of Industry and Information Technology of the People's Republic of China", + "zh": "中华人民共和国工业和信息化部" + }, + "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": "egypt-capmas", + "name": { + "en": "Central Agency for Public Mobilization and Statistics (CAPMAS)", + "zh": "埃及中央公共动员与统计局" + }, + "authority_level": "government", + "data_url": "https://www.capmas.gov.eg/Pages/Publications.aspx", + "has_api": false, + "file_path": "countries/africa/egypt/egypt-capmas.json", + "geographic_scope": "national" + }, + { + "id": "ghana-gss", + "name": { + "en": "Ghana Statistical Service", + "zh": "加纳统计局" + }, + "authority_level": "government", + "data_url": "https://statsghana.gov.gh/data-statistics/economic-statistics", + "has_api": false, + "file_path": "countries/africa/ghana/ghana-gss.json", + "geographic_scope": "national" + }, + { + "id": "kenya-knbs", + "name": { + "en": "Kenya National Bureau of Statistics", + "zh": "肯尼亚国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.knbs.or.ke/publications/", + "has_api": false, + "file_path": "countries/africa/kenya/kenya-knbs.json", + "geographic_scope": "national" + }, + { + "id": "nigeria-nbs", + "name": { + "en": "National Bureau of Statistics Nigeria (NBS)", + "zh": "尼日利亚国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.nigerianstat.gov.ng/elibrary", + "has_api": false, + "file_path": "countries/africa/nigeria/nigeria-nbs.json", + "geographic_scope": "national" + }, + { + "id": "south-africa-statssa", + "name": { + "en": "Statistics South Africa (Stats SA)", + "zh": "南非统计局" + }, + "authority_level": "government", + "data_url": "https://www.statssa.gov.za/?page_id=1854", + "has_api": false, + "file_path": "countries/africa/south-africa/south-africa-statssa.json", + "geographic_scope": "national" + }, + { + "id": "stats-sa", + "name": { + "en": "Statistics South Africa (Stats SA)", + "zh": "南非统计局", + "native": "Statistics South Africa (Stats SA)" + }, + "authority_level": "government", + "data_url": "https://www.statssa.gov.za/?page_id=1521", + "has_api": false, + "file_path": "countries/africa/south-africa/stats-sa.json", + "geographic_scope": "national" + }, + { + "id": "brunei-deps", + "name": { + "en": "Department of Economic Planning and Statistics, Brunei (DEPS)", + "zh": "文莱经济规划与统计局" + }, + "authority_level": "government", + "data_url": "https://deps.mofe.gov.bn/edata-library/", + "has_api": false, + "file_path": "countries/asia/brunei/brunei-deps.json", + "geographic_scope": "national" + }, + { + "id": "cambodia-nis", + "name": { + "en": "National Institute of Statistics of Cambodia (NIS)", + "zh": "柬埔寨国家统计局" + }, + "authority_level": "government", + "data_url": "https://camstat.nis.gov.kh/", + "has_api": false, + "file_path": "countries/asia/cambodia/cambodia-nis.json", + "geographic_scope": "national" + }, + { + "id": "dosm", + "name": { + "en": "Department of Statistics Malaysia", + "zh": "马来西亚统计局" + }, + "authority_level": "government", + "data_url": "https://open.dosm.gov.my/", + "has_api": true, + "file_path": "countries/asia/dosm.json", + "geographic_scope": "national" + }, + { + "id": "hk-companies-registry", + "name": { + "en": "Hong Kong Companies Registry", + "zh": "香港公司注册处" + }, + "authority_level": "government", + "data_url": "https://www.cr.gov.hk/en/services/obtain-company-info.htm", + "has_api": false, + "file_path": "countries/asia/hk-companies-registry.json", + "geographic_scope": "national" + }, + { + "id": "hk-sfc", + "name": { + "en": "Securities and Futures Commission of Hong Kong", + "zh": "香港证券及期货事务监察委员会" + }, + "authority_level": "government", + "data_url": "https://www.sfc.hk/en/Regulatory-functions/Products", + "has_api": false, + "file_path": "countries/asia/hk-sfc.json", + "geographic_scope": "national" + }, + { + "id": "hkma", + "name": { + "en": "Hong Kong Monetary Authority", + "zh": "香港金融管理局" + }, + "authority_level": "government", + "data_url": "https://www.hkma.gov.hk/eng/data-publications-and-research/data-and-statistics/", + "has_api": true, + "file_path": "countries/asia/hkma.json", + "geographic_scope": "national" + }, + { + "id": "india-dgcis", + "name": { + "en": "Directorate General of Commercial Intelligence and Statistics", + "zh": "印度商业情报与统计总局" + }, + "authority_level": "government", + "data_url": "https://www.commerce.gov.in/trade-statistics/", + "has_api": false, + "file_path": "countries/asia/india/india-dgcis.json", + "geographic_scope": "national" + }, + { + "id": "india-mospi", + "name": { + "en": "Ministry of Statistics and Programme Implementation (MoSPI)", + "zh": "印度统计与计划实施部", + "native": "सांख्यिकी और कार्यक्रम कार्यान्वयन मंत्रालय" + }, + "authority_level": "government", + "data_url": "https://mospi.gov.in/data", + "has_api": false, + "file_path": "countries/asia/india/india-mospi.json", + "geographic_scope": "national" + }, + { + "id": "india-rbi", + "name": { + "en": "Reserve Bank of India", + "zh": "印度储备银行", + "native": "भारतीय रिज़र्व बैंक" + }, + "authority_level": "government", + "data_url": "https://www.rbi.org.in/Scripts/Statistics.aspx", + "has_api": true, + "file_path": "countries/asia/india/india-rbi.json", + "geographic_scope": "national" + }, + { + "id": "indonesia-bps", + "name": { + "en": "Statistics Indonesia (BPS)", + "zh": "印度尼西亚中央统计局", + "native": "Badan Pusat Statistik" + }, + "authority_level": "government", + "data_url": "https://www.bps.go.id/en/statistics-table", + "has_api": true, + "file_path": "countries/asia/indonesia/indonesia-bps.json", + "geographic_scope": "national" + }, + { + "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", + "geographic_scope": "national" + }, + { + "id": "japan-esri", + "name": { + "en": "Economic and Social Research Institute, Cabinet Office of Japan", + "zh": "日本内阁府经济社会综合研究所" + }, + "authority_level": "government", + "data_url": "https://www.esri.cao.go.jp/en/sna/menu.html", + "has_api": false, + "file_path": "countries/asia/japan/japan-esri.json", + "geographic_scope": "national" + }, + { + "id": "japan-estat", + "name": { + "en": "Japan e-Stat (Portal Site of Official Statistics)", + "zh": "日本统计局 e-Stat(政府统计综合窗口)", + "native": "政府統計の総合窓口 e-Stat" + }, + "authority_level": "government", + "data_url": "https://www.e-stat.go.jp/en/stat-search", + "has_api": true, + "file_path": "countries/asia/japan/japan-estat.json", + "geographic_scope": "national" + }, + { + "id": "japan-fsa", + "name": { + "en": "Japan Financial Services Agency", + "zh": "日本金融厅" + }, + "authority_level": "government", + "data_url": "https://www.fsa.go.jp/en/refer/index.html", + "has_api": false, + "file_path": "countries/asia/japan/japan-fsa.json", + "geographic_scope": "national" + }, + { + "id": "japan-gpif", + "name": { + "en": "Government Pension Investment Fund", + "zh": "日本政府养老投资基金" + }, + "authority_level": "government", + "data_url": "https://www.gpif.go.jp/en/performance/", + "has_api": false, + "file_path": "countries/asia/japan/japan-gpif.json", + "geographic_scope": "national" + }, + { + "id": "japan-jetro", + "name": { + "en": "Japan External Trade Organization", + "zh": "日本贸易振兴机构", + "native": "日本貿易振興機構" + }, + "authority_level": "government", + "data_url": "https://www.jetro.go.jp/en/reports/statistics.html", + "has_api": false, + "file_path": "countries/asia/japan/japan-jetro.json", + "geographic_scope": "national" + }, + { + "id": "japan-jma", + "name": { + "en": "Japan Meteorological Agency", + "zh": "日本气象厅" + }, + "authority_level": "government", + "data_url": "https://www.data.jma.go.jp/risk/obsdl/index.php", + "has_api": false, + "file_path": "countries/asia/japan/japan-jma.json", + "geographic_scope": "national" + }, + { + "id": "japan-meti", + "name": { + "en": "Ministry of Economy, Trade and Industry (Japan)", + "zh": "日本经济产业省", + "native": "経済産業省" + }, + "authority_level": "government", + "data_url": "https://www.meti.go.jp/english/statistics/index.html", + "has_api": false, + "file_path": "countries/asia/japan/japan-meti.json", + "geographic_scope": "national" + }, + { + "id": "japan-mof", + "name": { + "en": "Ministry of Finance Japan", + "zh": "日本财务省" + }, + "authority_level": "government", + "data_url": "https://www.customs.go.jp/toukei/info/index_e.htm", + "has_api": false, + "file_path": "countries/asia/japan/japan-mof.json", + "geographic_scope": "national" + }, + { + "id": "korea-bok", + "name": { + "en": "Bank of Korea", + "zh": "韩国银行", + "native": "한국은행" + }, + "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", + "geographic_scope": "national" + }, + { + "id": "kostat-cpi", + "name": { + "en": "Statistics Korea (KOSTAT) - Consumer Price Index", + "zh": "韩国统计局 - 消费者物价指数", + "ko": "통계청 - 소비자물가지수" + }, + "authority_level": "government", + "data_url": "https://kosis.kr/eng/", + "has_api": true, + "file_path": "countries/asia/kostat-cpi.json", + "geographic_scope": "national" + }, + { + "id": "kostat", + "name": { + "en": "Statistics Korea (KOSTAT)", + "zh": "韩国统计厅" + }, + "authority_level": "government", + "data_url": "https://kosis.kr/eng/", + "has_api": true, + "file_path": "countries/asia/kostat.json", + "geographic_scope": "national" + }, + { + "id": "laos-lsb", + "name": { + "en": "Lao Statistics Bureau (LSB)", + "zh": "老挝统计局" + }, + "authority_level": "government", + "data_url": "https://laosis.lsb.gov.la/", + "has_api": false, + "file_path": "countries/asia/laos/laos-lsb.json", + "geographic_scope": "national" + }, + { + "id": "malaysia-dosm", + "name": { + "en": "Department of Statistics Malaysia (DOSM)", + "zh": "马来西亚统计局" + }, + "authority_level": "government", + "data_url": "https://open.dosm.gov.my/", + "has_api": true, + "file_path": "countries/asia/malaysia/malaysia-dosm.json", + "geographic_scope": "national" + }, + { + "id": "myanmar-cso", + "name": { + "en": "Central Statistical Organization (Myanmar)", + "zh": "缅甸中央统计局" + }, + "authority_level": "government", + "data_url": "https://www.csostat.gov.mm", + "has_api": false, + "file_path": "countries/asia/myanmar/myanmar-cso.json", + "geographic_scope": "national" + }, + { + "id": "philippines-psa", + "name": { + "en": "Philippine Statistics Authority", + "zh": "菲律宾统计局" + }, + "authority_level": "government", + "data_url": "https://openstat.psa.gov.ph", + "has_api": false, + "file_path": "countries/asia/philippines/psa.json", + "geographic_scope": "national" + }, + { + "id": "saudi-gastat", + "name": { + "en": "General Authority for Statistics (GASTAT)", + "zh": "沙特阿拉伯统计总局" + }, + "authority_level": "government", + "data_url": "https://www.stats.gov.sa/statistics", + "has_api": false, + "file_path": "countries/asia/saudi-arabia/saudi-gastat.json", + "geographic_scope": "national" + }, + { + "id": "singapore-singstat", + "name": { + "en": "Singapore Department of Statistics (SingStat)", + "zh": "新加坡统计局", + "native": "Department of Statistics Singapore" + }, + "authority_level": "government", + "data_url": "https://tablebuilder.singstat.gov.sg", + "has_api": true, + "file_path": "countries/asia/singapore/singapore-singstat.json", + "geographic_scope": "national" + }, + { + "id": "korea-kostat", + "name": { + "en": "Statistics Korea (KOSTAT)", + "zh": "韩国统计厅" + }, + "authority_level": "government", + "data_url": "https://kosis.kr/eng/", + "has_api": true, + "file_path": "countries/asia/south-korea/korea-kostat.json", + "geographic_scope": "national" + }, + { + "id": "taiwan-dgbas", + "name": { + "en": "Directorate-General of Budget, Accounting and Statistics (DGBAS)", + "zh": "台湾主计总处" + }, + "authority_level": "government", + "data_url": "https://eng.stat.gov.tw/", + "has_api": false, + "file_path": "countries/asia/taiwan/taiwan-dgbas.json", + "geographic_scope": "national" + }, + { + "id": "fia-fdi", + "name": { + "en": "Foreign Investment Agency - FDI Statistics", + "zh": "越南外国投资局 - FDI统计数据" + }, + "authority_level": "government", + "data_url": "https://www.mpi.gov.vn/en/Pages/FDI-1637.aspx", + "has_api": false, + "file_path": "countries/asia/vietnam/fia-fdi.json", + "geographic_scope": "national" + }, + { + "id": "gdvc", + "name": { + "en": "General Department of Vietnam Customs", + "zh": "越南海关总局" + }, + "authority_level": "government", + "data_url": "https://www.customs.gov.vn", + "has_api": false, + "file_path": "countries/asia/vietnam/gdvc.json", + "geographic_scope": "national" + }, + { + "id": "gso-vietnam", + "name": { + "en": "General Statistics Office of Vietnam", + "zh": "越南国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.gso.gov.vn/en/data-and-statistics/", + "has_api": false, + "file_path": "countries/asia/vietnam/gso-vietnam.json", + "geographic_scope": "national" + }, + { + "id": "vietnam-gso", + "name": { + "en": "General Statistics Office of Vietnam", + "zh": "越南统计总局" + }, + "authority_level": "government", + "data_url": "https://www.nso.gov.vn/en/statistical-data/", + "has_api": false, + "file_path": "countries/asia/vietnam/gso.json", + "geographic_scope": "national" + }, + { + "id": "mpi-fdi", + "name": { + "en": "Ministry of Planning and Investment - FDI Statistics", + "zh": "越南计划投资部 - 外国直接投资统计", + "vi": "Bộ Kế hoạch và Đầu tư - Thống kê FDI" + }, + "authority_level": "government", + "data_url": "https://www.mpi.gov.vn/en/Pages/Report-on-Foreign-Direct-Investment-1740.aspx", + "has_api": false, + "file_path": "countries/asia/vietnam/mpi-fdi.json", + "geographic_scope": "national" + }, + { + "id": "sbv", + "name": { + "en": "State Bank of Vietnam", + "zh": "越南国家银行" + }, + "authority_level": "government", + "data_url": "https://www.sbv.gov.vn/webcenter/portal/en/home/rm/public", + "has_api": false, + "file_path": "countries/asia/vietnam/sbv.json", + "geographic_scope": "national" + }, + { + "id": "vietnam-fia", + "name": { + "en": "Foreign Investment Agency - Ministry of Planning and Investment", + "zh": "越南计划投资部外国投资局" + }, + "authority_level": "government", + "data_url": "https://www.mpi.gov.vn/en/Pages/FDI-1637.aspx", + "has_api": false, + "file_path": "countries/asia/vietnam/vietnam-fia.json", + "geographic_scope": "national" + }, + { + "id": "vietnam-mof", + "name": { + "en": "Ministry of Finance of Vietnam", + "zh": "越南财政部" + }, + "authority_level": "government", + "data_url": "https://www.mof.gov.vn/webcenter/portal/btcen/pages_r/m/statistics", + "has_api": false, + "file_path": "countries/asia/vietnam/vietnam-mof.json", + "geographic_scope": "national" + }, + { + "id": "china-cgs", + "name": { + "en": "China Geological Survey (CGS)", + "zh": "中国地质调查局" + }, + "authority_level": "government", + "data_url": "https://geocloud.cgs.gov.cn", + "has_api": false, + "file_path": "countries/cn/geology/cgs.json", + "geographic_scope": "national" + }, + { + "id": "austria-statistik", + "name": { + "en": "Statistics Austria", + "zh": "奥地利统计局", + "native": "Statistik Austria" + }, + "authority_level": "government", + "data_url": "https://www.statistik.at/statistiken", + "has_api": true, + "file_path": "countries/europe/at/austria-statistik.json", + "geographic_scope": "national" + }, + { + "id": "bank-of-england-statistics", + "name": { + "en": "Bank of England Statistical Database", + "zh": "英格兰银行统计数据库" + }, + "authority_level": "government", + "data_url": "https://www.bankofengland.co.uk/boeapps/database/", + "has_api": true, + "file_path": "countries/europe/bank-of-england-statistics.json", + "geographic_scope": "national" + }, + { + "id": "belgium-statbel", + "name": { + "en": "Statbel - Belgian Statistical Office", + "zh": "比利时统计局" + }, + "authority_level": "government", + "data_url": "https://statbel.fgov.be/en/open-data", + "has_api": false, + "file_path": "countries/europe/belgium/belgium-statbel.json", + "geographic_scope": "national" + }, + { + "id": "bulgaria-nsi", + "name": { + "en": "National Statistical Institute of Bulgaria (NSI)", + "zh": "保加利亚国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.nsi.bg/en/content/2666/statisticsdatabases", + "has_api": false, + "file_path": "countries/europe/bulgaria/bulgaria-nsi.json", + "geographic_scope": "national" + }, + { + "id": "croatia-dzs", + "name": { + "en": "Croatian Bureau of Statistics (DZS)", + "zh": "克罗地亚统计局" + }, + "authority_level": "government", + "data_url": "https://dzs.gov.hr/en/data-and-statistics", + "has_api": false, + "file_path": "countries/europe/croatia/croatia-dzs.json", + "geographic_scope": "national" + }, + { + "id": "czechia-czso", + "name": { + "en": "Czech Statistical Office (CZSO)", + "zh": "捷克统计局" + }, + "authority_level": "government", + "data_url": "https://vdb.czso.cz", + "has_api": true, + "file_path": "countries/europe/czechia/czechia-czso.json", + "geographic_scope": "national" + }, + { + "id": "denmark-dst", + "name": { + "en": "Statistics Denmark", + "zh": "丹麦统计局", + "native": "Danmarks Statistik" + }, + "authority_level": "government", + "data_url": "https://www.dst.dk/en/Statistik", + "has_api": true, + "file_path": "countries/europe/dk/denmark-dst.json", + "geographic_scope": "national" + }, + { + "id": "finland-stat", + "name": { + "en": "Statistics Finland", + "zh": "芬兰统计局", + "native": "Tilastokeskus" + }, + "authority_level": "government", + "data_url": "https://pxdata.stat.fi/PxWeb/pxweb/en/StatFin/", + "has_api": true, + "file_path": "countries/europe/finland/finland-stat.json", + "geographic_scope": "national" + }, + { + "id": "france-insee", + "name": { + "en": "INSEE - National Institute of Statistics and Economic Studies", + "zh": "法国国家统计与经济研究所", + "native": "Institut national de la statistique et des études économiques" + }, + "authority_level": "government", + "data_url": "https://www.insee.fr/en/statistiques", + "has_api": true, + "file_path": "countries/europe/fr/france-insee.json", + "geographic_scope": "national" + }, + { + "id": "germany-destatis", + "name": { + "en": "Federal Statistical Office of Germany (Destatis)", + "zh": "德国联邦统计局", + "native": "Statistisches Bundesamt (Destatis)" + }, + "authority_level": "government", + "data_url": "https://www.destatis.de/EN/Themes/_node.html", + "has_api": true, + "file_path": "countries/europe/germany/germany-destatis.json", + "geographic_scope": "national" + }, + { + "id": "greece-elstat", + "name": { + "en": "Hellenic Statistical Authority (ELSTAT)", + "zh": "希腊统计局", + "native": "Ελληνική Στατιστική Αρχή (ΕΛΣΤΑΤ)" + }, + "authority_level": "government", + "data_url": "https://www.statistics.gr/en/statistics", + "has_api": false, + "file_path": "countries/europe/greece/greece-elstat.json", + "geographic_scope": "national" + }, + { + "id": "hungary-ksh", + "name": { + "en": "Hungarian Central Statistical Office", + "zh": "匈牙利中央统计局" + }, + "authority_level": "government", + "data_url": "https://www.ksh.hu/engstadat", + "has_api": true, + "file_path": "countries/europe/hungary/hungary-ksh.json", + "geographic_scope": "national" + }, + { + "id": "ireland-cso", + "name": { + "en": "Central Statistics Office (CSO)", + "zh": "爱尔兰中央统计局" + }, + "authority_level": "government", + "data_url": "https://data.cso.ie", + "has_api": true, + "file_path": "countries/europe/ireland/ireland-cso.json", + "geographic_scope": "national" + }, + { + "id": "italy-istat", + "name": { + "en": "Italian National Institute of Statistics", + "zh": "意大利国家统计局" + }, + "authority_level": "government", + "data_url": "https://esploradati.istat.it/databrowser/", + "has_api": true, + "file_path": "countries/europe/italy/italy-istat.json", + "geographic_scope": "national" + }, + { + "id": "netherlands-cbs", + "name": { + "en": "Statistics Netherlands (CBS)", + "zh": "荷兰统计局" + }, + "authority_level": "government", + "data_url": "https://opendata.cbs.nl/statline/", + "has_api": true, + "file_path": "countries/europe/netherlands/netherlands-cbs.json", + "geographic_scope": "national" + }, + { + "id": "norway-ssb", + "name": { + "en": "Statistics Norway (SSB)", + "zh": "挪威统计局", + "native": "Statistisk sentralbyrå (SSB)" + }, + "authority_level": "government", + "data_url": "https://www.ssb.no/en/statbank", + "has_api": true, + "file_path": "countries/europe/norway/norway-ssb.json", + "geographic_scope": "national" + }, + { + "id": "poland-gus", + "name": { + "en": "Statistics Poland (GUS)", + "zh": "波兰中央统计局", + "native": "Główny Urząd Statystyczny" + }, + "authority_level": "government", + "data_url": "https://bdl.stat.gov.pl/BDL/start", + "has_api": true, + "file_path": "countries/europe/poland/poland-gus.json", + "geographic_scope": "national" + }, + { + "id": "portugal-ine", + "name": { + "en": "Statistics Portugal (INE)", + "zh": "葡萄牙国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.ine.pt/xportal/xmain?xpid=INE&xpgid=ine_base_dados", + "has_api": true, + "file_path": "countries/europe/portugal/portugal-ine.json", + "geographic_scope": "national" + }, + { + "id": "romania-bnr", + "name": { + "en": "National Bank of Romania (BNR)", + "zh": "罗马尼亚国家银行" + }, + "authority_level": "government", + "data_url": "https://www.bnr.ro/Statistics-702.aspx", + "has_api": true, + "file_path": "countries/europe/romania/romania-bnr.json", + "geographic_scope": "national" + }, + { + "id": "romania-ins", + "name": { + "en": "National Institute of Statistics (Romania)", + "zh": "罗马尼亚国家统计局" + }, + "authority_level": "government", + "data_url": "https://insse.ro/cms/en/statistici-2", + "has_api": true, + "file_path": "countries/europe/romania/romania-ins.json", + "geographic_scope": "national" + }, + { + "id": "russia-rosstat", + "name": { + "en": "Federal State Statistics Service (Rosstat)", + "zh": "俄罗斯联邦统计局", + "native": "Федеральная служба государственной статистики (Росстат)" + }, + "authority_level": "government", + "data_url": "https://rosstat.gov.ru/statistics", + "has_api": true, + "file_path": "countries/europe/russia/russia-rosstat.json", + "geographic_scope": "national" + }, + { + "id": "slovakia-susr", + "name": { + "en": "Statistical Office of the Slovak Republic (SUSR)", + "zh": "斯洛伐克共和国统计局" + }, + "authority_level": "government", + "data_url": "https://datacube.statistics.sk", + "has_api": false, + "file_path": "countries/europe/slovakia/slovakia-susr.json", + "geographic_scope": "national" + }, + { + "id": "slovenia-surs", + "name": { + "en": "Statistical Office of the Republic of Slovenia (SURS)", + "zh": "斯洛文尼亚共和国统计局" + }, + "authority_level": "government", + "data_url": "https://www.stat.si/StatWeb/en", + "has_api": true, + "file_path": "countries/europe/slovenia/slovenia-surs.json", + "geographic_scope": "national" + }, + { + "id": "spain-ine", + "name": { + "en": "National Statistics Institute of Spain", + "zh": "西班牙国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.ine.es/dyngs/INEbase/listaoperaciones.htm", + "has_api": true, + "file_path": "countries/europe/spain/spain-ine.json", + "geographic_scope": "national" + }, + { + "id": "sweden-scb", + "name": { + "en": "Statistics Sweden (SCB)", + "zh": "瑞典统计局" + }, + "authority_level": "government", + "data_url": "https://www.statistikdatabasen.scb.se", + "has_api": true, + "file_path": "countries/europe/sweden/sweden-scb.json", + "geographic_scope": "national" + }, + { + "id": "switzerland-fso", + "name": { + "en": "Swiss Federal Statistical Office (FSO)", + "zh": "瑞士联邦统计局", + "native": "Bundesamt für Statistik (BFS)" + }, + "authority_level": "government", + "data_url": "https://www.bfs.admin.ch/bfs/en/home/statistics.html", + "has_api": true, + "file_path": "countries/europe/switzerland/switzerland-fso.json", + "geographic_scope": "national" + }, + { + "id": "turkey-tuik", + "name": { + "en": "Turkish Statistical Institute (TurkStat)", + "zh": "土耳其统计局", + "native": "Türkiye İstatistik Kurumu (TÜİK)" + }, + "authority_level": "government", + "data_url": "https://data.tuik.gov.tr", + "has_api": true, + "file_path": "countries/europe/turkey/turkey-tuik.json", + "geographic_scope": "national" + }, + { + "id": "uk-boe", + "name": { + "en": "Bank of England Statistical Interactive Database", + "zh": "英格兰银行统计数据库" + }, + "authority_level": "government", + "data_url": "https://www.bankofengland.co.uk/boeapps/database/", + "has_api": false, + "file_path": "countries/europe/uk/bank-of-england.json", + "geographic_scope": "national" + }, + { + "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", + "geographic_scope": "national" + }, + { + "id": "uk-met-office", + "name": { + "en": "UK Met Office", + "zh": "英国气象局" + }, + "authority_level": "government", + "data_url": "https://www.metoffice.gov.uk/research/climate/maps-and-data", + "has_api": true, + "file_path": "countries/europe/uk/uk-met-office.json", + "geographic_scope": "national" + }, + { + "id": "uk-ons-cpi-rpi", + "name": { + "en": "UK Office for National Statistics - Consumer Price Index and Retail Prices Index", + "zh": "英国国家统计局 - 消费者价格指数和零售价格指数" + }, + "authority_level": "government", + "data_url": "https://www.ons.gov.uk/economy/inflationandpriceindices", + "has_api": false, + "file_path": "countries/europe/uk-ons-cpi-rpi.json", + "geographic_scope": "national" + }, + { + "id": "aafc", + "name": { + "en": "Agriculture and Agri-Food Canada", + "zh": "加拿大农业与农业食品部", + "native": "Agriculture et Agroalimentaire Canada" + }, + "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": "canada-boc", + "name": { + "en": "Bank of Canada", + "zh": "加拿大银行", + "native": "Banque du Canada" + }, + "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": "canada-cihi", + "name": { + "en": "Canadian Institute for Health Information", + "zh": "加拿大健康信息研究所", + "native": "Institut canadien d'information sur la santé" + }, + "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": "canada-cer", + "name": { + "en": "Canada Energy Regulator", + "zh": "加拿大能源监管局", + "native": "Régie de l'énergie du Canada" + }, + "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": "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": "mx-banxico", + "name": { + "en": "Bank of Mexico Economic Information System", + "zh": "墨西哥银行经济信息系统", + "native": "Sistema de Información Económica - Banco de México" + }, + "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": "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" + }, + { + "id": "mexico-inegi", + "name": { + "en": "National Institute of Statistics and Geography (INEGI)", + "zh": "墨西哥国家统计和地理研究所", + "native": "Instituto Nacional de Estadística y Geografía (INEGI)" + }, + "authority_level": "government", + "data_url": "https://www.inegi.org.mx/datos/", + "has_api": true, + "file_path": "countries/north-america/mexico/mexico-inegi.json", + "geographic_scope": "national" + }, + { + "id": "usa-eia", + "name": { + "en": "U.S. Energy Information Administration", + "zh": "美国能源信息署" + }, + "authority_level": "government", + "data_url": "https://www.eia.gov", + "has_api": true, + "file_path": "countries/north-america/usa/eia.json", + "geographic_scope": "national" + }, + { + "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, + "file_path": "countries/north-america/usa/noaa-cdo.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" + }, + { + "id": "us-bls", + "name": { + "en": "Bureau of Labor Statistics", + "zh": "劳工统计局" + }, + "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": "us-cdc", + "name": { + "en": "Centers for Disease Control and Prevention", + "zh": "美国疾病控制与预防中心" + }, + "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": "us-census", + "name": { + "en": "U.S. Census Bureau", + "zh": "美国人口普查局" + }, + "authority_level": "government", + "data_url": "https://data.census.gov", + "has_api": true, + "file_path": "countries/north-america/usa/us-census.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": "us-federalreserve", + "name": { + "en": "Federal Reserve Board", + "zh": "美联储理事会" + }, + "authority_level": "government", + "data_url": "https://www.federalreserve.gov/data.htm", + "has_api": false, + "file_path": "countries/north-america/usa/us-federalreserve.json", + "geographic_scope": "national" + }, + { + "id": "us-treasury", + "name": { + "en": "U.S. Department of the Treasury", + "zh": "美国财政部" + }, + "authority_level": "government", + "data_url": "https://fiscaldata.treasury.gov", + "has_api": true, + "file_path": "countries/north-america/usa/us-treasury.json", + "geographic_scope": "national" + }, + { + "id": "usaid-ddl", + "name": { + "en": "USAID Development Data Library", + "zh": "美国国际开发署发展数据库" + }, + "authority_level": "government", + "data_url": "https://data.usaid.gov", + "has_api": true, + "file_path": "countries/north-america/usa/usaid-ddl.json", + "geographic_scope": "global" + }, + { + "id": "usda-fas", + "name": { + "en": "USDA Foreign Agricultural Service", + "zh": "美国农业部对外农业局" + }, + "authority_level": "government", + "data_url": "https://apps.fas.usda.gov/psdonline/app/index.html", + "has_api": true, + "file_path": "countries/north-america/usa/usda-fas.json", + "geographic_scope": "national" + }, + { + "id": "usgs-earthexplorer", + "name": { + "en": "USGS EarthExplorer", + "zh": "美国地质调查局地球探索者" + }, + "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": "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": "aus-aihw", + "name": { + "en": "Australian Institute of Health and Welfare", + "zh": "澳大利亚健康与福利研究所" + }, + "authority_level": "government", + "data_url": "https://www.aihw.gov.au/", + "has_api": true, + "file_path": "countries/oceania/australia/aihw.json", + "geographic_scope": "national" + }, + { + "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": "nz-stats", + "name": { + "en": "Statistics New Zealand (Stats NZ)", + "zh": "新西兰统计局" + }, + "authority_level": "government", + "data_url": "https://infoshare.stats.govt.nz", + "has_api": false, + "file_path": "countries/oceania/new-zealand/nz-stats.json", + "geographic_scope": "national" + }, + { + "id": "argentina-indec", + "name": { + "en": "National Institute of Statistics and Censuses (INDEC)", + "zh": "阿根廷国家统计与普查局" + }, + "authority_level": "government", + "data_url": "https://www.indec.gob.ar/indec/web/Nivel3-Tema-3-35", + "has_api": true, + "file_path": "countries/south-america/argentina/argentina-indec.json", + "geographic_scope": "national" + }, + { + "id": "brazil-bcb", + "name": { + "en": "Central Bank of Brazil", + "zh": "巴西中央银行", + "native": "Banco Central do Brasil" + }, + "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": "brazil-mapa", + "name": { + "en": "Brazil Ministry of Agriculture and Livestock", + "zh": "巴西农业和畜牧部" + }, + "authority_level": "government", + "data_url": "https://indicadores.agricultura.gov.br/agrostat/index.htm", + "has_api": false, + "file_path": "countries/south-america/brazil/brazil-mapa.json", + "geographic_scope": "national" + }, + { + "id": "brazil-mdic-secex", + "name": { + "en": "Brazil Ministry of Development, Industry, Commerce and Services - Foreign Trade Secretariat", + "zh": "巴西发展、工业、商业和服务部外贸秘书处" + }, + "authority_level": "government", + "data_url": "https://comexstat.mdic.gov.br/en/home", + "has_api": true, + "file_path": "countries/south-america/brazil/brazil-mdic-secex.json", + "geographic_scope": "national" + }, + { + "id": "brazil-conab", + "name": { + "en": "National Supply Company (CONAB)", + "zh": "巴西国家商品供应公司" + }, + "authority_level": "government", + "data_url": "https://www.gov.br/conab/pt-br/atuacao/informacoes-agropecuarias/safras/safra-de-cafe", + "has_api": false, + "file_path": "countries/south-america/brazil-conab.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": "chile-ine", + "name": { + "en": "National Statistics Institute of Chile (INE)", + "zh": "智利国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.ine.gob.cl/estadisticas", + "has_api": false, + "file_path": "countries/south-america/chile/chile-ine.json", + "geographic_scope": "national" + }, + { + "id": "colombia-dane", + "name": { + "en": "National Administrative Department of Statistics (DANE)", + "zh": "哥伦比亚国家统计局", + "native": "Departamento Administrativo Nacional de Estadística (DANE)" + }, + "authority_level": "government", + "data_url": "https://www.dane.gov.co/index.php/estadisticas-por-tema", + "has_api": true, + "file_path": "countries/south-america/colombia/colombia-dane.json", + "geographic_scope": "national" + }, + { + "id": "peru-inei", + "name": { + "en": "National Institute of Statistics and Informatics of Peru (INEI)", + "zh": "秘鲁国家统计和信息学研究所" + }, + "authority_level": "government", + "data_url": "https://www.inei.gob.pe/estadisticas/", + "has_api": false, + "file_path": "countries/south-america/peru/peru-inei.json", + "geographic_scope": "national" + }, + { + "id": "usgs", + "name": { + "en": "U.S. Geological Survey (USGS)", + "zh": "美国地质调查局" + }, + "authority_level": "government", + "data_url": "https://www.usgs.gov/products/data", + "has_api": true, + "file_path": "countries/us/geology/usgs.json", + "geographic_scope": "national" + }, + { + "id": "india-meity", + "name": { + "en": "Ministry of Electronics and Information Technology of India", + "zh": "印度电子和信息技术部" + }, + "authority_level": "government", + "data_url": "https://www.meity.gov.in/content/annual-report", + "has_api": false, + "file_path": "india/technology/india-meity.json", + "geographic_scope": "national" + }, + { + "id": "us-hud", + "name": { + "en": "U.S. Department of Housing and Urban Development", + "zh": "美国住房和城市发展部", + "native": "U.S. Department of Housing and Urban Development" + }, + "authority_level": "government", + "data_url": "https://www.huduser.gov/portal/datasets/", + "has_api": true, + "file_path": "international/construction/us-hud.json", + "geographic_scope": "national" + }, + { + "id": "nasa-earthdata", + "name": { + "en": "NASA Earthdata", + "zh": "NASA地球数据" + }, + "authority_level": "government", + "data_url": "https://www.earthdata.nasa.gov", + "has_api": true, + "file_path": "international/earth-science/nasa-earthdata.json", + "geographic_scope": "global" + }, + { + "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, + "file_path": "international/economics/ecb-sdw.json", + "geographic_scope": "regional" + }, + { + "id": "bea-international-trade", + "name": { + "en": "BEA Interactive Data - International Trade", + "zh": "美国经济分析局国际贸易互动数据" + }, + "authority_level": "government", + "data_url": "https://apps.bea.gov/iTable/index_ita.cfm", + "has_api": true, + "file_path": "international/trade/bea-international-trade.json", + "geographic_scope": "national" + }, + { + "id": "japan-customs", + "name": { + "en": "Japan Customs Trade Statistics", + "zh": "日本财务省贸易统计", + "native": "貿易統計" + }, + "authority_level": "government", + "data_url": "https://www.customs.go.jp/toukei/info/index_e.htm", + "has_api": true, + "file_path": "japan/trade/japan-customs.json", + "geographic_scope": "national" + }, + { + "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", + "geographic_scope": "national" + }, + { + "id": "singapore-dos", + "name": { + "en": "Department of Statistics Singapore", + "zh": "新加坡统计局" + }, + "authority_level": "government", + "data_url": "https://tablebuilder.singstat.gov.sg", + "has_api": true, + "file_path": "singapore/national/singapore-dos.json", + "geographic_scope": "national" + }, + { + "id": "thailand-nso", + "name": { + "en": "National Statistical Office of Thailand", + "zh": "泰国国家统计局", + "native": "สำนักงานสถิติแห่งชาติ" + }, + "authority_level": "government", + "data_url": "https://www.nso.go.th/nsoweb/officialStatistics", + "has_api": false, + "file_path": "thailand/national/thailand-nso.json", + "geographic_scope": "national" + }, + { + "id": "us-fred", + "name": { + "en": "FRED - Federal Reserve Economic Data", + "zh": "美联储经济数据库" + }, + "authority_level": "government", + "data_url": "https://fred.stlouisfed.org", + "has_api": true, + "file_path": "us/economics/us-fred.json", + "geographic_scope": "national" + }, + { + "id": "sec-edgar", + "name": { + "en": "SEC EDGAR", + "zh": "美国证券交易委员会EDGAR系统" + }, + "authority_level": "government", + "data_url": "https://www.sec.gov/cgi-bin/browse-edgar?action=getcompany", + "has_api": true, + "file_path": "usa/finance/sec-edgar.json", + "geographic_scope": "national" + } + ], + "other": [ + { + "id": "china-csdc", + "name": { + "en": "China Securities Depository and Clearing Corporation", + "zh": "中国证券登记结算有限公司" + }, + "authority_level": "other", + "data_url": "https://www.chinaclear.cn/zdjs/tjyb/center_tjbg.shtml", + "has_api": false, + "file_path": "china/china-csdc.json", + "geographic_scope": "national" + }, + { + "id": "china-sac", + "name": { + "en": "Securities Association of China", + "zh": "中国证券业协会" + }, + "authority_level": "other", + "data_url": "https://www.sac.net.cn/hysj/", + "has_api": false, + "file_path": "china/china-sac.json", + "geographic_scope": "national" + }, + { + "id": "china-ccia", + "name": { + "en": "China Construction Industry Association", + "zh": "中国建筑业协会" + }, + "authority_level": "other", + "data_url": "http://www.zgjzy.org.cn/newsList/11/1.html", + "has_api": false, + "file_path": "china/construction/china-ccia.json", + "geographic_scope": "national" + }, + { + "id": "china-cfeed", + "name": { + "en": "China Feed Industry Association", + "zh": "中国饲料工业协会" + }, + "authority_level": "other", + "data_url": "https://www.chinafeed.org.cn/hyfx/", + "has_api": false, + "file_path": "china/economy/agriculture/china-cfeed.json", + "geographic_scope": "national" + }, + { + "id": "china-acfic", + "name": { + "en": "All-China Federation of Industry and Commerce", + "zh": "中华全国工商业联合会" + }, + "authority_level": "other", + "data_url": "https://www.acfic.org.cn/myjjsj/", + "has_api": false, + "file_path": "china/economy/china-acfic.json", + "geographic_scope": "national" + }, + { + "id": "china-cada", + "name": { + "en": "China Automobile Dealers Association", + "zh": "中国汽车流通协会" + }, + "authority_level": "other", + "data_url": "http://data.cada.cn/main/overview.do", + "has_api": false, + "file_path": "china/economy/china-cada.json", + "geographic_scope": "national" + }, + { + "id": "china-cansi", + "name": { + "en": "China Association of the National Shipbuilding Industry", + "zh": "中国船舶工业行业协会" + }, + "authority_level": "other", + "data_url": "https://www.cansi.org.cn/cms/document/show/43.html", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cansi.json", + "geographic_scope": "national" + }, + { + "id": "china-caq", + "name": { + "en": "China Association for Quality", + "zh": "中国质量协会" + }, + "authority_level": "other", + "data_url": "https://www.caq.org.cn/html/zltj", + "has_api": false, + "file_path": "china/economy/industry_associations/china-caq.json", + "geographic_scope": "national" + }, + { + "id": "china-cbea", + "name": { + "en": "China Beverage Association", + "zh": "中国饮料工业协会" + }, + "authority_level": "other", + "data_url": "https://www.chinabeverage.org", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cbea.json", + "geographic_scope": "national" + }, + { + "id": "china-cbmf", + "name": { + "en": "China Building Materials Federation", + "zh": "中国建筑材料联合会" + }, + "authority_level": "other", + "data_url": "https://www.cbmf.org/yxjc/", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cbmf.json", + "geographic_scope": "national" + }, + { + "id": "china-ccfa", + "name": { + "en": "China Chemical Fiber Industry Association", + "zh": "中国化学纤维工业协会" + }, + "authority_level": "other", + "data_url": "https://www.ccfa.com.cn/19/index.html", + "has_api": false, + "file_path": "china/economy/industry_associations/china-ccfa.json", + "geographic_scope": "national" + }, + { + "id": "china-cheaa", + "name": { + "en": "China Household Electrical Appliances Association", + "zh": "中国家用电器协会" + }, + "authority_level": "other", + "data_url": "https://www.cheaa.org/channels/116.html", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cheaa.json", + "geographic_scope": "national" + }, + { + "id": "china-cnea", + "name": { + "en": "China Nuclear Energy Association", + "zh": "中国核能行业协会" + }, + "authority_level": "other", + "data_url": "https://www.china-nea.cn/", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cnea.json", + "geographic_scope": "national" + }, + { + "id": "china-cria", + "name": { + "en": "China Rubber Industry Association", + "zh": "中国橡胶工业协会" + }, + "authority_level": "other", + "data_url": "https://www.cria.org.cn/c/id/1760910256413655041", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cria.json", + "geographic_scope": "national" + }, + { + "id": "china-ctic", + "name": { + "en": "China Textile Information Center", + "zh": "中国纺织信息中心" + }, + "authority_level": "other", + "data_url": "https://www.ctic.org.cn", + "has_api": false, + "file_path": "china/economy/industry_associations/china-ctic.json", + "geographic_scope": "national" + }, + { + "id": "china-gas-association", + "name": { + "en": "China Gas Association", + "zh": "中国燃气协会" + }, + "authority_level": "other", + "data_url": "https://www.chinagas.org.cn", + "has_api": false, + "file_path": "china/economy/industry_associations/china-gas-association.json", + "geographic_scope": "national" + }, + { + "id": "china-cgcc", + "name": { + "en": "China General Chamber of Commerce", + "zh": "中国商业联合会" + }, + "authority_level": "other", + "data_url": "https://www.cgcc.org.cn/hyfz/zglsyfzzs/", + "has_api": false, + "file_path": "china/economy/market/china-cgcc.json", + "geographic_scope": "national" + }, + { + "id": "china-cccme", + "name": { + "en": "China Chamber of Commerce for Import and Export of Machinery and Electronic Products", + "zh": "中国机电产品进出口商会" + }, + "authority_level": "other", + "data_url": "https://www.cccme.org.cn/shop/cccme-stat/index.aspx", + "has_api": false, + "file_path": "china/economy/trade/china-cccme.json", + "geographic_scope": "national" + }, + { + "id": "china-cflp", + "name": { + "en": "China Federation of Logistics and Purchasing", + "zh": "中国物流与采购联合会" + }, + "authority_level": "other", + "data_url": "https://www.chinawuliu.com.cn/lhhzq/", + "has_api": false, + "file_path": "china/economy/trade/china-cflp.json", + "geographic_scope": "national" + }, + { + "id": "china-chinca", + "name": { + "en": "China International Contractors Association", + "zh": "中国对外承包工程商会" + }, + "authority_level": "other", + "data_url": "https://www.chinca.org/CICA/info/20-1/index.html", + "has_api": false, + "file_path": "china/economy/trade/china-chinca.json", + "geographic_scope": "national" + }, + { + "id": "china-csrc-futures", + "name": { + "en": "China Futures Association", + "zh": "中国期货业协会" + }, + "authority_level": "other", + "data_url": "https://www.cfachina.org/servicesupport/researchandpublishin/statisticalsdata/", + "has_api": false, + "file_path": "china/finance/china-csrc-futures.json", + "geographic_scope": "national" + }, + { + "id": "china-iamac", + "name": { + "en": "China Association of Banking and Insurance Asset Management", + "zh": "中国银行保险资产管理业协会" + }, + "authority_level": "other", + "data_url": "https://www.iamac.org.cn", + "has_api": false, + "file_path": "china/finance/china-iamac.json", + "geographic_scope": "national" + }, + { + "id": "china-nifa", + "name": { + "en": "National Internet Finance Association of China", + "zh": "中国互联网金融协会" + }, + "authority_level": "other", + "data_url": "https://www.nifa.org.cn", + "has_api": false, + "file_path": "china/finance/china-nifa.json", + "geographic_scope": "national" + }, + { + "id": "china-payment-clearing", + "name": { + "en": "Payment & Clearing Association of China", + "zh": "中国支付清算协会" + }, + "authority_level": "other", + "data_url": "https://www.pcac.org.cn/eportal/ui?pageId=477883", + "has_api": false, + "file_path": "china/finance/china-payment-clearing.json", + "geographic_scope": "national" + }, + { + "id": "china-trustee-association", + "name": { + "en": "China Trustee Association", + "zh": "中国信托业协会" + }, + "authority_level": "other", + "data_url": "http://www.xtxh.net/xtyxh/hyyj/tjsj/index.html", + "has_api": false, + "file_path": "china/finance/china-trustee-association.json", + "geographic_scope": "national" + }, + { + "id": "china-acla", + "name": { + "en": "All China Lawyers Association", + "zh": "中华全国律师协会" + }, + "authority_level": "other", + "data_url": "https://www.acla.org.cn/acla/tjxx/", + "has_api": false, + "file_path": "china/governance/china-acla.json", + "geographic_scope": "national" + }, + { + "id": "china-cafiu", + "name": { + "en": "China Association for International Understanding", + "zh": "中国国际交流协会" + }, + "authority_level": "other", + "data_url": "https://www.cafiu.org.cn", + "has_api": false, + "file_path": "china/governance/china-cafiu.json", + "geographic_scope": "national" + }, + { + "id": "china-cfpa", + "name": { + "en": "China Fire Protection Association", + "zh": "中国消防协会" + }, + "authority_level": "other", + "data_url": "http://www.cfpa.cn", + "has_api": false, + "file_path": "china/governance/china-cfpa.json", + "geographic_scope": "national" + }, + { + "id": "china-cflac", + "name": { + "en": "China Federation of Literary and Art Circles", + "zh": "中国文学艺术界联合会" + }, + "authority_level": "other", + "data_url": "https://www.cflac.org.cn", + "has_api": false, + "file_path": "china/governance/culture/china-cflac.json", + "geographic_scope": "national" + }, + { + "id": "china-catcm", + "name": { + "en": "China Association of Traditional Chinese Medicine", + "zh": "中国中药协会" + }, + "authority_level": "other", + "data_url": "https://www.catcm.org.cn", + "has_api": false, + "file_path": "china/health/china-catcm.json", + "geographic_scope": "national" + }, + { + "id": "china-hospital-association", "name": { - "en": "Chinese Service Center for Scholarly Exchange", - "zh": "教育部留学服务中心" + "en": "Chinese Hospital Association", + "zh": "中国医院协会" }, - "authority_level": "government", - "data_url": "https://zwfw.cscse.edu.cn", + "authority_level": "other", + "data_url": "https://www.cha.org.cn", "has_api": false, - "file_path": "china/education/cscse.json", + "file_path": "china/health/china-hospital-association.json", "geographic_scope": "national" }, { - "id": "cdgdc", + "id": "china-phirda", "name": { - "en": "China Academic Degrees & Graduate Education Development Center", - "zh": "教育部学位与研究生教育发展中心" + "en": "China Pharmaceutical Innovation and Research Development Association", + "zh": "中国医药创新促进会" }, - "authority_level": "government", - "data_url": "https://www.chinadegrees.cn/", + "authority_level": "other", + "data_url": "https://www.phirda.com", "has_api": false, - "file_path": "china/education/higher_education/cdgdc.json", + "file_path": "china/health/china-phirda.json", "geographic_scope": "national" }, { - "id": "china-gaokao-chsi", + "id": "china-csia", "name": { - "en": "China Postgraduate Admissions Information Network", - "zh": "中国研究生招生信息网" + "en": "China Semiconductor Industry Association", + "zh": "中国半导体行业协会" }, - "authority_level": "government", - "data_url": "https://yz.chsi.com.cn/sch/", + "authority_level": "other", + "data_url": "https://web.csia.net.cn", "has_api": false, - "file_path": "china/education/higher_education/china-gaokao-chsi.json", + "file_path": "china/industry/china-csia.json", "geographic_scope": "national" }, { - "id": "china-moe-higher-education", + "id": "china-camet", "name": { - "en": "Ministry of Education of China - Higher Education Statistics", - "zh": "中华人民共和国教育部高等教育统计" + "en": "China Association of Metros (CAMET)", + "zh": "中国城市轨道交通协会" }, - "authority_level": "government", - "data_url": "http://www.moe.gov.cn/jyb_sjzl/sjzl_fztjgb/", + "authority_level": "other", + "data_url": "https://www.camet.org.cn", "has_api": false, - "file_path": "china/education/higher_education/china-moe-higher-education.json", + "file_path": "china/infrastructure/china-camet.json", "geographic_scope": "national" }, { - "id": "moe-china", + "id": "china-cata", "name": { - "en": "Ministry of Education of the People's Republic of China", - "zh": "中华人民共和国教育部" + "en": "China Air Transport Association", + "zh": "中国航空运输协会" }, - "authority_level": "government", - "data_url": "http://www.moe.gov.cn/jyb_xxgk/xxgk/neirong/tongji/", + "authority_level": "other", + "data_url": "https://www.cata.org.cn/NewsList.aspx?id=11", "has_api": false, - "file_path": "china/education/moe-china.json", + "file_path": "china/infrastructure/china-cata.json", "geographic_scope": "national" }, { - "id": "moe-gaokao", + "id": "china-crta", "name": { - "en": "Sunshine Gaokao Platform", - "zh": "阳光高考信息平台" + "en": "China Road Transport Association", + "zh": "中国道路运输协会" }, - "authority_level": "government", - "data_url": "https://gaokao.chsi.com.cn/", + "authority_level": "other", + "data_url": "https://www.crta.org.cn/news.html?id=42", "has_api": false, - "file_path": "china/education/moe-gaokao.json", + "file_path": "china/infrastructure/china-crta.json", "geographic_scope": "national" }, { - "id": "china-nfra", + "id": "china-ports-association", "name": { - "en": "National Financial Regulatory Administration", - "zh": "国家金融监督管理总局", - "native": "国家金融监督管理总局" + "en": "China Ports & Harbours Association", + "zh": "中国港口协会" }, - "authority_level": "government", - "data_url": "https://www.nfra.gov.cn/cn/view/pages/tongjishuju/tongjishuju.html", + "authority_level": "other", + "data_url": "http://www.port.org.cn", "has_api": false, - "file_path": "china/finance/banking/nfra.json", + "file_path": "china/infrastructure/china-ports-association.json", "geographic_scope": "national" }, { - "id": "china-pbc", + "id": "china-cast", "name": { - "en": "People's Bank of China", - "zh": "中国人民银行", - "native": "中国人民银行" + "en": "China Association for Science and Technology", + "zh": "中国科学技术协会" }, - "authority_level": "government", - "data_url": "http://www.pbc.gov.cn/diaochatongjisi/116219/index.html", + "authority_level": "other", + "data_url": "https://www.cast.org.cn/xw/", "has_api": false, - "file_path": "china/finance/banking/pbc.json", + "file_path": "china/research/china-cast.json", "geographic_scope": "national" }, { - "id": "china-csrc", + "id": "china-cace", "name": { - "en": "China Securities Regulatory Commission", - "zh": "中国证券监督管理委员会", - "native": "中国证券监督管理委员会" + "en": "China Association of Circular Economy", + "zh": "中国循环经济协会" }, - "authority_level": "government", - "data_url": "https://www.csrc.gov.cn/csrc/c100103/common_list.shtml", + "authority_level": "other", + "data_url": "https://www.chinacace.org/patents/cycle_economy_report/", "has_api": false, - "file_path": "china/finance/securities/csrc.json", + "file_path": "china/resources/environment/china-cace.json", "geographic_scope": "national" }, { - "id": "china-nbs", + "id": "china-cnesa", "name": { - "en": "National Bureau of Statistics of China", - "zh": "国家统计局", - "native": "国家统计局" + "en": "China Energy Storage Alliance", + "zh": "中关村储能产业技术联盟" }, - "authority_level": "government", - "data_url": "https://www.stats.gov.cn/sj/", - "has_api": true, - "file_path": "china/national/nbs.json", + "authority_level": "other", + "data_url": "https://www.cnesa.org", + "has_api": false, + "file_path": "china/resources/environment/china-cnesa.json", "geographic_scope": "national" }, { - "id": "china-miit-rare-earth", + "id": "china-crra", "name": { - "en": "MIIT Rare Earth Office - Rare Earth Industry Regulation and Production Quotas", - "zh": "工业和信息化部稀土办公室 - 稀土行业规范与生产配额" + "en": "China Association of Circular Economy", + "zh": "中国再生资源回收利用协会" }, - "authority_level": "government", - "data_url": "https://www.miit.gov.cn/jgsj/ycls/xt/index.html", + "authority_level": "other", + "data_url": "https://www.crra.org.cn", "has_api": false, - "file_path": "china/resources/mineral/china-miit-rare-earth.json", + "file_path": "china/resources/environment/china-crra.json", "geographic_scope": "national" }, { - "id": "china-mnr-minerals", + "id": "china-cnia", "name": { - "en": "Ministry of Natural Resources - Mineral Resources Data", - "zh": "自然资源部矿产资源数据" + "en": "China Nonferrous Metals Industry Association", + "zh": "中国有色金属工业协会" }, - "authority_level": "government", - "data_url": "https://www.mnr.gov.cn/sj/sjfw/kc_19263/", + "authority_level": "other", + "data_url": "https://www.chinania.org.cn/html/hangyetongji/chanyeshuju/", "has_api": false, - "file_path": "china/resources/mineral/china-mnr-minerals.json", + "file_path": "china/resources/mineral/china-cnia.json", "geographic_scope": "national" }, { - "id": "china-national-data-bureau", + "id": "china-automation-association", "name": { - "en": "National Data Administration of China", - "zh": "国家数据局" + "en": "Chinese Association of Automation", + "zh": "中国自动化学会" }, - "authority_level": "government", - "data_url": "https://sjdj.nda.gov.cn/", + "authority_level": "other", + "data_url": "https://www.caa.org.cn/", "has_api": false, - "file_path": "china/technology/digital_economy/china-national-data-bureau.json", + "file_path": "china/technology/industry_associations/china-automation-association.json", "geographic_scope": "national" }, { - "id": "china-cnipa-patents", + "id": "china-caam", "name": { - "en": "China National Intellectual Property Administration - Patent Statistics", - "zh": "国家知识产权局专利统计" + "en": "China Association of Automobile Manufacturers", + "zh": "中国汽车工业协会" }, - "authority_level": "government", - "data_url": "https://www.cnipa.gov.cn/col/col61/index.html", + "authority_level": "other", + "data_url": "http://www.caam.org.cn/chn/4/cate_39/index.html", "has_api": false, - "file_path": "china/technology/intellectual_property/china-cnipa-patents.json", + "file_path": "china/technology/industry_associations/china-caam.json", "geographic_scope": "national" }, { - "id": "china-most-infrastructure", + "id": "china-caamm", "name": { - "en": "National Platform for Research Infrastructure and Large-scale Scientific Instruments", - "zh": "重大科研基础设施和大型科研仪器国家网络管理平台" + "en": "China Association of Agricultural Machinery Manufacturers", + "zh": "中国农业机械工业协会" }, - "authority_level": "government", - "data_url": "https://nrii.org.cn/", + "authority_level": "other", + "data_url": "http://www.caamm.org.cn/member/qytj.jspx", "has_api": false, - "file_path": "china/technology/sci_resources/china-most-infrastructure.json", + "file_path": "china/technology/industry_associations/china-caamm.json", "geographic_scope": "national" }, { - "id": "china-most-rnd", + "id": "china-cec", "name": { - "en": "National Key R&D Program of China - Industrial Software and 16 Key Special Projects", - "zh": "国家重点研发计划 - 工业软件专项及16个重点专项" + "en": "China Electricity Council", + "zh": "中国电力企业联合会" }, - "authority_level": "government", - "data_url": "https://service.most.gov.cn/", + "authority_level": "other", + "data_url": "https://www.cec.org.cn/detail/index.html?3-302929", "has_api": false, - "file_path": "china/technology/sci_resources/china-most-rnd.json", + "file_path": "china/technology/industry_associations/china-cec.json", "geographic_scope": "national" }, { - "id": "china-sac-standards", + "id": "china-cecc", "name": { - "en": "Standardization Administration of China (SAC)", - "zh": "国家标准化管理委员会" + "en": "China Electronics Chamber of Commerce", + "zh": "中国电子商会" }, - "authority_level": "government", - "data_url": "https://std.samr.gov.cn/", + "authority_level": "other", + "data_url": "http://www.cecc.org.cn/hangye/", "has_api": false, - "file_path": "china/technology/standards/china-sac-standards.json", + "file_path": "china/technology/industry_associations/china-cecc.json", "geographic_scope": "national" }, { - "id": "china-miit", + "id": "china-cemia", "name": { - "en": "Ministry of Industry and Information Technology of the People's Republic of China", - "zh": "中华人民共和国工业和信息化部" + "en": "China Electronic Materials Industry Association", + "zh": "中国电子材料行业协会" }, - "authority_level": "government", - "data_url": "https://www.miit.gov.cn/gxsj/index.html", + "authority_level": "other", + "data_url": "http://www.cemia.org.cn", "has_api": false, - "file_path": "china/technology/telecommunications/china-miit.json", + "file_path": "china/technology/industry_associations/china-cemia.json", "geographic_scope": "national" }, { - "id": "india-dgcis", + "id": "china-ciia", "name": { - "en": "Directorate General of Commercial Intelligence and Statistics", - "zh": "印度商业情报与统计总局" + "en": "China Information Association", + "zh": "中国信息协会" }, - "authority_level": "government", - "data_url": "https://www.commerce.gov.in/trade-statistics/", + "authority_level": "other", + "data_url": "https://www.ciia.org.cn", "has_api": false, - "file_path": "countries/asia/india/india-dgcis.json", + "file_path": "china/technology/industry_associations/china-ciia.json", "geographic_scope": "national" }, { - "id": "boj-statistics", + "id": "china-cima", "name": { - "en": "Bank of Japan Statistics", - "zh": "日本银行统计数据", - "native": "日本銀行統計" + "en": "China Instrumentation and Measurement Society", + "zh": "中国仪器仪表行业协会" }, - "authority_level": "government", - "data_url": "https://www.boj.or.jp/en/statistics/index.htm", + "authority_level": "other", + "data_url": "http://www.cima.org.cn", "has_api": false, - "file_path": "countries/asia/japan/boj-statistics.json", + "file_path": "china/technology/industry_associations/china-cima.json", "geographic_scope": "national" }, { - "id": "korea-bok", + "id": "china-cisa", "name": { - "en": "Bank of Korea", - "zh": "韩国银行", - "native": "한국은행" + "en": "China Iron and Steel Association", + "zh": "中国钢铁工业协会" }, - "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", + "authority_level": "other", + "data_url": "https://www.chinaisa.org.cn/gxportal/xfgl/portal/index.html", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cisa.json", "geographic_scope": "national" }, { - "id": "uk-boe", + "id": "china-cnfia", "name": { - "en": "Bank of England Statistical Interactive Database", - "zh": "英格兰银行统计数据库" + "en": "China National Food Industry Association", + "zh": "中国食品工业协会" }, - "authority_level": "government", - "data_url": "https://www.bankofengland.co.uk/boeapps/database/", + "authority_level": "other", + "data_url": "https://www.cnfia.cn/archives/category/hangyetongji", "has_api": false, - "file_path": "countries/europe/uk/bank-of-england.json", + "file_path": "china/technology/industry_associations/china-cnfia.json", "geographic_scope": "national" }, { - "id": "uk-data-gov", + "id": "china-cntac", "name": { - "en": "Data.gov.uk", - "zh": "英国政府开放数据平台" + "en": "China National Textile and Apparel Council", + "zh": "中国纺织工业联合会" }, - "authority_level": "government", - "data_url": "https://www.data.gov.uk", - "has_api": true, - "file_path": "countries/europe/uk/uk-data-gov.json", + "authority_level": "other", + "data_url": "https://www.cntac.org.cn/jinghua", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cntac.json", "geographic_scope": "national" }, { - "id": "aafc", + "id": "china-cpcif", "name": { - "en": "Agriculture and Agri-Food Canada", - "zh": "加拿大农业与农业食品部", - "native": "Agriculture et Agroalimentaire Canada" + "en": "China Petroleum and Chemical Industry Federation", + "zh": "中国石油和化学工业联合会" }, - "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", + "authority_level": "other", + "data_url": "http://www.cpcif.org.cn/list/stats", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cpcif.json", "geographic_scope": "national" }, { - "id": "canada-boc", + "id": "china-cpia", "name": { - "en": "Bank of Canada", - "zh": "加拿大银行", - "native": "Banque du Canada" + "en": "China Photovoltaic Industry Association", + "zh": "中国光伏行业协会" }, - "authority_level": "government", - "data_url": "https://www.bankofcanada.ca/rates/", - "has_api": true, - "file_path": "countries/north-america/canada/canada-boc.json", + "authority_level": "other", + "data_url": "https://www.chinapv.org.cn/StaticPage/association_page1.html", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cpia.json", "geographic_scope": "national" }, { - "id": "canada-cihi", + "id": "china-csre", "name": { - "en": "Canadian Institute for Health Information", - "zh": "加拿大健康信息研究所", - "native": "Institut canadien d'information sur la santé" + "en": "China Society of Rare Earths", + "zh": "中国稀土学会" }, - "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", + "authority_level": "other", + "data_url": "http://www.cs-re.org.cn/c50", + "has_api": false, + "file_path": "china/technology/industry_associations/china-csre.json", "geographic_scope": "national" }, { - "id": "canada-cer", + "id": "china-cwea", "name": { - "en": "Canada Energy Regulator", - "zh": "加拿大能源监管局", - "native": "Régie de l'énergie du Canada" + "en": "Chinese Wind Energy Association", + "zh": "中国可再生能源学会风能专业委员会" }, - "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", + "authority_level": "other", + "data_url": "http://www.cwea.org.cn/news_lastest.html", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cwea.json", "geographic_scope": "national" }, { - "id": "canada-statcan", + "id": "china-isc", "name": { - "en": "Statistics Canada", - "zh": "加拿大统计局", - "native": "Statistique Canada" + "en": "Internet Society of China", + "zh": "中国互联网协会" }, - "authority_level": "government", - "data_url": "https://www.statcan.gc.ca/en/start", - "has_api": true, - "file_path": "countries/north-america/canada/statcan.json", + "authority_level": "other", + "data_url": "https://www.isc.org.cn/yanjiu/index.html", + "has_api": false, + "file_path": "china/technology/industry_associations/china-isc.json", "geographic_scope": "national" }, { - "id": "mx-banxico", + "id": "china-csa", "name": { - "en": "Bank of Mexico Economic Information System", - "zh": "墨西哥银行经济信息系统", - "native": "Sistema de Información Económica - Banco de México" + "en": "China Association for Standardization", + "zh": "中国标准化协会" }, - "authority_level": "government", - "data_url": "https://www.banxico.org.mx", - "has_api": true, - "file_path": "countries/north-america/mexico/banxico.json", + "authority_level": "other", + "data_url": "https://www.china-cas.org", + "has_api": false, + "file_path": "china/technology/standards/china-csa.json", "geographic_scope": "national" }, { - "id": "mexico-coneval", + "id": "china-ccsa", "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 Communication Standards Association", + "zh": "中国通信标准化协会" }, - "authority_level": "government", - "data_url": "https://www.coneval.org.mx", + "authority_level": "other", + "data_url": "https://www.ccsa.org.cn/webadmin/", "has_api": false, - "file_path": "countries/north-america/mexico/coneval.json", + "file_path": "china/technology/telecommunications/china-ccsa.json", "geographic_scope": "national" }, { - "id": "usa-census-bureau", + "id": "akshare", "name": { - "en": "United States Census Bureau", - "zh": "美国人口普查局" + "en": "AkShare", + "zh": "AkShare" }, - "authority_level": "government", - "data_url": "https://www.census.gov", + "authority_level": "other", + "data_url": "https://github.com/akfamily/akshare", "has_api": true, - "file_path": "countries/north-america/usa/census-bureau.json", + "file_path": "sectors/K-finance-insurance/akshare.json", + "geographic_scope": "global" + } + ], + "market": [ + { + "id": "china-beike-research", + "name": { + "en": "Beike Research Institute", + "zh": "贝壳研究院" + }, + "authority_level": "market", + "data_url": "https://research.ke.com", + "has_api": false, + "file_path": "china/construction/china-beike-research.json", "geographic_scope": "national" }, { - "id": "usa-eia", + "id": "china-creprice", "name": { - "en": "U.S. Energy Information Administration", - "zh": "美国能源信息署" + "en": "China Real Estate Price Information Network", + "zh": "中国房价行情网" }, - "authority_level": "government", - "data_url": "https://www.eia.gov", - "has_api": true, - "file_path": "countries/north-america/usa/eia.json", + "authority_level": "market", + "data_url": "http://www.creprice.cn", + "has_api": false, + "file_path": "china/construction/china-creprice.json", "geographic_scope": "national" }, { - "id": "noaa-cdo", + "id": "china-cric", "name": { - "en": "NOAA Climate Data Online (CDO)", - "zh": "NOAA气候数据在线系统" + "en": "China Real Estate Information Corporation (CRIC)", + "zh": "克而瑞研究中心(CRIC)" }, - "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" + "authority_level": "market", + "data_url": "https://www.cric.com/newhouse/", + "has_api": false, + "file_path": "china/construction/china-cric.json", + "geographic_scope": "national" }, { - "id": "us-bea", + "id": "china-fangjia", "name": { - "en": "Bureau of Economic Analysis", - "zh": "美国经济分析局" + "en": "Fangjia.com - China Housing Price Network", + "zh": "房价网(fangjia.com)" }, - "authority_level": "government", - "data_url": "https://www.bea.gov/data", - "has_api": true, - "file_path": "countries/north-america/usa/us-bea.json", + "authority_level": "market", + "data_url": "https://www.fangjia.com", + "has_api": false, + "file_path": "china/construction/china-fangjia.json", "geographic_scope": "national" }, { - "id": "us-bls", + "id": "china-cppia", "name": { - "en": "Bureau of Labor Statistics", - "zh": "美国劳工统计局" + "en": "China Plastics Processing Industry Association", + "zh": "中国塑料加工工业协会" }, - "authority_level": "government", - "data_url": "https://www.bls.gov/data/", - "has_api": true, - "file_path": "countries/north-america/usa/us-bls.json", + "authority_level": "market", + "data_url": "http://www.cppia.com.cn", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cppia.json", "geographic_scope": "national" }, { - "id": "us-cdc", + "id": "china-furniture-association", "name": { - "en": "CDC Data & Statistics", - "zh": "美国疾控中心数据与统计" + "en": "China National Furniture Association", + "zh": "中国家具协会" }, - "authority_level": "government", - "data_url": "https://data.cdc.gov/", - "has_api": true, - "file_path": "countries/north-america/usa/us-cdc.json", + "authority_level": "market", + "data_url": "https://www.cnfa.com.cn", + "has_api": false, + "file_path": "china/economy/industry_associations/china-furniture-association.json", "geographic_scope": "national" }, { - "id": "us-data-gov", + "id": "china-light-industry-council", "name": { - "en": "Data.gov", - "zh": "美国政府开放数据平台" + "en": "China National Light Industry Council", + "zh": "中国轻工业联合会" }, - "authority_level": "government", - "data_url": "https://catalog.data.gov/dataset", + "authority_level": "market", + "data_url": "http://www.cnlic.org.cn", "has_api": false, - "file_path": "countries/north-america/usa/us-data-gov.json", + "file_path": "china/economy/industry_associations/china-light-industry-council.json", "geographic_scope": "national" }, { - "id": "usgs-earthexplorer", + "id": "china-tea-marketing-association", "name": { - "en": "USGS EarthExplorer", - "zh": "美国地质调查局地球探索者" + "en": "China Tea Marketing Association", + "zh": "中国茶叶流通协会" }, - "authority_level": "government", - "data_url": "https://earthexplorer.usgs.gov/", - "has_api": true, - "file_path": "countries/north-america/usa/usgs-earthexplorer.json", - "geographic_scope": "global" + "authority_level": "market", + "data_url": "https://www.ctma.com.cn", + "has_api": false, + "file_path": "china/economy/industry_associations/china-tea-marketing-association.json", + "geographic_scope": "national" }, { - "id": "australia-abs", + "id": "china-iresearch", "name": { - "en": "Australian Bureau of Statistics", - "zh": "澳大利亚统计局" + "en": "iResearch Consulting Group", + "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://www.iresearch.com.cn/report.shtml", + "has_api": false, + "file_path": "china/economy/market/china-iresearch.json", "geographic_scope": "national" }, { - "id": "aus-aihw", + "id": "china-cba", "name": { - "en": "Australian Institute of Health and Welfare", - "zh": "澳大利亚健康与福利研究所" + "en": "China Banking Association", + "zh": "中国银行业协会" }, - "authority_level": "government", - "data_url": "https://www.aihw.gov.au/", - "has_api": true, - "file_path": "countries/oceania/australia/aihw.json", + "authority_level": "market", + "data_url": "https://www.china-cba.net/Index/lists/catid/268.html", + "has_api": false, + "file_path": "china/finance/banking/china-cba.json", "geographic_scope": "national" }, { - "id": "bureau-of-meteorology", + "id": "china-capco", "name": { - "en": "Bureau of Meteorology", - "zh": "澳大利亚气象局" + "en": "China Association for Public Companies (CAPCO)", + "zh": "中国上市公司协会" }, - "authority_level": "government", - "data_url": "https://www.bom.gov.au", - "has_api": true, - "file_path": "countries/oceania/australia/bureau-of-meteorology.json", + "authority_level": "market", + "data_url": "https://www.capco.org.cn", + "has_api": false, + "file_path": "china/finance/capital-markets/china-capco.json", "geographic_scope": "national" }, { - "id": "brazil-bcb", + "id": "china-cfa", "name": { - "en": "Central Bank of Brazil", - "zh": "巴西中央银行", - "native": "Banco Central do Brasil" + "en": "China Futures Association", + "zh": "中国期货业协会" }, - "authority_level": "government", - "data_url": "https://dadosabertos.bcb.gov.br", - "has_api": true, - "file_path": "countries/south-america/brazil/brazil-bcb.json", + "authority_level": "market", + "data_url": "https://www.cfachina.org/servicesupport/researchandpublishin/statisticalsdata/", + "has_api": false, + "file_path": "china/finance/capital-markets/china-cfa.json", "geographic_scope": "national" }, { - "id": "brazil-conab", + "id": "china-cffex", "name": { - "en": "National Supply Company (CONAB)", - "zh": "巴西国家商品供应公司" + "en": "China Financial Futures Exchange", + "zh": "中国金融期货交易所" }, - "authority_level": "government", - "data_url": "https://www.gov.br/conab/pt-br/atuacao/informacoes-agropecuarias/safras/safra-de-cafe", + "authority_level": "market", + "data_url": "https://www.cffex.com.cn/sjzx/", "has_api": false, - "file_path": "countries/south-america/brazil-conab.json", + "file_path": "china/finance/capital-markets/china-cffex.json", "geographic_scope": "national" }, { - "id": "brazil-ibge", + "id": "china-chinabond", "name": { - "en": "Brazilian Institute of Geography and Statistics", - "zh": "巴西地理统计局" + "en": "China Bond Information Network", + "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": "market", + "data_url": "https://yield.chinabond.com.cn/cbweb-pbc-web/pbc/historyQuery", + "has_api": false, + "file_path": "china/finance/capital-markets/china-chinabond.json", "geographic_scope": "national" }, { - "id": "nasa-earthdata", + "id": "china-czce", "name": { - "en": "NASA Earthdata", - "zh": "NASA地球数据" + "en": "Zhengzhou Commodity Exchange", + "zh": "郑州商品交易所" }, - "authority_level": "government", - "data_url": "https://www.earthdata.nasa.gov", - "has_api": true, - "file_path": "international/earth-science/nasa-earthdata.json", - "geographic_scope": "global" + "authority_level": "market", + "data_url": "https://www.czce.com.cn/cn/exchange/daily_data/index.htm", + "has_api": false, + "file_path": "china/finance/capital-markets/china-czce.json", + "geographic_scope": "national" }, { - "id": "bis-statistics", + "id": "china-dce", "name": { - "en": "BIS Statistics - Bank for International Settlements", - "zh": "国际清算银行统计数据" + "en": "Dalian Commodity Exchange", + "zh": "大连商品交易所" }, - "authority_level": "government", - "data_url": "https://data.bis.org/", - "has_api": true, - "file_path": "international/economics/bis.json", - "geographic_scope": "global" + "authority_level": "market", + "data_url": "https://www.dce.com.cn/publicweb/quotesdata/dayQuotesCh.html", + "has_api": false, + "file_path": "china/finance/capital-markets/china-dce.json", + "geographic_scope": "national" }, { - "id": "ecb-sdw", + "id": "china-shfe", "name": { - "en": "ECB Statistical Data Warehouse (ECB Data Portal)", - "zh": "欧洲央行统计数据仓库" + "en": "Shanghai Futures Exchange", + "zh": "上海期货交易所" }, - "authority_level": "government", - "data_url": "https://data.ecb.europa.eu/", - "has_api": true, - "file_path": "international/economics/ecb-sdw.json", - "geographic_scope": "regional" + "authority_level": "market", + "data_url": "https://www.shfe.com.cn/reports/tradedata/dailyandweeklydata/", + "has_api": false, + "file_path": "china/finance/capital-markets/china-shfe.json", + "geographic_scope": "national" }, { - "id": "bea-international-trade", + "id": "china-beijing-stock-exchange", "name": { - "en": "BEA International Trade in Goods and Services", - "zh": "美国经济分析局国际贸易数据" + "en": "Beijing Stock Exchange", + "zh": "北京证券交易所" }, - "authority_level": "government", - "data_url": "https://apps.bea.gov/iTable/index_ita.cfm", - "has_api": true, - "file_path": "international/trade/bea-international-trade.json", + "authority_level": "market", + "data_url": "https://www.bse.cn/market_data.html", + "has_api": false, + "file_path": "china/finance/china-beijing-stock-exchange.json", "geographic_scope": "national" }, { - "id": "china-imt2030", + "id": "china-cicpa", "name": { - "en": "IMT-2030 (6G) Promotion Group", - "zh": "IMT-2030(6G)推进组" + "en": "Chinese Institute of Certified Public Accountants", + "zh": "中国注册会计师协会" }, - "authority_level": "government", - "data_url": "https://www.imt2030.org.cn/html/default/zhongwen/chengguofabu/index.html", + "authority_level": "market", + "data_url": "https://www.cicpa.org.cn/xxcx/", "has_api": false, - "file_path": "sectors/J-information-communication/china-imt2030.json", + "file_path": "china/finance/china-cicpa.json", "geographic_scope": "national" - } - ], - "commercial": [ + }, { - "id": "hkex", + "id": "china-csi-index", "name": { - "en": "Hong Kong Exchanges and Clearing Limited (HKEX)", - "zh": "香港交易及结算所有限公司(港交所)", - "native": "香港交易及结算所有限公司" + "en": "China Securities Index Co., Ltd.", + "zh": "中证指数有限公司" }, - "authority_level": "commercial", - "data_url": "https://www.hkexnews.hk", - "has_api": true, - "file_path": "china/finance/securities/hkex.json", - "geographic_scope": "regional" + "authority_level": "market", + "data_url": "https://www.csindex.com.cn/#/indices/family/list", + "has_api": false, + "file_path": "china/finance/china-csi-index.json", + "geographic_scope": "national" }, { - "id": "ceic-china-urbanization", + "id": "china-iac", "name": { - "en": "CEIC Data - China Urbanization Rate", - "zh": "CEIC数据库 - 中国城镇化率" + "en": "Insurance Association of China", + "zh": "中国保险业协会" }, - "authority_level": "commercial", - "data_url": "https://www.ceicdata.com/zh-hans/china/population-urbanization-rate", - "has_api": true, - "file_path": "china/national/ceic-china-urbanization.json", + "authority_level": "market", + "data_url": "https://www.iachina.cn/col/col4479/", + "has_api": false, + "file_path": "china/finance/china-iac.json", "geographic_scope": "national" }, { - "id": "cnki-population-census", + "id": "china-shanghai-clearing-house", "name": { - "en": "CNKI China Population Census Database", - "zh": "中国人口普查数据库" + "en": "Shanghai Clearing House", + "zh": "上海清算所" }, - "authority_level": "commercial", - "data_url": "https://data.cnki.net/npcd", + "authority_level": "market", + "data_url": "https://www.shclearing.com.cn/sjtj/", "has_api": false, - "file_path": "china/national/cnki-population-census.json", + "file_path": "china/finance/china-shanghai-clearing-house.json", "geographic_scope": "national" }, { - "id": "ceic-global-database", + "id": "china-xinhua-finance", "name": { - "en": "CEIC Global Database", - "zh": "环亚经济数据库" + "en": "Xinhua Finance - China Financial Information Network", + "zh": "新华财经 - 中国金融信息网" }, - "authority_level": "commercial", - "data_url": "https://www.ceicdata.com/en/products/global-economic-database", - "has_api": true, - "file_path": "international/economics/ceic-global-database.json", - "geographic_scope": "global" + "authority_level": "market", + "data_url": "https://www.cnfin.com/", + "has_api": false, + "file_path": "china/finance/china-xinhua-finance.json", + "geographic_scope": "national" }, { - "id": "ceic-vietnam", + "id": "china-neeq", "name": { - "en": "CEIC Vietnam Economic Database", - "zh": "环亚经济数据库 - 越南经济数据专题" + "en": "National Equities Exchange and Quotations (New Third Board)", + "zh": "全国中小企业股份转让系统(新三板)" }, - "authority_level": "commercial", - "data_url": "https://www.ceicdata.com/en/country/vietnam", - "has_api": true, - "file_path": "international/economics/ceic-vietnam.json", + "authority_level": "market", + "data_url": "https://www.neeq.com.cn/issuanceList.html", + "has_api": false, + "file_path": "china/finance/securities/china-neeq.json", "geographic_scope": "national" }, { - "id": "alpha-vantage", + "id": "china-sse", "name": { - "en": "Alpha Vantage API", - "zh": "Alpha Vantage API" + "en": "Shanghai Stock Exchange", + "zh": "上海证券交易所", + "native": "上海证券交易所" }, - "authority_level": "commercial", - "data_url": "https://www.alphavantage.co/", - "has_api": true, - "file_path": "sectors/K-finance-insurance/alpha-vantage.json", - "geographic_scope": "global" + "authority_level": "market", + "data_url": "https://www.sse.com.cn/market/stockdata/statistic/", + "has_api": false, + "file_path": "china/finance/securities/china-sse.json", + "geographic_scope": "national" }, { - "id": "bloomberg-terminal-ipo", + "id": "jpx", "name": { - "en": "Bloomberg Terminal - IPO Module", - "zh": "彭博终端 - IPO模块" + "en": "Japan Exchange Group", + "zh": "日本交易所集团" }, - "authority_level": "commercial", - "data_url": "https://www.bloomberg.com/professional/products/bloomberg-terminal/", - "has_api": true, - "file_path": "sectors/K-finance-insurance/bloomberg-terminal-ipo.json", - "geographic_scope": "global" + "authority_level": "market", + "data_url": "https://www.jpx.co.jp/english/markets/statistics-equities/index.html", + "has_api": false, + "file_path": "countries/asia/japan/jpx.json", + "geographic_scope": "national" }, { - "id": "bloomberg-terminal", + "id": "vicofa", "name": { - "en": "Bloomberg Terminal (Public Data)", - "zh": "彭博终端(部分公开数据)" + "en": "Vietnam Coffee and Cocoa Association", + "zh": "越南咖啡与可可协会" }, - "authority_level": "commercial", - "data_url": "https://www.bloomberg.com/markets", - "has_api": true, - "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json", - "geographic_scope": "global" + "authority_level": "market", + "data_url": "https://vicofa.org.vn/", + "has_api": false, + "file_path": "countries/asia/vietnam/vicofa.json", + "geographic_scope": "national" }, { - "id": "cryptocurrency-data", + "id": "romania-bvb", "name": { - "en": "Cryptocurrency Market Data (CoinMarketCap & CoinGecko)", - "zh": "加密货币市场数据(CoinMarketCap 和 CoinGecko)" + "en": "Bucharest Stock Exchange", + "zh": "布加勒斯特证券交易所" }, - "authority_level": "commercial", - "data_url": "https://coinmarketcap.com", - "has_api": true, - "file_path": "sectors/K-finance-insurance/cryptocurrency-data.json", - "geographic_scope": "global" + "authority_level": "market", + "data_url": "https://www.bvb.ro/FinancialInstruments/Markets/Shares", + "has_api": false, + "file_path": "countries/europe/romania/romania-bvb.json", + "geographic_scope": "national" }, { - "id": "derwent-innovation-index", + "id": "asx", "name": { - "en": "Derwent Innovation Index", - "zh": "德温特创新索引" + "en": "Australian Securities Exchange", + "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" - } - ], - "market": [ + "authority_level": "market", + "data_url": "https://www.asx.com.au/markets", + "has_api": false, + "file_path": "countries/oceania/australia/asx.json", + "geographic_scope": "national" + }, { "id": "brazil-cecafe", "name": { @@ -1821,7 +7827,7 @@ "zh": "中国光学光电子行业协会液晶分会" }, "authority_level": "market", - "data_url": "http://www.coda.org.cn/#/details/more?type=list-info&id=61b1c9ec105e35101858fc49&bannerId=61b30eaa105e353264b3f083", + "data_url": "https://www.coda.org.cn", "has_api": false, "file_path": "sectors/C-manufacturing/electronics/china-lcd-association.json", "geographic_scope": "national" @@ -1869,7 +7875,7 @@ "zh": "中国机械工业联合会机器人分会" }, "authority_level": "market", - "data_url": "http://cria.mei.net.cn/gzpt.asp?lm=/1310", + "data_url": "https://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" @@ -1911,18 +7917,331 @@ "geographic_scope": "global" } ], - "other": [ + "commercial": [ { - "id": "akshare", + "id": "china-cscec", "name": { - "en": "AKShare - Open Source Financial Data Interface Library", - "zh": "AKShare - 开源财经数据接口库" + "en": "China State Construction Engineering Corporation", + "zh": "中国建筑集团有限公司" }, - "authority_level": "other", - "data_url": "https://github.com/akfamily/akshare", + "authority_level": "commercial", + "data_url": "https://www.cscec.com", + "has_api": false, + "file_path": "china/construction/china-cscec.json", + "geographic_scope": "national" + }, + { + "id": "china-alibaba-auction", + "name": { + "en": "Alibaba Judicial Auction Platform", + "zh": "阿里拍卖·司法" + }, + "authority_level": "commercial", + "data_url": "https://sf.taobao.com", + "has_api": false, + "file_path": "china/economy/china-alibaba-auction.json", + "geographic_scope": "national" + }, + { + "id": "china-gpai", + "name": { + "en": "China Public Auction Network", + "zh": "公拍网" + }, + "authority_level": "commercial", + "data_url": "https://www.gpai.net/sf/", + "has_api": false, + "file_path": "china/economy/china-gpai.json", + "geographic_scope": "national" + }, + { + "id": "china-jd-auction", + "name": { + "en": "JD.com Judicial Auction Platform", + "zh": "京东拍卖·司法" + }, + "authority_level": "commercial", + "data_url": "https://auction.jd.com/sifa.html", + "has_api": false, + "file_path": "china/economy/china-jd-auction.json", + "geographic_scope": "national" + }, + { + "id": "china-cei", + "name": { + "en": "China Economic Information Service", + "zh": "中国经济信息社" + }, + "authority_level": "commercial", + "data_url": "https://www.cei.cn/category/", + "has_api": false, + "file_path": "china/economy/macro/china-cei.json", + "geographic_scope": "national" + }, + { + "id": "china-boc", + "name": { + "en": "Bank of China (BOC)", + "zh": "中国银行" + }, + "authority_level": "commercial", + "data_url": "https://www.boc.cn/fimarkets/", + "has_api": false, + "file_path": "china/finance/banking/china-boc.json", + "geographic_scope": "national" + }, + { + "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, - "file_path": "sectors/K-finance-insurance/akshare.json", + "file_path": "china/finance/securities/hkex.json", + "geographic_scope": "regional" + }, + { + "id": "china-ceeia", + "name": { + "en": "China Electrical Equipment Industry Association", + "zh": "中国电器工业协会" + }, + "authority_level": "commercial", + "data_url": "https://www.ceeia.com", + "has_api": false, + "file_path": "china/industry/china-ceeia.json", + "geographic_scope": "national" + }, + { + "id": "china-crrc", + "name": { + "en": "CRRC Corporation Limited", + "zh": "中国中车股份有限公司" + }, + "authority_level": "commercial", + "data_url": "https://www.crrcgc.cc", + "has_api": false, + "file_path": "china/infrastructure/china-crrc.json", + "geographic_scope": "national" + }, + { + "id": "ceic-china-urbanization", + "name": { + "en": "CEIC Data - China Urbanization Rate", + "zh": "CEIC数据库 - 中国城镇化率" + }, + "authority_level": "commercial", + "data_url": "https://www.ceicdata.com/zh-hans/china/population-urbanization-rate", + "has_api": true, + "file_path": "china/national/ceic-china-urbanization.json", + "geographic_scope": "national" + }, + { + "id": "cnki-population-census", + "name": { + "en": "CNKI China Population Census Database", + "zh": "中国人口普查数据库" + }, + "authority_level": "commercial", + "data_url": "https://data.cnki.net/npcd", + "has_api": false, + "file_path": "china/national/cnki-population-census.json", + "geographic_scope": "national" + }, + { + "id": "china-wanfang", + "name": { + "en": "Wanfang Data", + "zh": "万方数据" + }, + "authority_level": "commercial", + "data_url": "https://www.wanfangdata.com.cn/", + "has_api": false, + "file_path": "china/research/china-wanfang.json", + "geographic_scope": "national" + }, + { + "id": "china-huaneng", + "name": { + "en": "China Huaneng Group", + "zh": "中国华能集团有限公司" + }, + "authority_level": "commercial", + "data_url": "https://www.chng.com.cn", + "has_api": false, + "file_path": "china/resources/china-huaneng.json", + "geographic_scope": "national" + }, + { + "id": "china-chinalco", + "name": { + "en": "Aluminum Corporation of China (Chinalco)", + "zh": "中国铝业集团有限公司" + }, + "authority_level": "commercial", + "data_url": "https://www.chinalco.com.cn", + "has_api": false, + "file_path": "china/resources/mineral/china-chinalco.json", + "geographic_scope": "national" + }, + { + "id": "china-tower", + "name": { + "en": "China Tower Corporation", + "zh": "中国铁塔股份有限公司" + }, + "authority_level": "commercial", + "data_url": "https://ir.china-tower.com/sc/ir/reports.php", + "has_api": false, + "file_path": "china/technology/telecommunications/china-tower.json", + "geographic_scope": "national" + }, + { + "id": "ceic-global-database", + "name": { + "en": "CEIC Global Database", + "zh": "环亚经济数据库" + }, + "authority_level": "commercial", + "data_url": "https://www.ceicdata.com/en/products/global-economic-database", + "has_api": true, + "file_path": "international/economics/ceic-global-database.json", + "geographic_scope": "global" + }, + { + "id": "ceic-vietnam", + "name": { + "en": "CEIC Vietnam Economic Database", + "zh": "环亚经济数据库 - 越南经济数据专题" + }, + "authority_level": "commercial", + "data_url": "https://www.ceicdata.com/en/country/vietnam", + "has_api": true, + "file_path": "international/economics/ceic-vietnam.json", + "geographic_scope": "national" + }, + { + "id": "alpha-vantage", + "name": { + "en": "Alpha Vantage API", + "zh": "Alpha Vantage API" + }, + "authority_level": "commercial", + "data_url": "https://www.alphavantage.co/", + "has_api": true, + "file_path": "sectors/K-finance-insurance/alpha-vantage.json", + "geographic_scope": "global" + }, + { + "id": "bloomberg-ipo-database", + "name": { + "en": "Bloomberg IPO Database", + "zh": "彭博IPO数据库" + }, + "authority_level": "commercial", + "data_url": "https://www.bloomberg.com/professional/products/bloomberg-terminal/", + "has_api": true, + "file_path": "sectors/K-finance-insurance/bloomberg-ipo-database.json", + "geographic_scope": "global" + }, + { + "id": "bloomberg-terminal-ipo", + "name": { + "en": "Bloomberg Terminal - IPO Module", + "zh": "彭博终端 - IPO模块" + }, + "authority_level": "commercial", + "data_url": "https://www.bloomberg.com/professional/products/bloomberg-terminal/", + "has_api": true, + "file_path": "sectors/K-finance-insurance/bloomberg-terminal-ipo.json", "geographic_scope": "global" + }, + { + "id": "bloomberg-terminal", + "name": { + "en": "Bloomberg Terminal (Public Data)", + "zh": "彭博终端(部分公开数据)" + }, + "authority_level": "commercial", + "data_url": "https://www.bloomberg.com/markets", + "has_api": true, + "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json", + "geographic_scope": "global" + }, + { + "id": "cryptocurrency-data", + "name": { + "en": "Cryptocurrency Market Data (CoinMarketCap & CoinGecko)", + "zh": "加密货币市场数据(CoinMarketCap 和 CoinGecko)" + }, + "authority_level": "commercial", + "data_url": "https://coinmarketcap.com", + "has_api": true, + "file_path": "sectors/K-finance-insurance/cryptocurrency-data.json", + "geographic_scope": "global" + }, + { + "id": "hundsun-juyuan", + "name": { + "en": "Hundsun JuYuan Financial Data", + "zh": "恒生聚源金融数据" + }, + "authority_level": "commercial", + "data_url": "https://gildata.hs.net/", + "has_api": true, + "file_path": "sectors/K-finance-insurance/hundsun-juyuan.json", + "geographic_scope": "national" + }, + { + "id": "refinitiv-lseg", + "name": { + "en": "LSEG Data & Analytics (Refinitiv)", + "zh": "伦敦证交所数据分析(路孚特)" + }, + "authority_level": "commercial", + "data_url": "https://www.lseg.com/en/data-analytics/products/workspace", + "has_api": true, + "file_path": "sectors/K-finance-insurance/refinitiv-lseg.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" + }, + { + "id": "aws-open-data-registry", + "name": { + "en": "Registry of Open Data on AWS", + "zh": "AWS开放数据注册表" + }, + "authority_level": "commercial", + "data_url": "https://registry.opendata.aws/", + "has_api": false, + "file_path": "sectors/computer_science_ai/aws-open-data-registry.json", + "geographic_scope": "global" + }, + { + "id": "joinquant", + "name": { + "zh": "聚宽量化交易平台", + "en": "JoinQuant Quantitative Trading Platform" + }, + "authority_level": "commercial", + "data_url": "https://www.joinquant.com/data", + "has_api": true, + "file_path": "sectors/finance_markets/joinquant.json", + "geographic_scope": "national" } ] } diff --git a/firstdata/indexes/by-domain.json b/firstdata/indexes/by-domain.json index 26e9ef71..a65e833f 100644 --- a/firstdata/indexes/by-domain.json +++ b/firstdata/indexes/by-domain.json @@ -1,12 +1,12 @@ { "metadata": { - "generated_at": "2026-03-02T08:05:03.494144+00:00", - "total_domains": 639, - "total_sources": 156, + "generated_at": "2026-05-04T06:42:43.195561+00:00", + "total_domains": 731, + "total_sources": 679, "version": "2.0" }, "domains": { - "3D Printing": [ + "3d-printing": [ { "id": "china-additive-manufacturing-alliance", "name": { @@ -34,21 +34,21 @@ "geographic_scope": "national" } ], - "ADMET": [ + "academic-degrees": [ { - "id": "chembl", + "id": "cdgdc", "name": { - "en": "ChEMBL Database", - "zh": "ChEMBL生物活性数据库" + "en": "China Academic Degrees & Graduate Education Development Center", + "zh": "教育部学位与研究生教育发展中心" }, - "authority_level": "research", - "data_url": "https://www.ebi.ac.uk/chembl/", - "has_api": true, - "file_path": "academic/chemistry/chembl.json", - "geographic_scope": "global" + "authority_level": "government", + "data_url": "https://www.chinadegrees.cn/", + "has_api": false, + "file_path": "china/education/higher_education/cdgdc.json", + "geographic_scope": "national" } ], - "Academic Excellence": [ + "academic-excellence": [ { "id": "arwu", "name": { @@ -62,7 +62,7 @@ "geographic_scope": "global" } ], - "Academic Research": [ + "academic-research": [ { "id": "qs-world-university-rankings", "name": { @@ -76,7 +76,7 @@ "geographic_scope": "global" } ], - "Acoustics, Ultrasound and Vibration": [ + "acoustics-ultrasound-and-vibration": [ { "id": "bipm-kcdb", "name": { @@ -91,7 +91,7 @@ "geographic_scope": "global" } ], - "Additive Manufacturing": [ + "additive-manufacturing": [ { "id": "china-additive-manufacturing-alliance", "name": { @@ -105,7 +105,35 @@ "geographic_scope": "national" } ], - "Advanced Manufacturing": [ + "admet": [ + { + "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" + } + ], + "admissions": [ + { + "id": "moe-gaokao", + "name": { + "en": "Sunshine Gaokao Platform", + "zh": "阳光高考信息平台" + }, + "authority_level": "government", + "data_url": "https://gaokao.chsi.com.cn/", + "has_api": false, + "file_path": "china/education/moe-gaokao.json", + "geographic_scope": "national" + } + ], + "advanced-manufacturing": [ { "id": "china-additive-manufacturing-alliance", "name": { @@ -119,7 +147,55 @@ "geographic_scope": "national" } ], - "Aerospace": [ + "aerospace": [ + { + "id": "china-avic", + "name": { + "en": "Aviation Industry Corporation of China (AVIC)", + "zh": "中国航空工业集团有限公司" + }, + "authority_level": "government", + "data_url": "https://www.avic.com", + "has_api": false, + "file_path": "china/industry/aerospace/china-avic.json", + "geographic_scope": "national" + }, + { + "id": "china-casc", + "name": { + "en": "China Aerospace Science and Technology Corporation (CASC)", + "zh": "中国航天科技集团有限公司" + }, + "authority_level": "government", + "data_url": "https://www.spacechina.com/n25/index.html", + "has_api": false, + "file_path": "china/industry/aerospace/china-casc.json", + "geographic_scope": "national" + }, + { + "id": "china-cmse", + "name": { + "en": "China Manned Space Engineering Office", + "zh": "中国载人航天工程办公室" + }, + "authority_level": "government", + "data_url": "https://www.cmse.gov.cn", + "has_api": false, + "file_path": "china/technology/china-cmse.json", + "geographic_scope": "national" + }, + { + "id": "china-cnsa", + "name": { + "en": "China National Space Administration", + "zh": "国家航天局" + }, + "authority_level": "government", + "data_url": "https://www.cnsa.gov.cn/n6758823/index.html", + "has_api": false, + "file_path": "china/technology/china-cnsa.json", + "geographic_scope": "national" + }, { "id": "derwent-innovation-index", "name": { @@ -133,7 +209,7 @@ "geographic_scope": "global" } ], - "Aged care": [ + "aged-care": [ { "id": "aus-aihw", "name": { @@ -147,7 +223,7 @@ "geographic_scope": "national" } ], - "Agricultural Biodiversity": [ + "agricultural-biodiversity": [ { "id": "cgiar-research-data", "name": { @@ -161,7 +237,7 @@ "geographic_scope": "global" } ], - "Agricultural Economics": [ + "agricultural-economics": [ { "id": "aafc", "name": { @@ -188,7 +264,7 @@ "geographic_scope": "global" } ], - "Agricultural Policy": [ + "agricultural-policy": [ { "id": "cgiar-research-data", "name": { @@ -202,7 +278,7 @@ "geographic_scope": "global" } ], - "Agricultural Research": [ + "agricultural-research": [ { "id": "aafc", "name": { @@ -217,7 +293,7 @@ "geographic_scope": "national" } ], - "Agricultural Trade": [ + "agricultural-trade": [ { "id": "amis", "name": { @@ -231,1084 +307,858 @@ "geographic_scope": "global" } ], - "Agriculture": [ + "agriculture": [ { - "id": "aafc", + "id": "china-agri", "name": { - "en": "Agriculture and Agri-Food Canada", - "zh": "加拿大农业与农业食品部", - "native": "Agriculture et Agroalimentaire Canada" + "en": "China Agricultural and Rural Information Network", + "zh": "中国农业农村信息网" }, "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", + "data_url": "https://www.agri.cn/", + "has_api": false, + "file_path": "china/economy/agriculture/china-agri.json", "geographic_scope": "national" }, { - "id": "us-data-gov", + "id": "china-catas", "name": { - "en": "Data.gov", - "zh": "美国政府开放数据平台" + "en": "Chinese Academy of Tropical Agricultural Sciences", + "zh": "中国热带农业科学院" }, - "authority_level": "government", - "data_url": "https://catalog.data.gov/dataset", + "authority_level": "research", + "data_url": "https://www.catas.cn", "has_api": false, - "file_path": "countries/north-america/usa/us-data-gov.json", + "file_path": "china/economy/agriculture/china-catas.json", "geographic_scope": "national" }, { - "id": "cgiar-research-data", + "id": "china-cfeed", "name": { - "en": "CGIAR Research Data", - "zh": "国际农业研究磋商组织研究数据" + "en": "China Feed Industry Association", + "zh": "中国饲料工业协会" }, - "authority_level": "international", - "data_url": "https://gardian.cgiar.org/", - "has_api": true, - "file_path": "international/agriculture/cgiar-research-data.json", - "geographic_scope": "global" + "authority_level": "other", + "data_url": "https://www.chinafeed.org.cn/hyfx/", + "has_api": false, + "file_path": "china/economy/agriculture/china-cfeed.json", + "geographic_scope": "national" }, { - "id": "faostat", + "id": "china-cofco", "name": { - "en": "FAOSTAT - Food and Agriculture Data", - "zh": "粮农组织统计数据库" + "en": "COFCO Corporation", + "zh": "中粮集团有限公司" }, - "authority_level": "international", - "data_url": "https://www.fao.org/faostat/en/", - "has_api": true, - "file_path": "international/agriculture/faostat.json", + "authority_level": "government", + "data_url": "https://www.cofco.com", + "has_api": false, + "file_path": "china/economy/agriculture/china-cofco.json", "geographic_scope": "global" }, { - "id": "afdb", + "id": "china-moa", "name": { - "en": "African Development Bank", - "zh": "非洲开发银行" + "en": "Ministry of Agriculture and Rural Affairs of China - Agricultural Statistics", + "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" + "authority_level": "government", + "data_url": "https://www.moa.gov.cn/nybgb/", + "has_api": false, + "file_path": "china/economy/agriculture/china-moa.json", + "geographic_scope": "national" }, { - "id": "caf", + "id": "china-natesc", "name": { - "en": "Development Bank of Latin America and the Caribbean (CAF)", - "zh": "拉美和加勒比开发银行", - "native": "Banco de Desarrollo de América Latina y El Caribe" + "en": "National Agro-Tech Extension and Service Center", + "zh": "全国农业技术推广服务中心" }, - "authority_level": "international", - "data_url": "https://www.caf.com/en/", + "authority_level": "government", + "data_url": "https://www.natesc.org.cn", "has_api": false, - "file_path": "international/development/caf.json", - "geographic_scope": "regional" + "file_path": "china/economy/agriculture/china-natesc.json", + "geographic_scope": "national" }, { - "id": "caribbean-development-bank", + "id": "china-nfsra", "name": { - "en": "Caribbean Development Bank", - "zh": "加勒比开发银行" + "en": "National Food and Strategic Reserves Administration of China", + "zh": "国家粮食和物资储备局" }, - "authority_level": "international", - "data_url": "https://www.caribank.org/data/country-data-reports", + "authority_level": "government", + "data_url": "https://lswz.gov.cn/html/xwzx/sjfb/index.html", "has_api": false, - "file_path": "international/development/caribbean-development-bank.json", - "geographic_scope": "regional" + "file_path": "china/economy/agriculture/china-nfsra.json", + "geographic_scope": "national" }, { - "id": "idb", + "id": "china-sinograin", "name": { - "en": "Inter-American Development Bank", - "zh": "美洲开发银行" + "en": "Sinograin - China Grain Reserves Corporation", + "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" + "authority_level": "government", + "data_url": "https://www.sinograin.com.cn", + "has_api": false, + "file_path": "china/economy/agriculture/china-sinograin.json", + "geographic_scope": "national" }, { - "id": "intl-copernicus-cdse", + "id": "china-bof", "name": { - "en": "Copernicus Data Space Ecosystem", - "zh": "哥白尼数据空间生态系统" + "en": "Bureau of Fisheries, Ministry of Agriculture and Rural Affairs", + "zh": "农业农村部渔业渔政管理局" }, - "authority_level": "international", - "data_url": "https://dataspace.copernicus.eu", - "has_api": true, - "file_path": "international/earth-science/copernicus-data-space.json", - "geographic_scope": "global" + "authority_level": "government", + "data_url": "https://yyj.moa.gov.cn", + "has_api": false, + "file_path": "china/economy/agriculture/fishery/china-bof.json", + "geographic_scope": "national" }, { - "id": "amis", + "id": "china-tea-marketing-association", "name": { - "en": "Agricultural Market Information System (AMIS)", - "zh": "农业市场信息系统" + "en": "China Tea Marketing Association", + "zh": "中国茶叶流通协会" }, - "authority_level": "international", - "data_url": "https://www.amis-outlook.org", + "authority_level": "market", + "data_url": "https://www.ctma.com.cn", "has_api": false, - "file_path": "sectors/A-agriculture/amis.json", - "geographic_scope": "global" - } - ], - "Agrochemical Research": [ + "file_path": "china/economy/industry_associations/china-tea-marketing-association.json", + "geographic_scope": "national" + }, { - "id": "chembl", + "id": "china-cei", "name": { - "en": "ChEMBL Database", - "zh": "ChEMBL生物活性数据库" + "en": "China Economic Information Service", + "zh": "中国经济信息社" }, - "authority_level": "research", - "data_url": "https://www.ebi.ac.uk/chembl/", - "has_api": true, - "file_path": "academic/chemistry/chembl.json", - "geographic_scope": "global" + "authority_level": "commercial", + "data_url": "https://www.cei.cn/category/", + "has_api": false, + "file_path": "china/economy/macro/china-cei.json", + "geographic_scope": "national" }, { - "id": "cambridge-structural-database", + "id": "china-ha-stats", "name": { - "en": "Cambridge Structural Database (CSD)", - "zh": "剑桥晶体结构数据库" + "en": "Henan Bureau of Statistics", + "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": [ + "authority_level": "government", + "data_url": "https://tjj.henan.gov.cn/tjfw/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-ha-stats.json", + "geographic_scope": "subnational" + }, { - "id": "cgiar-research-data", + "id": "china-hlj-stats", "name": { - "en": "CGIAR Research Data", - "zh": "国际农业研究磋商组织研究数据" + "en": "Heilongjiang Bureau of Statistics", + "zh": "黑龙江省统计局" }, - "authority_level": "international", - "data_url": "https://gardian.cgiar.org/", - "has_api": true, - "file_path": "international/agriculture/cgiar-research-data.json", - "geographic_scope": "global" - } - ], - "Alcohol and drugs": [ + "authority_level": "government", + "data_url": "https://tjj.hlj.gov.cn/tjj/c106777/common_zfxxgk.shtml?tab=tjxx", + "has_api": false, + "file_path": "china/economy/provincial/china-hlj-stats.json", + "geographic_scope": "subnational" + }, { - "id": "aus-aihw", + "id": "china-hn-stats", "name": { - "en": "Australian Institute of Health and Welfare", - "zh": "澳大利亚健康与福利研究所" + "en": "Hunan Bureau of Statistics", + "zh": "湖南省统计局" }, "authority_level": "government", - "data_url": "https://www.aihw.gov.au/", - "has_api": true, - "file_path": "countries/oceania/australia/aihw.json", - "geographic_scope": "national" - } - ], - "Ancient Civilizations": [ + "data_url": "https://tjj.hunan.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-hn-stats.json", + "geographic_scope": "subnational" + }, { - "id": "british-museum-collection", + "id": "china-jl-stats", "name": { - "en": "British Museum Collection", - "zh": "大英博物馆馆藏" + "en": "Jilin Bureau of Statistics", + "zh": "吉林省统计局" }, - "authority_level": "research", - "data_url": "https://www.britishmuseum.org/collection", + "authority_level": "government", + "data_url": "https://tjj.jl.gov.cn/tjsj/", "has_api": false, - "file_path": "sectors/R-arts-entertainment/british-museum-collection.json", - "geographic_scope": "global" - } - ], - "Anthropology": [ + "file_path": "china/economy/provincial/china-jl-stats.json", + "geographic_scope": "subnational" + }, { - "id": "british-museum-collection", + "id": "china-nm-stats", "name": { - "en": "British Museum Collection", - "zh": "大英博物馆馆藏" + "en": "Inner Mongolia Bureau of Statistics", + "zh": "内蒙古自治区统计局" }, - "authority_level": "research", - "data_url": "https://www.britishmuseum.org/collection", + "authority_level": "government", + "data_url": "http://tj.nmg.gov.cn", "has_api": false, - "file_path": "sectors/R-arts-entertainment/british-museum-collection.json", - "geographic_scope": "global" - } - ], - "Antimicrobial Resistance": [ + "file_path": "china/economy/provincial/china-nm-stats.json", + "geographic_scope": "subnational" + }, { - "id": "ecdc-surveillance", + "id": "china-xj-stats", "name": { - "en": "ECDC Surveillance Data", - "zh": "欧洲疾病预防控制中心监测数据" + "en": "Xinjiang Bureau of Statistics", + "zh": "新疆维吾尔自治区统计局" }, - "authority_level": "international", - "data_url": "https://www.ecdc.europa.eu/en/data-dashboards-and-databases", + "authority_level": "government", + "data_url": "https://tjj.xinjiang.gov.cn/tjj/tjsj/", "has_api": false, - "file_path": "international/health/ecdc-surveillance.json", - "geographic_scope": "regional" - } - ], - "Archaeology": [ + "file_path": "china/economy/provincial/china-xj-stats.json", + "geographic_scope": "subnational" + }, { - "id": "british-museum-collection", + "id": "china-xz-stats", "name": { - "en": "British Museum Collection", - "zh": "大英博物馆馆藏" + "en": "Xizang (Tibet) Bureau of Statistics", + "zh": "西藏自治区统计局" }, - "authority_level": "research", - "data_url": "https://www.britishmuseum.org/collection", + "authority_level": "government", + "data_url": "https://tjj.xizang.gov.cn/xxgk/tjxx/tjsj/", "has_api": false, - "file_path": "sectors/R-arts-entertainment/british-museum-collection.json", - "geographic_scope": "global" - } - ], - "Art History": [ + "file_path": "china/economy/provincial/china-xz-stats.json", + "geographic_scope": "subnational" + }, { - "id": "british-museum-collection", + "id": "china-yn-stats", "name": { - "en": "British Museum Collection", - "zh": "大英博物馆馆藏" + "en": "Yunnan Bureau of Statistics", + "zh": "云南省统计局" }, - "authority_level": "research", - "data_url": "https://www.britishmuseum.org/collection", + "authority_level": "government", + "data_url": "http://stats.yn.gov.cn", "has_api": false, - "file_path": "sectors/R-arts-entertainment/british-museum-collection.json", - "geographic_scope": "global" - } - ], - "Artificial Intelligence": [ + "file_path": "china/economy/provincial/china-yn-stats.json", + "geographic_scope": "subnational" + }, { - "id": "cifar", + "id": "china-cfsmc", "name": { - "en": "CIFAR-10 and CIFAR-100", - "zh": "CIFAR-10 和 CIFAR-100 数据集" + "en": "All-China Federation of Supply and Marketing Cooperatives", + "zh": "中华全国供销合作总社" }, - "authority_level": "research", - "data_url": "https://www.cs.toronto.edu/~kriz/cifar.html", + "authority_level": "government", + "data_url": "https://www.chinacoop.gov.cn/", "has_api": false, - "file_path": "sectors/J-information-communication/cifar.json", - "geographic_scope": "global" + "file_path": "china/economy/trade/china-cfsmc.json", + "geographic_scope": "national" }, { - "id": "common-crawl", + "id": "china-adbc", "name": { - "en": "Common Crawl", - "zh": "Common Crawl 网络爬取数据" + "en": "Agricultural Development Bank of China", + "zh": "中国农业发展银行" }, - "authority_level": "research", - "data_url": "https://commoncrawl.org", - "has_api": true, - "file_path": "sectors/J-information-communication/common-crawl.json", - "geographic_scope": "global" + "authority_level": "government", + "data_url": "https://www.adbc.com.cn/", + "has_api": false, + "file_path": "china/finance/banking/china-adbc.json", + "geographic_scope": "national" }, { - "id": "imagenet", + "id": "china-czce", "name": { - "en": "ImageNet", - "zh": "ImageNet 图像数据库" + "en": "Zhengzhou Commodity Exchange", + "zh": "郑州商品交易所" }, - "authority_level": "research", - "data_url": "https://www.image-net.org", + "authority_level": "market", + "data_url": "https://www.czce.com.cn/cn/exchange/daily_data/index.htm", "has_api": false, - "file_path": "sectors/J-information-communication/imagenet.json", - "geographic_scope": "global" - } - ], - "Asset Pricing": [ + "file_path": "china/finance/capital-markets/china-czce.json", + "geographic_scope": "national" + }, { - "id": "crsp", + "id": "china-dce", "name": { - "en": "CRSP - Center for Research in Security Prices", - "zh": "证券价格研究中心" + "en": "Dalian Commodity Exchange", + "zh": "大连商品交易所" }, - "authority_level": "research", - "data_url": "https://www.crsp.org/", - "has_api": true, - "file_path": "sectors/K-finance-insurance/crsp.json", + "authority_level": "market", + "data_url": "https://www.dce.com.cn/publicweb/quotesdata/dayQuotesCh.html", + "has_api": false, + "file_path": "china/finance/capital-markets/china-dce.json", "geographic_scope": "national" - } - ], - "Atmosphere Monitoring": [ + }, { - "id": "intl-copernicus-cdse", + "id": "china-stma", "name": { - "en": "Copernicus Data Space Ecosystem", - "zh": "哥白尼数据空间生态系统" + "en": "State Tobacco Monopoly Administration of China", + "zh": "国家烟草专卖局" }, - "authority_level": "international", - "data_url": "https://dataspace.copernicus.eu", - "has_api": true, - "file_path": "international/earth-science/copernicus-data-space.json", - "geographic_scope": "global" - } - ], - "Atmospheric Science": [ + "authority_level": "government", + "data_url": "https://www.tobacco.gov.cn/html/42/index.html", + "has_api": false, + "file_path": "china/governance/china-stma.json", + "geographic_scope": "national" + }, { - "id": "cdiac", + "id": "china-catcm", "name": { - "en": "Carbon Dioxide Information Analysis Center", - "zh": "碳信息分析中心" + "en": "China Association of Traditional Chinese Medicine", + "zh": "中国中药协会" }, - "authority_level": "research", - "data_url": "https://data.ess-dive.lbl.gov/portals/CDIAC", - "has_api": true, - "file_path": "international/environment/cdiac.json", - "geographic_scope": "global" - } - ], - "Automotive": [ + "authority_level": "other", + "data_url": "https://www.catcm.org.cn", + "has_api": false, + "file_path": "china/health/china-catcm.json", + "geographic_scope": "national" + }, { - "id": "china-auto-association", + "id": "china-nmic", "name": { - "en": "China Association of Automobile Manufacturers", - "zh": "中国汽车工业协会" + "en": "National Meteorological Information Center", + "zh": "国家气象信息中心" }, - "authority_level": "market", - "data_url": "http://www.caam.org.cn/tjsj", + "authority_level": "government", + "data_url": "https://data.cma.cn/data/index.html", "has_api": false, - "file_path": "sectors/C-manufacturing/automotive/china-auto-association.json", + "file_path": "china/national/meteorology/china-nmic.json", "geographic_scope": "national" }, { - "id": "derwent-innovation-index", + "id": "china-nbs", "name": { - "en": "Derwent Innovation Index", - "zh": "德温特创新索引" + "en": "National Bureau of Statistics of China", + "zh": "国家统计局", + "native": "国家统计局" }, - "authority_level": "commercial", - "data_url": "https://clarivate.com/products/derwent-innovation/", + "authority_level": "government", + "data_url": "https://www.stats.gov.cn/sj/", "has_api": true, - "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json", - "geographic_scope": "global" - } - ], - "Balance of Payments": [ + "file_path": "china/national/nbs.json", + "geographic_scope": "national" + }, { - "id": "boj-statistics", + "id": "china-ccs-crop", "name": { - "en": "Bank of Japan Statistics", - "zh": "日本银行统计数据", - "native": "日本銀行統計" + "en": "Chinese Crop Science Society", + "zh": "中国作物学会" }, - "authority_level": "government", - "data_url": "https://www.boj.or.jp/en/statistics/index.htm", + "authority_level": "research", + "data_url": "https://www.chinacrops.org", "has_api": false, - "file_path": "countries/asia/japan/boj-statistics.json", + "file_path": "china/research/china-ccs-crop.json", "geographic_scope": "national" }, { - "id": "brazil-bcb", + "id": "china-drc", "name": { - "en": "Central Bank of Brazil", - "zh": "巴西中央银行", - "native": "Banco Central do Brasil" + "en": "Development Research Center of the State Council of China", + "zh": "国务院发展研究中心" }, "authority_level": "government", - "data_url": "https://dadosabertos.bcb.gov.br", - "has_api": true, - "file_path": "countries/south-america/brazil/brazil-bcb.json", + "data_url": "https://www.drc.gov.cn/yjcg.htm", + "has_api": false, + "file_path": "china/research/china-drc.json", "geographic_scope": "national" }, { - "id": "adb-data-library", + "id": "china-nfga", "name": { - "en": "Asian Development Bank Data Library", - "zh": "亚洲开发银行数据库" + "en": "National Forestry and Grassland Administration of China", + "zh": "国家林业和草原局" }, - "authority_level": "international", - "data_url": "https://data.adb.org", - "has_api": true, - "file_path": "international/development/adb-data-library.json", - "geographic_scope": "regional" + "authority_level": "government", + "data_url": "https://www.forestry.gov.cn/gjlcj/5462/index.html", + "has_api": false, + "file_path": "china/resources/forestry/china-nfga.json", + "geographic_scope": "national" }, { - "id": "ecb-sdw", + "id": "china-hrc", "name": { - "en": "ECB Statistical Data Warehouse (ECB Data Portal)", - "zh": "欧洲央行统计数据仓库" + "en": "Huai River Water Resources Commission", + "zh": "水利部淮河水利委员会" }, "authority_level": "government", - "data_url": "https://data.ecb.europa.eu/", - "has_api": true, - "file_path": "international/economics/ecb-sdw.json", - "geographic_scope": "regional" - } - ], - "Banking": [ + "data_url": "http://www.hrc.gov.cn", + "has_api": false, + "file_path": "china/resources/water/china-hrc.json", + "geographic_scope": "subnational" + }, { - "id": "boj-statistics", + "id": "china-caamm", "name": { - "en": "Bank of Japan Statistics", - "zh": "日本银行统计数据", - "native": "日本銀行統計" + "en": "China Association of Agricultural Machinery Manufacturers", + "zh": "中国农业机械工业协会" }, - "authority_level": "government", - "data_url": "https://www.boj.or.jp/en/statistics/index.htm", + "authority_level": "other", + "data_url": "http://www.caamm.org.cn/member/qytj.jspx", "has_api": false, - "file_path": "countries/asia/japan/boj-statistics.json", + "file_path": "china/technology/industry_associations/china-caamm.json", "geographic_scope": "national" }, { - "id": "uk-boe", + "id": "china-cnfia", "name": { - "en": "Bank of England Statistical Interactive Database", - "zh": "英格兰银行统计数据库" + "en": "China National Food Industry Association", + "zh": "中国食品工业协会" }, - "authority_level": "government", - "data_url": "https://www.bankofengland.co.uk/boeapps/database/", + "authority_level": "other", + "data_url": "https://www.cnfia.cn/archives/category/hangyetongji", "has_api": false, - "file_path": "countries/europe/uk/bank-of-england.json", + "file_path": "china/technology/industry_associations/china-cnfia.json", "geographic_scope": "national" }, { - "id": "brazil-bcb", + "id": "china-sac-standards", "name": { - "en": "Central Bank of Brazil", - "zh": "巴西中央银行", - "native": "Banco Central do Brasil" + "en": "Standardization Administration of China (SAC)", + "zh": "国家标准化管理委员会" }, "authority_level": "government", - "data_url": "https://dadosabertos.bcb.gov.br", - "has_api": true, - "file_path": "countries/south-america/brazil/brazil-bcb.json", + "data_url": "https://std.samr.gov.cn/", + "has_api": false, + "file_path": "china/technology/standards/china-sac-standards.json", "geographic_scope": "national" }, { - "id": "bis-statistics", + "id": "ghana-gss", "name": { - "en": "BIS Statistics - Bank for International Settlements", - "zh": "国际清算银行统计数据" + "en": "Ghana Statistical Service", + "zh": "加纳统计局" }, "authority_level": "government", - "data_url": "https://data.bis.org/", - "has_api": true, - "file_path": "international/economics/bis.json", - "geographic_scope": "global" + "data_url": "https://statsghana.gov.gh/data-statistics/economic-statistics", + "has_api": false, + "file_path": "countries/africa/ghana/ghana-gss.json", + "geographic_scope": "national" }, { - "id": "bis-statistics", + "id": "kenya-knbs", "name": { - "en": "BIS Statistics - Bank for International Settlements", - "zh": "国际清算银行统计数据" + "en": "Kenya National Bureau of Statistics", + "zh": "肯尼亚国家统计局" }, - "authority_level": "international", - "data_url": "https://data.bis.org", - "has_api": true, - "file_path": "international/finance/bis-statistics.json", - "geographic_scope": "global" - } - ], - "Banking Statistics": [ + "authority_level": "government", + "data_url": "https://www.knbs.or.ke/publications/", + "has_api": false, + "file_path": "countries/africa/kenya/kenya-knbs.json", + "geographic_scope": "national" + }, { - "id": "ecb-sdw", + "id": "stats-sa", "name": { - "en": "ECB Statistical Data Warehouse (ECB Data Portal)", - "zh": "欧洲央行统计数据仓库" + "en": "Statistics South Africa (Stats SA)", + "zh": "南非统计局", + "native": "Statistics South Africa (Stats SA)" }, "authority_level": "government", - "data_url": "https://data.ecb.europa.eu/", - "has_api": true, - "file_path": "international/economics/ecb-sdw.json", - "geographic_scope": "regional" - } - ], - "Banking Supervision": [ + "data_url": "https://www.statssa.gov.za/?page_id=1521", + "has_api": false, + "file_path": "countries/africa/south-africa/stats-sa.json", + "geographic_scope": "national" + }, { - "id": "ecb-sdw", + "id": "dosm", "name": { - "en": "ECB Statistical Data Warehouse (ECB Data Portal)", - "zh": "欧洲央行统计数据仓库" + "en": "Department of Statistics Malaysia", + "zh": "马来西亚统计局" }, "authority_level": "government", - "data_url": "https://data.ecb.europa.eu/", + "data_url": "https://open.dosm.gov.my/", "has_api": true, - "file_path": "international/economics/ecb-sdw.json", - "geographic_scope": "regional" - } - ], - "Bioactivity": [ + "file_path": "countries/asia/dosm.json", + "geographic_scope": "national" + }, { - "id": "chembl", + "id": "india-mospi", "name": { - "en": "ChEMBL Database", - "zh": "ChEMBL生物活性数据库" + "en": "Ministry of Statistics and Programme Implementation (MoSPI)", + "zh": "印度统计与计划实施部", + "native": "सांख्यिकी और कार्यक्रम कार्यान्वयन मंत्रालय" }, - "authority_level": "research", - "data_url": "https://www.ebi.ac.uk/chembl/", - "has_api": true, - "file_path": "academic/chemistry/chembl.json", - "geographic_scope": "global" - } - ], - "Biochemistry": [ + "authority_level": "government", + "data_url": "https://mospi.gov.in/data", + "has_api": false, + "file_path": "countries/asia/india/india-mospi.json", + "geographic_scope": "national" + }, { - "id": "intl-rcsb-pdb", + "id": "indonesia-bps", "name": { - "en": "Protein Data Bank (PDB)", - "zh": "蛋白质数据银行" + "en": "Statistics Indonesia (BPS)", + "zh": "印度尼西亚中央统计局", + "native": "Badan Pusat Statistik" }, - "authority_level": "research", - "data_url": "https://www.rcsb.org", + "authority_level": "government", + "data_url": "https://www.bps.go.id/en/statistics-table", "has_api": true, - "file_path": "academic/biology/pdb.json", - "geographic_scope": "global" + "file_path": "countries/asia/indonesia/indonesia-bps.json", + "geographic_scope": "national" }, { - "id": "pubchem", + "id": "kostat", "name": { - "en": "PubChem", - "zh": "PubChem化学数据库" + "en": "Statistics Korea (KOSTAT)", + "zh": "韩国统计厅" }, "authority_level": "government", - "data_url": "https://pubchem.ncbi.nlm.nih.gov/", + "data_url": "https://kosis.kr/eng/", "has_api": true, - "file_path": "academic/chemistry/pubchem.json", - "geographic_scope": "global" - } - ], - "Biodiversity": [ + "file_path": "countries/asia/kostat.json", + "geographic_scope": "national" + }, { - "id": "ena", + "id": "myanmar-cso", "name": { - "en": "European Nucleotide Archive", - "zh": "欧洲核苷酸档案库" + "en": "Central Statistical Organization (Myanmar)", + "zh": "缅甸中央统计局" }, - "authority_level": "international", - "data_url": "https://www.ebi.ac.uk/ena/browser/", - "has_api": true, - "file_path": "academic/biology/ena.json", - "geographic_scope": "global" + "authority_level": "government", + "data_url": "https://www.csostat.gov.mm", + "has_api": false, + "file_path": "countries/asia/myanmar/myanmar-cso.json", + "geographic_scope": "national" }, { - "id": "cites-trade-database", + "id": "philippines-psa", "name": { - "en": "CITES Trade Database", - "zh": "濒危物种国际贸易公约贸易数据库" + "en": "Philippine Statistics Authority", + "zh": "菲律宾统计局" }, - "authority_level": "international", - "data_url": "https://trade.cites.org", + "authority_level": "government", + "data_url": "https://openstat.psa.gov.ph", "has_api": false, - "file_path": "international/environment/cites-trade-database.json", - "geographic_scope": "global" - } - ], - "Bioinformatics": [ - { - "id": "alphafold-db", - "name": { - "en": "AlphaFold Protein Structure Database", - "zh": "AlphaFold蛋白质结构数据库" - }, - "authority_level": "international", - "data_url": "https://alphafold.com", - "has_api": true, - "file_path": "academic/biology/alphafold-db.json", - "geographic_scope": "global" + "file_path": "countries/asia/philippines/psa.json", + "geographic_scope": "national" }, { - "id": "ena", + "id": "saudi-gastat", "name": { - "en": "European Nucleotide Archive", - "zh": "欧洲核苷酸档案库" + "en": "General Authority for Statistics (GASTAT)", + "zh": "沙特阿拉伯统计总局" }, - "authority_level": "international", - "data_url": "https://www.ebi.ac.uk/ena/browser/", - "has_api": true, - "file_path": "academic/biology/ena.json", - "geographic_scope": "global" + "authority_level": "government", + "data_url": "https://www.stats.gov.sa/statistics", + "has_api": false, + "file_path": "countries/asia/saudi-arabia/saudi-gastat.json", + "geographic_scope": "national" }, { - "id": "us-ncbi-genbank", + "id": "vietnam-gso", "name": { - "en": "GenBank", - "zh": "基因库" + "en": "General Statistics Office of Vietnam", + "zh": "越南统计总局" }, "authority_level": "government", - "data_url": "https://www.ncbi.nlm.nih.gov/genbank/", - "has_api": true, - "file_path": "academic/biology/genbank.json", - "geographic_scope": "global" + "data_url": "https://www.nso.gov.vn/en/statistical-data/", + "has_api": false, + "file_path": "countries/asia/vietnam/gso.json", + "geographic_scope": "national" }, { - "id": "drugbank", + "id": "vicofa", "name": { - "en": "DrugBank", - "zh": "药物与药物靶点数据库" + "en": "Vietnam Coffee and Cocoa Association", + "zh": "越南咖啡与可可协会" }, - "authority_level": "research", - "data_url": "https://go.drugbank.com", - "has_api": true, - "file_path": "academic/chemistry/drugbank.json", - "geographic_scope": "global" - } - ], - "Biology": [ + "authority_level": "market", + "data_url": "https://vicofa.org.vn/", + "has_api": false, + "file_path": "countries/asia/vietnam/vicofa.json", + "geographic_scope": "national" + }, { - "id": "pubchem", + "id": "belgium-statbel", "name": { - "en": "PubChem", - "zh": "PubChem化学数据库" + "en": "Statbel - Belgian Statistical Office", + "zh": "比利时统计局" }, "authority_level": "government", - "data_url": "https://pubchem.ncbi.nlm.nih.gov/", - "has_api": true, - "file_path": "academic/chemistry/pubchem.json", - "geographic_scope": "global" - } - ], - "Biotechnology": [ + "data_url": "https://statbel.fgov.be/en/open-data", + "has_api": false, + "file_path": "countries/europe/belgium/belgium-statbel.json", + "geographic_scope": "national" + }, { - "id": "alphafold-db", + "id": "bulgaria-nsi", "name": { - "en": "AlphaFold Protein Structure Database", - "zh": "AlphaFold蛋白质结构数据库" + "en": "National Statistical Institute of Bulgaria (NSI)", + "zh": "保加利亚国家统计局" }, - "authority_level": "international", - "data_url": "https://alphafold.com", - "has_api": true, - "file_path": "academic/biology/alphafold-db.json", - "geographic_scope": "global" + "authority_level": "government", + "data_url": "https://www.nsi.bg/en/content/2666/statisticsdatabases", + "has_api": false, + "file_path": "countries/europe/bulgaria/bulgaria-nsi.json", + "geographic_scope": "national" }, { - "id": "intl-rcsb-pdb", + "id": "croatia-dzs", "name": { - "en": "Protein Data Bank (PDB)", - "zh": "蛋白质数据银行" + "en": "Croatian Bureau of Statistics (DZS)", + "zh": "克罗地亚统计局" }, - "authority_level": "research", - "data_url": "https://www.rcsb.org", - "has_api": true, - "file_path": "academic/biology/pdb.json", - "geographic_scope": "global" + "authority_level": "government", + "data_url": "https://dzs.gov.hr/en/data-and-statistics", + "has_api": false, + "file_path": "countries/europe/croatia/croatia-dzs.json", + "geographic_scope": "national" }, { - "id": "derwent-innovation-index", + "id": "czechia-czso", "name": { - "en": "Derwent Innovation Index", - "zh": "德温特创新索引" + "en": "Czech Statistical Office (CZSO)", + "zh": "捷克统计局" }, - "authority_level": "commercial", - "data_url": "https://clarivate.com/products/derwent-innovation/", + "authority_level": "government", + "data_url": "https://vdb.czso.cz", "has_api": true, - "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json", - "geographic_scope": "global" - } - ], - "Blockchain Analytics": [ + "file_path": "countries/europe/czechia/czechia-czso.json", + "geographic_scope": "national" + }, { - "id": "cryptocurrency-data", + "id": "france-insee", "name": { - "en": "Cryptocurrency Market Data (CoinMarketCap & CoinGecko)", - "zh": "加密货币市场数据(CoinMarketCap 和 CoinGecko)" + "en": "INSEE - National Institute of Statistics and Economic Studies", + "zh": "法国国家统计与经济研究所", + "native": "Institut national de la statistique et des études économiques" }, - "authority_level": "commercial", - "data_url": "https://coinmarketcap.com", + "authority_level": "government", + "data_url": "https://www.insee.fr/en/statistiques", "has_api": true, - "file_path": "sectors/K-finance-insurance/cryptocurrency-data.json", - "geographic_scope": "global" - } - ], - "Bonds": [ + "file_path": "countries/europe/fr/france-insee.json", + "geographic_scope": "national" + }, { - "id": "akshare", + "id": "romania-ins", "name": { - "en": "AKShare - Open Source Financial Data Interface Library", - "zh": "AKShare - 开源财经数据接口库" + "en": "National Institute of Statistics (Romania)", + "zh": "罗马尼亚国家统计局" }, - "authority_level": "other", - "data_url": "https://github.com/akfamily/akshare", + "authority_level": "government", + "data_url": "https://insse.ro/cms/en/statistici-2", "has_api": true, - "file_path": "sectors/K-finance-insurance/akshare.json", - "geographic_scope": "global" - } - ], - "Business": [ + "file_path": "countries/europe/romania/romania-ins.json", + "geographic_scope": "national" + }, { - "id": "us-data-gov", + "id": "russia-rosstat", "name": { - "en": "Data.gov", - "zh": "美国政府开放数据平台" + "en": "Federal State Statistics Service (Rosstat)", + "zh": "俄罗斯联邦统计局", + "native": "Федеральная служба государственной статистики (Росстат)" }, "authority_level": "government", - "data_url": "https://catalog.data.gov/dataset", - "has_api": false, - "file_path": "countries/north-america/usa/us-data-gov.json", + "data_url": "https://rosstat.gov.ru/statistics", + "has_api": true, + "file_path": "countries/europe/russia/russia-rosstat.json", "geographic_scope": "national" - } - ], - "Business Cycles": [ + }, { - "id": "acad-conferenceboard", + "id": "slovakia-susr", "name": { - "en": "The Conference Board Economic Data", - "zh": "世界大型企业联合会经济数据" + "en": "Statistical Office of the Slovak Republic (SUSR)", + "zh": "斯洛伐克共和国统计局" }, - "authority_level": "research", - "data_url": "https://www.conference-board.org/topics/economic-data-analysis", + "authority_level": "government", + "data_url": "https://datacube.statistics.sk", "has_api": false, - "file_path": "academic/economics/conference-board.json", - "geographic_scope": "global" - } - ], - "Business and economy": [ + "file_path": "countries/europe/slovakia/slovakia-susr.json", + "geographic_scope": "national" + }, { - "id": "uk-data-gov", + "id": "turkey-tuik", "name": { - "en": "Data.gov.uk", - "zh": "英国政府开放数据平台" + "en": "Turkish Statistical Institute (TurkStat)", + "zh": "土耳其统计局", + "native": "Türkiye İstatistik Kurumu (TÜİK)" }, "authority_level": "government", - "data_url": "https://www.data.gov.uk", + "data_url": "https://data.tuik.gov.tr", "has_api": true, - "file_path": "countries/europe/uk/uk-data-gov.json", + "file_path": "countries/europe/turkey/turkey-tuik.json", "geographic_scope": "national" - } - ], - "Cancer": [ + }, { - "id": "us-cdc", + "id": "aafc", "name": { - "en": "CDC Data & Statistics", - "zh": "美国疾控中心数据与统计" + "en": "Agriculture and Agri-Food Canada", + "zh": "加拿大农业与农业食品部", + "native": "Agriculture et Agroalimentaire Canada" }, "authority_level": "government", - "data_url": "https://data.cdc.gov/", + "data_url": "https://open.canada.ca/data/en/organization/aafc-aac", "has_api": true, - "file_path": "countries/north-america/usa/us-cdc.json", + "file_path": "countries/north-america/canada/aafc.json", "geographic_scope": "national" - } - ], - "Capital Markets": [ - { - "id": "bloomberg-terminal-ipo", - "name": { - "en": "Bloomberg Terminal - IPO Module", - "zh": "彭博终端 - IPO模块" - }, - "authority_level": "commercial", - "data_url": "https://www.bloomberg.com/professional/products/bloomberg-terminal/", - "has_api": true, - "file_path": "sectors/K-finance-insurance/bloomberg-terminal-ipo.json", - "geographic_scope": "global" - } - ], - "Carbon Emissions": [ + }, { - "id": "cdiac", + "id": "canada-statcan", "name": { - "en": "Carbon Dioxide Information Analysis Center", - "zh": "碳信息分析中心" + "en": "Statistics Canada", + "zh": "加拿大统计局", + "native": "Statistique Canada" }, - "authority_level": "research", - "data_url": "https://data.ess-dive.lbl.gov/portals/CDIAC", + "authority_level": "government", + "data_url": "https://www.statcan.gc.ca/en/start", "has_api": true, - "file_path": "international/environment/cdiac.json", - "geographic_scope": "global" - } - ], - "Catalysis": [ + "file_path": "countries/north-america/canada/statcan.json", + "geographic_scope": "national" + }, { - "id": "cambridge-structural-database", + "id": "mexico-inegi", "name": { - "en": "Cambridge Structural Database (CSD)", - "zh": "剑桥晶体结构数据库" + "en": "National Institute of Statistics and Geography (INEGI)", + "zh": "墨西哥国家统计和地理研究所", + "native": "Instituto Nacional de Estadística y Geografía (INEGI)" }, - "authority_level": "research", - "data_url": "https://www.ccdc.cam.ac.uk", + "authority_level": "government", + "data_url": "https://www.inegi.org.mx/datos/", "has_api": true, - "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json", - "geographic_scope": "global" - } - ], - "Catalysts": [ + "file_path": "countries/north-america/mexico/mexico-inegi.json", + "geographic_scope": "national" + }, { - "id": "china-petroleum-chemical-federation", + "id": "us-data-gov", "name": { - "en": "China Petroleum and Chemical Industry Federation", - "zh": "中国石油和化学工业联合会" + "en": "Data.gov", + "zh": "美国政府开放数据平台" }, - "authority_level": "market", - "data_url": "http://www.cpcif.org.cn/list/402882396610575f0166105924fe0000", + "authority_level": "government", + "data_url": "https://catalog.data.gov/dataset", "has_api": false, - "file_path": "sectors/C-manufacturing/chemicals/china-petroleum-chemical-federation.json", + "file_path": "countries/north-america/usa/us-data-gov.json", "geographic_scope": "national" - } - ], - "Central Bank Statistics": [ + }, { - "id": "bis-statistics", + "id": "usaid-ddl", "name": { - "en": "BIS Statistics", - "zh": "国际清算银行统计数据" + "en": "USAID Development Data Library", + "zh": "美国国际开发署发展数据库" }, "authority_level": "government", - "data_url": "https://data.bis.org/", + "data_url": "https://data.usaid.gov", "has_api": true, - "file_path": "academic/economics/bis-statistics.json", + "file_path": "countries/north-america/usa/usaid-ddl.json", "geographic_scope": "global" - } - ], - "Central Banking": [ + }, { - "id": "bis-statistics", + "id": "usda-fas", "name": { - "en": "BIS Statistics - Bank for International Settlements", - "zh": "国际清算银行统计数据" + "en": "USDA Foreign Agricultural Service", + "zh": "美国农业部对外农业局" }, "authority_level": "government", - "data_url": "https://data.bis.org/", + "data_url": "https://apps.fas.usda.gov/psdonline/app/index.html", "has_api": true, - "file_path": "international/economics/bis.json", - "geographic_scope": "global" + "file_path": "countries/north-america/usa/usda-fas.json", + "geographic_scope": "national" }, { - "id": "bis-reserves", + "id": "australia-abs", "name": { - "en": "BIS Central Bank Reserves Statistics", - "zh": "国际清算银行外汇储备统计" + "en": "Australian Bureau of Statistics", + "zh": "澳大利亚统计局" }, - "authority_level": "international", - "data_url": "https://data.bis.org/topics/CBTA", + "authority_level": "government", + "data_url": "https://www.abs.gov.au", "has_api": true, - "file_path": "international/finance/bis-reserves.json", - "geographic_scope": "global" + "file_path": "countries/oceania/australia/abs.json", + "geographic_scope": "national" }, { - "id": "bis-statistics", - "name": { - "en": "BIS Statistics - Bank for International Settlements", - "zh": "国际清算银行统计数据" - }, - "authority_level": "international", - "data_url": "https://data.bis.org", - "has_api": true, - "file_path": "international/finance/bis-statistics.json", - "geographic_scope": "global" - } - ], - "Certification Systems": [ - { - "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" - } - ], - "Chemical Biology": [ - { - "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" - } - ], - "Chemical Industry": [ - { - "id": "china-petroleum-chemical-federation", + "id": "nz-stats", "name": { - "en": "China Petroleum and Chemical Industry Federation", - "zh": "中国石油和化学工业联合会" + "en": "Statistics New Zealand (Stats NZ)", + "zh": "新西兰统计局" }, - "authority_level": "market", - "data_url": "http://www.cpcif.org.cn/list/402882396610575f0166105924fe0000", + "authority_level": "government", + "data_url": "https://infoshare.stats.govt.nz", "has_api": false, - "file_path": "sectors/C-manufacturing/chemicals/china-petroleum-chemical-federation.json", + "file_path": "countries/oceania/new-zealand/nz-stats.json", "geographic_scope": "national" - } - ], - "Chemical Information": [ + }, { - "id": "intl-chemspider", + "id": "brazil-mapa", "name": { - "en": "ChemSpider", - "zh": "化学蜘蛛数据库" + "en": "Brazil Ministry of Agriculture and Livestock", + "zh": "巴西农业和畜牧部" }, - "authority_level": "international", - "data_url": "https://www.chemspider.com", + "authority_level": "government", + "data_url": "https://indicadores.agricultura.gov.br/agrostat/index.htm", "has_api": false, - "file_path": "academic/chemistry/chemspider.json", - "geographic_scope": "global" - } - ], - "Chemical Materials": [ + "file_path": "countries/south-america/brazil/brazil-mapa.json", + "geographic_scope": "national" + }, { - "id": "china-petroleum-chemical-federation", + "id": "brazil-cecafe", "name": { - "en": "China Petroleum and Chemical Industry Federation", - "zh": "中国石油和化学工业联合会" + "en": "Brazilian Coffee Exporters Council", + "zh": "巴西咖啡出口商协会" }, "authority_level": "market", - "data_url": "http://www.cpcif.org.cn/list/402882396610575f0166105924fe0000", + "data_url": "https://www.cecafe.com.br/publicacoes/relatorio-de-exportacoes/", "has_api": false, - "file_path": "sectors/C-manufacturing/chemicals/china-petroleum-chemical-federation.json", + "file_path": "countries/south-america/brazil-cecafe.json", "geographic_scope": "national" - } - ], - "Chemical Structures": [ - { - "id": "intl-chemspider", - "name": { - "en": "ChemSpider", - "zh": "化学蜘蛛数据库" - }, - "authority_level": "international", - "data_url": "https://www.chemspider.com", - "has_api": false, - "file_path": "academic/chemistry/chemspider.json", - "geographic_scope": "global" - } - ], - "Cheminformatics": [ - { - "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" - } - ], - "Chemistry": [ - { - "id": "intl-chemspider", - "name": { - "en": "ChemSpider", - "zh": "化学蜘蛛数据库" - }, - "authority_level": "international", - "data_url": "https://www.chemspider.com", - "has_api": false, - "file_path": "academic/chemistry/chemspider.json", - "geographic_scope": "global" }, { - "id": "pubchem", + "id": "brazil-conab", "name": { - "en": "PubChem", - "zh": "PubChem化学数据库" + "en": "National Supply Company (CONAB)", + "zh": "巴西国家商品供应公司" }, "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", - "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" + "data_url": "https://www.gov.br/conab/pt-br/atuacao/informacoes-agropecuarias/safras/safra-de-cafe", + "has_api": false, + "file_path": "countries/south-america/brazil-conab.json", + "geographic_scope": "national" }, { - "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" - } - ], - "Chemistry and Biology": [ - { - "id": "bipm-kcdb", - "name": { - "en": "BIPM Key Comparison Database (KCDB)", - "zh": "国际度量衡局关键比对数据库", - "native": "Bureau International des Poids et Mesures (BIPM)" - }, - "authority_level": "international", - "data_url": "https://www.bipm.org/kcdb", - "has_api": true, - "file_path": "international/standards-metrology/bipm-kcdb.json", - "geographic_scope": "global" - } - ], - "Child protection": [ - { - "id": "aus-aihw", + "id": "brazil-ibge", "name": { - "en": "Australian Institute of Health and Welfare", - "zh": "澳大利亚健康与福利研究所" + "en": "Brazilian Institute of Geography and Statistics", + "zh": "巴西地理统计局" }, "authority_level": "government", - "data_url": "https://www.aihw.gov.au/", + "data_url": "https://www.ibge.gov.br/en/indicators", "has_api": true, - "file_path": "countries/oceania/australia/aihw.json", + "file_path": "countries/south-america/brazil-ibge.json", "geographic_scope": "national" - } - ], - "Chronic Diseases": [ + }, { - "id": "us-cdc", + "id": "colombia-dane", "name": { - "en": "CDC Data & Statistics", - "zh": "美国疾控中心数据与统计" + "en": "National Administrative Department of Statistics (DANE)", + "zh": "哥伦比亚国家统计局", + "native": "Departamento Administrativo Nacional de Estadística (DANE)" }, "authority_level": "government", - "data_url": "https://data.cdc.gov/", + "data_url": "https://www.dane.gov.co/index.php/estadisticas-por-tema", "has_api": true, - "file_path": "countries/north-america/usa/us-cdc.json", + "file_path": "countries/south-america/colombia/colombia-dane.json", "geographic_scope": "national" - } - ], - "Citizen Engagement": [ + }, { - "id": "afrobarometer", + "id": "peru-inei", "name": { - "en": "Afrobarometer", - "zh": "非洲晴雨表" + "en": "National Institute of Statistics and Informatics of Peru (INEI)", + "zh": "秘鲁国家统计和信息学研究所" }, - "authority_level": "research", - "data_url": "https://www.afrobarometer.org/data/", + "authority_level": "government", + "data_url": "https://www.inei.gob.pe/estadisticas/", "has_api": false, - "file_path": "academic/social/afrobarometer.json", - "geographic_scope": "regional" - } - ], - "Climate": [ + "file_path": "countries/south-america/peru/peru-inei.json", + "geographic_scope": "national" + }, { - "id": "us-data-gov", + "id": "cgiar-research-data", "name": { - "en": "Data.gov", - "zh": "美国政府开放数据平台" + "en": "CGIAR Research Data", + "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" - } - ], - "Climate Change": [ + "authority_level": "international", + "data_url": "https://gardian.cgiar.org/", + "has_api": true, + "file_path": "international/agriculture/cgiar-research-data.json", + "geographic_scope": "global" + }, { "id": "faostat", "name": { @@ -1322,15 +1172,27 @@ "geographic_scope": "global" }, { - "id": "adb-data-library", + "id": "ico-coffee", "name": { - "en": "Asian Development Bank Data Library", - "zh": "亚洲开发银行数据库" + "en": "International Coffee Organization", + "zh": "国际咖啡组织" }, "authority_level": "international", - "data_url": "https://data.adb.org", + "data_url": "https://www.ico.org/trade_statistics.asp", + "has_api": false, + "file_path": "international/agriculture/ico-coffee.json", + "geographic_scope": "global" + }, + { + "id": "afdb-statistics", + "name": { + "en": "African Development Bank Statistics", + "zh": "非洲开发银行统计数据" + }, + "authority_level": "international", + "data_url": "https://dataportal.opendataforafrica.org", "has_api": true, - "file_path": "international/development/adb-data-library.json", + "file_path": "international/development/afdb-statistics.json", "geographic_scope": "regional" }, { @@ -1346,263 +1208,297 @@ "geographic_scope": "regional" }, { - "id": "intl-copernicus-cdse", + "id": "caf", "name": { - "en": "Copernicus Data Space Ecosystem", - "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://dataspace.copernicus.eu", - "has_api": true, - "file_path": "international/earth-science/copernicus-data-space.json", - "geographic_scope": "global" + "data_url": "https://www.caf.com/en/", + "has_api": false, + "file_path": "international/development/caf.json", + "geographic_scope": "regional" }, { - "id": "cdiac", + "id": "caribbean-development-bank", "name": { - "en": "Carbon Dioxide Information Analysis Center", - "zh": "碳信息分析中心" + "en": "Caribbean Development Bank", + "zh": "加勒比开发银行" }, - "authority_level": "research", - "data_url": "https://data.ess-dive.lbl.gov/portals/CDIAC", - "has_api": true, - "file_path": "international/environment/cdiac.json", - "geographic_scope": "global" + "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": "bp-statistical-review", + "id": "idb", "name": { - "en": "Statistical Review of World Energy", - "zh": "世界能源统计年鉴" + "en": "Inter-American Development Bank", + "zh": "美洲开发银行" }, - "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" - } - ], - "Climate Change Adaptation": [ + "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" + }, { - "id": "cgiar-research-data", + "id": "intl-copernicus-cdse", "name": { - "en": "CGIAR Research Data", - "zh": "国际农业研究磋商组织研究数据" + "en": "Copernicus Data Space Ecosystem", + "zh": "哥白尼数据空间生态系统" }, "authority_level": "international", - "data_url": "https://gardian.cgiar.org/", + "data_url": "https://dataspace.copernicus.eu", "has_api": true, - "file_path": "international/agriculture/cgiar-research-data.json", + "file_path": "international/earth-science/copernicus-data-space.json", "geographic_scope": "global" - } - ], - "Climate Finance": [ + }, { - "id": "caf", + "id": "adb", "name": { - "en": "Development Bank of Latin America and the Caribbean (CAF)", - "zh": "拉美和加勒比开发银行", - "native": "Banco de Desarrollo de América Latina y El Caribe" + "en": "Asian Development Bank Data", + "zh": "亚洲开发银行数据" }, "authority_level": "international", - "data_url": "https://www.caf.com/en/", + "data_url": "https://www.adb.org/what-we-do/data", "has_api": false, - "file_path": "international/development/caf.json", + "file_path": "international/economics/adb.json", "geographic_scope": "regional" - } - ], - "Climate Resilience": [ + }, { - "id": "caf", + "id": "eurostat", "name": { - "en": "Development Bank of Latin America and the Caribbean (CAF)", - "zh": "拉美和加勒比开发银行", - "native": "Banco de Desarrollo de América Latina y El Caribe" + "en": "Eurostat - Statistical Office of the European Union", + "zh": "欧盟统计局", + "native": "Eurostat" }, "authority_level": "international", - "data_url": "https://www.caf.com/en/", - "has_api": false, - "file_path": "international/development/caf.json", + "data_url": "https://ec.europa.eu/eurostat/databrowser/explore/all/all_themes", + "has_api": true, + "file_path": "international/economics/eurostat.json", "geographic_scope": "regional" }, { - "id": "caribbean-development-bank", + "id": "isric-world-soil", "name": { - "en": "Caribbean Development Bank", - "zh": "加勒比开发银行" + "en": "ISRIC World Soil Information", + "zh": "ISRIC世界土壤信息中心" }, - "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": [ + "authority_level": "research", + "data_url": "https://www.isric.org/explore", + "has_api": true, + "file_path": "international/environment/isric-world-soil.json", + "geographic_scope": "global" + }, { - "id": "drugbank", + "id": "amis", "name": { - "en": "DrugBank", - "zh": "药物与药物靶点数据库" + "en": "Agricultural Market Information System (AMIS)", + "zh": "农业市场信息系统" }, - "authority_level": "research", - "data_url": "https://go.drugbank.com", - "has_api": true, - "file_path": "academic/chemistry/drugbank.json", + "authority_level": "international", + "data_url": "https://www.amis-outlook.org", + "has_api": false, + "file_path": "sectors/A-agriculture/amis.json", "geographic_scope": "global" } ], - "Coastal Trade": [ + "agriculture-and-rural-development": [ { - "id": "india-dgcis", + "id": "gso-vietnam", "name": { - "en": "Directorate General of Commercial Intelligence and Statistics", - "zh": "印度商业情报与统计总局" + "en": "General Statistics Office of Vietnam", + "zh": "越南国家统计局" }, "authority_level": "government", - "data_url": "https://www.commerce.gov.in/trade-statistics/", + "data_url": "https://www.gso.gov.vn/en/data-and-statistics/", "has_api": false, - "file_path": "countries/asia/india/india-dgcis.json", + "file_path": "countries/asia/vietnam/gso-vietnam.json", "geographic_scope": "national" } ], - "Commodities": [ + "agrochemical-research": [ { - "id": "alpha-vantage", + "id": "chembl", "name": { - "en": "Alpha Vantage API", - "zh": "Alpha Vantage API" + "en": "ChEMBL Database", + "zh": "ChEMBL生物活性数据库" }, - "authority_level": "commercial", - "data_url": "https://www.alphavantage.co/", + "authority_level": "research", + "data_url": "https://www.ebi.ac.uk/chembl/", "has_api": true, - "file_path": "sectors/K-finance-insurance/alpha-vantage.json", + "file_path": "academic/chemistry/chembl.json", "geographic_scope": "global" }, { - "id": "bloomberg-terminal", + "id": "cambridge-structural-database", "name": { - "en": "Bloomberg Terminal (Public Data)", - "zh": "彭博终端(部分公开数据)" + "en": "Cambridge Structural Database (CSD)", + "zh": "剑桥晶体结构数据库" }, - "authority_level": "commercial", - "data_url": "https://www.bloomberg.com/markets", + "authority_level": "research", + "data_url": "https://www.ccdc.cam.ac.uk", "has_api": true, - "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json", + "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json", "geographic_scope": "global" } ], - "Commodity Markets": [ + "agroforestry": [ { - "id": "amis", + "id": "cgiar-research-data", "name": { - "en": "Agricultural Market Information System (AMIS)", - "zh": "农业市场信息系统" + "en": "CGIAR Research Data", + "zh": "国际农业研究磋商组织研究数据" }, "authority_level": "international", - "data_url": "https://www.amis-outlook.org", - "has_api": false, - "file_path": "sectors/A-agriculture/amis.json", + "data_url": "https://gardian.cgiar.org/", + "has_api": true, + "file_path": "international/agriculture/cgiar-research-data.json", "geographic_scope": "global" } ], - "Commodity Price": [ + "air-quality": [ { - "id": "china-rare-earth-association", + "id": "eea-climate", "name": { - "en": "Association of China Rare Earth Industry", - "zh": "中国稀土行业协会" + "en": "European Environment Agency", + "zh": "欧洲环境署" }, - "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", - "geographic_scope": "national" + "authority_level": "international", + "data_url": "https://www.eea.europa.eu/en/datahub", + "has_api": true, + "file_path": "international/environment/eea-climate.json", + "geographic_scope": "regional" } ], - "Communications": [ + "alcohol-and-drugs": [ { - "id": "adb-key-indicators", + "id": "aus-aihw", "name": { - "en": "Asian Development Bank Key Indicators", - "zh": "亚洲开发银行关键指标" + "en": "Australian Institute of Health and Welfare", + "zh": "澳大利亚健康与福利研究所" }, - "authority_level": "international", - "data_url": "https://kidb.adb.org", + "authority_level": "government", + "data_url": "https://www.aihw.gov.au/", "has_api": true, - "file_path": "international/development/adb-key-indicators.json", - "geographic_scope": "regional" + "file_path": "countries/oceania/australia/aihw.json", + "geographic_scope": "national" } ], - "Computational Biology": [ + "alternative-data": [ { - "id": "intl-rcsb-pdb", + "id": "refinitiv-lseg", "name": { - "en": "Protein Data Bank (PDB)", - "zh": "蛋白质数据银行" + "en": "LSEG Data & Analytics (Refinitiv)", + "zh": "伦敦证交所数据分析(路孚特)" }, - "authority_level": "research", - "data_url": "https://www.rcsb.org", + "authority_level": "commercial", + "data_url": "https://www.lseg.com/en/data-analytics/products/workspace", "has_api": true, - "file_path": "academic/biology/pdb.json", + "file_path": "sectors/K-finance-insurance/refinitiv-lseg.json", "geographic_scope": "global" } ], - "Computational Linguistics": [ + "ancient-civilizations": [ { - "id": "bookscorpus", + "id": "british-museum-collection", "name": { - "en": "BooksCorpus", - "zh": "图书语料库" + "en": "British Museum Collection", + "zh": "大英博物馆馆藏" }, "authority_level": "research", - "data_url": "https://github.com/soskek/bookcorpus", + "data_url": "https://www.britishmuseum.org/collection", "has_api": false, - "file_path": "sectors/J-information-communication/bookscorpus.json", + "file_path": "sectors/R-arts-entertainment/british-museum-collection.json", "geographic_scope": "global" - }, + } + ], + "anthropology": [ { - "id": "conll-shared-tasks", + "id": "british-museum-collection", "name": { - "en": "CoNLL Shared Tasks Data", - "zh": "CoNLL共享任务数据集" + "en": "British Museum Collection", + "zh": "大英博物馆馆藏" }, "authority_level": "research", - "data_url": "https://www.conll.org/previous-tasks", + "data_url": "https://www.britishmuseum.org/collection", "has_api": false, - "file_path": "sectors/J-information-communication/conll-shared-tasks.json", + "file_path": "sectors/R-arts-entertainment/british-museum-collection.json", "geographic_scope": "global" } ], - "Computational Physics": [ + "anti-corruption": [ { - "id": "cern-open-data", + "id": "china-ccdi", "name": { - "en": "CERN Open Data Portal", - "zh": "CERN 开放数据门户" + "en": "Central Commission for Discipline Inspection of the Communist Party of China", + "zh": "中央纪律检查委员会" + }, + "authority_level": "government", + "data_url": "https://www.ccdi.gov.cn/xxgk/", + "has_api": false, + "file_path": "china/governance/china-ccdi.json", + "geographic_scope": "national" + } + ], + "antimicrobial-resistance": [ + { + "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, + "file_path": "international/health/ecdc-surveillance.json", + "geographic_scope": "regional" + } + ], + "archaeology": [ + { + "id": "british-museum-collection", + "name": { + "en": "British Museum Collection", + "zh": "大英博物馆馆藏" }, "authority_level": "research", - "data_url": "https://opendata.cern.ch/", - "has_api": true, - "file_path": "academic/physics/cern-open-data.json", + "data_url": "https://www.britishmuseum.org/collection", + "has_api": false, + "file_path": "sectors/R-arts-entertainment/british-museum-collection.json", "geographic_scope": "global" } ], - "Computer Science": [ + "art-history": [ { - "id": "derwent-innovation-index", + "id": "british-museum-collection", "name": { - "en": "Derwent Innovation Index", - "zh": "德温特创新索引" + "en": "British Museum Collection", + "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", + "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" } ], - "Computer Vision": [ + "artificial-intelligence": [ + { + "id": "china-caict", + "name": { + "en": "China Academy of Information and Communications Technology", + "zh": "中国信息通信研究院" + }, + "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": "cifar", "name": { @@ -1615,6 +1511,18 @@ "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, + "file_path": "sectors/J-information-communication/common-crawl.json", + "geographic_scope": "global" + }, { "id": "imagenet", "name": { @@ -1626,834 +1534,738 @@ "has_api": false, "file_path": "sectors/J-information-communication/imagenet.json", "geographic_scope": "global" - } - ], - "Consumer": [ + }, { - "id": "us-data-gov", + "id": "aws-open-data-registry", "name": { - "en": "Data.gov", - "zh": "美国政府开放数据平台" + "en": "Registry of Open Data on AWS", + "zh": "AWS开放数据注册表" }, - "authority_level": "government", - "data_url": "https://catalog.data.gov/dataset", + "authority_level": "commercial", + "data_url": "https://registry.opendata.aws/", "has_api": false, - "file_path": "countries/north-america/usa/us-data-gov.json", - "geographic_scope": "national" + "file_path": "sectors/computer_science_ai/aws-open-data-registry.json", + "geographic_scope": "global" } ], - "Consumer Confidence": [ + "arts": [ { - "id": "acad-conferenceboard", + "id": "china-cflac", "name": { - "en": "The Conference Board Economic Data", - "zh": "世界大型企业联合会经济数据" + "en": "China Federation of Literary and Art Circles", + "zh": "中国文学艺术界联合会" }, - "authority_level": "research", - "data_url": "https://www.conference-board.org/topics/economic-data-analysis", + "authority_level": "other", + "data_url": "https://www.cflac.org.cn", "has_api": false, - "file_path": "academic/economics/conference-board.json", - "geographic_scope": "global" - } - ], - "Consumer Expenditures": [ + "file_path": "china/governance/culture/china-cflac.json", + "geographic_scope": "national" + }, { - "id": "us-bls", + "id": "china-cnaf", "name": { - "en": "Bureau of Labor Statistics", - "zh": "美国劳工统计局" + "en": "China National Arts Fund", + "zh": "国家艺术基金" }, "authority_level": "government", - "data_url": "https://www.bls.gov/data/", - "has_api": true, - "file_path": "countries/north-america/usa/us-bls.json", + "data_url": "https://www.cnaf.cn", + "has_api": false, + "file_path": "china/governance/culture/china-cnaf.json", "geographic_scope": "national" } ], - "Consumer Prices": [ + "asset-disposal": [ { - "id": "bis-statistics", + "id": "china-alibaba-auction", "name": { - "en": "BIS Statistics", - "zh": "国际清算银行统计数据" + "en": "Alibaba Judicial Auction Platform", + "zh": "阿里拍卖·司法" }, - "authority_level": "government", - "data_url": "https://data.bis.org/", - "has_api": true, - "file_path": "academic/economics/bis-statistics.json", - "geographic_scope": "global" - } - ], - "Consumer Spending": [ + "authority_level": "commercial", + "data_url": "https://sf.taobao.com", + "has_api": false, + "file_path": "china/economy/china-alibaba-auction.json", + "geographic_scope": "national" + }, { - "id": "us-bea", + "id": "china-jd-auction", "name": { - "en": "Bureau of Economic Analysis", - "zh": "美国经济分析局" + "en": "JD.com Judicial Auction Platform", + "zh": "京东拍卖·司法" }, - "authority_level": "government", - "data_url": "https://www.bea.gov/data", - "has_api": true, - "file_path": "countries/north-america/usa/us-bea.json", + "authority_level": "commercial", + "data_url": "https://auction.jd.com/sifa.html", + "has_api": false, + "file_path": "china/economy/china-jd-auction.json", "geographic_scope": "national" - } - ], - "Contaminants": [ + }, { - "id": "codex-alimentarius", + "id": "china-court-auction", "name": { - "en": "Codex Alimentarius Standards", - "zh": "国际食品法典委员会标准" + "en": "People's Court Litigation Assets Network", + "zh": "人民法院诉讼资产网" }, - "authority_level": "international", - "data_url": "https://www.fao.org/fao-who-codexalimentarius/codex-texts/all-standards/en/", + "authority_level": "government", + "data_url": "https://www.rmfysszc.gov.cn", "has_api": false, - "file_path": "international/standards-metrology/codex-alimentarius.json", - "geographic_scope": "global" + "file_path": "china/governance/china-court-auction.json", + "geographic_scope": "national" } ], - "Corporate Actions": [ + "asset-management": [ { - "id": "crsp", + "id": "china-amac", "name": { - "en": "CRSP - Center for Research in Security Prices", - "zh": "证券价格研究中心" + "en": "Asset Management Association of China", + "zh": "中国证券投资基金业协会" }, - "authority_level": "research", - "data_url": "https://www.crsp.org/", - "has_api": true, - "file_path": "sectors/K-finance-insurance/crsp.json", + "authority_level": "government", + "data_url": "https://www.amac.org.cn/informationpublicity/", + "has_api": false, + "file_path": "china/finance/capital-markets/china-amac.json", "geographic_scope": "national" - } - ], - "Corporate Fundamentals": [ + }, { - "id": "bloomberg-terminal", + "id": "hundsun-juyuan", "name": { - "en": "Bloomberg Terminal (Public Data)", - "zh": "彭博终端(部分公开数据)" + "en": "Hundsun JuYuan Financial Data", + "zh": "恒生聚源金融数据" }, "authority_level": "commercial", - "data_url": "https://www.bloomberg.com/markets", - "has_api": true, - "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json", - "geographic_scope": "global" - } - ], - "Corporate Profits": [ - { - "id": "us-bea", - "name": { - "en": "Bureau of Economic Analysis", - "zh": "美国经济分析局" - }, - "authority_level": "government", - "data_url": "https://www.bea.gov/data", + "data_url": "https://gildata.hs.net/", "has_api": true, - "file_path": "countries/north-america/usa/us-bea.json", + "file_path": "sectors/K-finance-insurance/hundsun-juyuan.json", "geographic_scope": "national" } ], - "Corruption and Accountability": [ + "asset-pricing": [ { - "id": "afrobarometer", + "id": "crsp", "name": { - "en": "Afrobarometer", - "zh": "非洲晴雨表" + "en": "CRSP - Center for Research in Security Prices", + "zh": "证券价格研究中心" }, "authority_level": "research", - "data_url": "https://www.afrobarometer.org/data/", - "has_api": false, - "file_path": "academic/social/afrobarometer.json", - "geographic_scope": "regional" + "data_url": "https://www.crsp.org/", + "has_api": true, + "file_path": "sectors/K-finance-insurance/crsp.json", + "geographic_scope": "national" } ], - "Creative Thinking": [ + "astronomy": [ { - "id": "oecd-pisa", + "id": "china-cstr", "name": { - "en": "PISA - Programme for International Student Assessment", - "zh": "国际学生评估项目" + "en": "China Science & Technology Resource Identifier Platform", + "zh": "科技资源标识服务平台" }, - "authority_level": "international", - "data_url": "https://www.oecd.org/en/about/programmes/pisa.html", + "authority_level": "government", + "data_url": "https://cstr.cn/resreg", "has_api": false, - "file_path": "international/education/oecd-pisa.json", - "geographic_scope": "global" - } - ], - "Credit": [ + "file_path": "china/research/china-cstr.json", + "geographic_scope": "national" + }, { - "id": "uk-boe", + "id": "china-pmo", "name": { - "en": "Bank of England Statistical Interactive Database", - "zh": "英格兰银行统计数据库" + "en": "Purple Mountain Observatory, Chinese Academy of Sciences", + "zh": "中国科学院紫金山天文台" }, - "authority_level": "government", - "data_url": "https://www.bankofengland.co.uk/boeapps/database/", + "authority_level": "research", + "data_url": "http://www.pmo.ac.cn", "has_api": false, - "file_path": "countries/europe/uk/bank-of-england.json", + "file_path": "china/research/china-pmo.json", "geographic_scope": "national" }, { - "id": "bis-statistics", + "id": "china-naoc", "name": { - "en": "BIS Statistics - Bank for International Settlements", - "zh": "国际清算银行统计数据" + "en": "National Astronomical Observatories of China (NAOC)", + "zh": "中国科学院国家天文台" }, - "authority_level": "government", - "data_url": "https://data.bis.org/", - "has_api": true, - "file_path": "international/economics/bis.json", - "geographic_scope": "global" + "authority_level": "research", + "data_url": "https://nadc.china-vo.org", + "has_api": false, + "file_path": "china/technology/sci_resources/china-naoc.json", + "geographic_scope": "national" }, { - "id": "bis-statistics", + "id": "aws-open-data-registry", "name": { - "en": "BIS Statistics - Bank for International Settlements", - "zh": "国际清算银行统计数据" + "en": "Registry of Open Data on AWS", + "zh": "AWS开放数据注册表" }, - "authority_level": "international", - "data_url": "https://data.bis.org", - "has_api": true, - "file_path": "international/finance/bis-statistics.json", + "authority_level": "commercial", + "data_url": "https://registry.opendata.aws/", + "has_api": false, + "file_path": "sectors/computer_science_ai/aws-open-data-registry.json", "geographic_scope": "global" } ], - "Credit Data": [ + "athletics": [ { - "id": "brazil-bcb", + "id": "tennis-sackmann", "name": { - "en": "Central Bank of Brazil", - "zh": "巴西中央银行", - "native": "Banco Central do Brasil" + "en": "Tennis Abstract - ATP/WTA Match Data", + "zh": "网球数据摘要 - ATP/WTA 比赛数据" }, - "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" + "authority_level": "research", + "data_url": "https://github.com/JeffSackmann/tennis_atp", + "has_api": false, + "file_path": "sectors/sports/tennis-sackmann.json", + "geographic_scope": "global" } ], - "Credit Markets": [ + "atmosphere": [ { - "id": "bis-statistics", + "id": "copernicus-open-access-hub", "name": { - "en": "BIS Statistics", - "zh": "国际清算银行统计数据" + "en": "Copernicus Open Access Hub", + "zh": "哥白尼开放访问中心" }, - "authority_level": "government", - "data_url": "https://data.bis.org/", + "authority_level": "international", + "data_url": "https://dataspace.copernicus.eu/", "has_api": true, - "file_path": "academic/economics/bis-statistics.json", + "file_path": "academic/environment/copernicus-open-access-hub.json", "geographic_scope": "global" - } - ], - "Crime and justice": [ + }, { - "id": "uk-data-gov", + "id": "bureau-of-meteorology", "name": { - "en": "Data.gov.uk", - "zh": "英国政府开放数据平台" + "en": "Bureau of Meteorology", + "zh": "澳大利亚气象局" }, "authority_level": "government", - "data_url": "https://www.data.gov.uk", + "data_url": "https://www.bom.gov.au", "has_api": true, - "file_path": "countries/europe/uk/uk-data-gov.json", + "file_path": "countries/oceania/australia/bureau-of-meteorology.json", "geographic_scope": "national" - } - ], - "Crop Production": [ + }, { - "id": "aafc", + "id": "nasa-earthdata", "name": { - "en": "Agriculture and Agri-Food Canada", - "zh": "加拿大农业与农业食品部", - "native": "Agriculture et Agroalimentaire Canada" + "en": "NASA Earthdata", + "zh": "NASA地球数据" }, "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" - } - ], - "Crop Science": [ - { - "id": "cgiar-research-data", - "name": { - "en": "CGIAR Research Data", - "zh": "国际农业研究磋商组织研究数据" - }, - "authority_level": "international", - "data_url": "https://gardian.cgiar.org/", + "data_url": "https://www.earthdata.nasa.gov", "has_api": true, - "file_path": "international/agriculture/cgiar-research-data.json", + "file_path": "international/earth-science/nasa-earthdata.json", "geographic_scope": "global" } ], - "Crops": [ + "atmosphere-monitoring": [ { - "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" } ], - "Cryptocurrencies": [ + "atmospheric-science": [ { - "id": "alpha-vantage", + "id": "noaa-cdo", "name": { - "en": "Alpha Vantage API", - "zh": "Alpha Vantage API" + "en": "NOAA Climate Data Online (CDO)", + "zh": "NOAA气候数据在线系统" }, - "authority_level": "commercial", - "data_url": "https://www.alphavantage.co/", + "authority_level": "government", + "data_url": "https://www.ncei.noaa.gov/cdo-web/", "has_api": true, - "file_path": "sectors/K-finance-insurance/alpha-vantage.json", + "file_path": "countries/north-america/usa/noaa-cdo.json", "geographic_scope": "global" - } - ], - "Cryptocurrency": [ + }, { - "id": "akshare", + "id": "cdiac", "name": { - "en": "AKShare - Open Source Financial Data Interface Library", - "zh": "AKShare - 开源财经数据接口库" + "en": "Carbon Dioxide Information Analysis Center", + "zh": "碳信息分析中心" }, - "authority_level": "other", - "data_url": "https://github.com/akfamily/akshare", + "authority_level": "research", + "data_url": "https://data.ess-dive.lbl.gov/portals/CDIAC", "has_api": true, - "file_path": "sectors/K-finance-insurance/akshare.json", + "file_path": "international/environment/cdiac.json", "geographic_scope": "global" } ], - "Cryptocurrency Markets": [ + "automotive": [ { - "id": "cryptocurrency-data", + "id": "china-passenger-car-association", "name": { - "en": "Cryptocurrency Market Data (CoinMarketCap & CoinGecko)", - "zh": "加密货币市场数据(CoinMarketCap 和 CoinGecko)" + "en": "China Passenger Car Association", + "zh": "全国乘用车市场信息联席会" }, - "authority_level": "commercial", - "data_url": "https://coinmarketcap.com", - "has_api": true, - "file_path": "sectors/K-finance-insurance/cryptocurrency-data.json", - "geographic_scope": "global" - } - ], - "Crystallography": [ + "authority_level": "research", + "data_url": "https://www.cpcaauto.com/newslist.php?types=csjd", + "has_api": false, + "file_path": "china/economy/automotive/china-passenger-car-association.json", + "geographic_scope": "national" + }, { - "id": "acad-cod", + "id": "china-sae", "name": { - "en": "Crystallography Open Database", - "zh": "晶体学开放数据库" + "en": "Society of Automotive Engineers of China", + "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" + "data_url": "https://www.sae-china.org/newsdata/reportdata/", + "has_api": false, + "file_path": "china/technology/industry-associations/china-sae.json", + "geographic_scope": "national" }, { - "id": "cambridge-structural-database", + "id": "china-auto-association", "name": { - "en": "Cambridge Structural Database (CSD)", - "zh": "剑桥晶体结构数据库" + "en": "China Association of Automobile Manufacturers", + "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" - } - ], - "Cultural Heritage": [ + "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": "british-museum-collection", + "id": "china-charging-alliance", "name": { - "en": "British Museum Collection", - "zh": "大英博物馆馆藏" + "en": "China Electric Vehicle Charging Infrastructure Promotion Alliance", + "zh": "中国电动汽车充电基础设施促进联盟" }, - "authority_level": "research", - "data_url": "https://www.britishmuseum.org/collection", + "authority_level": "market", + "data_url": "https://evcipa.com/dataCenter/dataList", "has_api": false, - "file_path": "sectors/R-arts-entertainment/british-museum-collection.json", - "geographic_scope": "global" - } - ], - "Currencies": [ + "file_path": "sectors/C-manufacturing/automotive/china-charging-alliance.json", + "geographic_scope": "national" + }, { - "id": "bloomberg-terminal", + "id": "derwent-innovation-index", "name": { - "en": "Bloomberg Terminal (Public Data)", - "zh": "彭博终端(部分公开数据)" + "en": "Derwent Innovation Index", + "zh": "德温特创新索引" }, "authority_level": "commercial", - "data_url": "https://www.bloomberg.com/markets", + "data_url": "https://clarivate.com/products/derwent-innovation/", "has_api": true, - "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json", + "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json", "geographic_scope": "global" } ], - "Currency and Coins": [ - { - "id": "brazil-bcb", - "name": { - "en": "Central Bank of Brazil", - "zh": "巴西中央银行", - "native": "Banco Central do Brasil" - }, - "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" - } - ], - "Customs Statistics": [ + "aviation": [ { - "id": "india-dgcis", + "id": "china-caac", "name": { - "en": "Directorate General of Commercial Intelligence and Statistics", - "zh": "印度商业情报与统计总局" + "en": "Civil Aviation Administration of China", + "zh": "中国民用航空局", + "native": "中国民用航空局" }, "authority_level": "government", - "data_url": "https://www.commerce.gov.in/trade-statistics/", + "data_url": "https://www.caac.gov.cn/XXGK/XXGK/TJSJ/index.html", "has_api": false, - "file_path": "countries/asia/india/india-dgcis.json", + "file_path": "china/economy/china-caac.json", "geographic_scope": "national" - } - ], - "Data Science": [ - { - "id": "cern-open-data", - "name": { - "en": "CERN Open Data Portal", - "zh": "CERN 开放数据门户" - }, - "authority_level": "research", - "data_url": "https://opendata.cern.ch/", - "has_api": true, - "file_path": "academic/physics/cern-open-data.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, - "file_path": "sectors/J-information-communication/common-crawl.json", - "geographic_scope": "global" - } - ], - "DeFi (Decentralized Finance)": [ - { - "id": "cryptocurrency-data", + "id": "icao-aviation-data", "name": { - "en": "Cryptocurrency Market Data (CoinMarketCap & CoinGecko)", - "zh": "加密货币市场数据(CoinMarketCap 和 CoinGecko)" + "en": "ICAO Aviation Data", + "zh": "国际民航组织航空数据" }, - "authority_level": "commercial", - "data_url": "https://coinmarketcap.com", + "authority_level": "international", + "data_url": "https://dataservices.icao.int/", "has_api": true, - "file_path": "sectors/K-finance-insurance/cryptocurrency-data.json", + "file_path": "international/transportation/icao-aviation-data.json", "geographic_scope": "global" } ], - "Debt Securities": [ + "balance-of-payments": [ { - "id": "bis-statistics", + "id": "india-rbi", "name": { - "en": "BIS Statistics", - "zh": "国际清算银行统计数据" + "en": "Reserve Bank of India", + "zh": "印度储备银行", + "native": "भारतीय रिज़र्व बैंक" }, "authority_level": "government", - "data_url": "https://data.bis.org/", + "data_url": "https://www.rbi.org.in/Scripts/Statistics.aspx", "has_api": true, - "file_path": "academic/economics/bis-statistics.json", - "geographic_scope": "global" - } - ], - "Deep Learning": [ + "file_path": "countries/asia/india/india-rbi.json", + "geographic_scope": "national" + }, { - "id": "bookscorpus", + "id": "boj-statistics", "name": { - "en": "BooksCorpus", - "zh": "图书语料库" + "en": "Bank of Japan Statistics", + "zh": "日本银行统计数据", + "native": "日本銀行統計" }, - "authority_level": "research", - "data_url": "https://github.com/soskek/bookcorpus", + "authority_level": "government", + "data_url": "https://www.boj.or.jp/en/statistics/index.htm", "has_api": false, - "file_path": "sectors/J-information-communication/bookscorpus.json", - "geographic_scope": "global" + "file_path": "countries/asia/japan/boj-statistics.json", + "geographic_scope": "national" }, { - "id": "cifar", + "id": "korea-bok", "name": { - "en": "CIFAR-10 and CIFAR-100", - "zh": "CIFAR-10 和 CIFAR-100 数据集" + "en": "Bank of Korea", + "zh": "韩国银行", + "native": "한국은행" }, - "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" + "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", + "geographic_scope": "national" }, { - "id": "imagenet", + "id": "sbv", "name": { - "en": "ImageNet", - "zh": "ImageNet 图像数据库" + "en": "State Bank of Vietnam", + "zh": "越南国家银行" }, - "authority_level": "research", - "data_url": "https://www.image-net.org", + "authority_level": "government", + "data_url": "https://www.sbv.gov.vn/webcenter/portal/en/home/rm/public", "has_api": false, - "file_path": "sectors/J-information-communication/imagenet.json", - "geographic_scope": "global" - } - ], - "Defence": [ + "file_path": "countries/asia/vietnam/sbv.json", + "geographic_scope": "national" + }, { - "id": "uk-data-gov", + "id": "mx-banxico", "name": { - "en": "Data.gov.uk", - "zh": "英国政府开放数据平台" + "en": "Bank of Mexico Economic Information System", + "zh": "墨西哥银行经济信息系统", + "native": "Sistema de Información Económica - Banco de México" }, "authority_level": "government", - "data_url": "https://www.data.gov.uk", + "data_url": "https://www.banxico.org.mx", "has_api": true, - "file_path": "countries/europe/uk/uk-data-gov.json", + "file_path": "countries/north-america/mexico/banxico.json", "geographic_scope": "national" - } - ], - "Democracy Studies": [ + }, { - "id": "asian-barometer", + "id": "brazil-bcb", "name": { - "en": "Asian Barometer Survey", - "zh": "亚洲民主动态调查" + "en": "Central Bank of Brazil", + "zh": "巴西中央银行", + "native": "Banco Central do Brasil" }, - "authority_level": "research", - "data_url": "https://asianbarometer.org", - "has_api": false, - "file_path": "academic/social/asian-barometer.json", - "geographic_scope": "regional" - } - ], - "Democracy and Governance": [ + "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": "afrobarometer", + "id": "adb-data-library", "name": { - "en": "Afrobarometer", - "zh": "非洲晴雨表" + "en": "Asian Development Bank Data Library", + "zh": "亚洲开发银行数据库" }, - "authority_level": "research", - "data_url": "https://www.afrobarometer.org/data/", - "has_api": false, - "file_path": "academic/social/afrobarometer.json", + "authority_level": "international", + "data_url": "https://data.adb.org", + "has_api": true, + "file_path": "international/development/adb-data-library.json", "geographic_scope": "regional" - } - ], - "Demographics": [ + }, { - "id": "adb-key-indicators", + "id": "ecb-sdw", "name": { - "en": "Asian Development Bank Key Indicators", - "zh": "亚洲开发银行关键指标" + "en": "ECB Statistical Data Warehouse (ECB Data Portal)", + "zh": "欧洲央行统计数据仓库" }, - "authority_level": "international", - "data_url": "https://kidb.adb.org", + "authority_level": "government", + "data_url": "https://data.ecb.europa.eu/", "has_api": true, - "file_path": "international/development/adb-key-indicators.json", + "file_path": "international/economics/ecb-sdw.json", "geographic_scope": "regional" } ], - "Derivatives": [ + "banking": [ { - "id": "bis-statistics", + "id": "china-cdb", "name": { - "en": "BIS Statistics", - "zh": "国际清算银行统计数据" + "en": "China Development Bank", + "zh": "国家开发银行" }, "authority_level": "government", - "data_url": "https://data.bis.org/", - "has_api": true, - "file_path": "academic/economics/bis-statistics.json", - "geographic_scope": "global" + "data_url": "https://www.cdb.com.cn", + "has_api": false, + "file_path": "china/finance/banking/cdb.json", + "geographic_scope": "national" }, { - "id": "bis-statistics", + "id": "china-adbc", "name": { - "en": "BIS Statistics - Bank for International Settlements", - "zh": "国际清算银行统计数据" + "en": "Agricultural Development Bank of China", + "zh": "中国农业发展银行" }, "authority_level": "government", - "data_url": "https://data.bis.org/", - "has_api": true, - "file_path": "international/economics/bis.json", - "geographic_scope": "global" + "data_url": "https://www.adbc.com.cn/", + "has_api": false, + "file_path": "china/finance/banking/china-adbc.json", + "geographic_scope": "national" }, { - "id": "bis-statistics", + "id": "china-pbccrc", "name": { - "en": "BIS Statistics - Bank for International Settlements", - "zh": "国际清算银行统计数据" + "en": "People's Bank of China Credit Reference Center", + "zh": "中国人民银行征信中心" }, - "authority_level": "international", - "data_url": "https://data.bis.org", - "has_api": true, - "file_path": "international/finance/bis-statistics.json", - "geographic_scope": "global" + "authority_level": "government", + "data_url": "https://www.pbccrc.org.cn", + "has_api": false, + "file_path": "china/finance/banking/china-pbccrc.json", + "geographic_scope": "national" }, { - "id": "bloomberg-terminal", + "id": "china-eximbank", "name": { - "en": "Bloomberg Terminal (Public Data)", - "zh": "彭博终端(部分公开数据)" + "en": "Export-Import Bank of China", + "zh": "中国进出口银行" }, - "authority_level": "commercial", - "data_url": "https://www.bloomberg.com/markets", - "has_api": true, - "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json", - "geographic_scope": "global" - } - ], - "Development Economics": [ + "authority_level": "government", + "data_url": "http://www.eximbank.gov.cn/cn/index/information/annual/index.html", + "has_api": false, + "file_path": "china/finance/banking/eximbank.json", + "geographic_scope": "national" + }, { - "id": "adb-ado", + "id": "china-nfra", "name": { - "en": "Asian Development Outlook", - "zh": "亚洲开发展望" + "en": "National Financial Regulatory Administration", + "zh": "国家金融监督管理总局", + "native": "国家金融监督管理总局" }, - "authority_level": "international", - "data_url": "https://www.adb.org/outlook", + "authority_level": "government", + "data_url": "https://www.nfra.gov.cn/cn/view/pages/tongjishuju/tongjishuju.html", "has_api": false, - "file_path": "international/economics/adb-ado.json", - "geographic_scope": "regional" - } - ], - "Development Finance": [ + "file_path": "china/finance/banking/nfra.json", + "geographic_scope": "national" + }, { - "id": "adb-data-library", + "id": "hkma", "name": { - "en": "Asian Development Bank Data Library", - "zh": "亚洲开发银行数据库" + "en": "Hong Kong Monetary Authority", + "zh": "香港金融管理局" }, - "authority_level": "international", - "data_url": "https://data.adb.org", + "authority_level": "government", + "data_url": "https://www.hkma.gov.hk/eng/data-publications-and-research/data-and-statistics/", "has_api": true, - "file_path": "international/development/adb-data-library.json", - "geographic_scope": "regional" + "file_path": "countries/asia/hkma.json", + "geographic_scope": "national" }, { - "id": "afdb", + "id": "india-rbi", "name": { - "en": "African Development Bank", - "zh": "非洲开发银行" + "en": "Reserve Bank of India", + "zh": "印度储备银行", + "native": "भारतीय रिज़र्व बैंक" }, - "authority_level": "international", - "data_url": "https://www.afdb.org/en/knowledge/statistics", + "authority_level": "government", + "data_url": "https://www.rbi.org.in/Scripts/Statistics.aspx", "has_api": true, - "file_path": "international/development/afdb.json", - "geographic_scope": "regional" + "file_path": "countries/asia/india/india-rbi.json", + "geographic_scope": "national" }, { - "id": "caf", + "id": "boj-statistics", "name": { - "en": "Development Bank of Latin America and the Caribbean (CAF)", - "zh": "拉美和加勒比开发银行", - "native": "Banco de Desarrollo de América Latina y El Caribe" + "en": "Bank of Japan Statistics", + "zh": "日本银行统计数据", + "native": "日本銀行統計" }, - "authority_level": "international", - "data_url": "https://www.caf.com/en/", + "authority_level": "government", + "data_url": "https://www.boj.or.jp/en/statistics/index.htm", "has_api": false, - "file_path": "international/development/caf.json", - "geographic_scope": "regional" + "file_path": "countries/asia/japan/boj-statistics.json", + "geographic_scope": "national" }, { - "id": "caribbean-development-bank", + "id": "japan-fsa", "name": { - "en": "Caribbean Development Bank", - "zh": "加勒比开发银行" + "en": "Japan Financial Services Agency", + "zh": "日本金融厅" }, - "authority_level": "international", - "data_url": "https://www.caribank.org/data/country-data-reports", + "authority_level": "government", + "data_url": "https://www.fsa.go.jp/en/refer/index.html", "has_api": false, - "file_path": "international/development/caribbean-development-bank.json", - "geographic_scope": "regional" + "file_path": "countries/asia/japan/japan-fsa.json", + "geographic_scope": "national" }, { - "id": "idb", + "id": "romania-bnr", "name": { - "en": "Inter-American Development Bank", - "zh": "美洲开发银行" + "en": "National Bank of Romania (BNR)", + "zh": "罗马尼亚国家银行" }, - "authority_level": "international", - "data_url": "https://www.iadb.org/en/knowledge-resources/data", + "authority_level": "government", + "data_url": "https://www.bnr.ro/Statistics-702.aspx", "has_api": true, - "file_path": "international/development/idb.json", - "geographic_scope": "regional" - } - ], - "Digital Assets": [ + "file_path": "countries/europe/romania/romania-bnr.json", + "geographic_scope": "national" + }, { - "id": "cryptocurrency-data", + "id": "uk-boe", "name": { - "en": "Cryptocurrency Market Data (CoinMarketCap & CoinGecko)", - "zh": "加密货币市场数据(CoinMarketCap 和 CoinGecko)" + "en": "Bank of England Statistical Interactive Database", + "zh": "英格兰银行统计数据库" }, - "authority_level": "commercial", - "data_url": "https://coinmarketcap.com", - "has_api": true, - "file_path": "sectors/K-finance-insurance/cryptocurrency-data.json", - "geographic_scope": "global" - } - ], - "Digital Transformation": [ + "authority_level": "government", + "data_url": "https://www.bankofengland.co.uk/boeapps/database/", + "has_api": false, + "file_path": "countries/europe/uk/bank-of-england.json", + "geographic_scope": "national" + }, { - "id": "caf", + "id": "canada-boc", "name": { - "en": "Development Bank of Latin America and the Caribbean (CAF)", - "zh": "拉美和加勒比开发银行", - "native": "Banco de Desarrollo de América Latina y El Caribe" + "en": "Bank of Canada", + "zh": "加拿大银行", + "native": "Banque du Canada" }, - "authority_level": "international", - "data_url": "https://www.caf.com/en/", - "has_api": false, - "file_path": "international/development/caf.json", - "geographic_scope": "regional" - } - ], - "Digital service performance": [ + "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": "uk-data-gov", + "id": "mx-banxico", "name": { - "en": "Data.gov.uk", - "zh": "英国政府开放数据平台" + "en": "Bank of Mexico Economic Information System", + "zh": "墨西哥银行经济信息系统", + "native": "Sistema de Información Económica - Banco de México" }, "authority_level": "government", - "data_url": "https://www.data.gov.uk", + "data_url": "https://www.banxico.org.mx", "has_api": true, - "file_path": "countries/europe/uk/uk-data-gov.json", + "file_path": "countries/north-america/mexico/banxico.json", "geographic_scope": "national" - } - ], - "Disability": [ + }, { - "id": "aus-aihw", + "id": "us-federalreserve", "name": { - "en": "Australian Institute of Health and Welfare", - "zh": "澳大利亚健康与福利研究所" + "en": "Federal Reserve Board", + "zh": "美联储理事会" }, "authority_level": "government", - "data_url": "https://www.aihw.gov.au/", - "has_api": true, - "file_path": "countries/oceania/australia/aihw.json", + "data_url": "https://www.federalreserve.gov/data.htm", + "has_api": false, + "file_path": "countries/north-america/usa/us-federalreserve.json", "geographic_scope": "national" - } - ], - "Disease Surveillance": [ + }, { - "id": "us-cdc", + "id": "brazil-bcb", "name": { - "en": "CDC Data & Statistics", - "zh": "美国疾控中心数据与统计" + "en": "Central Bank of Brazil", + "zh": "巴西中央银行", + "native": "Banco Central do Brasil" }, "authority_level": "government", - "data_url": "https://data.cdc.gov/", + "data_url": "https://dadosabertos.bcb.gov.br", "has_api": true, - "file_path": "countries/north-america/usa/us-cdc.json", + "file_path": "countries/south-america/brazil/brazil-bcb.json", "geographic_scope": "national" }, { - "id": "ecdc-surveillance", + "id": "icc-trade-register", "name": { - "en": "ECDC Surveillance Data", - "zh": "欧洲疾病预防控制中心监测数据" + "en": "ICC Trade Register", + "zh": "国际商会贸易统计" }, "authority_level": "international", - "data_url": "https://www.ecdc.europa.eu/en/data-dashboards-and-databases", + "data_url": "https://iccwbo.org/news-publications/policies-reports/icc-trade-register-report/", "has_api": false, - "file_path": "international/health/ecdc-surveillance.json", - "geographic_scope": "regional" - } - ], - "Disease and injury": [ + "file_path": "international/trade/icc-trade-register.json", + "geographic_scope": "global" + }, { - "id": "aus-aihw", + "id": "hundsun-juyuan", "name": { - "en": "Australian Institute of Health and Welfare", - "zh": "澳大利亚健康与福利研究所" + "en": "Hundsun JuYuan Financial Data", + "zh": "恒生聚源金融数据" }, - "authority_level": "government", - "data_url": "https://www.aihw.gov.au/", + "authority_level": "commercial", + "data_url": "https://gildata.hs.net/", "has_api": true, - "file_path": "countries/oceania/australia/aihw.json", + "file_path": "sectors/K-finance-insurance/hundsun-juyuan.json", "geographic_scope": "national" } ], - "Drug Development": [ + "banking-statistics": [ { - "id": "drugbank", + "id": "korea-bok", "name": { - "en": "DrugBank", - "zh": "药物与药物靶点数据库" + "en": "Bank of Korea", + "zh": "韩国银行", + "native": "한국은행" }, - "authority_level": "research", - "data_url": "https://go.drugbank.com", + "authority_level": "government", + "data_url": "https://www.bok.or.kr/eng/main/main.do", "has_api": true, - "file_path": "academic/chemistry/drugbank.json", - "geographic_scope": "global" + "file_path": "countries/asia/korea/korea-bok.json", + "geographic_scope": "national" }, { - "id": "cambridge-structural-database", + "id": "sbv", "name": { - "en": "Cambridge Structural Database (CSD)", - "zh": "剑桥晶体结构数据库" + "en": "State Bank of Vietnam", + "zh": "越南国家银行" }, - "authority_level": "research", - "data_url": "https://www.ccdc.cam.ac.uk", + "authority_level": "government", + "data_url": "https://www.sbv.gov.vn/webcenter/portal/en/home/rm/public", + "has_api": false, + "file_path": "countries/asia/vietnam/sbv.json", + "geographic_scope": "national" + }, + { + "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, - "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json", - "geographic_scope": "global" + "file_path": "international/economics/ecb-sdw.json", + "geographic_scope": "regional" } ], - "Drug Discovery": [ + "banking-supervision": [ { - "id": "alphafold-db", + "id": "ecb-sdw", "name": { - "en": "AlphaFold Protein Structure Database", - "zh": "AlphaFold蛋白质结构数据库" + "en": "ECB Statistical Data Warehouse (ECB Data Portal)", + "zh": "欧洲央行统计数据仓库" }, - "authority_level": "international", - "data_url": "https://alphafold.com", + "authority_level": "government", + "data_url": "https://data.ecb.europa.eu/", "has_api": true, - "file_path": "academic/biology/alphafold-db.json", - "geographic_scope": "global" - }, + "file_path": "international/economics/ecb-sdw.json", + "geographic_scope": "regional" + } + ], + "basic-education": [ { - "id": "intl-rcsb-pdb", + "id": "moe-china", "name": { - "en": "Protein Data Bank (PDB)", - "zh": "蛋白质数据银行" + "en": "Ministry of Education of the People's Republic of China", + "zh": "中华人民共和国教育部" }, - "authority_level": "research", - "data_url": "https://www.rcsb.org", - "has_api": true, - "file_path": "academic/biology/pdb.json", - "geographic_scope": "global" - }, + "authority_level": "government", + "data_url": "https://www.moe.gov.cn/jyb_xxgk/xxgk/neirong/tongji/", + "has_api": false, + "file_path": "china/education/moe-china.json", + "geographic_scope": "national" + } + ], + "bioactivity": [ { "id": "chembl", "name": { @@ -2465,592 +2277,543 @@ "has_api": true, "file_path": "academic/chemistry/chembl.json", "geographic_scope": "global" - }, + } + ], + "biochemistry": [ { - "id": "drugbank", + "id": "intl-rcsb-pdb", "name": { - "en": "DrugBank", - "zh": "药物与药物靶点数据库" + "en": "Protein Data Bank (PDB)", + "zh": "蛋白质数据银行" }, "authority_level": "research", - "data_url": "https://go.drugbank.com", + "data_url": "https://www.rcsb.org", "has_api": true, - "file_path": "academic/chemistry/drugbank.json", + "file_path": "academic/biology/pdb.json", "geographic_scope": "global" }, { - "id": "cambridge-structural-database", + "id": "pubchem", "name": { - "en": "Cambridge Structural Database (CSD)", - "zh": "剑桥晶体结构数据库" + "en": "PubChem", + "zh": "PubChem化学数据库" }, - "authority_level": "research", - "data_url": "https://www.ccdc.cam.ac.uk", + "authority_level": "government", + "data_url": "https://pubchem.ncbi.nlm.nih.gov/", "has_api": true, - "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json", + "file_path": "academic/chemistry/pubchem.json", "geographic_scope": "global" } ], - "Drug Metabolism": [ + "biodiversity": [ { - "id": "drugbank", + "id": "ena", "name": { - "en": "DrugBank", - "zh": "药物与药物靶点数据库" + "en": "European Nucleotide Archive", + "zh": "欧洲核苷酸档案库" }, - "authority_level": "research", - "data_url": "https://go.drugbank.com", + "authority_level": "international", + "data_url": "https://www.ebi.ac.uk/ena/browser/", "has_api": true, - "file_path": "academic/chemistry/drugbank.json", + "file_path": "academic/biology/ena.json", "geographic_scope": "global" - } - ], - "ESG Data": [ + }, { - "id": "bloomberg-terminal", + "id": "china-nsii", "name": { - "en": "Bloomberg Terminal (Public Data)", - "zh": "彭博终端(部分公开数据)" + "en": "National Specimen Information Infrastructure of China", + "zh": "中国国家标本资源平台" }, - "authority_level": "commercial", - "data_url": "https://www.bloomberg.com/markets", - "has_api": true, - "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json", - "geographic_scope": "global" - } - ], - "Earnings": [ + "authority_level": "research", + "data_url": "https://www.nsii.org.cn/2017/home.php", + "has_api": false, + "file_path": "china/research/china-nsii.json", + "geographic_scope": "national" + }, { - "id": "us-bls", + "id": "china-plant-csdb", "name": { - "en": "Bureau of Labor Statistics", - "zh": "美国劳工统计局" + "en": "China Plant Thematic Database (CAS Science Database)", + "zh": "中国植物主题数据库" }, - "authority_level": "government", - "data_url": "https://www.bls.gov/data/", - "has_api": true, - "file_path": "countries/north-america/usa/us-bls.json", + "authority_level": "research", + "data_url": "https://www.plant.csdb.cn", + "has_api": false, + "file_path": "china/research/china-plant-csdb.json", "geographic_scope": "national" - } - ], - "Earth Observation": [ + }, { - "id": "intl-copernicus-cdse", + "id": "china-cern", "name": { - "en": "Copernicus Data Space Ecosystem", - "zh": "哥白尼数据空间生态系统" + "en": "Chinese Ecosystem Research Network (CERN)", + "zh": "中国生态系统研究网络" }, - "authority_level": "international", - "data_url": "https://dataspace.copernicus.eu", - "has_api": true, - "file_path": "international/earth-science/copernicus-data-space.json", - "geographic_scope": "global" - } - ], - "Economic Analysis": [ + "authority_level": "research", + "data_url": "https://cern.ac.cn/0index/index.asp", + "has_api": false, + "file_path": "china/resources/environment/china-cern.json", + "geographic_scope": "national" + }, { - "id": "china-petroleum-chemical-federation", + "id": "china-nies", "name": { - "en": "China Petroleum and Chemical Industry Federation", - "zh": "中国石油和化学工业联合会" + "en": "Nanjing Institute of Environmental Sciences, MEE", + "zh": "生态环境部南京环境科学研究所" }, - "authority_level": "market", - "data_url": "http://www.cpcif.org.cn/list/402882396610575f0166105924fe0000", + "authority_level": "research", + "data_url": "https://www.nies.org", "has_api": false, - "file_path": "sectors/C-manufacturing/chemicals/china-petroleum-chemical-federation.json", + "file_path": "china/resources/environment/china-nies.json", "geographic_scope": "national" - } - ], - "Economic Data": [ + }, { - "id": "bloomberg-terminal", + "id": "cites-trade-database", "name": { - "en": "Bloomberg Terminal (Public Data)", - "zh": "彭博终端(部分公开数据)" + "en": "CITES Trade Database", + "zh": "濒危物种国际贸易公约贸易数据库" }, - "authority_level": "commercial", - "data_url": "https://www.bloomberg.com/markets", + "authority_level": "international", + "data_url": "https://trade.cites.org", + "has_api": false, + "file_path": "international/environment/cites-trade-database.json", + "geographic_scope": "global" + }, + { + "id": "eea-climate", + "name": { + "en": "European Environment Agency", + "zh": "欧洲环境署" + }, + "authority_level": "international", + "data_url": "https://www.eea.europa.eu/en/datahub", "has_api": true, - "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json", + "file_path": "international/environment/eea-climate.json", + "geographic_scope": "regional" + }, + { + "id": "gbif", + "name": { + "en": "Global Biodiversity Information Facility (GBIF)", + "zh": "全球生物多样性信息设施" + }, + "authority_level": "international", + "data_url": "https://www.gbif.org/occurrence/search", + "has_api": true, + "file_path": "international/paleontology/gbif.json", "geographic_scope": "global" } ], - "Economic Development": [ + "bioinformatics": [ { - "id": "afrobarometer", + "id": "1000-genomes", "name": { - "en": "Afrobarometer", - "zh": "非洲晴雨表" + "en": "1000 Genomes Project", + "zh": "千人基因组计划" }, "authority_level": "research", - "data_url": "https://www.afrobarometer.org/data/", + "data_url": "https://www.internationalgenome.org/", "has_api": false, - "file_path": "academic/social/afrobarometer.json", - "geographic_scope": "regional" + "file_path": "academic/biology/1000-genomes.json", + "geographic_scope": "global" }, { - "id": "caf", + "id": "alphafold-db", "name": { - "en": "Development Bank of Latin America and the Caribbean (CAF)", - "zh": "拉美和加勒比开发银行", - "native": "Banco de Desarrollo de América Latina y El Caribe" + "en": "AlphaFold Protein Structure Database", + "zh": "AlphaFold蛋白质结构数据库" }, "authority_level": "international", - "data_url": "https://www.caf.com/en/", - "has_api": false, - "file_path": "international/development/caf.json", - "geographic_scope": "regional" + "data_url": "https://alphafold.com", + "has_api": true, + "file_path": "academic/biology/alphafold-db.json", + "geographic_scope": "global" }, { - "id": "caribbean-development-bank", + "id": "ena", "name": { - "en": "Caribbean Development Bank", - "zh": "加勒比开发银行" + "en": "European Nucleotide Archive", + "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" - } - ], - "Economic Forecasting": [ + "data_url": "https://www.ebi.ac.uk/ena/browser/", + "has_api": true, + "file_path": "academic/biology/ena.json", + "geographic_scope": "global" + }, { - "id": "acad-conferenceboard", + "id": "us-ncbi-genbank", "name": { - "en": "The Conference Board Economic Data", - "zh": "世界大型企业联合会经济数据" + "en": "GenBank", + "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", + "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": "adb-ado", + "id": "drugbank", "name": { - "en": "Asian Development Outlook", - "zh": "亚洲开发展望" + "en": "DrugBank", + "zh": "药物与药物靶点数据库" }, - "authority_level": "international", - "data_url": "https://www.adb.org/outlook", - "has_api": false, - "file_path": "international/economics/adb-ado.json", - "geographic_scope": "regional" - } - ], - "Economic Indicators": [ + "authority_level": "research", + "data_url": "https://go.drugbank.com", + "has_api": true, + "file_path": "academic/chemistry/drugbank.json", + "geographic_scope": "global" + }, { - "id": "alpha-vantage", + "id": "tcga", "name": { - "en": "Alpha Vantage API", - "zh": "Alpha Vantage API" + "en": "The Cancer Genome Atlas (TCGA)", + "zh": "癌症基因组图谱" }, - "authority_level": "commercial", - "data_url": "https://www.alphavantage.co/", + "authority_level": "government", + "data_url": "https://portal.gdc.cancer.gov/", "has_api": true, - "file_path": "sectors/K-finance-insurance/alpha-vantage.json", - "geographic_scope": "global" + "file_path": "academic/health/tcga.json", + "geographic_scope": "national" } ], - "Economic Statistics": [ + "biology": [ { - "id": "afdb", + "id": "pubchem", "name": { - "en": "African Development Bank", - "zh": "非洲开发银行" + "en": "PubChem", + "zh": "PubChem化学数据库" }, - "authority_level": "international", - "data_url": "https://www.afdb.org/en/knowledge/statistics", + "authority_level": "government", + "data_url": "https://pubchem.ncbi.nlm.nih.gov/", "has_api": true, - "file_path": "international/development/afdb.json", - "geographic_scope": "regional" - } - ], - "Economic Surveys": [ + "file_path": "academic/chemistry/pubchem.json", + "geographic_scope": "global" + }, { - "id": "boj-statistics", + "id": "china-cstr", "name": { - "en": "Bank of Japan Statistics", - "zh": "日本银行统计数据", - "native": "日本銀行統計" + "en": "China Science & Technology Resource Identifier Platform", + "zh": "科技资源标识服务平台" }, "authority_level": "government", - "data_url": "https://www.boj.or.jp/en/statistics/index.htm", + "data_url": "https://cstr.cn/resreg", "has_api": false, - "file_path": "countries/asia/japan/boj-statistics.json", + "file_path": "china/research/china-cstr.json", "geographic_scope": "national" - } - ], - "Economics": [ + }, { - "id": "acad-conferenceboard", + "id": "china-ibcas", "name": { - "en": "The Conference Board Economic Data", - "zh": "世界大型企业联合会经济数据" + "en": "Institute of Botany, Chinese Academy of Sciences", + "zh": "中国科学院植物研究所" }, "authority_level": "research", - "data_url": "https://www.conference-board.org/topics/economic-data-analysis", + "data_url": "https://www.ibcas.ac.cn", "has_api": false, - "file_path": "academic/economics/conference-board.json", - "geographic_scope": "global" + "file_path": "china/research/china-ibcas.json", + "geographic_scope": "national" }, { - "id": "us-bea", + "id": "china-imcas", "name": { - "en": "Bureau of Economic Analysis", - "zh": "美国经济分析局" + "en": "Institute of Microbiology, Chinese Academy of Sciences", + "zh": "中国科学院微生物研究所" }, - "authority_level": "government", - "data_url": "https://www.bea.gov/data", - "has_api": true, - "file_path": "countries/north-america/usa/us-bea.json", + "authority_level": "research", + "data_url": "https://www.im.cas.cn", + "has_api": false, + "file_path": "china/research/china-imcas.json", "geographic_scope": "national" }, { - "id": "adb-data-library", + "id": "china-ioz", "name": { - "en": "Asian Development Bank Data Library", - "zh": "亚洲开发银行数据库" + "en": "Institute of Zoology, Chinese Academy of Sciences", + "zh": "中国科学院动物研究所" }, - "authority_level": "international", - "data_url": "https://data.adb.org", - "has_api": true, - "file_path": "international/development/adb-data-library.json", - "geographic_scope": "regional" + "authority_level": "research", + "data_url": "http://www.ioz.ac.cn", + "has_api": false, + "file_path": "china/research/china-ioz.json", + "geographic_scope": "national" }, { - "id": "adb-key-indicators", + "id": "gbif", "name": { - "en": "Asian Development Bank Key Indicators", - "zh": "亚洲开发银行关键指标" + "en": "Global Biodiversity Information Facility (GBIF)", + "zh": "全球生物多样性信息设施" }, "authority_level": "international", - "data_url": "https://kidb.adb.org", + "data_url": "https://www.gbif.org/occurrence/search", "has_api": true, - "file_path": "international/development/adb-key-indicators.json", - "geographic_scope": "regional" + "file_path": "international/paleontology/gbif.json", + "geographic_scope": "global" }, { - "id": "adb-ado", + "id": "paleobiodb", "name": { - "en": "Asian Development Outlook", - "zh": "亚洲开发展望" + "en": "Paleobiology Database (PBDB)", + "zh": "古生物学数据库" }, - "authority_level": "international", - "data_url": "https://www.adb.org/outlook", - "has_api": false, - "file_path": "international/economics/adb-ado.json", - "geographic_scope": "regional" + "authority_level": "research", + "data_url": "https://paleobiodb.org/navigator/", + "has_api": true, + "file_path": "international/paleontology/paleobiodb.json", + "geographic_scope": "global" } ], - "Ecosystems": [ + "biomarkers": [ { - "id": "us-data-gov", + "id": "uk-biobank", "name": { - "en": "Data.gov", - "zh": "美国政府开放数据平台" + "en": "UK Biobank", + "zh": "英国生物样本库" }, - "authority_level": "government", - "data_url": "https://catalog.data.gov/dataset", - "has_api": false, - "file_path": "countries/north-america/usa/us-data-gov.json", + "authority_level": "research", + "data_url": "https://www.ukbiobank.ac.uk/", + "has_api": true, + "file_path": "academic/biology/uk-biobank.json", "geographic_scope": "national" } ], - "Education": [ + "biomedical": [ { - "id": "uk-data-gov", + "id": "pubmed", "name": { - "en": "Data.gov.uk", - "zh": "英国政府开放数据平台" + "en": "PubMed", + "zh": "PubMed生物医学文献数据库" }, "authority_level": "government", - "data_url": "https://www.data.gov.uk", + "data_url": "https://pubmed.ncbi.nlm.nih.gov/", "has_api": true, - "file_path": "countries/europe/uk/uk-data-gov.json", - "geographic_scope": "national" - }, + "file_path": "academic/health/pubmed.json", + "geographic_scope": "global" + } + ], + "biomedical-research": [ { - "id": "us-data-gov", + "id": "tcga", "name": { - "en": "Data.gov", - "zh": "美国政府开放数据平台" + "en": "The Cancer Genome Atlas (TCGA)", + "zh": "癌症基因组图谱" }, "authority_level": "government", - "data_url": "https://catalog.data.gov/dataset", - "has_api": false, - "file_path": "countries/north-america/usa/us-data-gov.json", + "data_url": "https://portal.gdc.cancer.gov/", + "has_api": true, + "file_path": "academic/health/tcga.json", "geographic_scope": "national" - }, + } + ], + "biosphere": [ { - "id": "adb-data-library", + "id": "nasa-earthdata", "name": { - "en": "Asian Development Bank Data Library", - "zh": "亚洲开发银行数据库" + "en": "NASA Earthdata", + "zh": "NASA地球数据" }, - "authority_level": "international", - "data_url": "https://data.adb.org", + "authority_level": "government", + "data_url": "https://www.earthdata.nasa.gov", "has_api": true, - "file_path": "international/development/adb-data-library.json", - "geographic_scope": "regional" - }, + "file_path": "international/earth-science/nasa-earthdata.json", + "geographic_scope": "global" + } + ], + "biotechnology": [ { - "id": "afdb", + "id": "alphafold-db", "name": { - "en": "African Development Bank", - "zh": "非洲开发银行" + "en": "AlphaFold Protein Structure Database", + "zh": "AlphaFold蛋白质结构数据库" }, "authority_level": "international", - "data_url": "https://www.afdb.org/en/knowledge/statistics", + "data_url": "https://alphafold.com", "has_api": true, - "file_path": "international/development/afdb.json", - "geographic_scope": "regional" + "file_path": "academic/biology/alphafold-db.json", + "geographic_scope": "global" }, { - "id": "caf", + "id": "intl-rcsb-pdb", "name": { - "en": "Development Bank of Latin America and the Caribbean (CAF)", - "zh": "拉美和加勒比开发银行", - "native": "Banco de Desarrollo de América Latina y El Caribe" + "en": "Protein Data Bank (PDB)", + "zh": "蛋白质数据银行" }, - "authority_level": "international", - "data_url": "https://www.caf.com/en/", - "has_api": false, - "file_path": "international/development/caf.json", - "geographic_scope": "regional" + "authority_level": "research", + "data_url": "https://www.rcsb.org", + "has_api": true, + "file_path": "academic/biology/pdb.json", + "geographic_scope": "global" }, { - "id": "caribbean-development-bank", + "id": "derwent-innovation-index", "name": { - "en": "Caribbean Development Bank", - "zh": "加勒比开发银行" + "en": "Derwent Innovation Index", + "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" - }, + "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": [ { - "id": "idb", + "id": "cryptocurrency-data", "name": { - "en": "Inter-American Development Bank", - "zh": "美洲开发银行" + "en": "Cryptocurrency Market Data (CoinMarketCap & CoinGecko)", + "zh": "加密货币市场数据(CoinMarketCap 和 CoinGecko)" }, - "authority_level": "international", - "data_url": "https://www.iadb.org/en/knowledge-resources/data", + "authority_level": "commercial", + "data_url": "https://coinmarketcap.com", "has_api": true, - "file_path": "international/development/idb.json", - "geographic_scope": "regional" - }, + "file_path": "sectors/K-finance-insurance/cryptocurrency-data.json", + "geographic_scope": "global" + } + ], + "bond-market": [ { - "id": "oecd-pisa", + "id": "china-nafmii", "name": { - "en": "PISA - Programme for International Student Assessment", - "zh": "国际学生评估项目" + "en": "National Association of Financial Market Institutional Investors", + "zh": "中国银行间市场交易商协会" }, - "authority_level": "international", - "data_url": "https://www.oecd.org/en/about/programmes/pisa.html", + "authority_level": "government", + "data_url": "https://www.nafmii.org.cn/", "has_api": false, - "file_path": "international/education/oecd-pisa.json", - "geographic_scope": "global" + "file_path": "china/finance/capital-markets/china-nafmii.json", + "geographic_scope": "national" } ], - "Education Assessment": [ + "bonds": [ { - "id": "arwu", + "id": "china-shanghai-clearing-house", "name": { - "en": "Academic Ranking of World Universities", - "zh": "世界大学学术排名" + "en": "Shanghai Clearing House", + "zh": "上海清算所" }, - "authority_level": "research", - "data_url": "https://www.shanghairanking.com/rankings/arwu/2025", + "authority_level": "market", + "data_url": "https://www.shclearing.com.cn/sjtj/", "has_api": false, - "file_path": "sectors/P-education/arwu.json", - "geographic_scope": "global" + "file_path": "china/finance/china-shanghai-clearing-house.json", + "geographic_scope": "national" }, { - "id": "qs-world-university-rankings", + "id": "akshare", "name": { - "en": "QS World University Rankings", - "zh": "QS世界大学排名" + "en": "AkShare", + "zh": "AkShare" }, - "authority_level": "market", - "data_url": "https://www.topuniversities.com/world-university-rankings", - "has_api": false, - "file_path": "sectors/P-education/qs-world-university-rankings.json", + "authority_level": "other", + "data_url": "https://github.com/akfamily/akshare", + "has_api": true, + "file_path": "sectors/K-finance-insurance/akshare.json", "geographic_scope": "global" - } - ], - "Education Quality": [ + }, { - "id": "qs-world-university-rankings", + "id": "hundsun-juyuan", "name": { - "en": "QS World University Rankings", - "zh": "QS世界大学排名" + "en": "Hundsun JuYuan Financial Data", + "zh": "恒生聚源金融数据" }, - "authority_level": "market", - "data_url": "https://www.topuniversities.com/world-university-rankings", - "has_api": false, - "file_path": "sectors/P-education/qs-world-university-rankings.json", - "geographic_scope": "global" + "authority_level": "commercial", + "data_url": "https://gildata.hs.net/", + "has_api": true, + "file_path": "sectors/K-finance-insurance/hundsun-juyuan.json", + "geographic_scope": "national" } ], - "Education Statistics": [ + "border-control": [ { - "id": "qs-world-university-rankings", + "id": "gdvc", "name": { - "en": "QS World University Rankings", - "zh": "QS世界大学排名" + "en": "General Department of Vietnam Customs", + "zh": "越南海关总局" }, - "authority_level": "market", - "data_url": "https://www.topuniversities.com/world-university-rankings", + "authority_level": "government", + "data_url": "https://www.customs.gov.vn", "has_api": false, - "file_path": "sectors/P-education/qs-world-university-rankings.json", - "geographic_scope": "global" + "file_path": "countries/asia/vietnam/gdvc.json", + "geographic_scope": "national" } ], - "Elections and Electoral Systems": [ + "building-standards": [ { - "id": "afrobarometer", + "id": "china-mohurd", "name": { - "en": "Afrobarometer", - "zh": "非洲晴雨表" + "en": "Ministry of Housing and Urban-Rural Development", + "zh": "住房和城乡建设部", + "native": "住房和城乡建设部" }, - "authority_level": "research", - "data_url": "https://www.afrobarometer.org/data/", + "authority_level": "government", + "data_url": "https://www.mohurd.gov.cn/gongkai/zhengce/", "has_api": false, - "file_path": "academic/social/afrobarometer.json", - "geographic_scope": "regional" + "file_path": "china/construction/china-mohurd.json", + "geographic_scope": "national" } ], - "Electoral Studies": [ + "business": [ { - "id": "asian-barometer", + "id": "china-miit-sme", "name": { - "en": "Asian Barometer Survey", - "zh": "亚洲民主动态调查" + "en": "China Center for Promotion of SME Development (MIIT)", + "zh": "中国中小企业发展促进中心(工业和信息化部中小企业发展促进中心)" }, - "authority_level": "research", - "data_url": "https://asianbarometer.org", + "authority_level": "government", + "data_url": "https://www.chinasme.org.cn/html/mcms/daohang/tongzhigonggao/index.html", "has_api": false, - "file_path": "academic/social/asian-barometer.json", - "geographic_scope": "regional" - } - ], - "Electricity Transmission": [ + "file_path": "china/economy/china-miit-sme.json", + "geographic_scope": "national" + }, { - "id": "canada-cer", + "id": "hk-companies-registry", "name": { - "en": "Canada Energy Regulator", - "zh": "加拿大能源监管局", - "native": "Régie de l'énergie du Canada" + "en": "Hong Kong Companies Registry", + "zh": "香港公司注册处" }, "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", + "data_url": "https://www.cr.gov.hk/en/services/obtain-company-info.htm", + "has_api": false, + "file_path": "countries/asia/hk-companies-registry.json", "geographic_scope": "national" - } - ], - "Electricity and Magnetism": [ + }, { - "id": "bipm-kcdb", + "id": "philippines-psa", "name": { - "en": "BIPM Key Comparison Database (KCDB)", - "zh": "国际度量衡局关键比对数据库", - "native": "Bureau International des Poids et Mesures (BIPM)" + "en": "Philippine Statistics Authority", + "zh": "菲律宾统计局" }, - "authority_level": "international", - "data_url": "https://www.bipm.org/kcdb", - "has_api": true, - "file_path": "international/standards-metrology/bipm-kcdb.json", - "geographic_scope": "global" - } - ], - "Electronics": [ + "authority_level": "government", + "data_url": "https://openstat.psa.gov.ph", + "has_api": false, + "file_path": "countries/asia/philippines/psa.json", + "geographic_scope": "national" + }, { - "id": "derwent-innovation-index", + "id": "canada-statcan", "name": { - "en": "Derwent Innovation Index", - "zh": "德温特创新索引" + "en": "Statistics Canada", + "zh": "加拿大统计局", + "native": "Statistique Canada" }, - "authority_level": "commercial", - "data_url": "https://clarivate.com/products/derwent-innovation/", + "authority_level": "government", + "data_url": "https://www.statcan.gc.ca/en/start", "has_api": true, - "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json", - "geographic_scope": "global" - } - ], - "Emergency Management": [ + "file_path": "countries/north-america/canada/statcan.json", + "geographic_scope": "national" + }, { - "id": "intl-copernicus-cdse", + "id": "us-census", "name": { - "en": "Copernicus Data Space Ecosystem", - "zh": "哥白尼数据空间生态系统" - }, - "authority_level": "international", - "data_url": "https://dataspace.copernicus.eu", - "has_api": true, - "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": { - "en": "Bureau of Labor Statistics", - "zh": "美国劳工统计局" + "en": "U.S. Census Bureau", + "zh": "美国人口普查局" }, "authority_level": "government", - "data_url": "https://www.bls.gov/data/", + "data_url": "https://data.census.gov", "has_api": true, - "file_path": "countries/north-america/usa/us-bls.json", + "file_path": "countries/north-america/usa/us-census.json", "geographic_scope": "national" }, - { - "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" - } - ], - "Endangered Species": [ - { - "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" - } - ], - "Energy": [ { "id": "us-data-gov", "name": { @@ -3064,308 +2827,264 @@ "geographic_scope": "national" }, { - "id": "adb-data-library", - "name": { - "en": "Asian Development Bank Data Library", - "zh": "亚洲开发银行数据库" - }, - "authority_level": "international", - "data_url": "https://data.adb.org", - "has_api": true, - "file_path": "international/development/adb-data-library.json", - "geographic_scope": "regional" - }, - { - "id": "adb-key-indicators", + "id": "australia-abs", "name": { - "en": "Asian Development Bank Key Indicators", - "zh": "亚洲开发银行关键指标" + "en": "Australian Bureau of Statistics", + "zh": "澳大利亚统计局" }, - "authority_level": "international", - "data_url": "https://kidb.adb.org", + "authority_level": "government", + "data_url": "https://www.abs.gov.au", "has_api": true, - "file_path": "international/development/adb-key-indicators.json", - "geographic_scope": "regional" - }, + "file_path": "countries/oceania/australia/abs.json", + "geographic_scope": "national" + } + ], + "business-and-economy": [ { - "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", - "geographic_scope": "regional" - }, - { - "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, - "file_path": "sectors/D-energy/bp-statistical-review.json", - "geographic_scope": "global" + "file_path": "countries/europe/uk/uk-data-gov.json", + "geographic_scope": "national" } ], - "Energy Consumption": [ + "business-cycles": [ { - "id": "bp-statistical-review", + "id": "acad-conferenceboard", "name": { - "en": "Statistical Review of World Energy", - "zh": "世界能源统计年鉴" + "en": "The Conference Board Economic Data", + "zh": "世界大型企业联合会经济数据" }, - "authority_level": "market", - "data_url": "https://www.energyinst.org/statistical-review", + "authority_level": "research", + "data_url": "https://www.conference-board.org/topics/economic-data-analysis", "has_api": false, - "file_path": "sectors/D-energy/bp-statistical-review.json", + "file_path": "academic/economics/conference-board.json", "geographic_scope": "global" } ], - "Energy Economics": [ + "business-registration": [ { - "id": "bp-statistical-review", + "id": "vietnam-fia", "name": { - "en": "Statistical Review of World Energy", - "zh": "世界能源统计年鉴" + "en": "Foreign Investment Agency - Ministry of Planning and Investment", + "zh": "越南计划投资部外国投资局" }, - "authority_level": "market", - "data_url": "https://www.energyinst.org/statistical-review", + "authority_level": "government", + "data_url": "https://www.mpi.gov.vn/en/Pages/FDI-1637.aspx", "has_api": false, - "file_path": "sectors/D-energy/bp-statistical-review.json", - "geographic_scope": "global" + "file_path": "countries/asia/vietnam/vietnam-fia.json", + "geographic_scope": "national" } ], - "Energy Infrastructure": [ + "business-surveys": [ { - "id": "canada-cer", + "id": "korea-bok", "name": { - "en": "Canada Energy Regulator", - "zh": "加拿大能源监管局", - "native": "Régie de l'énergie du Canada" + "en": "Bank of Korea", + "zh": "韩国银行", + "native": "한국은행" }, "authority_level": "government", - "data_url": "https://www.cer-rec.gc.ca/en/data-analysis/", + "data_url": "https://www.bok.or.kr/eng/main/main.do", "has_api": true, - "file_path": "countries/north-america/canada/canada-energy-regulator.json", + "file_path": "countries/asia/korea/korea-bok.json", "geographic_scope": "national" } ], - "Energy Markets": [ + "cancer": [ { - "id": "canada-cer", + "id": "us-cdc", "name": { - "en": "Canada Energy Regulator", - "zh": "加拿大能源监管局", - "native": "Régie de l'énergie du Canada" + "en": "Centers for Disease Control and Prevention", + "zh": "美国疾病控制与预防中心" }, "authority_level": "government", - "data_url": "https://www.cer-rec.gc.ca/en/data-analysis/", + "data_url": "https://wonder.cdc.gov/", "has_api": true, - "file_path": "countries/north-america/canada/canada-energy-regulator.json", + "file_path": "countries/north-america/usa/us-cdc.json", "geographic_scope": "national" } ], - "Energy Production": [ - { - "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, - "file_path": "sectors/D-energy/bp-statistical-review.json", - "geographic_scope": "global" - } - ], - "Energy Safety": [ + "cancer-genomics": [ { - "id": "canada-cer", + "id": "tcga", "name": { - "en": "Canada Energy Regulator", - "zh": "加拿大能源监管局", - "native": "Régie de l'énergie du Canada" + "en": "The Cancer Genome Atlas (TCGA)", + "zh": "癌症基因组图谱" }, "authority_level": "government", - "data_url": "https://www.cer-rec.gc.ca/en/data-analysis/", + "data_url": "https://portal.gdc.cancer.gov/", "has_api": true, - "file_path": "countries/north-america/canada/canada-energy-regulator.json", + "file_path": "academic/health/tcga.json", "geographic_scope": "national" } ], - "Energy Statistics": [ + "capital-markets": [ { - "id": "cdiac", + "id": "china-amac", "name": { - "en": "Carbon Dioxide Information Analysis Center", - "zh": "碳信息分析中心" + "en": "Asset Management Association of China", + "zh": "中国证券投资基金业协会" }, - "authority_level": "research", - "data_url": "https://data.ess-dive.lbl.gov/portals/CDIAC", - "has_api": true, - "file_path": "international/environment/cdiac.json", - "geographic_scope": "global" + "authority_level": "government", + "data_url": "https://www.amac.org.cn/informationpublicity/", + "has_api": false, + "file_path": "china/finance/capital-markets/china-amac.json", + "geographic_scope": "national" }, { - "id": "bp-statistical-review", + "id": "china-cffex", "name": { - "en": "Statistical Review of World Energy", - "zh": "世界能源统计年鉴" + "en": "China Financial Futures Exchange", + "zh": "中国金融期货交易所" }, "authority_level": "market", - "data_url": "https://www.energyinst.org/statistical-review", + "data_url": "https://www.cffex.com.cn/sjzx/", "has_api": false, - "file_path": "sectors/D-energy/bp-statistical-review.json", - "geographic_scope": "global" - } - ], - "Energy Trade": [ + "file_path": "china/finance/capital-markets/china-cffex.json", + "geographic_scope": "national" + }, { - "id": "canada-cer", + "id": "china-czce", "name": { - "en": "Canada Energy Regulator", - "zh": "加拿大能源监管局", - "native": "Régie de l'énergie du Canada" + "en": "Zhengzhou Commodity Exchange", + "zh": "郑州商品交易所" }, - "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", + "authority_level": "market", + "data_url": "https://www.czce.com.cn/cn/exchange/daily_data/index.htm", + "has_api": false, + "file_path": "china/finance/capital-markets/china-czce.json", "geographic_scope": "national" }, { - "id": "bp-statistical-review", + "id": "china-dce", "name": { - "en": "Statistical Review of World Energy", - "zh": "世界能源统计年鉴" + "en": "Dalian Commodity Exchange", + "zh": "大连商品交易所" }, "authority_level": "market", - "data_url": "https://www.energyinst.org/statistical-review", + "data_url": "https://www.dce.com.cn/publicweb/quotesdata/dayQuotesCh.html", "has_api": false, - "file_path": "sectors/D-energy/bp-statistical-review.json", - "geographic_scope": "global" - } - ], - "Energy Transition": [ + "file_path": "china/finance/capital-markets/china-dce.json", + "geographic_scope": "national" + }, { - "id": "caf", + "id": "china-nafmii", "name": { - "en": "Development Bank of Latin America and the Caribbean (CAF)", - "zh": "拉美和加勒比开发银行", - "native": "Banco de Desarrollo de América Latina y El Caribe" + "en": "National Association of Financial Market Institutional Investors", + "zh": "中国银行间市场交易商协会" }, - "authority_level": "international", - "data_url": "https://www.caf.com/en/", + "authority_level": "government", + "data_url": "https://www.nafmii.org.cn/", "has_api": false, - "file_path": "international/development/caf.json", - "geographic_scope": "regional" + "file_path": "china/finance/capital-markets/china-nafmii.json", + "geographic_scope": "national" }, { - "id": "bp-statistical-review", + "id": "china-shfe", "name": { - "en": "Statistical Review of World Energy", - "zh": "世界能源统计年鉴" + "en": "Shanghai Futures Exchange", + "zh": "上海期货交易所" }, "authority_level": "market", - "data_url": "https://www.energyinst.org/statistical-review", + "data_url": "https://www.shfe.com.cn/reports/tradedata/dailyandweeklydata/", "has_api": false, - "file_path": "sectors/D-energy/bp-statistical-review.json", - "geographic_scope": "global" - } - ], - "Engineering": [ + "file_path": "china/finance/capital-markets/china-shfe.json", + "geographic_scope": "national" + }, { - "id": "derwent-innovation-index", + "id": "china-beijing-stock-exchange", "name": { - "en": "Derwent Innovation Index", - "zh": "德温特创新索引" + "en": "Beijing Stock Exchange", + "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" - } - ], - "Environment": [ + "authority_level": "market", + "data_url": "https://www.bse.cn/market_data.html", + "has_api": false, + "file_path": "china/finance/china-beijing-stock-exchange.json", + "geographic_scope": "national" + }, { - "id": "uk-data-gov", + "id": "china-csrc-futures", "name": { - "en": "Data.gov.uk", - "zh": "英国政府开放数据平台" + "en": "China Futures Association", + "zh": "中国期货业协会" }, - "authority_level": "government", - "data_url": "https://www.data.gov.uk", - "has_api": true, - "file_path": "countries/europe/uk/uk-data-gov.json", + "authority_level": "other", + "data_url": "https://www.cfachina.org/servicesupport/researchandpublishin/statisticalsdata/", + "has_api": false, + "file_path": "china/finance/china-csrc-futures.json", "geographic_scope": "national" }, { - "id": "us-data-gov", + "id": "china-csrc", "name": { - "en": "Data.gov", - "zh": "美国政府开放数据平台" + "en": "China Securities Regulatory Commission", + "zh": "中国证券监督管理委员会", + "native": "中国证券监督管理委员会" }, "authority_level": "government", - "data_url": "https://catalog.data.gov/dataset", + "data_url": "https://www.csrc.gov.cn/csrc/c100103/common_list.shtml", "has_api": false, - "file_path": "countries/north-america/usa/us-data-gov.json", + "file_path": "china/finance/securities/csrc.json", "geographic_scope": "national" }, { - "id": "faostat", + "id": "hkex", "name": { - "en": "FAOSTAT - Food and Agriculture Data", - "zh": "粮农组织统计数据库" + "en": "Hong Kong Exchanges and Clearing Limited (HKEX)", + "zh": "香港交易及结算所有限公司(港交所)", + "native": "香港交易及结算所有限公司" }, - "authority_level": "international", - "data_url": "https://www.fao.org/faostat/en/", + "authority_level": "commercial", + "data_url": "https://www.hkexnews.hk", "has_api": true, - "file_path": "international/agriculture/faostat.json", - "geographic_scope": "global" + "file_path": "china/finance/securities/hkex.json", + "geographic_scope": "regional" }, { - "id": "adb-data-library", + "id": "hk-sfc", "name": { - "en": "Asian Development Bank Data Library", - "zh": "亚洲开发银行数据库" + "en": "Securities and Futures Commission of Hong Kong", + "zh": "香港证券及期货事务监察委员会" }, - "authority_level": "international", - "data_url": "https://data.adb.org", - "has_api": true, - "file_path": "international/development/adb-data-library.json", - "geographic_scope": "regional" + "authority_level": "government", + "data_url": "https://www.sfc.hk/en/Regulatory-functions/Products", + "has_api": false, + "file_path": "countries/asia/hk-sfc.json", + "geographic_scope": "national" }, { - "id": "adb-key-indicators", + "id": "bloomberg-ipo-database", "name": { - "en": "Asian Development Bank Key Indicators", - "zh": "亚洲开发银行关键指标" + "en": "Bloomberg IPO Database", + "zh": "彭博IPO数据库" }, - "authority_level": "international", - "data_url": "https://kidb.adb.org", + "authority_level": "commercial", + "data_url": "https://www.bloomberg.com/professional/products/bloomberg-terminal/", "has_api": true, - "file_path": "international/development/adb-key-indicators.json", - "geographic_scope": "regional" + "file_path": "sectors/K-finance-insurance/bloomberg-ipo-database.json", + "geographic_scope": "global" }, { - "id": "basel-convention", + "id": "bloomberg-terminal-ipo", "name": { - "en": "Basel Convention Data", - "zh": "巴塞尔公约数据" + "en": "Bloomberg Terminal - IPO Module", + "zh": "彭博终端 - IPO模块" }, - "authority_level": "international", - "data_url": "https://www.basel.int", - "has_api": false, - "file_path": "international/environment/basel-convention.json", + "authority_level": "commercial", + "data_url": "https://www.bloomberg.com/professional/products/bloomberg-terminal/", + "has_api": true, + "file_path": "sectors/K-finance-insurance/bloomberg-terminal-ipo.json", "geographic_scope": "global" - }, + } + ], + "carbon-emissions": [ { "id": "cdiac", "name": { @@ -3379,879 +3098,883 @@ "geographic_scope": "global" } ], - "Environmental Health": [ + "cartography": [ { - "id": "us-cdc", + "id": "brazil-ibge", "name": { - "en": "CDC Data & Statistics", - "zh": "美国疾控中心数据与统计" + "en": "Brazilian Institute of Geography and Statistics", + "zh": "巴西地理统计局" }, "authority_level": "government", - "data_url": "https://data.cdc.gov/", + "data_url": "https://www.ibge.gov.br/en/indicators", "has_api": true, - "file_path": "countries/north-america/usa/us-cdc.json", + "file_path": "countries/south-america/brazil-ibge.json", "geographic_scope": "national" } ], - "Environmental Issues": [ + "catalysis": [ { - "id": "afrobarometer", + "id": "cambridge-structural-database", "name": { - "en": "Afrobarometer", - "zh": "非洲晴雨表" + "en": "Cambridge Structural Database (CSD)", + "zh": "剑桥晶体结构数据库" }, "authority_level": "research", - "data_url": "https://www.afrobarometer.org/data/", - "has_api": false, - "file_path": "academic/social/afrobarometer.json", - "geographic_scope": "regional" + "data_url": "https://www.ccdc.cam.ac.uk", + "has_api": true, + "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json", + "geographic_scope": "global" } ], - "Environmental Law": [ + "catalysts": [ { - "id": "basel-convention", + "id": "china-petroleum-chemical-federation", "name": { - "en": "Basel Convention Data", - "zh": "巴塞尔公约数据" + "en": "China Petroleum and Chemical Industry Federation", + "zh": "中国石油和化学工业联合会" }, - "authority_level": "international", - "data_url": "https://www.basel.int", + "authority_level": "market", + "data_url": "http://www.cpcif.org.cn/list/402882396610575f0166105924fe0000", "has_api": false, - "file_path": "international/environment/basel-convention.json", - "geographic_scope": "global" + "file_path": "sectors/C-manufacturing/chemicals/china-petroleum-chemical-federation.json", + "geographic_scope": "national" } ], - "Environmental Monitoring": [ + "census": [ { - "id": "aafc", + "id": "brazil-ibge", "name": { - "en": "Agriculture and Agri-Food Canada", - "zh": "加拿大农业与农业食品部", - "native": "Agriculture et Agroalimentaire Canada" + "en": "Brazilian Institute of Geography and Statistics", + "zh": "巴西地理统计局" }, "authority_level": "government", - "data_url": "https://open.canada.ca/data/en/organization/aafc-aac", + "data_url": "https://www.ibge.gov.br/en/indicators", "has_api": true, - "file_path": "countries/north-america/canada/aafc.json", + "file_path": "countries/south-america/brazil-ibge.json", "geographic_scope": "national" } ], - "Environmental Protection": [ + "central-bank-statistics": [ { - "id": "cites-trade-database", + "id": "bis-statistics", "name": { - "en": "CITES Trade Database", - "zh": "濒危物种国际贸易公约贸易数据库" + "en": "BIS Statistics", + "zh": "国际清算银行统计数据" }, - "authority_level": "international", - "data_url": "https://trade.cites.org", - "has_api": false, - "file_path": "international/environment/cites-trade-database.json", + "authority_level": "government", + "data_url": "https://data.bis.org/", + "has_api": true, + "file_path": "academic/economics/bis-statistics.json", "geographic_scope": "global" } ], - "Environmental Sciences": [ + "central-banking": [ { - "id": "ena", + "id": "bis-cbta", "name": { - "en": "European Nucleotide Archive", - "zh": "欧洲核苷酸档案库" + "en": "BIS Central Bank Total Assets", + "zh": "国际清算银行中央银行总资产统计" }, "authority_level": "international", - "data_url": "https://www.ebi.ac.uk/ena/browser/", + "data_url": "https://data.bis.org/topics/CBTA", "has_api": true, - "file_path": "academic/biology/ena.json", + "file_path": "international/finance/bis-cbta.json", "geographic_scope": "global" - } - ], - "Environmental Sustainability": [ + }, { - "id": "caf", + "id": "bis-reserves", "name": { - "en": "Development Bank of Latin America and the Caribbean (CAF)", - "zh": "拉美和加勒比开发银行", - "native": "Banco de Desarrollo de América Latina y El Caribe" + "en": "BIS Central Bank Reserves Statistics", + "zh": "国际清算银行外汇储备统计" }, "authority_level": "international", - "data_url": "https://www.caf.com/en/", - "has_api": false, - "file_path": "international/development/caf.json", - "geographic_scope": "regional" - }, + "data_url": "https://data.bis.org/topics/CBTA", + "has_api": true, + "file_path": "international/finance/bis-reserves.json", + "geographic_scope": "global" + } + ], + "certification-systems": [ { - "id": "caribbean-development-bank", + "id": "codex-alimentarius", "name": { - "en": "Caribbean Development Bank", - "zh": "加勒比开发银行" + "en": "Codex Alimentarius Standards", + "zh": "国际食品法典委员会标准" }, "authority_level": "international", - "data_url": "https://www.caribank.org/data/country-data-reports", + "data_url": "https://www.fao.org/fao-who-codexalimentarius/codex-texts/all-standards/en/", "has_api": false, - "file_path": "international/development/caribbean-development-bank.json", - "geographic_scope": "regional" + "file_path": "international/standards-metrology/codex-alimentarius.json", + "geographic_scope": "global" } ], - "Epidemiology": [ + "chemical-biology": [ { - "id": "us-cdc", + "id": "chembl", "name": { - "en": "CDC Data & Statistics", - "zh": "美国疾控中心数据与统计" + "en": "ChEMBL Database", + "zh": "ChEMBL生物活性数据库" }, - "authority_level": "government", - "data_url": "https://data.cdc.gov/", + "authority_level": "research", + "data_url": "https://www.ebi.ac.uk/chembl/", "has_api": true, - "file_path": "countries/north-america/usa/us-cdc.json", + "file_path": "academic/chemistry/chembl.json", + "geographic_scope": "global" + } + ], + "chemical-industry": [ + { + "id": "china-petroleum-chemical-federation", + "name": { + "en": "China Petroleum and Chemical Industry Federation", + "zh": "中国石油和化学工业联合会" + }, + "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" - }, + } + ], + "chemical-information": [ { - "id": "ecdc-surveillance", + "id": "intl-chemspider", "name": { - "en": "ECDC Surveillance Data", - "zh": "欧洲疾病预防控制中心监测数据" + "en": "ChemSpider", + "zh": "化学蜘蛛数据库" }, "authority_level": "international", - "data_url": "https://www.ecdc.europa.eu/en/data-dashboards-and-databases", + "data_url": "https://www.chemspider.com", "has_api": false, - "file_path": "international/health/ecdc-surveillance.json", - "geographic_scope": "regional" + "file_path": "academic/chemistry/chemspider.json", + "geographic_scope": "global" } ], - "Equipment Manufacturing": [ + "chemical-materials": [ { - "id": "china-additive-manufacturing-alliance", + "id": "china-petroleum-chemical-federation", "name": { - "en": "China Additive Manufacturing Alliance", - "zh": "中国增材制造产业联盟" + "en": "China Petroleum and Chemical Industry Federation", + "zh": "中国石油和化学工业联合会" }, "authority_level": "market", - "data_url": "https://www.miit-eidc.org.cn", + "data_url": "http://www.cpcif.org.cn/list/402882396610575f0166105924fe0000", "has_api": false, - "file_path": "sectors/C-manufacturing/additive/china-additive-manufacturing-alliance.json", + "file_path": "sectors/C-manufacturing/chemicals/china-petroleum-chemical-federation.json", "geographic_scope": "national" } ], - "Equities": [ - { - "id": "bloomberg-terminal", - "name": { - "en": "Bloomberg Terminal (Public Data)", - "zh": "彭博终端(部分公开数据)" - }, - "authority_level": "commercial", - "data_url": "https://www.bloomberg.com/markets", - "has_api": true, - "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json", - "geographic_scope": "global" - }, + "chemical-safety": [ { - "id": "crsp", + "id": "china-nies", "name": { - "en": "CRSP - Center for Research in Security Prices", - "zh": "证券价格研究中心" + "en": "Nanjing Institute of Environmental Sciences, MEE", + "zh": "生态环境部南京环境科学研究所" }, "authority_level": "research", - "data_url": "https://www.crsp.org/", - "has_api": true, - "file_path": "sectors/K-finance-insurance/crsp.json", + "data_url": "https://www.nies.org", + "has_api": false, + "file_path": "china/resources/environment/china-nies.json", "geographic_scope": "national" } ], - "Equity Offerings": [ + "chemical-structures": [ { - "id": "bloomberg-terminal-ipo", + "id": "intl-chemspider", "name": { - "en": "Bloomberg Terminal - IPO Module", - "zh": "彭博终端 - IPO模块" + "en": "ChemSpider", + "zh": "化学蜘蛛数据库" }, - "authority_level": "commercial", - "data_url": "https://www.bloomberg.com/professional/products/bloomberg-terminal/", - "has_api": true, - "file_path": "sectors/K-finance-insurance/bloomberg-terminal-ipo.json", + "authority_level": "international", + "data_url": "https://www.chemspider.com", + "has_api": false, + "file_path": "academic/chemistry/chemspider.json", "geographic_scope": "global" } ], - "Exchange Rates": [ + "cheminformatics": [ { - "id": "uk-boe", + "id": "drugbank", "name": { - "en": "Bank of England Statistical Interactive Database", - "zh": "英格兰银行统计数据库" + "en": "DrugBank", + "zh": "药物与药物靶点数据库" }, - "authority_level": "government", - "data_url": "https://www.bankofengland.co.uk/boeapps/database/", - "has_api": false, - "file_path": "countries/europe/uk/bank-of-england.json", - "geographic_scope": "national" + "authority_level": "research", + "data_url": "https://go.drugbank.com", + "has_api": true, + "file_path": "academic/chemistry/drugbank.json", + "geographic_scope": "global" + } + ], + "chemistry": [ + { + "id": "intl-chemspider", + "name": { + "en": "ChemSpider", + "zh": "化学蜘蛛数据库" + }, + "authority_level": "international", + "data_url": "https://www.chemspider.com", + "has_api": false, + "file_path": "academic/chemistry/chemspider.json", + "geographic_scope": "global" }, { - "id": "brazil-bcb", + "id": "pubchem", "name": { - "en": "Central Bank of Brazil", - "zh": "巴西中央银行", - "native": "Banco Central do Brasil" + "en": "PubChem", + "zh": "PubChem化学数据库" }, "authority_level": "government", - "data_url": "https://dadosabertos.bcb.gov.br", + "data_url": "https://pubchem.ncbi.nlm.nih.gov/", "has_api": true, - "file_path": "countries/south-america/brazil/brazil-bcb.json", - "geographic_scope": "national" + "file_path": "academic/chemistry/pubchem.json", + "geographic_scope": "global" }, { - "id": "bis-statistics", + "id": "acad-cod", "name": { - "en": "BIS Statistics - Bank for International Settlements", - "zh": "国际清算银行统计数据" + "en": "Crystallography Open Database", + "zh": "晶体学开放数据库" }, - "authority_level": "government", - "data_url": "https://data.bis.org/", + "authority_level": "research", + "data_url": "https://www.crystallography.net/cod/", "has_api": true, - "file_path": "international/economics/bis.json", + "file_path": "academic/physics/crystallography-open-database.json", "geographic_scope": "global" }, { - "id": "ecb-sdw", + "id": "china-ciesc", "name": { - "en": "ECB Statistical Data Warehouse (ECB Data Portal)", - "zh": "欧洲央行统计数据仓库" + "en": "Chemical Industry and Engineering Society of China", + "zh": "中国化工学会" }, - "authority_level": "government", - "data_url": "https://data.ecb.europa.eu/", + "authority_level": "research", + "data_url": "https://www.ciesc.cn", + "has_api": false, + "file_path": "china/technology/industry_associations/china-ciesc.json", + "geographic_scope": "national" + }, + { + "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": "international/economics/ecb-sdw.json", - "geographic_scope": "regional" + "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json", + "geographic_scope": "global" }, { - "id": "bis-statistics", + "id": "aws-open-data-registry", "name": { - "en": "BIS Statistics - Bank for International Settlements", - "zh": "国际清算银行统计数据" + "en": "Registry of Open Data on AWS", + "zh": "AWS开放数据注册表" + }, + "authority_level": "commercial", + "data_url": "https://registry.opendata.aws/", + "has_api": false, + "file_path": "sectors/computer_science_ai/aws-open-data-registry.json", + "geographic_scope": "global" + } + ], + "chemistry-and-biology": [ + { + "id": "bipm-kcdb", + "name": { + "en": "BIPM Key Comparison Database (KCDB)", + "zh": "国际度量衡局关键比对数据库", + "native": "Bureau International des Poids et Mesures (BIPM)" }, "authority_level": "international", - "data_url": "https://data.bis.org", + "data_url": "https://www.bipm.org/kcdb", "has_api": true, - "file_path": "international/finance/bis-statistics.json", + "file_path": "international/standards-metrology/bipm-kcdb.json", "geographic_scope": "global" } ], - "Excise Revenue": [ + "child-protection": [ { - "id": "india-dgcis", + "id": "aus-aihw", "name": { - "en": "Directorate General of Commercial Intelligence and Statistics", - "zh": "印度商业情报与统计总局" + "en": "Australian Institute of Health and Welfare", + "zh": "澳大利亚健康与福利研究所" }, "authority_level": "government", - "data_url": "https://www.commerce.gov.in/trade-statistics/", + "data_url": "https://www.aihw.gov.au/", + "has_api": true, + "file_path": "countries/oceania/australia/aihw.json", + "geographic_scope": "national" + } + ], + "chronic-diseases": [ + { + "id": "us-cdc", + "name": { + "en": "Centers for Disease Control and Prevention", + "zh": "美国疾病控制与预防中心" + }, + "authority_level": "government", + "data_url": "https://wonder.cdc.gov/", + "has_api": true, + "file_path": "countries/north-america/usa/us-cdc.json", + "geographic_scope": "national" + } + ], + "circular-economy": [ + { + "id": "china-crra", + "name": { + "en": "China Association of Circular Economy", + "zh": "中国再生资源回收利用协会" + }, + "authority_level": "other", + "data_url": "https://www.crra.org.cn", "has_api": false, - "file_path": "countries/asia/india/india-dgcis.json", + "file_path": "china/resources/environment/china-crra.json", "geographic_scope": "national" } ], - "Experimental Physics": [ + "citizen-engagement": [ { - "id": "cern-open-data", + "id": "afrobarometer", "name": { - "en": "CERN Open Data Portal", - "zh": "CERN 开放数据门户" + "en": "Afrobarometer", + "zh": "非洲晴雨表" }, "authority_level": "research", - "data_url": "https://opendata.cern.ch/", - "has_api": true, - "file_path": "academic/physics/cern-open-data.json", - "geographic_scope": "global" + "data_url": "https://www.afrobarometer.org/data/", + "has_api": false, + "file_path": "academic/social/afrobarometer.json", + "geographic_scope": "regional" } ], - "Export Statistics": [ + "civil-registration": [ { - "id": "india-dgcis", + "id": "philippines-psa", "name": { - "en": "Directorate General of Commercial Intelligence and Statistics", - "zh": "印度商业情报与统计总局" + "en": "Philippine Statistics Authority", + "zh": "菲律宾统计局" }, "authority_level": "government", - "data_url": "https://www.commerce.gov.in/trade-statistics/", + "data_url": "https://openstat.psa.gov.ph", "has_api": false, - "file_path": "countries/asia/india/india-dgcis.json", + "file_path": "countries/asia/philippines/psa.json", "geographic_scope": "national" } ], - "Finance": [ + "clearing": [ { - "id": "us-data-gov", + "id": "china-shanghai-clearing-house", "name": { - "en": "Data.gov", - "zh": "美国政府开放数据平台" + "en": "Shanghai Clearing House", + "zh": "上海清算所" }, - "authority_level": "government", - "data_url": "https://catalog.data.gov/dataset", + "authority_level": "market", + "data_url": "https://www.shclearing.com.cn/sjtj/", "has_api": false, - "file_path": "countries/north-america/usa/us-data-gov.json", + "file_path": "china/finance/china-shanghai-clearing-house.json", "geographic_scope": "national" - }, + } + ], + "climate": [ { - "id": "adb-key-indicators", + "id": "copernicus-open-access-hub", "name": { - "en": "Asian Development Bank Key Indicators", - "zh": "亚洲开发银行关键指标" + "en": "Copernicus Open Access Hub", + "zh": "哥白尼开放访问中心" }, "authority_level": "international", - "data_url": "https://kidb.adb.org", + "data_url": "https://dataspace.copernicus.eu/", "has_api": true, - "file_path": "international/development/adb-key-indicators.json", - "geographic_scope": "regional" + "file_path": "academic/environment/copernicus-open-access-hub.json", + "geographic_scope": "global" }, { - "id": "adb-ado", + "id": "china-cma", "name": { - "en": "Asian Development Outlook", - "zh": "亚洲开发展望" + "en": "China Meteorological Administration", + "zh": "中国气象局" }, - "authority_level": "international", - "data_url": "https://www.adb.org/outlook", + "authority_level": "government", + "data_url": "https://data.cma.cn", "has_api": false, - "file_path": "international/economics/adb-ado.json", - "geographic_scope": "regional" + "file_path": "china/national/meteorology/china-cma.json", + "geographic_scope": "national" }, { - "id": "bis-statistics", + "id": "china-ncc", "name": { - "en": "BIS Statistics - Bank for International Settlements", - "zh": "国际清算银行统计数据" + "en": "National Climate Center of China (NCC-CMA)", + "zh": "国家气候中心" }, "authority_level": "government", - "data_url": "https://data.bis.org/", - "has_api": true, - "file_path": "international/economics/bis.json", - "geographic_scope": "global" + "data_url": "https://cmdp.ncc-cma.net", + "has_api": false, + "file_path": "china/national/meteorology/china-ncc.json", + "geographic_scope": "national" }, { - "id": "bis-statistics", + "id": "china-nmc", "name": { - "en": "BIS Statistics - Bank for International Settlements", - "zh": "国际清算银行统计数据" + "en": "National Meteorological Centre of China", + "zh": "中央气象台" }, - "authority_level": "international", - "data_url": "https://data.bis.org", - "has_api": true, - "file_path": "international/finance/bis-statistics.json", - "geographic_scope": "global" + "authority_level": "government", + "data_url": "https://www.nmc.cn/publish/observations.html", + "has_api": false, + "file_path": "china/national/meteorology/china-nmc.json", + "geographic_scope": "national" }, { - "id": "akshare", + "id": "china-nmic", "name": { - "en": "AKShare - Open Source Financial Data Interface Library", - "zh": "AKShare - 开源财经数据接口库" + "en": "National Meteorological Information Center", + "zh": "国家气象信息中心" }, - "authority_level": "other", - "data_url": "https://github.com/akfamily/akshare", - "has_api": true, - "file_path": "sectors/K-finance-insurance/akshare.json", - "geographic_scope": "global" - } - ], - "Financial Literacy": [ + "authority_level": "government", + "data_url": "https://data.cma.cn/data/index.html", + "has_api": false, + "file_path": "china/national/meteorology/china-nmic.json", + "geographic_scope": "national" + }, { - "id": "oecd-pisa", + "id": "china-nsmc", "name": { - "en": "PISA - Programme for International Student Assessment", - "zh": "国际学生评估项目" + "en": "National Satellite Meteorological Center of China", + "zh": "国家卫星气象中心" }, - "authority_level": "international", - "data_url": "https://www.oecd.org/en/about/programmes/pisa.html", + "authority_level": "government", + "data_url": "https://www.nsmc.org.cn/nsmc/cn/satellite/index.html", "has_api": false, - "file_path": "international/education/oecd-pisa.json", + "file_path": "china/national/meteorology/china-nsmc.json", "geographic_scope": "global" - } - ], - "Financial Markets": [ + }, { - "id": "boj-statistics", + "id": "china-cufe-iigf", "name": { - "en": "Bank of Japan Statistics", - "zh": "日本银行统计数据", - "native": "日本銀行統計" + "en": "International Institute of Green Finance (IIGF), Central University of Finance and Economics", + "zh": "中央财经大学绿色金融国际研究院" }, - "authority_level": "government", - "data_url": "https://www.boj.or.jp/en/statistics/index.htm", + "authority_level": "research", + "data_url": "https://iigf.cufe.edu.cn/yjcg/yjbg.htm", "has_api": false, - "file_path": "countries/asia/japan/boj-statistics.json", + "file_path": "china/research/china-cufe-iigf.json", "geographic_scope": "national" }, { - "id": "uk-boe", + "id": "china-giec", "name": { - "en": "Bank of England Statistical Interactive Database", - "zh": "英格兰银行统计数据库" + "en": "Guangzhou Institute of Energy Conversion, Chinese Academy of Sciences", + "zh": "中国科学院广州能源研究所" }, - "authority_level": "government", - "data_url": "https://www.bankofengland.co.uk/boeapps/database/", + "authority_level": "research", + "data_url": "http://www.giec.ac.cn", "has_api": false, - "file_path": "countries/europe/uk/bank-of-england.json", + "file_path": "china/research/china-giec.json", "geographic_scope": "national" }, { - "id": "ecb-sdw", + "id": "china-gscloud", "name": { - "en": "ECB Statistical Data Warehouse (ECB Data Portal)", - "zh": "欧洲央行统计数据仓库" + "en": "Geospatial Data Cloud - Computer Network Information Center, CAS", + "zh": "地理空间数据云(中国科学院计算机网络信息中心)" }, - "authority_level": "government", - "data_url": "https://data.ecb.europa.eu/", - "has_api": true, - "file_path": "international/economics/ecb-sdw.json", - "geographic_scope": "regional" + "authority_level": "research", + "data_url": "https://www.gscloud.cn/search", + "has_api": false, + "file_path": "china/research/china-gscloud.json", + "geographic_scope": "global" }, { - "id": "bis-reserves", + "id": "china-iap", "name": { - "en": "BIS Central Bank Reserves Statistics", - "zh": "国际清算银行外汇储备统计" + "en": "Institute of Atmospheric Physics, Chinese Academy of Sciences", + "zh": "中国科学院大气物理研究所" }, - "authority_level": "international", - "data_url": "https://data.bis.org/topics/CBTA", - "has_api": true, - "file_path": "international/finance/bis-reserves.json", - "geographic_scope": "global" + "authority_level": "research", + "data_url": "https://www.iap.ac.cn", + "has_api": false, + "file_path": "china/research/china-iap.json", + "geographic_scope": "national" }, { - "id": "akshare", + "id": "china-ngeos", "name": { - "en": "AKShare - Open Source Financial Data Interface Library", - "zh": "AKShare - 开源财经数据接口库" + "en": "National Earth System Science Data Center", + "zh": "国家地球系统科学数据中心" }, - "authority_level": "other", - "data_url": "https://github.com/akfamily/akshare", - "has_api": true, - "file_path": "sectors/K-finance-insurance/akshare.json", - "geographic_scope": "global" - } - ], - "Financial News": [ + "authority_level": "research", + "data_url": "https://www.geodata.cn/data/", + "has_api": false, + "file_path": "china/research/china-ngeos.json", + "geographic_scope": "national" + }, { - "id": "bloomberg-terminal", + "id": "china-polar-service", "name": { - "en": "Bloomberg Terminal (Public Data)", - "zh": "彭博终端(部分公开数据)" + "en": "China Polar Operations Service Platform (CHINARE Data)", + "zh": "中国极地业务服务平台" }, - "authority_level": "commercial", - "data_url": "https://www.bloomberg.com/markets", - "has_api": true, - "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json", + "authority_level": "government", + "data_url": "https://www.chinare.org.cn/", + "has_api": false, + "file_path": "china/research/china-polar-service.json", "geographic_scope": "global" - } - ], - "Financial Sector": [ + }, { - "id": "idb", + "id": "china-pric", "name": { - "en": "Inter-American Development Bank", - "zh": "美洲开发银行" + "en": "Polar Research Institute of China", + "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" - } - ], - "Financial Stability": [ + "authority_level": "research", + "data_url": "https://www.pric.org.cn/", + "has_api": false, + "file_path": "china/research/china-pric.json", + "geographic_scope": "global" + }, { - "id": "uk-boe", + "id": "china-tpdc", "name": { - "en": "Bank of England Statistical Interactive Database", - "zh": "英格兰银行统计数据库" + "en": "National Tibetan Plateau Data Center", + "zh": "国家青藏高原科学数据中心" }, - "authority_level": "government", - "data_url": "https://www.bankofengland.co.uk/boeapps/database/", + "authority_level": "research", + "data_url": "https://data.tpdc.ac.cn", "has_api": false, - "file_path": "countries/europe/uk/bank-of-england.json", - "geographic_scope": "national" + "file_path": "china/research/china-tpdc.json", + "geographic_scope": "regional" }, { - "id": "brazil-bcb", + "id": "china-huaneng", "name": { - "en": "Central Bank of Brazil", - "zh": "巴西中央银行", - "native": "Banco Central do Brasil" + "en": "China Huaneng Group", + "zh": "中国华能集团有限公司" }, - "authority_level": "government", - "data_url": "https://dadosabertos.bcb.gov.br", - "has_api": true, - "file_path": "countries/south-america/brazil/brazil-bcb.json", + "authority_level": "commercial", + "data_url": "https://www.chng.com.cn", + "has_api": false, + "file_path": "china/resources/china-huaneng.json", "geographic_scope": "national" }, { - "id": "ecb-sdw", + "id": "china-caep", "name": { - "en": "ECB Statistical Data Warehouse (ECB Data Portal)", - "zh": "欧洲央行统计数据仓库" + "en": "Chinese Academy of Environmental Planning", + "zh": "生态环境部环境规划院" }, - "authority_level": "government", - "data_url": "https://data.ecb.europa.eu/", - "has_api": true, - "file_path": "international/economics/ecb-sdw.json", - "geographic_scope": "regional" - } - ], - "Financial Statistics": [ + "authority_level": "research", + "data_url": "http://www.caep.org.cn", + "has_api": false, + "file_path": "china/resources/environment/china-caep.json", + "geographic_scope": "national" + }, { - "id": "brazil-bcb", + "id": "china-ceads", "name": { - "en": "Central Bank of Brazil", - "zh": "巴西中央银行", - "native": "Banco Central do Brasil" + "en": "Carbon Emission Accounts and Datasets for China (CEADs)", + "zh": "中国碳排放核算数据库(CEADs)" }, - "authority_level": "government", - "data_url": "https://dadosabertos.bcb.gov.br", - "has_api": true, - "file_path": "countries/south-america/brazil/brazil-bcb.json", + "authority_level": "research", + "data_url": "https://ceads.net.cn/data/", + "has_api": false, + "file_path": "china/resources/environment/china-ceads.json", "geographic_scope": "national" - } - ], - "Financial Technology": [ + }, { - "id": "cryptocurrency-data", + "id": "china-cern", "name": { - "en": "Cryptocurrency Market Data (CoinMarketCap & CoinGecko)", - "zh": "加密货币市场数据(CoinMarketCap 和 CoinGecko)" + "en": "Chinese Ecosystem Research Network (CERN)", + "zh": "中国生态系统研究网络" }, - "authority_level": "commercial", - "data_url": "https://coinmarketcap.com", - "has_api": true, - "file_path": "sectors/K-finance-insurance/cryptocurrency-data.json", - "geographic_scope": "global" - } - ], - "Fiscal Policy": [ + "authority_level": "research", + "data_url": "https://cern.ac.cn/0index/index.asp", + "has_api": false, + "file_path": "china/resources/environment/china-cern.json", + "geographic_scope": "national" + }, { - "id": "idb", + "id": "china-ipe", "name": { - "en": "Inter-American Development Bank", - "zh": "美洲开发银行" + "en": "Institute of Public & Environmental Affairs", + "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" - } - ], - "Fisheries": [ + "authority_level": "research", + "data_url": "https://www.ipe.org.cn/AirMap_fxy/AirMap.html", + "has_api": false, + "file_path": "china/resources/environment/china-ipe.json", + "geographic_scope": "national" + }, { - "id": "faostat", + "id": "china-mee", "name": { - "en": "FAOSTAT - Food and Agriculture Data", - "zh": "粮农组织统计数据库" + "en": "Ministry of Ecology and Environment of China - Environmental 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" - } - ], - "Fixed Assets": [ + "authority_level": "government", + "data_url": "https://www.mee.gov.cn/hjzl/", + "has_api": false, + "file_path": "china/resources/environment/china-mee.json", + "geographic_scope": "national" + }, { - "id": "us-bea", + "id": "china-ncsc", "name": { - "en": "Bureau of Economic Analysis", - "zh": "美国经济分析局" + "en": "National Center for Climate Change Strategy and International Cooperation", + "zh": "国家应对气候变化战略研究和国际合作中心" }, - "authority_level": "government", - "data_url": "https://www.bea.gov/data", - "has_api": true, - "file_path": "countries/north-america/usa/us-bea.json", + "authority_level": "research", + "data_url": "http://www.ncsc.org.cn", + "has_api": false, + "file_path": "china/resources/environment/china-ncsc.json", "geographic_scope": "national" - } - ], - "Fixed Income": [ + }, { - "id": "bloomberg-terminal", + "id": "china-nfga", "name": { - "en": "Bloomberg Terminal (Public Data)", - "zh": "彭博终端(部分公开数据)" + "en": "National Forestry and Grassland Administration of China", + "zh": "国家林业和草原局" }, - "authority_level": "commercial", - "data_url": "https://www.bloomberg.com/markets", - "has_api": true, - "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json", - "geographic_scope": "global" - } - ], - "Flow of Funds": [ + "authority_level": "government", + "data_url": "https://www.forestry.gov.cn/gjlcj/5462/index.html", + "has_api": false, + "file_path": "china/resources/forestry/china-nfga.json", + "geographic_scope": "national" + }, { - "id": "boj-statistics", + "id": "china-nmdis", "name": { - "en": "Bank of Japan Statistics", - "zh": "日本银行统计数据", - "native": "日本銀行統計" + "en": "National Marine Data and Information Service", + "zh": "国家海洋信息中心" }, "authority_level": "government", - "data_url": "https://www.boj.or.jp/en/statistics/index.htm", + "data_url": "https://mds.nmdis.org.cn/", "has_api": false, - "file_path": "countries/asia/japan/boj-statistics.json", + "file_path": "china/resources/ocean/china-nmdis.json", "geographic_scope": "national" - } - ], - "Food Additives": [ + }, { - "id": "codex-alimentarius", + "id": "china-nsoas", "name": { - "en": "Codex Alimentarius Standards", - "zh": "国际食品法典委员会标准" + "en": "National Satellite Ocean Application Service", + "zh": "国家卫星海洋应用中心" }, - "authority_level": "international", - "data_url": "https://www.fao.org/fao-who-codexalimentarius/codex-texts/all-standards/en/", + "authority_level": "government", + "data_url": "http://www.nsoas.org.cn", "has_api": false, - "file_path": "international/standards-metrology/codex-alimentarius.json", - "geographic_scope": "global" - } - ], - "Food Hygiene": [ + "file_path": "china/resources/ocean/china-nsoas.json", + "geographic_scope": "national" + }, { - "id": "codex-alimentarius", + "id": "china-cea", "name": { - "en": "Codex Alimentarius Standards", - "zh": "国际食品法典委员会标准" + "en": "China Earthquake Administration", + "zh": "中国地震局" }, - "authority_level": "international", - "data_url": "https://www.fao.org/fao-who-codexalimentarius/codex-texts/all-standards/en/", + "authority_level": "government", + "data_url": "https://www.cea.gov.cn/cea/dzpd/dzzt/index.html", "has_api": false, - "file_path": "international/standards-metrology/codex-alimentarius.json", - "geographic_scope": "global" - } - ], - "Food Inspection": [ + "file_path": "china/resources/seismology/china-cea.json", + "geographic_scope": "national" + }, { - "id": "codex-alimentarius", + "id": "china-cenc", "name": { - "en": "Codex Alimentarius Standards", - "zh": "国际食品法典委员会标准" + "en": "China Earthquake Networks Center", + "zh": "中国地震台网中心" }, - "authority_level": "international", - "data_url": "https://www.fao.org/fao-who-codexalimentarius/codex-texts/all-standards/en/", + "authority_level": "government", + "data_url": "https://www.cenc.ac.cn/", "has_api": false, - "file_path": "international/standards-metrology/codex-alimentarius.json", - "geographic_scope": "global" - } - ], - "Food Labeling": [ + "file_path": "china/resources/seismology/china-cenc.json", + "geographic_scope": "national" + }, { - "id": "codex-alimentarius", + "id": "japan-jma", "name": { - "en": "Codex Alimentarius Standards", - "zh": "国际食品法典委员会标准" + "en": "Japan Meteorological Agency", + "zh": "日本气象厅" }, - "authority_level": "international", - "data_url": "https://www.fao.org/fao-who-codexalimentarius/codex-texts/all-standards/en/", + "authority_level": "government", + "data_url": "https://www.data.jma.go.jp/risk/obsdl/index.php", "has_api": false, - "file_path": "international/standards-metrology/codex-alimentarius.json", - "geographic_scope": "global" - } - ], - "Food Prices": [ + "file_path": "countries/asia/japan/japan-jma.json", + "geographic_scope": "national" + }, { - "id": "amis", + "id": "uk-met-office", "name": { - "en": "Agricultural Market Information System (AMIS)", - "zh": "农业市场信息系统" + "en": "UK Met Office", + "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 Quality": [ + "authority_level": "government", + "data_url": "https://www.metoffice.gov.uk/research/climate/maps-and-data", + "has_api": true, + "file_path": "countries/europe/uk/uk-met-office.json", + "geographic_scope": "national" + }, { - "id": "codex-alimentarius", + "id": "noaa-cdo", "name": { - "en": "Codex Alimentarius Standards", - "zh": "国际食品法典委员会标准" + "en": "NOAA Climate Data Online (CDO)", + "zh": "NOAA气候数据在线系统" }, - "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", + "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" - } - ], - "Food Safety": [ + }, { - "id": "codex-alimentarius", + "id": "us-data-gov", "name": { - "en": "Codex Alimentarius Standards", - "zh": "国际食品法典委员会标准" + "en": "Data.gov", + "zh": "美国政府开放数据平台" }, - "authority_level": "international", - "data_url": "https://www.fao.org/fao-who-codexalimentarius/codex-texts/all-standards/en/", + "authority_level": "government", + "data_url": "https://catalog.data.gov/dataset", "has_api": false, - "file_path": "international/standards-metrology/codex-alimentarius.json", - "geographic_scope": "global" - } - ], - "Food Security": [ + "file_path": "countries/north-america/usa/us-data-gov.json", + "geographic_scope": "national" + }, { - "id": "aafc", + "id": "bureau-of-meteorology", "name": { - "en": "Agriculture and Agri-Food Canada", - "zh": "加拿大农业与农业食品部", - "native": "Agriculture et Agroalimentaire Canada" + "en": "Bureau of Meteorology", + "zh": "澳大利亚气象局" }, "authority_level": "government", - "data_url": "https://open.canada.ca/data/en/organization/aafc-aac", + "data_url": "https://www.bom.gov.au", "has_api": true, - "file_path": "countries/north-america/canada/aafc.json", + "file_path": "countries/oceania/australia/bureau-of-meteorology.json", "geographic_scope": "national" }, { - "id": "cgiar-research-data", + "id": "cdp", "name": { - "en": "CGIAR Research Data", - "zh": "国际农业研究磋商组织研究数据" + "en": "CDP - Carbon Disclosure Project", + "zh": "碳信息披露项目" }, - "authority_level": "international", - "data_url": "https://gardian.cgiar.org/", - "has_api": true, - "file_path": "international/agriculture/cgiar-research-data.json", + "authority_level": "research", + "data_url": "https://www.cdp.net/en/data", + "has_api": false, + "file_path": "international/climate/cdp.json", "geographic_scope": "global" }, { - "id": "faostat", + "id": "ecmwf", "name": { - "en": "FAOSTAT - Food and Agriculture Data", - "zh": "粮农组织统计数据库" + "en": "European Centre for Medium-Range Weather Forecasts", + "zh": "欧洲中期天气预报中心" }, "authority_level": "international", - "data_url": "https://www.fao.org/faostat/en/", + "data_url": "https://cds.climate.copernicus.eu", "has_api": true, - "file_path": "international/agriculture/faostat.json", + "file_path": "international/climate/ecmwf.json", "geographic_scope": "global" }, { - "id": "amis", + "id": "ember-climate", "name": { - "en": "Agricultural Market Information System (AMIS)", - "zh": "农业市场信息系统" + "en": "Ember Global Electricity Data", + "zh": "Ember全球电力数据平台" }, - "authority_level": "international", - "data_url": "https://www.amis-outlook.org", - "has_api": false, - "file_path": "sectors/A-agriculture/amis.json", + "authority_level": "research", + "data_url": "https://ember-climate.org/data/", + "has_api": true, + "file_path": "international/climate/ember-climate.json", "geographic_scope": "global" - } - ], - "Food Standards": [ + }, { - "id": "codex-alimentarius", + "id": "global-carbon-project", "name": { - "en": "Codex Alimentarius Standards", - "zh": "国际食品法典委员会标准" + "en": "Global Carbon Project", + "zh": "全球碳项目" }, - "authority_level": "international", - "data_url": "https://www.fao.org/fao-who-codexalimentarius/codex-texts/all-standards/en/", + "authority_level": "research", + "data_url": "https://www.globalcarbonproject.org/carbonbudget/", "has_api": false, - "file_path": "international/standards-metrology/codex-alimentarius.json", + "file_path": "international/climate/global-carbon-project.json", "geographic_scope": "global" - } - ], - "Food and Waterborne Diseases": [ + }, { - "id": "ecdc-surveillance", + "id": "ipcc", "name": { - "en": "ECDC Surveillance Data", - "zh": "欧洲疾病预防控制中心监测数据" + "en": "IPCC Data Distribution Centre", + "zh": "政府间气候变化专门委员会数据分发中心" }, "authority_level": "international", - "data_url": "https://www.ecdc.europa.eu/en/data-dashboards-and-databases", + "data_url": "https://www.ipcc-data.org/observ/index.html", "has_api": false, - "file_path": "international/health/ecdc-surveillance.json", - "geographic_scope": "regional" - } - ], - "Foreign Direct Investment": [ + "file_path": "international/climate/ipcc.json", + "geographic_scope": "global" + }, { - "id": "us-bea", + "id": "unfccc", "name": { - "en": "Bureau of Economic Analysis", - "zh": "美国经济分析局" + "en": "UNFCCC - United Nations Framework Convention on Climate Change", + "zh": "联合国气候变化框架公约" }, - "authority_level": "government", - "data_url": "https://www.bea.gov/data", + "authority_level": "international", + "data_url": "https://di.unfccc.int", "has_api": true, - "file_path": "countries/north-america/usa/us-bea.json", - "geographic_scope": "national" - } - ], - "Foreign Exchange": [ + "file_path": "international/climate/unfccc.json", + "geographic_scope": "global" + }, { - "id": "bis-statistics", + "id": "nasa-earthdata", "name": { - "en": "BIS Statistics", - "zh": "国际清算银行统计数据" + "en": "NASA Earthdata", + "zh": "NASA地球数据" }, "authority_level": "government", - "data_url": "https://data.bis.org/", + "data_url": "https://www.earthdata.nasa.gov", "has_api": true, - "file_path": "academic/economics/bis-statistics.json", + "file_path": "international/earth-science/nasa-earthdata.json", "geographic_scope": "global" }, { - "id": "akshare", + "id": "iea-energy-data", "name": { - "en": "AKShare - Open Source Financial Data Interface Library", - "zh": "AKShare - 开源财经数据接口库" + "en": "IEA Energy Data", + "zh": "国际能源署能源数据", + "native": "IEA Energy Data" }, - "authority_level": "other", - "data_url": "https://github.com/akfamily/akshare", + "authority_level": "international", + "data_url": "https://www.iea.org/data-and-statistics", "has_api": true, - "file_path": "sectors/K-finance-insurance/akshare.json", + "file_path": "international/energy/iea.json", "geographic_scope": "global" }, { - "id": "alpha-vantage", + "id": "irena", "name": { - "en": "Alpha Vantage API", - "zh": "Alpha Vantage API" + "en": "IRENA - International Renewable Energy Agency", + "zh": "国际可再生能源署" }, - "authority_level": "commercial", - "data_url": "https://www.alphavantage.co/", + "authority_level": "international", + "data_url": "https://www.irena.org/Data", "has_api": true, - "file_path": "sectors/K-finance-insurance/alpha-vantage.json", + "file_path": "international/energy/irena.json", "geographic_scope": "global" - } - ], - "Foreign Exchange Reserves": [ + }, { - "id": "bis-reserves", + "id": "eea-climate", "name": { - "en": "BIS Central Bank Reserves Statistics", - "zh": "国际清算银行外汇储备统计" + "en": "European Environment Agency", + "zh": "欧洲环境署" }, "authority_level": "international", - "data_url": "https://data.bis.org/topics/CBTA", + "data_url": "https://www.eea.europa.eu/en/datahub", "has_api": true, - "file_path": "international/finance/bis-reserves.json", - "geographic_scope": "global" - } - ], - "Foreign Trade Statistics": [ - { - "id": "india-dgcis", - "name": { - "en": "Directorate General of Commercial Intelligence and Statistics", - "zh": "印度商业情报与统计总局" - }, - "authority_level": "government", - "data_url": "https://www.commerce.gov.in/trade-statistics/", - "has_api": false, - "file_path": "countries/asia/india/india-dgcis.json", - "geographic_scope": "national" + "file_path": "international/environment/eea-climate.json", + "geographic_scope": "regional" } ], - "Forestry": [ + "climate-change": [ { "id": "faostat", "name": { @@ -4264,6 +3987,30 @@ "file_path": "international/agriculture/faostat.json", "geographic_scope": "global" }, + { + "id": "adb-data-library", + "name": { + "en": "Asian Development Bank Data Library", + "zh": "亚洲开发银行数据库" + }, + "authority_level": "international", + "data_url": "https://data.adb.org", + "has_api": true, + "file_path": "international/development/adb-data-library.json", + "geographic_scope": "regional" + }, + { + "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": "intl-copernicus-cdse", "name": { @@ -4275,631 +4022,547 @@ "has_api": true, "file_path": "international/earth-science/copernicus-data-space.json", "geographic_scope": "global" - } - ], - "Fossil Fuels": [ + }, { - "id": "bp-statistical-review", + "id": "adb", "name": { - "en": "Statistical Review of World Energy", - "zh": "世界能源统计年鉴" + "en": "Asian Development Bank Data", + "zh": "亚洲开发银行数据" }, - "authority_level": "market", - "data_url": "https://www.energyinst.org/statistical-review", + "authority_level": "international", + "data_url": "https://www.adb.org/what-we-do/data", "has_api": false, - "file_path": "sectors/D-energy/bp-statistical-review.json", - "geographic_scope": "global" - } - ], - "Functional Materials": [ + "file_path": "international/economics/adb.json", + "geographic_scope": "regional" + }, { - "id": "cambridge-structural-database", + "id": "cdiac", "name": { - "en": "Cambridge Structural Database (CSD)", - "zh": "剑桥晶体结构数据库" + "en": "Carbon Dioxide Information Analysis Center", + "zh": "碳信息分析中心" }, "authority_level": "research", - "data_url": "https://www.ccdc.cam.ac.uk", + "data_url": "https://data.ess-dive.lbl.gov/portals/CDIAC", "has_api": true, - "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json", + "file_path": "international/environment/cdiac.json", "geographic_scope": "global" - } - ], - "Funds": [ + }, { - "id": "akshare", + "id": "bp-statistical-review", "name": { - "en": "AKShare - Open Source Financial Data Interface Library", - "zh": "AKShare - 开源财经数据接口库" + "en": "Statistical Review of World Energy", + "zh": "世界能源统计年鉴" }, - "authority_level": "other", - "data_url": "https://github.com/akfamily/akshare", - "has_api": true, - "file_path": "sectors/K-finance-insurance/akshare.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" } ], - "Futures": [ + "climate-change-adaptation": [ { - "id": "akshare", + "id": "cgiar-research-data", "name": { - "en": "AKShare - Open Source Financial Data Interface Library", - "zh": "AKShare - 开源财经数据接口库" + "en": "CGIAR Research Data", + "zh": "国际农业研究磋商组织研究数据" }, - "authority_level": "other", - "data_url": "https://github.com/akfamily/akshare", + "authority_level": "international", + "data_url": "https://gardian.cgiar.org/", "has_api": true, - "file_path": "sectors/K-finance-insurance/akshare.json", + "file_path": "international/agriculture/cgiar-research-data.json", "geographic_scope": "global" } ], - "GDP": [ + "climate-finance": [ { - "id": "us-bea", + "id": "caf", "name": { - "en": "Bureau of Economic Analysis", - "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.bea.gov/data", - "has_api": true, - "file_path": "countries/north-america/usa/us-bea.json", - "geographic_scope": "national" + "authority_level": "international", + "data_url": "https://www.caf.com/en/", + "has_api": false, + "file_path": "international/development/caf.json", + "geographic_scope": "regional" } ], - "GDP Growth": [ + "climate-resilience": [ { - "id": "adb-ado", + "id": "caf", "name": { - "en": "Asian Development Outlook", - "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.adb.org/outlook", + "data_url": "https://www.caf.com/en/", "has_api": false, - "file_path": "international/economics/adb-ado.json", + "file_path": "international/development/caf.json", "geographic_scope": "regional" - } - ], - "Gender Equality": [ + }, { - "id": "afrobarometer", + "id": "caribbean-development-bank", "name": { - "en": "Afrobarometer", - "zh": "非洲晴雨表" + "en": "Caribbean Development Bank", + "zh": "加勒比开发银行" }, - "authority_level": "research", - "data_url": "https://www.afrobarometer.org/data/", + "authority_level": "international", + "data_url": "https://www.caribank.org/data/country-data-reports", "has_api": false, - "file_path": "academic/social/afrobarometer.json", + "file_path": "international/development/caribbean-development-bank.json", "geographic_scope": "regional" } ], - "Genetics": [ + "climate-science": [ { - "id": "us-ncbi-genbank", + "id": "aws-open-data-registry", "name": { - "en": "GenBank", - "zh": "基因库" + "en": "Registry of Open Data on AWS", + "zh": "AWS开放数据注册表" }, - "authority_level": "government", - "data_url": "https://www.ncbi.nlm.nih.gov/genbank/", - "has_api": true, - "file_path": "academic/biology/genbank.json", + "authority_level": "commercial", + "data_url": "https://registry.opendata.aws/", + "has_api": false, + "file_path": "sectors/computer_science_ai/aws-open-data-registry.json", "geographic_scope": "global" } ], - "Genetics and Genomics": [ + "clinical-pharmacology": [ { - "id": "cgiar-research-data", + "id": "drugbank", "name": { - "en": "CGIAR Research Data", - "zh": "国际农业研究磋商组织研究数据" + "en": "DrugBank", + "zh": "药物与药物靶点数据库" }, - "authority_level": "international", - "data_url": "https://gardian.cgiar.org/", + "authority_level": "research", + "data_url": "https://go.drugbank.com", "has_api": true, - "file_path": "international/agriculture/cgiar-research-data.json", + "file_path": "academic/chemistry/drugbank.json", "geographic_scope": "global" } ], - "Genomics": [ + "clinical-research": [ { - "id": "ena", + "id": "clinicaltrials-gov", "name": { - "en": "European Nucleotide Archive", - "zh": "欧洲核苷酸档案库" + "en": "ClinicalTrials.gov", + "zh": "临床试验注册数据库" }, - "authority_level": "international", - "data_url": "https://www.ebi.ac.uk/ena/browser/", + "authority_level": "government", + "data_url": "https://clinicaltrials.gov/", "has_api": true, - "file_path": "academic/biology/ena.json", + "file_path": "academic/health/clinicaltrials-gov.json", "geographic_scope": "global" - }, + } + ], + "cloud-computing": [ { - "id": "us-ncbi-genbank", + "id": "china-caict", "name": { - "en": "GenBank", - "zh": "基因库" - }, - "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": "chembl", - "name": { - "en": "ChEMBL Database", - "zh": "ChEMBL生物活性数据库" + "en": "China Academy of Information and Communications Technology", + "zh": "中国信息通信研究院" }, "authority_level": "research", - "data_url": "https://www.ebi.ac.uk/chembl/", - "has_api": true, - "file_path": "academic/chemistry/chembl.json", - "geographic_scope": "global" + "data_url": "http://www.caict.ac.cn/kxyj/qwfb/", + "has_api": false, + "file_path": "china/research/china-caict.json", + "geographic_scope": "national" } ], - "Geospatial Data": [ + "coal": [ { - "id": "aafc", + "id": "china-chinacoal", "name": { - "en": "Agriculture and Agri-Food Canada", - "zh": "加拿大农业与农业食品部", - "native": "Agriculture et Agroalimentaire Canada" + "en": "China National Coal Group Corporation", + "zh": "中国中煤能源集团有限公司" }, "authority_level": "government", - "data_url": "https://open.canada.ca/data/en/organization/aafc-aac", + "data_url": "https://www.chinacoal.com", + "has_api": false, + "file_path": "china/resources/energy/china-chinacoal.json", + "geographic_scope": "national" + }, + { + "id": "usa-eia", + "name": { + "en": "U.S. Energy Information Administration", + "zh": "美国能源信息署" + }, + "authority_level": "government", + "data_url": "https://www.eia.gov", "has_api": true, - "file_path": "countries/north-america/canada/aafc.json", + "file_path": "countries/north-america/usa/eia.json", "geographic_scope": "national" } ], - "Global Competence": [ + "coastal-trade": [ { - "id": "oecd-pisa", + "id": "india-dgcis", "name": { - "en": "PISA - Programme for International Student Assessment", - "zh": "国际学生评估项目" + "en": "Directorate General of Commercial Intelligence and Statistics", + "zh": "印度商业情报与统计总局" }, - "authority_level": "international", - "data_url": "https://www.oecd.org/en/about/programmes/pisa.html", + "authority_level": "government", + "data_url": "https://www.commerce.gov.in/trade-statistics/", "has_api": false, - "file_path": "international/education/oecd-pisa.json", - "geographic_scope": "global" + "file_path": "countries/asia/india/india-dgcis.json", + "geographic_scope": "national" } ], - "Global Education": [ + "cocoa": [ { - "id": "qs-world-university-rankings", + "id": "vicofa", "name": { - "en": "QS World University Rankings", - "zh": "QS世界大学排名" + "en": "Vietnam Coffee and Cocoa Association", + "zh": "越南咖啡与可可协会" }, "authority_level": "market", - "data_url": "https://www.topuniversities.com/world-university-rankings", + "data_url": "https://vicofa.org.vn/", "has_api": false, - "file_path": "sectors/P-education/qs-world-university-rankings.json", - "geographic_scope": "global" + "file_path": "countries/asia/vietnam/vicofa.json", + "geographic_scope": "national" } ], - "Global Liquidity": [ + "coffee": [ { - "id": "bis-statistics", + "id": "vicofa", "name": { - "en": "BIS Statistics", - "zh": "国际清算银行统计数据" + "en": "Vietnam Coffee and Cocoa Association", + "zh": "越南咖啡与可可协会" }, - "authority_level": "government", - "data_url": "https://data.bis.org/", - "has_api": true, - "file_path": "academic/economics/bis-statistics.json", - "geographic_scope": "global" + "authority_level": "market", + "data_url": "https://vicofa.org.vn/", + "has_api": false, + "file_path": "countries/asia/vietnam/vicofa.json", + "geographic_scope": "national" } ], - "Governance": [ + "commerce": [ { - "id": "asian-barometer", + "id": "china-mofcom", "name": { - "en": "Asian Barometer Survey", - "zh": "亚洲民主动态调查" + "en": "Ministry of Commerce of China", + "zh": "中华人民共和国商务部", + "native": "中华人民共和国商务部" }, - "authority_level": "research", - "data_url": "https://asianbarometer.org", + "authority_level": "government", + "data_url": "https://data.mofcom.gov.cn", "has_api": false, - "file_path": "academic/social/asian-barometer.json", - "geographic_scope": "regional" + "file_path": "china/economy/trade/mofcom.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" - } - ], - "Government": [ - { - "id": "uk-data-gov", + "id": "china-ctmo", "name": { - "en": "Data.gov.uk", - "zh": "英国政府开放数据平台" + "en": "China Trademark Office (CNIPA Trademark Bureau)", + "zh": "国家知识产权局商标局" }, "authority_level": "government", - "data_url": "https://www.data.gov.uk", - "has_api": true, - "file_path": "countries/europe/uk/uk-data-gov.json", + "data_url": "https://sbj.cnipa.gov.cn", + "has_api": false, + "file_path": "china/technology/intellectual_property/china-ctmo.json", "geographic_scope": "national" - } - ], - "Government Finance": [ - { - "id": "adb-key-indicators", - "name": { - "en": "Asian Development Bank Key Indicators", - "zh": "亚洲开发银行关键指标" - }, - "authority_level": "international", - "data_url": "https://kidb.adb.org", - "has_api": true, - "file_path": "international/development/adb-key-indicators.json", - "geographic_scope": "regional" }, { - "id": "ecb-sdw", + "id": "hk-companies-registry", "name": { - "en": "ECB Statistical Data Warehouse (ECB Data Portal)", - "zh": "欧洲央行统计数据仓库" + "en": "Hong Kong Companies Registry", + "zh": "香港公司注册处" }, "authority_level": "government", - "data_url": "https://data.ecb.europa.eu/", - "has_api": true, - "file_path": "international/economics/ecb-sdw.json", - "geographic_scope": "regional" - } - ], - "Government spending": [ + "data_url": "https://www.cr.gov.hk/en/services/obtain-company-info.htm", + "has_api": false, + "file_path": "countries/asia/hk-companies-registry.json", + "geographic_scope": "national" + }, { - "id": "uk-data-gov", + "id": "japan-meti", "name": { - "en": "Data.gov.uk", - "zh": "英国政府开放数据平台" + "en": "Ministry of Economy, Trade and Industry (Japan)", + "zh": "日本经济产业省", + "native": "経済産業省" }, "authority_level": "government", - "data_url": "https://www.data.gov.uk", - "has_api": true, - "file_path": "countries/europe/uk/uk-data-gov.json", + "data_url": "https://www.meti.go.jp/english/statistics/index.html", + "has_api": false, + "file_path": "countries/asia/japan/japan-meti.json", "geographic_scope": "national" } ], - "Greenhouse Gases": [ - { - "id": "cdiac", - "name": { - "en": "Carbon Dioxide Information Analysis Center", - "zh": "碳信息分析中心" - }, - "authority_level": "research", - "data_url": "https://data.ess-dive.lbl.gov/portals/CDIAC", - "has_api": true, - "file_path": "international/environment/cdiac.json", - "geographic_scope": "global" - } - ], - "Hazardous Materials": [ + "commodities": [ { - "id": "basel-convention", + "id": "vicofa", "name": { - "en": "Basel Convention Data", - "zh": "巴塞尔公约数据" + "en": "Vietnam Coffee and Cocoa Association", + "zh": "越南咖啡与可可协会" }, - "authority_level": "international", - "data_url": "https://www.basel.int", + "authority_level": "market", + "data_url": "https://vicofa.org.vn/", "has_api": false, - "file_path": "international/environment/basel-convention.json", - "geographic_scope": "global" - } - ], - "Health": [ - { - "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/asia/vietnam/vicofa.json", "geographic_scope": "national" }, { - "id": "us-data-gov", + "id": "brazil-cecafe", "name": { - "en": "Data.gov", - "zh": "美国政府开放数据平台" + "en": "Brazilian Coffee Exporters Council", + "zh": "巴西咖啡出口商协会" }, - "authority_level": "government", - "data_url": "https://catalog.data.gov/dataset", + "authority_level": "market", + "data_url": "https://www.cecafe.com.br/publicacoes/relatorio-de-exportacoes/", "has_api": false, - "file_path": "countries/north-america/usa/us-data-gov.json", + "file_path": "countries/south-america/brazil-cecafe.json", "geographic_scope": "national" }, { - "id": "aus-aihw", + "id": "brazil-conab", "name": { - "en": "Australian Institute of Health and Welfare", - "zh": "澳大利亚健康与福利研究所" + "en": "National Supply Company (CONAB)", + "zh": "巴西国家商品供应公司" }, "authority_level": "government", - "data_url": "https://www.aihw.gov.au/", - "has_api": true, - "file_path": "countries/oceania/australia/aihw.json", + "data_url": "https://www.gov.br/conab/pt-br/atuacao/informacoes-agropecuarias/safras/safra-de-cafe", + "has_api": false, + "file_path": "countries/south-america/brazil-conab.json", "geographic_scope": "national" }, { - "id": "adb-data-library", + "id": "jodi", "name": { - "en": "Asian Development Bank Data Library", - "zh": "亚洲开发银行数据库" + "en": "JODI - Joint Organisations Data Initiative", + "zh": "联合组织数据倡议" }, "authority_level": "international", - "data_url": "https://data.adb.org", - "has_api": true, - "file_path": "international/development/adb-data-library.json", - "geographic_scope": "regional" + "data_url": "https://www.jodidata.org/oil/database/data-downloads.aspx", + "has_api": false, + "file_path": "international/energy/jodi.json", + "geographic_scope": "global" }, { - "id": "afdb", + "id": "opec-statistics", "name": { - "en": "African Development Bank", - "zh": "非洲开发银行" + "en": "OPEC Statistics", + "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" + "data_url": "https://asb.opec.org", + "has_api": false, + "file_path": "international/energy/opec-statistics.json", + "geographic_scope": "global" }, { - "id": "caf", + "id": "alpha-vantage", "name": { - "en": "Development Bank of Latin America and the Caribbean (CAF)", - "zh": "拉美和加勒比开发银行", - "native": "Banco de Desarrollo de América Latina y El Caribe" + "en": "Alpha Vantage API", + "zh": "Alpha Vantage API" }, - "authority_level": "international", - "data_url": "https://www.caf.com/en/", - "has_api": false, - "file_path": "international/development/caf.json", - "geographic_scope": "regional" + "authority_level": "commercial", + "data_url": "https://www.alphavantage.co/", + "has_api": true, + "file_path": "sectors/K-finance-insurance/alpha-vantage.json", + "geographic_scope": "global" }, { - "id": "caribbean-development-bank", + "id": "bloomberg-terminal", "name": { - "en": "Caribbean Development Bank", - "zh": "加勒比开发银行" + "en": "Bloomberg Terminal (Public 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", - "geographic_scope": "regional" + "authority_level": "commercial", + "data_url": "https://www.bloomberg.com/markets", + "has_api": true, + "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json", + "geographic_scope": "global" }, { - "id": "idb", + "id": "refinitiv-lseg", "name": { - "en": "Inter-American Development Bank", - "zh": "美洲开发银行" + "en": "LSEG Data & Analytics (Refinitiv)", + "zh": "伦敦证交所数据分析(路孚特)" }, - "authority_level": "international", - "data_url": "https://www.iadb.org/en/knowledge-resources/data", + "authority_level": "commercial", + "data_url": "https://www.lseg.com/en/data-analytics/products/workspace", "has_api": true, - "file_path": "international/development/idb.json", - "geographic_scope": "regional" + "file_path": "sectors/K-finance-insurance/refinitiv-lseg.json", + "geographic_scope": "global" } ], - "Health Equity": [ + "commodity-markets": [ { - "id": "us-cdc", + "id": "usda-fas", "name": { - "en": "CDC Data & Statistics", - "zh": "美国疾控中心数据与统计" + "en": "USDA Foreign Agricultural Service", + "zh": "美国农业部对外农业局" }, "authority_level": "government", - "data_url": "https://data.cdc.gov/", + "data_url": "https://apps.fas.usda.gov/psdonline/app/index.html", "has_api": true, - "file_path": "countries/north-america/usa/us-cdc.json", + "file_path": "countries/north-america/usa/usda-fas.json", "geographic_scope": "national" - } - ], - "Health Statistics": [ + }, { - "id": "us-cdc", + "id": "ico-coffee", "name": { - "en": "CDC Data & Statistics", - "zh": "美国疾控中心数据与统计" + "en": "International Coffee Organization", + "zh": "国际咖啡组织" }, - "authority_level": "government", - "data_url": "https://data.cdc.gov/", - "has_api": true, - "file_path": "countries/north-america/usa/us-cdc.json", - "geographic_scope": "national" - } - ], - "Health and Education": [ + "authority_level": "international", + "data_url": "https://www.ico.org/trade_statistics.asp", + "has_api": false, + "file_path": "international/agriculture/ico-coffee.json", + "geographic_scope": "global" + }, { - "id": "afrobarometer", + "id": "amis", "name": { - "en": "Afrobarometer", - "zh": "非洲晴雨表" + "en": "Agricultural Market Information System (AMIS)", + "zh": "农业市场信息系统" }, - "authority_level": "research", - "data_url": "https://www.afrobarometer.org/data/", + "authority_level": "international", + "data_url": "https://www.amis-outlook.org", "has_api": false, - "file_path": "academic/social/afrobarometer.json", - "geographic_scope": "regional" + "file_path": "sectors/A-agriculture/amis.json", + "geographic_scope": "global" } ], - "Healthcare": [ + "commodity-price": [ { - "id": "ena", + "id": "china-rare-earth-association", "name": { - "en": "European Nucleotide Archive", - "zh": "欧洲核苷酸档案库" + "en": "Association of China Rare Earth Industry", + "zh": "中国稀土行业协会" }, - "authority_level": "international", - "data_url": "https://www.ebi.ac.uk/ena/browser/", - "has_api": true, - "file_path": "academic/biology/ena.json", - "geographic_scope": "global" + "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", + "geographic_scope": "national" } ], - "Healthcare Access": [ + "communication": [ { - "id": "us-cdc", + "id": "unesco-uis", "name": { - "en": "CDC Data & Statistics", - "zh": "美国疾控中心数据与统计" + "en": "UNESCO Institute for Statistics", + "zh": "联合国教科文组织统计研究所" }, - "authority_level": "government", - "data_url": "https://data.cdc.gov/", - "has_api": true, - "file_path": "countries/north-america/usa/us-cdc.json", - "geographic_scope": "national" + "authority_level": "international", + "data_url": "https://data.uis.unesco.org/", + "has_api": false, + "file_path": "international/education/unesco-uis.json", + "geographic_scope": "global" } ], - "Healthcare-Associated Infections": [ + "communications": [ { - "id": "ecdc-surveillance", + "id": "adb-key-indicators", "name": { - "en": "ECDC Surveillance Data", - "zh": "欧洲疾病预防控制中心监测数据" + "en": "Asian Development Bank Key Indicators", + "zh": "亚洲开发银行关键指标" }, "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", + "data_url": "https://kidb.adb.org", + "has_api": true, + "file_path": "international/development/adb-key-indicators.json", "geographic_scope": "regional" } ], - "High Energy Physics": [ + "computational-biology": [ { - "id": "cern-open-data", + "id": "intl-rcsb-pdb", "name": { - "en": "CERN Open Data Portal", - "zh": "CERN 开放数据门户" + "en": "Protein Data Bank (PDB)", + "zh": "蛋白质数据银行" }, "authority_level": "research", - "data_url": "https://opendata.cern.ch/", + "data_url": "https://www.rcsb.org", "has_api": true, - "file_path": "academic/physics/cern-open-data.json", + "file_path": "academic/biology/pdb.json", "geographic_scope": "global" } ], - "Higher Education": [ + "computational-linguistics": [ { - "id": "arwu", + "id": "bookscorpus", "name": { - "en": "Academic Ranking of World Universities", - "zh": "世界大学学术排名" + "en": "BooksCorpus", + "zh": "图书语料库" }, "authority_level": "research", - "data_url": "https://www.shanghairanking.com/rankings/arwu/2025", + "data_url": "https://github.com/soskek/bookcorpus", "has_api": false, - "file_path": "sectors/P-education/arwu.json", + "file_path": "sectors/J-information-communication/bookscorpus.json", "geographic_scope": "global" }, { - "id": "qs-world-university-rankings", + "id": "conll-shared-tasks", "name": { - "en": "QS World University Rankings", - "zh": "QS世界大学排名" + "en": "CoNLL Shared Tasks Data", + "zh": "CoNLL共享任务数据集" }, - "authority_level": "market", - "data_url": "https://www.topuniversities.com/world-university-rankings", + "authority_level": "research", + "data_url": "https://www.conll.org/previous-tasks", "has_api": false, - "file_path": "sectors/P-education/qs-world-university-rankings.json", + "file_path": "sectors/J-information-communication/conll-shared-tasks.json", "geographic_scope": "global" } ], - "Homelessness": [ + "computational-physics": [ { - "id": "aus-aihw", + "id": "cern-open-data", "name": { - "en": "Australian Institute of Health and Welfare", - "zh": "澳大利亚健康与福利研究所" + "en": "CERN Open Data Portal", + "zh": "CERN 开放数据门户" }, - "authority_level": "government", - "data_url": "https://www.aihw.gov.au/", + "authority_level": "research", + "data_url": "https://opendata.cern.ch/", "has_api": true, - "file_path": "countries/oceania/australia/aihw.json", - "geographic_scope": "national" + "file_path": "academic/physics/cern-open-data.json", + "geographic_scope": "global" } ], - "Hospitals": [ + "computer-science": [ { - "id": "aus-aihw", + "id": "ieee-xplore", "name": { - "en": "Australian Institute of Health and Welfare", - "zh": "澳大利亚健康与福利研究所" + "en": "IEEE Xplore Digital Library", + "zh": "IEEE Xplore数字图书馆" }, - "authority_level": "government", - "data_url": "https://www.aihw.gov.au/", + "authority_level": "research", + "data_url": "https://ieeexplore.ieee.org", "has_api": true, - "file_path": "countries/oceania/australia/aihw.json", - "geographic_scope": "national" - } - ], - "Housing": [ + "file_path": "academic/ieee-xplore.json", + "geographic_scope": "global" + }, { - "id": "aus-aihw", + "id": "derwent-innovation-index", "name": { - "en": "Australian Institute of Health and Welfare", - "zh": "澳大利亚健康与福利研究所" + "en": "Derwent Innovation Index", + "zh": "德温特创新索引" }, - "authority_level": "government", - "data_url": "https://www.aihw.gov.au/", + "authority_level": "commercial", + "data_url": "https://clarivate.com/products/derwent-innovation/", "has_api": true, - "file_path": "countries/oceania/australia/aihw.json", - "geographic_scope": "national" - } - ], - "Human Rights": [ - { - "id": "afrobarometer", - "name": { - "en": "Afrobarometer", - "zh": "非洲晴雨表" - }, - "authority_level": "research", - "data_url": "https://www.afrobarometer.org/data/", - "has_api": false, - "file_path": "academic/social/afrobarometer.json", - "geographic_scope": "regional" - } - ], - "IPO": [ + "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json", + "geographic_scope": "global" + }, { - "id": "bloomberg-terminal-ipo", + "id": "aws-open-data-registry", "name": { - "en": "Bloomberg Terminal - IPO Module", - "zh": "彭博终端 - IPO模块" + "en": "Registry of Open Data on AWS", + "zh": "AWS开放数据注册表" }, "authority_level": "commercial", - "data_url": "https://www.bloomberg.com/professional/products/bloomberg-terminal/", - "has_api": true, - "file_path": "sectors/K-finance-insurance/bloomberg-terminal-ipo.json", + "data_url": "https://registry.opendata.aws/", + "has_api": false, + "file_path": "sectors/computer_science_ai/aws-open-data-registry.json", "geographic_scope": "global" } ], - "Image Classification": [ + "computer-vision": [ { "id": "cifar", "name": { @@ -4923,398 +4586,376 @@ "has_api": false, "file_path": "sectors/J-information-communication/imagenet.json", "geographic_scope": "global" + }, + { + "id": "aws-open-data-registry", + "name": { + "en": "Registry of Open Data on AWS", + "zh": "AWS开放数据注册表" + }, + "authority_level": "commercial", + "data_url": "https://registry.opendata.aws/", + "has_api": false, + "file_path": "sectors/computer_science_ai/aws-open-data-registry.json", + "geographic_scope": "global" } ], - "Immunization": [ + "conservation": [ { - "id": "ecdc-surveillance", + "id": "gbif", "name": { - "en": "ECDC Surveillance Data", - "zh": "欧洲疾病预防控制中心监测数据" + "en": "Global Biodiversity Information Facility (GBIF)", + "zh": "全球生物多样性信息设施" }, "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", - "geographic_scope": "regional" + "data_url": "https://www.gbif.org/occurrence/search", + "has_api": true, + "file_path": "international/paleontology/gbif.json", + "geographic_scope": "global" } ], - "Import Statistics": [ + "construction": [ { - "id": "india-dgcis", + "id": "china-construction-standards", "name": { - "en": "Directorate General of Commercial Intelligence and Statistics", - "zh": "印度商业情报与统计总局" + "en": "China Engineering Construction Standardization Association", + "zh": "中国工程建设标准化协会", + "native": "中国工程建设标准化协会" }, "authority_level": "government", - "data_url": "https://www.commerce.gov.in/trade-statistics/", + "data_url": "https://www.cecs.org.cn/biaozhun/", "has_api": false, - "file_path": "countries/asia/india/india-dgcis.json", + "file_path": "china/construction/china-construction-standards.json", "geographic_scope": "national" - } - ], - "Indices": [ + }, { - "id": "akshare", + "id": "china-cscec", "name": { - "en": "AKShare - Open Source Financial Data Interface Library", - "zh": "AKShare - 开源财经数据接口库" + "en": "China State Construction Engineering Corporation", + "zh": "中国建筑集团有限公司" }, - "authority_level": "other", - "data_url": "https://github.com/akfamily/akshare", - "has_api": true, - "file_path": "sectors/K-finance-insurance/akshare.json", - "geographic_scope": "global" - } - ], - "Indigenous health": [ + "authority_level": "commercial", + "data_url": "https://www.cscec.com", + "has_api": false, + "file_path": "china/construction/china-cscec.json", + "geographic_scope": "national" + }, { - "id": "aus-aihw", + "id": "china-gd-housing", "name": { - "en": "Australian Institute of Health and Welfare", - "zh": "澳大利亚健康与福利研究所" + "en": "Guangdong Provincial Department of Housing and Urban-Rural Development", + "zh": "广东省住房和城乡建设厅" }, "authority_level": "government", - "data_url": "https://www.aihw.gov.au/", - "has_api": true, - "file_path": "countries/oceania/australia/aihw.json", - "geographic_scope": "national" - } - ], - "Industrial Automation": [ + "data_url": "https://zfcxjst.gd.gov.cn/xxgk/", + "has_api": false, + "file_path": "china/construction/china-gd-housing.json", + "geographic_scope": "subnational" + }, { - "id": "china-robot-industry-alliance", + "id": "china-mohurd", "name": { - "en": "Robot Branch of China Machinery Industry Federation", - "zh": "中国机械工业联合会机器人分会" + "en": "Ministry of Housing and Urban-Rural Development", + "zh": "住房和城乡建设部", + "native": "住房和城乡建设部" }, - "authority_level": "market", - "data_url": "http://cria.mei.net.cn/gzpt.asp?lm=/1310", + "authority_level": "government", + "data_url": "https://www.mohurd.gov.cn/gongkai/zhengce/", "has_api": false, - "file_path": "sectors/C-manufacturing/robotics/china-robot-industry-alliance.json", + "file_path": "china/construction/china-mohurd.json", "geographic_scope": "national" - } - ], - "Industrial Economics": [ + }, { - "id": "china-rare-earth-association", + "id": "china-shenzhen-housing", "name": { - "en": "Association of China Rare Earth Industry", - "zh": "中国稀土行业协会" + "en": "Shenzhen Municipal Housing and Construction Bureau", + "zh": "深圳市住房和建设局" }, - "authority_level": "market", - "data_url": "https://ac-rei.org.cn", + "authority_level": "government", + "data_url": "https://zjj.sz.gov.cn/xxgk/", "has_api": false, - "file_path": "sectors/B-mining/rare-earth/china-rare-earth-association.json", - "geographic_scope": "national" - } - ], - "Industrial Statistics": [ + "file_path": "china/construction/china-shenzhen-housing.json", + "geographic_scope": "subnational" + }, { - "id": "china-additive-manufacturing-alliance", + "id": "china-chinca", "name": { - "en": "China Additive Manufacturing Alliance", - "zh": "中国增材制造产业联盟" + "en": "China International Contractors Association", + "zh": "中国对外承包工程商会" }, - "authority_level": "market", - "data_url": "https://www.miit-eidc.org.cn", + "authority_level": "other", + "data_url": "https://www.chinca.org/CICA/info/20-1/index.html", "has_api": false, - "file_path": "sectors/C-manufacturing/additive/china-additive-manufacturing-alliance.json", + "file_path": "china/economy/trade/china-chinca.json", "geographic_scope": "national" }, { - "id": "china-auto-association", + "id": "china-highway-society", "name": { - "en": "China Association of Automobile Manufacturers", - "zh": "中国汽车工业协会" + "en": "China Highway and Transportation Society", + "zh": "中国公路学会" }, - "authority_level": "market", - "data_url": "http://www.caam.org.cn/tjsj", + "authority_level": "research", + "data_url": "https://www.chts.cn", "has_api": false, - "file_path": "sectors/C-manufacturing/automotive/china-auto-association.json", + "file_path": "china/infrastructure/china-highway-society.json", "geographic_scope": "national" }, { - "id": "china-petroleum-chemical-federation", + "id": "china-cabr", "name": { - "en": "China Petroleum and Chemical Industry Federation", - "zh": "中国石油和化学工业联合会" + "en": "China Academy of Building Research", + "zh": "中国建筑科学研究院有限公司" }, - "authority_level": "market", - "data_url": "http://www.cpcif.org.cn/list/402882396610575f0166105924fe0000", + "authority_level": "research", + "data_url": "https://www.cabr.cn", "has_api": false, - "file_path": "sectors/C-manufacturing/chemicals/china-petroleum-chemical-federation.json", + "file_path": "china/research/china-cabr.json", "geographic_scope": "national" - } - ], - "Industry Economics": [ + }, { - "id": "us-bea", + "id": "vietnam-gso", "name": { - "en": "Bureau of Economic Analysis", - "zh": "美国经济分析局" + "en": "General Statistics Office of Vietnam", + "zh": "越南统计总局" }, "authority_level": "government", - "data_url": "https://www.bea.gov/data", - "has_api": true, - "file_path": "countries/north-america/usa/us-bea.json", + "data_url": "https://www.nso.gov.vn/en/statistical-data/", + "has_api": false, + "file_path": "countries/asia/vietnam/gso.json", "geographic_scope": "national" - } - ], - "Industry Standards": [ + }, { - "id": "china-petroleum-chemical-federation", + "id": "eu-construction", "name": { - "en": "China Petroleum and Chemical Industry Federation", - "zh": "中国石油和化学工业联合会" + "en": "European Commission - Construction and Buildings", + "zh": "欧盟委员会 - 建筑与建设", + "native": "European Commission - Construction and Buildings" }, - "authority_level": "market", - "data_url": "http://www.cpcif.org.cn/list/402882396610575f0166105924fe0000", + "authority_level": "international", + "data_url": "https://ec.europa.eu/growth/sectors/construction_en", "has_api": false, - "file_path": "sectors/C-manufacturing/chemicals/china-petroleum-chemical-federation.json", - "geographic_scope": "national" - } - ], - "Industry Statistics": [ + "file_path": "international/construction/eu-construction.json", + "geographic_scope": "regional" + }, { - "id": "us-bls", + "id": "iso-construction", "name": { - "en": "Bureau of Labor Statistics", - "zh": "美国劳工统计局" + "en": "ISO Technical Committee 59 - Buildings and Civil Engineering Works", + "zh": "ISO技术委员会59 - 建筑与土木工程", + "native": "ISO/TC 59 - Buildings and civil engineering works" }, - "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" + "authority_level": "international", + "data_url": "https://www.iso.org/committee/49070/x/catalogue/", + "has_api": false, + "file_path": "international/construction/iso-construction.json", + "geographic_scope": "global" }, { - "id": "china-robot-industry-alliance", + "id": "us-hud", "name": { - "en": "Robot Branch of China Machinery Industry Federation", - "zh": "中国机械工业联合会机器人分会" + "en": "U.S. Department of Housing and Urban Development", + "zh": "美国住房和城市发展部", + "native": "U.S. Department of Housing and Urban Development" }, - "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", + "authority_level": "government", + "data_url": "https://www.huduser.gov/portal/datasets/", + "has_api": true, + "file_path": "international/construction/us-hud.json", "geographic_scope": "national" } ], - "Infectious Diseases": [ + "consumer": [ { - "id": "us-cdc", + "id": "china-cada", "name": { - "en": "CDC Data & Statistics", - "zh": "美国疾控中心数据与统计" + "en": "China Automobile Dealers Association", + "zh": "中国汽车流通协会" }, - "authority_level": "government", - "data_url": "https://data.cdc.gov/", - "has_api": true, - "file_path": "countries/north-america/usa/us-cdc.json", + "authority_level": "other", + "data_url": "http://data.cada.cn/main/overview.do", + "has_api": false, + "file_path": "china/economy/china-cada.json", "geographic_scope": "national" }, { - "id": "ecdc-surveillance", + "id": "china-cgcc", "name": { - "en": "ECDC Surveillance Data", - "zh": "欧洲疾病预防控制中心监测数据" + "en": "China General Chamber of Commerce", + "zh": "中国商业联合会" }, - "authority_level": "international", - "data_url": "https://www.ecdc.europa.eu/en/data-dashboards-and-databases", + "authority_level": "other", + "data_url": "https://www.cgcc.org.cn/hyfz/zglsyfzzs/", "has_api": false, - "file_path": "international/health/ecdc-surveillance.json", - "geographic_scope": "regional" - } - ], - "Inflation": [ + "file_path": "china/economy/market/china-cgcc.json", + "geographic_scope": "national" + }, { - "id": "us-bls", + "id": "china-iresearch", "name": { - "en": "Bureau of Labor Statistics", - "zh": "美国劳工统计局" + "en": "iResearch Consulting Group", + "zh": "艾瑞咨询" }, - "authority_level": "government", - "data_url": "https://www.bls.gov/data/", - "has_api": true, - "file_path": "countries/north-america/usa/us-bls.json", + "authority_level": "market", + "data_url": "https://www.iresearch.com.cn/report.shtml", + "has_api": false, + "file_path": "china/economy/market/china-iresearch.json", "geographic_scope": "national" }, { - "id": "adb-ado", + "id": "us-data-gov", "name": { - "en": "Asian Development Outlook", - "zh": "亚洲开发展望" + "en": "Data.gov", + "zh": "美国政府开放数据平台" }, - "authority_level": "international", - "data_url": "https://www.adb.org/outlook", + "authority_level": "government", + "data_url": "https://catalog.data.gov/dataset", "has_api": false, - "file_path": "international/economics/adb-ado.json", - "geographic_scope": "regional" + "file_path": "countries/north-america/usa/us-data-gov.json", + "geographic_scope": "national" } ], - "Information Retrieval": [ + "consumer-behavior": [ { - "id": "common-crawl", + "id": "china-cta", "name": { - "en": "Common Crawl", - "zh": "Common Crawl 网络爬取数据" + "en": "China Tourism Academy", + "zh": "中国旅游研究院" }, "authority_level": "research", - "data_url": "https://commoncrawl.org", - "has_api": true, - "file_path": "sectors/J-information-communication/common-crawl.json", - "geographic_scope": "global" + "data_url": "https://www.ctaweb.org.cn/index.php?m=home&c=Lists&a=index&tid=21", + "has_api": false, + "file_path": "china/national/china-cta.json", + "geographic_scope": "national" } ], - "Infrastructure": [ + "consumer-confidence": [ { - "id": "afrobarometer", + "id": "acad-conferenceboard", "name": { - "en": "Afrobarometer", - "zh": "非洲晴雨表" + "en": "The Conference Board Economic Data", + "zh": "世界大型企业联合会经济数据" }, "authority_level": "research", - "data_url": "https://www.afrobarometer.org/data/", + "data_url": "https://www.conference-board.org/topics/economic-data-analysis", "has_api": false, - "file_path": "academic/social/afrobarometer.json", - "geographic_scope": "regional" - }, + "file_path": "academic/economics/conference-board.json", + "geographic_scope": "global" + } + ], + "consumer-credit": [ { - "id": "adb-data-library", + "id": "us-federalreserve", "name": { - "en": "Asian Development Bank Data Library", - "zh": "亚洲开发银行数据库" + "en": "Federal Reserve Board", + "zh": "美联储理事会" }, - "authority_level": "international", - "data_url": "https://data.adb.org", - "has_api": true, - "file_path": "international/development/adb-data-library.json", - "geographic_scope": "regional" - }, + "authority_level": "government", + "data_url": "https://www.federalreserve.gov/data.htm", + "has_api": false, + "file_path": "countries/north-america/usa/us-federalreserve.json", + "geographic_scope": "national" + } + ], + "consumer-expenditures": [ { - "id": "adb-key-indicators", + "id": "us-bls", "name": { - "en": "Asian Development Bank Key Indicators", - "zh": "亚洲开发银行关键指标" + "en": "Bureau of Labor Statistics", + "zh": "劳工统计局" }, - "authority_level": "international", - "data_url": "https://kidb.adb.org", + "authority_level": "government", + "data_url": "https://www.bls.gov/data/", "has_api": true, - "file_path": "international/development/adb-key-indicators.json", - "geographic_scope": "regional" - }, + "file_path": "countries/north-america/usa/us-bls.json", + "geographic_scope": "national" + } + ], + "consumer-goods": [ { - "id": "afdb", + "id": "china-cbea", "name": { - "en": "African Development Bank", - "zh": "非洲开发银行" + "en": "China Beverage Association", + "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" + "authority_level": "other", + "data_url": "https://www.chinabeverage.org", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cbea.json", + "geographic_scope": "national" }, { - "id": "caf", + "id": "china-furniture-association", "name": { - "en": "Development Bank of Latin America and the Caribbean (CAF)", - "zh": "拉美和加勒比开发银行", - "native": "Banco de Desarrollo de América Latina y El Caribe" + "en": "China National Furniture Association", + "zh": "中国家具协会" }, - "authority_level": "international", - "data_url": "https://www.caf.com/en/", + "authority_level": "market", + "data_url": "https://www.cnfa.com.cn", "has_api": false, - "file_path": "international/development/caf.json", - "geographic_scope": "regional" + "file_path": "china/economy/industry_associations/china-furniture-association.json", + "geographic_scope": "national" }, { - "id": "caribbean-development-bank", + "id": "china-light-industry-council", "name": { - "en": "Caribbean Development Bank", - "zh": "加勒比开发银行" + "en": "China National Light Industry Council", + "zh": "中国轻工业联合会" }, - "authority_level": "international", - "data_url": "https://www.caribank.org/data/country-data-reports", + "authority_level": "market", + "data_url": "http://www.cnlic.org.cn", "has_api": false, - "file_path": "international/development/caribbean-development-bank.json", - "geographic_scope": "regional" + "file_path": "china/economy/industry_associations/china-light-industry-council.json", + "geographic_scope": "national" } ], - "Inland Trade": [ + "consumer-price-index": [ { - "id": "india-dgcis", + "id": "kostat-cpi", "name": { - "en": "Directorate General of Commercial Intelligence and Statistics", - "zh": "印度商业情报与统计总局" + "en": "Statistics Korea (KOSTAT) - Consumer Price Index", + "zh": "韩国统计局 - 消费者物价指数", + "ko": "통계청 - 소비자물가지수" }, "authority_level": "government", - "data_url": "https://www.commerce.gov.in/trade-statistics/", - "has_api": false, - "file_path": "countries/asia/india/india-dgcis.json", + "data_url": "https://kosis.kr/eng/", + "has_api": true, + "file_path": "countries/asia/kostat-cpi.json", "geographic_scope": "national" } ], - "Innovation": [ + "consumer-prices": [ { - "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, - "file_path": "international/development/caf.json", - "geographic_scope": "regional" - }, - { - "id": "derwent-innovation-index", + "id": "bis-statistics", "name": { - "en": "Derwent Innovation Index", - "zh": "德温特创新索引" + "en": "BIS Statistics", + "zh": "国际清算银行统计数据" }, - "authority_level": "commercial", - "data_url": "https://clarivate.com/products/derwent-innovation/", + "authority_level": "government", + "data_url": "https://data.bis.org/", "has_api": true, - "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json", - "geographic_scope": "global" - } - ], - "Inorganic Chemistry": [ - { - "id": "intl-chemspider", - "name": { - "en": "ChemSpider", - "zh": "化学蜘蛛数据库" - }, - "authority_level": "international", - "data_url": "https://www.chemspider.com", - "has_api": false, - "file_path": "academic/chemistry/chemspider.json", + "file_path": "academic/economics/bis-statistics.json", "geographic_scope": "global" }, { - "id": "cambridge-structural-database", + "id": "uk-ons-cpi-rpi", "name": { - "en": "Cambridge Structural Database (CSD)", - "zh": "剑桥晶体结构数据库" + "en": "UK Office for National Statistics - Consumer Price Index and Retail Prices Index", + "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" + "authority_level": "government", + "data_url": "https://www.ons.gov.uk/economy/inflationandpriceindices", + "has_api": false, + "file_path": "countries/europe/uk-ons-cpi-rpi.json", + "geographic_scope": "national" } ], - "Input-Output Tables": [ + "consumer-spending": [ { "id": "us-bea", "name": { "en": "Bureau of Economic Analysis", - "zh": "美国经济分析局" + "zh": "经济分析局" }, "authority_level": "government", "data_url": "https://www.bea.gov/data", @@ -5323,292 +4964,312 @@ "geographic_scope": "national" } ], - "Intellectual Property": [ + "consumer-surveys": [ { - "id": "derwent-innovation-index", + "id": "korea-bok", "name": { - "en": "Derwent Innovation Index", - "zh": "德温特创新索引" + "en": "Bank of Korea", + "zh": "韩国银行", + "native": "한국은행" }, - "authority_level": "commercial", - "data_url": "https://clarivate.com/products/derwent-innovation/", + "authority_level": "government", + "data_url": "https://www.bok.or.kr/eng/main/main.do", "has_api": true, - "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json", - "geographic_scope": "global" + "file_path": "countries/asia/korea/korea-bok.json", + "geographic_scope": "national" } ], - "Inter-State Trade": [ + "contaminants": [ { - "id": "india-dgcis", + "id": "codex-alimentarius", "name": { - "en": "Directorate General of Commercial Intelligence and Statistics", - "zh": "印度商业情报与统计总局" + "en": "Codex Alimentarius Standards", + "zh": "国际食品法典委员会标准" }, - "authority_level": "government", - "data_url": "https://www.commerce.gov.in/trade-statistics/", + "authority_level": "international", + "data_url": "https://www.fao.org/fao-who-codexalimentarius/codex-texts/all-standards/en/", "has_api": false, - "file_path": "countries/asia/india/india-dgcis.json", - "geographic_scope": "national" + "file_path": "international/standards-metrology/codex-alimentarius.json", + "geographic_scope": "global" } ], - "Interest Rates": [ + "continuing-care": [ { - "id": "uk-boe", + "id": "canada-cihi", "name": { - "en": "Bank of England Statistical Interactive Database", - "zh": "英格兰银行统计数据库" + "en": "Canadian Institute for Health Information", + "zh": "加拿大健康信息研究所", + "native": "Institut canadien d'information sur la santé" }, "authority_level": "government", - "data_url": "https://www.bankofengland.co.uk/boeapps/database/", - "has_api": false, - "file_path": "countries/europe/uk/bank-of-england.json", + "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" - }, + } + ], + "corporate-actions": [ { - "id": "brazil-bcb", + "id": "crsp", "name": { - "en": "Central Bank of Brazil", - "zh": "巴西中央银行", - "native": "Banco Central do Brasil" + "en": "CRSP - Center for Research in Security Prices", + "zh": "证券价格研究中心" }, - "authority_level": "government", - "data_url": "https://dadosabertos.bcb.gov.br", + "authority_level": "research", + "data_url": "https://www.crsp.org/", "has_api": true, - "file_path": "countries/south-america/brazil/brazil-bcb.json", + "file_path": "sectors/K-finance-insurance/crsp.json", "geographic_scope": "national" - }, - { - "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, - "file_path": "international/economics/ecb-sdw.json", - "geographic_scope": "regional" } ], - "International Banking": [ + "corporate-finance": [ { - "id": "bis-statistics", + "id": "bloomberg-ipo-database", "name": { - "en": "BIS Statistics", - "zh": "国际清算银行统计数据" + "en": "Bloomberg IPO Database", + "zh": "彭博IPO数据库" }, - "authority_level": "government", - "data_url": "https://data.bis.org/", + "authority_level": "commercial", + "data_url": "https://www.bloomberg.com/professional/products/bloomberg-terminal/", "has_api": true, - "file_path": "academic/economics/bis-statistics.json", + "file_path": "sectors/K-finance-insurance/bloomberg-ipo-database.json", "geographic_scope": "global" } ], - "International Finance": [ + "corporate-fundamentals": [ { - "id": "bis-reserves", + "id": "bloomberg-terminal", "name": { - "en": "BIS Central Bank Reserves Statistics", - "zh": "国际清算银行外汇储备统计" + "en": "Bloomberg Terminal (Public Data)", + "zh": "彭博终端(部分公开数据)" }, - "authority_level": "international", - "data_url": "https://data.bis.org/topics/CBTA", + "authority_level": "commercial", + "data_url": "https://www.bloomberg.com/markets", "has_api": true, - "file_path": "international/finance/bis-reserves.json", + "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json", "geographic_scope": "global" } ], - "International System of Units (SI)": [ + "corporate-governance": [ { - "id": "bipm-kcdb", + "id": "china-bankruptcy-court", "name": { - "en": "BIPM Key Comparison Database (KCDB)", - "zh": "国际度量衡局关键比对数据库", - "native": "Bureau International des Poids et Mesures (BIPM)" + "en": "National Enterprise Bankruptcy and Restructuring Case Information Network", + "zh": "全国企业破产重整案件信息网" }, - "authority_level": "international", - "data_url": "https://www.bipm.org/kcdb", - "has_api": true, - "file_path": "international/standards-metrology/bipm-kcdb.json", - "geographic_scope": "global" - } - ], - "International Trade": [ + "authority_level": "government", + "data_url": "https://pccz.court.gov.cn/pcajxxw/index/xxwsy", + "has_api": false, + "file_path": "china/governance/china-bankruptcy-court.json", + "geographic_scope": "national" + }, { - "id": "india-dgcis", + "id": "china-ipe", "name": { - "en": "Directorate General of Commercial Intelligence and Statistics", - "zh": "印度商业情报与统计总局" + "en": "Institute of Public & Environmental Affairs", + "zh": "公众环境研究中心" }, - "authority_level": "government", - "data_url": "https://www.commerce.gov.in/trade-statistics/", + "authority_level": "research", + "data_url": "https://www.ipe.org.cn/AirMap_fxy/AirMap.html", "has_api": false, - "file_path": "countries/asia/india/india-dgcis.json", + "file_path": "china/resources/environment/china-ipe.json", "geographic_scope": "national" - }, + } + ], + "corporate-profits": [ { "id": "us-bea", "name": { "en": "Bureau of Economic Analysis", - "zh": "美国经济分析局" + "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" - }, + } + ], + "corporate-registry": [ { - "id": "basel-convention", + "id": "hk-companies-registry", "name": { - "en": "Basel Convention Data", - "zh": "巴塞尔公约数据" + "en": "Hong Kong Companies Registry", + "zh": "香港公司注册处" }, - "authority_level": "international", - "data_url": "https://www.basel.int", + "authority_level": "government", + "data_url": "https://www.cr.gov.hk/en/services/obtain-company-info.htm", "has_api": false, - "file_path": "international/environment/basel-convention.json", - "geographic_scope": "global" - }, + "file_path": "countries/asia/hk-companies-registry.json", + "geographic_scope": "national" + } + ], + "corruption-and-accountability": [ { - "id": "cites-trade-database", + "id": "afrobarometer", "name": { - "en": "CITES Trade Database", - "zh": "濒危物种国际贸易公约贸易数据库" + "en": "Afrobarometer", + "zh": "非洲晴雨表" }, - "authority_level": "international", - "data_url": "https://trade.cites.org", + "authority_level": "research", + "data_url": "https://www.afrobarometer.org/data/", "has_api": false, - "file_path": "international/environment/cites-trade-database.json", - "geographic_scope": "global" + "file_path": "academic/social/afrobarometer.json", + "geographic_scope": "regional" } ], - "Investment": [ + "creative-thinking": [ { - "id": "faostat", + "id": "oecd-pisa", "name": { - "en": "FAOSTAT - Food and Agriculture Data", - "zh": "粮农组织统计数据库" + "en": "PISA - Programme for International Student Assessment", + "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.oecd.org/en/about/programmes/pisa.html", + "has_api": false, + "file_path": "international/education/oecd-pisa.json", "geographic_scope": "global" } ], - "Investment Banking": [ + "credential-verification": [ { - "id": "bloomberg-terminal-ipo", + "id": "cscse", "name": { - "en": "Bloomberg Terminal - IPO Module", - "zh": "彭博终端 - IPO模块" + "en": "Chinese Service Center for Scholarly Exchange", + "zh": "教育部留学服务中心" }, - "authority_level": "commercial", - "data_url": "https://www.bloomberg.com/professional/products/bloomberg-terminal/", - "has_api": true, - "file_path": "sectors/K-finance-insurance/bloomberg-terminal-ipo.json", - "geographic_scope": "global" + "authority_level": "government", + "data_url": "https://zwfw.cscse.edu.cn", + "has_api": false, + "file_path": "china/education/cscse.json", + "geographic_scope": "national" } ], - "Investment Research": [ + "credit": [ { - "id": "crsp", + "id": "china-pbccrc", "name": { - "en": "CRSP - Center for Research in Security Prices", - "zh": "证券价格研究中心" + "en": "People's Bank of China Credit Reference Center", + "zh": "中国人民银行征信中心" }, - "authority_level": "research", - "data_url": "https://www.crsp.org/", - "has_api": true, - "file_path": "sectors/K-finance-insurance/crsp.json", + "authority_level": "government", + "data_url": "https://www.pbccrc.org.cn", + "has_api": false, + "file_path": "china/finance/banking/china-pbccrc.json", + "geographic_scope": "national" + }, + { + "id": "uk-boe", + "name": { + "en": "Bank of England Statistical Interactive Database", + "zh": "英格兰银行统计数据库" + }, + "authority_level": "government", + "data_url": "https://www.bankofengland.co.uk/boeapps/database/", + "has_api": false, + "file_path": "countries/europe/uk/bank-of-england.json", "geographic_scope": "national" } ], - "Ionizing Radiation": [ + "credit-data": [ { - "id": "bipm-kcdb", + "id": "brazil-bcb", "name": { - "en": "BIPM Key Comparison Database (KCDB)", - "zh": "国际度量衡局关键比对数据库", - "native": "Bureau International des Poids et Mesures (BIPM)" + "en": "Central Bank of Brazil", + "zh": "巴西中央银行", + "native": "Banco Central do Brasil" }, - "authority_level": "international", - "data_url": "https://www.bipm.org/kcdb", + "authority_level": "government", + "data_url": "https://dadosabertos.bcb.gov.br", "has_api": true, - "file_path": "international/standards-metrology/bipm-kcdb.json", - "geographic_scope": "global" + "file_path": "countries/south-america/brazil/brazil-bcb.json", + "geographic_scope": "national" } ], - "Labor Force": [ + "credit-growth": [ { - "id": "us-bls", + "id": "sbv", "name": { - "en": "Bureau of Labor Statistics", - "zh": "美国劳工统计局" + "en": "State Bank of Vietnam", + "zh": "越南国家银行" }, "authority_level": "government", - "data_url": "https://www.bls.gov/data/", - "has_api": true, - "file_path": "countries/north-america/usa/us-bls.json", + "data_url": "https://www.sbv.gov.vn/webcenter/portal/en/home/rm/public", + "has_api": false, + "file_path": "countries/asia/vietnam/sbv.json", "geographic_scope": "national" } ], - "Labor Market": [ + "credit-markets": [ { - "id": "adb-data-library", + "id": "bis-statistics", "name": { - "en": "Asian Development Bank Data Library", - "zh": "亚洲开发银行数据库" + "en": "BIS Statistics", + "zh": "国际清算银行统计数据" }, - "authority_level": "international", - "data_url": "https://data.adb.org", + "authority_level": "government", + "data_url": "https://data.bis.org/", "has_api": true, - "file_path": "international/development/adb-data-library.json", - "geographic_scope": "regional" + "file_path": "academic/economics/bis-statistics.json", + "geographic_scope": "global" } ], - "Labor Markets": [ + "credit-risk": [ { - "id": "acad-conferenceboard", + "id": "china-court-execution", "name": { - "en": "The Conference Board Economic Data", - "zh": "世界大型企业联合会经济数据" + "en": "China Court Execution Information Disclosure Network", + "zh": "全国法院被执行人信息查询平台" }, - "authority_level": "research", - "data_url": "https://www.conference-board.org/topics/economic-data-analysis", + "authority_level": "government", + "data_url": "https://zxgk.court.gov.cn", "has_api": false, - "file_path": "academic/economics/conference-board.json", - "geographic_scope": "global" - }, + "file_path": "china/governance/china-court-execution.json", + "geographic_scope": "national" + } + ], + "crime": [ { - "id": "idb", + "id": "china-nncc", "name": { - "en": "Inter-American Development Bank", - "zh": "美洲开发银行" + "en": "China National Narcotics Control Commission", + "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" + "authority_level": "government", + "data_url": "http://www.nncc626.com", + "has_api": false, + "file_path": "china/governance/china-nncc.json", + "geographic_scope": "national" } ], - "Land Monitoring": [ + "crime-and-justice": [ { - "id": "intl-copernicus-cdse", + "id": "ireland-cso", "name": { - "en": "Copernicus Data Space Ecosystem", - "zh": "哥白尼数据空间生态系统" + "en": "Central Statistics Office (CSO)", + "zh": "爱尔兰中央统计局" }, - "authority_level": "international", - "data_url": "https://dataspace.copernicus.eu", + "authority_level": "government", + "data_url": "https://data.cso.ie", "has_api": true, - "file_path": "international/earth-science/copernicus-data-space.json", - "geographic_scope": "global" + "file_path": "countries/europe/ireland/ireland-cso.json", + "geographic_scope": "national" + }, + { + "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", + "geographic_scope": "national" } ], - "Land Use": [ + "crop-production": [ { "id": "aafc", "name": { @@ -5621,7 +5282,23 @@ "has_api": true, "file_path": "countries/north-america/canada/aafc.json", "geographic_scope": "national" - }, + } + ], + "crop-science": [ + { + "id": "cgiar-research-data", + "name": { + "en": "CGIAR Research Data", + "zh": "国际农业研究磋商组织研究数据" + }, + "authority_level": "international", + "data_url": "https://gardian.cgiar.org/", + "has_api": true, + "file_path": "international/agriculture/cgiar-research-data.json", + "geographic_scope": "global" + } + ], + "crops": [ { "id": "faostat", "name": { @@ -5635,1644 +5312,1603 @@ "geographic_scope": "global" } ], - "Large Language Models": [ + "cryosphere": [ { - "id": "common-crawl", + "id": "nasa-earthdata", "name": { - "en": "Common Crawl", - "zh": "Common Crawl 网络爬取数据" + "en": "NASA Earthdata", + "zh": "NASA地球数据" }, - "authority_level": "research", - "data_url": "https://commoncrawl.org", + "authority_level": "government", + "data_url": "https://www.earthdata.nasa.gov", "has_api": true, - "file_path": "sectors/J-information-communication/common-crawl.json", + "file_path": "international/earth-science/nasa-earthdata.json", "geographic_scope": "global" } ], - "Length": [ + "cryptocurrencies": [ { - "id": "bipm-kcdb", + "id": "alpha-vantage", "name": { - "en": "BIPM Key Comparison Database (KCDB)", - "zh": "国际度量衡局关键比对数据库", - "native": "Bureau International des Poids et Mesures (BIPM)" + "en": "Alpha Vantage API", + "zh": "Alpha Vantage API" }, - "authority_level": "international", - "data_url": "https://www.bipm.org/kcdb", + "authority_level": "commercial", + "data_url": "https://www.alphavantage.co/", "has_api": true, - "file_path": "international/standards-metrology/bipm-kcdb.json", + "file_path": "sectors/K-finance-insurance/alpha-vantage.json", "geographic_scope": "global" } ], - "Liquidity": [ + "cryptocurrency": [ { - "id": "bis-statistics", + "id": "akshare", "name": { - "en": "BIS Statistics - Bank for International Settlements", - "zh": "国际清算银行统计数据" + "en": "AkShare", + "zh": "AkShare" }, - "authority_level": "government", - "data_url": "https://data.bis.org/", + "authority_level": "other", + "data_url": "https://github.com/akfamily/akshare", "has_api": true, - "file_path": "international/economics/bis.json", + "file_path": "sectors/K-finance-insurance/akshare.json", "geographic_scope": "global" - }, + } + ], + "cryptocurrency-markets": [ { - "id": "bis-statistics", + "id": "cryptocurrency-data", "name": { - "en": "BIS Statistics - Bank for International Settlements", - "zh": "国际清算银行统计数据" + "en": "Cryptocurrency Market Data (CoinMarketCap & CoinGecko)", + "zh": "加密货币市场数据(CoinMarketCap 和 CoinGecko)" }, - "authority_level": "international", - "data_url": "https://data.bis.org", + "authority_level": "commercial", + "data_url": "https://coinmarketcap.com", "has_api": true, - "file_path": "international/finance/bis-statistics.json", + "file_path": "sectors/K-finance-insurance/cryptocurrency-data.json", "geographic_scope": "global" } ], - "Livestock": [ + "crystallography": [ { - "id": "faostat", + "id": "acad-cod", "name": { - "en": "FAOSTAT - Food and Agriculture Data", - "zh": "粮农组织统计数据库" + "en": "Crystallography Open Database", + "zh": "晶体学开放数据库" }, - "authority_level": "international", - "data_url": "https://www.fao.org/faostat/en/", + "authority_level": "research", + "data_url": "https://www.crystallography.net/cod/", "has_api": true, - "file_path": "international/agriculture/faostat.json", + "file_path": "academic/physics/crystallography-open-database.json", "geographic_scope": "global" - } - ], - "Livestock Systems": [ + }, { - "id": "cgiar-research-data", + "id": "cambridge-structural-database", "name": { - "en": "CGIAR Research Data", - "zh": "国际农业研究磋商组织研究数据" + "en": "Cambridge Structural Database (CSD)", + "zh": "剑桥晶体结构数据库" }, - "authority_level": "international", - "data_url": "https://gardian.cgiar.org/", + "authority_level": "research", + "data_url": "https://www.ccdc.cam.ac.uk", "has_api": true, - "file_path": "international/agriculture/cgiar-research-data.json", + "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json", "geographic_scope": "global" } ], - "Local Government": [ + "cultural-heritage": [ { - "id": "us-data-gov", + "id": "british-museum-collection", "name": { - "en": "Data.gov", - "zh": "美国政府开放数据平台" + "en": "British Museum Collection", + "zh": "大英博物馆馆藏" }, - "authority_level": "government", - "data_url": "https://catalog.data.gov/dataset", + "authority_level": "research", + "data_url": "https://www.britishmuseum.org/collection", "has_api": false, - "file_path": "countries/north-america/usa/us-data-gov.json", - "geographic_scope": "national" + "file_path": "sectors/R-arts-entertainment/british-museum-collection.json", + "geographic_scope": "global" } ], - "Machine Learning": [ + "culture": [ { - "id": "cern-open-data", + "id": "china-mct", "name": { - "en": "CERN Open Data Portal", - "zh": "CERN 开放数据门户" + "en": "Ministry of Culture and Tourism of China", + "zh": "中华人民共和国文化和旅游部", + "native": "中华人民共和国文化和旅游部" }, - "authority_level": "research", - "data_url": "https://opendata.cern.ch/", - "has_api": true, - "file_path": "academic/physics/cern-open-data.json", - "geographic_scope": "global" + "authority_level": "government", + "data_url": "https://www.mct.gov.cn/zwgk/tjsj/", + "has_api": false, + "file_path": "china/economy/china-mct.json", + "geographic_scope": "national" }, { - "id": "bookscorpus", + "id": "china-nlc", "name": { - "en": "BooksCorpus", - "zh": "图书语料库" + "en": "National Library of China", + "zh": "中国国家图书馆" }, - "authority_level": "research", - "data_url": "https://github.com/soskek/bookcorpus", + "authority_level": "government", + "data_url": "https://www.nlc.cn/pcab/", "has_api": false, - "file_path": "sectors/J-information-communication/bookscorpus.json", - "geographic_scope": "global" + "file_path": "china/education/china-nlc.json", + "geographic_scope": "national" }, { - "id": "cifar", + "id": "china-napp", "name": { - "en": "CIFAR-10 and CIFAR-100", - "zh": "CIFAR-10 和 CIFAR-100 数据集" + "en": "National Administration of Press and Publication", + "zh": "国家新闻出版署" }, - "authority_level": "research", - "data_url": "https://www.cs.toronto.edu/~kriz/cifar.html", + "authority_level": "government", + "data_url": "https://www.nppa.gov.cn/xxfb/", "has_api": false, - "file_path": "sectors/J-information-communication/cifar.json", - "geographic_scope": "global" + "file_path": "china/governance/china-napp.json", + "geographic_scope": "national" }, { - "id": "common-crawl", + "id": "china-ncha", "name": { - "en": "Common Crawl", - "zh": "Common Crawl 网络爬取数据" + "en": "National Cultural Heritage Administration of China", + "zh": "国家文物局" }, - "authority_level": "research", - "data_url": "https://commoncrawl.org", - "has_api": true, - "file_path": "sectors/J-information-communication/common-crawl.json", - "geographic_scope": "global" + "authority_level": "government", + "data_url": "http://www.ncha.gov.cn/col/col2276/index.html", + "has_api": false, + "file_path": "china/governance/china-ncha.json", + "geographic_scope": "national" }, { - "id": "conll-shared-tasks", + "id": "china-cflac", "name": { - "en": "CoNLL Shared Tasks Data", - "zh": "CoNLL共享任务数据集" + "en": "China Federation of Literary and Art Circles", + "zh": "中国文学艺术界联合会" }, - "authority_level": "research", - "data_url": "https://www.conll.org/previous-tasks", + "authority_level": "other", + "data_url": "https://www.cflac.org.cn", "has_api": false, - "file_path": "sectors/J-information-communication/conll-shared-tasks.json", - "geographic_scope": "global" + "file_path": "china/governance/culture/china-cflac.json", + "geographic_scope": "national" }, { - "id": "imagenet", + "id": "china-cnaf", "name": { - "en": "ImageNet", - "zh": "ImageNet 图像数据库" + "en": "China National Arts Fund", + "zh": "国家艺术基金" }, - "authority_level": "research", - "data_url": "https://www.image-net.org", + "authority_level": "government", + "data_url": "https://www.cnaf.cn", "has_api": false, - "file_path": "sectors/J-information-communication/imagenet.json", - "geographic_scope": "global" - } - ], - "Macroeconomic Data": [ - { - "id": "akshare", - "name": { - "en": "AKShare - Open Source Financial Data Interface Library", - "zh": "AKShare - 开源财经数据接口库" - }, - "authority_level": "other", - "data_url": "https://github.com/akfamily/akshare", - "has_api": true, - "file_path": "sectors/K-finance-insurance/akshare.json", - "geographic_scope": "global" - } - ], - "Macroeconomic Statistics": [ - { - "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" - } - ], - "Macroeconomics": [ + "file_path": "china/governance/culture/china-cnaf.json", + "geographic_scope": "national" + }, { - "id": "adb-ado", + "id": "china-film-admin", "name": { - "en": "Asian Development Outlook", - "zh": "亚洲开发展望" + "en": "National Film Administration of China", + "zh": "国家电影局" }, - "authority_level": "international", - "data_url": "https://www.adb.org/outlook", + "authority_level": "government", + "data_url": "https://www.chinafilm.gov.cn", "has_api": false, - "file_path": "international/economics/adb-ado.json", - "geographic_scope": "regional" - } - ], - "Manufacturing": [ + "file_path": "china/governance/culture/china-film-admin.json", + "geographic_scope": "national" + }, { - "id": "us-data-gov", + "id": "china-national-museum", "name": { - "en": "Data.gov", - "zh": "美国政府开放数据平台" + "en": "National Museum of China", + "zh": "中国国家博物馆" }, "authority_level": "government", - "data_url": "https://catalog.data.gov/dataset", + "data_url": "https://www.chnmuseum.cn/zp/zpml/", "has_api": false, - "file_path": "countries/north-america/usa/us-data-gov.json", + "file_path": "china/governance/culture/china-national-museum.json", "geographic_scope": "national" }, { - "id": "china-auto-association", + "id": "canada-statcan", "name": { - "en": "China Association of Automobile Manufacturers", - "zh": "中国汽车工业协会" + "en": "Statistics Canada", + "zh": "加拿大统计局", + "native": "Statistique Canada" }, - "authority_level": "market", - "data_url": "http://www.caam.org.cn/tjsj", - "has_api": false, - "file_path": "sectors/C-manufacturing/automotive/china-auto-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-robot-industry-alliance", + "id": "unesco-uis", "name": { - "en": "Robot Branch of China Machinery Industry Federation", - "zh": "中国机械工业联合会机器人分会" + "en": "UNESCO Institute for Statistics", + "zh": "联合国教科文组织统计研究所" }, - "authority_level": "market", - "data_url": "http://cria.mei.net.cn/gzpt.asp?lm=/1310", + "authority_level": "international", + "data_url": "https://data.uis.unesco.org/", "has_api": false, - "file_path": "sectors/C-manufacturing/robotics/china-robot-industry-alliance.json", - "geographic_scope": "national" + "file_path": "international/education/unesco-uis.json", + "geographic_scope": "global" } ], - "Manufacturing Technology": [ + "currencies": [ { - "id": "china-additive-manufacturing-alliance", + "id": "bloomberg-terminal", "name": { - "en": "China Additive Manufacturing Alliance", - "zh": "中国增材制造产业联盟" + "en": "Bloomberg Terminal (Public Data)", + "zh": "彭博终端(部分公开数据)" }, - "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", - "geographic_scope": "national" + "authority_level": "commercial", + "data_url": "https://www.bloomberg.com/markets", + "has_api": true, + "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json", + "geographic_scope": "global" } ], - "Mapping": [ + "currency-and-coins": [ { - "id": "uk-data-gov", + "id": "brazil-bcb", "name": { - "en": "Data.gov.uk", - "zh": "英国政府开放数据平台" + "en": "Central Bank of Brazil", + "zh": "巴西中央银行", + "native": "Banco Central do Brasil" }, "authority_level": "government", - "data_url": "https://www.data.gov.uk", + "data_url": "https://dadosabertos.bcb.gov.br", "has_api": true, - "file_path": "countries/europe/uk/uk-data-gov.json", + "file_path": "countries/south-america/brazil/brazil-bcb.json", "geographic_scope": "national" } ], - "Maritime": [ + "customs": [ { - "id": "us-data-gov", + "id": "gdvc", "name": { - "en": "Data.gov", - "zh": "美国政府开放数据平台" + "en": "General Department of Vietnam Customs", + "zh": "越南海关总局" }, "authority_level": "government", - "data_url": "https://catalog.data.gov/dataset", + "data_url": "https://www.customs.gov.vn", "has_api": false, - "file_path": "countries/north-america/usa/us-data-gov.json", + "file_path": "countries/asia/vietnam/gdvc.json", "geographic_scope": "national" - } - ], - "Market Indices": [ + }, { - "id": "crsp", + "id": "vietnam-mof", "name": { - "en": "CRSP - Center for Research in Security Prices", - "zh": "证券价格研究中心" + "en": "Ministry of Finance of Vietnam", + "zh": "越南财政部" }, - "authority_level": "research", - "data_url": "https://www.crsp.org/", - "has_api": true, - "file_path": "sectors/K-finance-insurance/crsp.json", + "authority_level": "government", + "data_url": "https://www.mof.gov.vn/webcenter/portal/btcen/pages_r/m/statistics", + "has_api": false, + "file_path": "countries/asia/vietnam/vietnam-mof.json", "geographic_scope": "national" } ], - "Market Information": [ + "customs-statistics": [ { - "id": "aafc", + "id": "india-dgcis", "name": { - "en": "Agriculture and Agri-Food Canada", - "zh": "加拿大农业与农业食品部", - "native": "Agriculture et Agroalimentaire Canada" + "en": "Directorate General of Commercial Intelligence and Statistics", + "zh": "印度商业情报与统计总局" }, "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", + "data_url": "https://www.commerce.gov.in/trade-statistics/", + "has_api": false, + "file_path": "countries/asia/india/india-dgcis.json", "geographic_scope": "national" } ], - "Market Transparency": [ + "data-governance": [ { - "id": "amis", + "id": "china-national-data-bureau", "name": { - "en": "Agricultural Market Information System (AMIS)", - "zh": "农业市场信息系统" + "en": "National Data Administration of China", + "zh": "国家数据局" }, - "authority_level": "international", - "data_url": "https://www.amis-outlook.org", + "authority_level": "government", + "data_url": "https://sjdj.nda.gov.cn/", "has_api": false, - "file_path": "sectors/A-agriculture/amis.json", - "geographic_scope": "global" + "file_path": "china/technology/digital_economy/china-national-data-bureau.json", + "geographic_scope": "national" } ], - "Mass and Related Quantities": [ + "data-science": [ { - "id": "bipm-kcdb", + "id": "cern-open-data", "name": { - "en": "BIPM Key Comparison Database (KCDB)", - "zh": "国际度量衡局关键比对数据库", - "native": "Bureau International des Poids et Mesures (BIPM)" + "en": "CERN Open Data Portal", + "zh": "CERN 开放数据门户" }, - "authority_level": "international", - "data_url": "https://www.bipm.org/kcdb", + "authority_level": "research", + "data_url": "https://opendata.cern.ch/", "has_api": true, - "file_path": "international/standards-metrology/bipm-kcdb.json", + "file_path": "academic/physics/cern-open-data.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, + "file_path": "sectors/J-information-communication/common-crawl.json", "geographic_scope": "global" } ], - "Materials Science": [ + "debt-financing": [ { - "id": "intl-chemspider", + "id": "china-nafmii", "name": { - "en": "ChemSpider", - "zh": "化学蜘蛛数据库" + "en": "National Association of Financial Market Institutional Investors", + "zh": "中国银行间市场交易商协会" }, - "authority_level": "international", - "data_url": "https://www.chemspider.com", + "authority_level": "government", + "data_url": "https://www.nafmii.org.cn/", "has_api": false, - "file_path": "academic/chemistry/chemspider.json", - "geographic_scope": "global" - }, + "file_path": "china/finance/capital-markets/china-nafmii.json", + "geographic_scope": "national" + } + ], + "debt-securities": [ { - "id": "acad-cod", + "id": "bis-statistics", "name": { - "en": "Crystallography Open Database", - "zh": "晶体学开放数据库" + "en": "BIS Statistics", + "zh": "国际清算银行统计数据" }, - "authority_level": "research", - "data_url": "https://www.crystallography.net/cod/", + "authority_level": "government", + "data_url": "https://data.bis.org/", "has_api": true, - "file_path": "academic/physics/crystallography-open-database.json", + "file_path": "academic/economics/bis-statistics.json", "geographic_scope": "global" - }, + } + ], + "deep-learning": [ { - "id": "china-additive-manufacturing-alliance", + "id": "bookscorpus", "name": { - "en": "China Additive Manufacturing Alliance", - "zh": "中国增材制造产业联盟" + "en": "BooksCorpus", + "zh": "图书语料库" }, - "authority_level": "market", - "data_url": "https://www.miit-eidc.org.cn", + "authority_level": "research", + "data_url": "https://github.com/soskek/bookcorpus", "has_api": false, - "file_path": "sectors/C-manufacturing/additive/china-additive-manufacturing-alliance.json", - "geographic_scope": "national" + "file_path": "sectors/J-information-communication/bookscorpus.json", + "geographic_scope": "global" }, { - "id": "cambridge-structural-database", + "id": "cifar", "name": { - "en": "Cambridge Structural Database (CSD)", - "zh": "剑桥晶体结构数据库" + "en": "CIFAR-10 and CIFAR-100", + "zh": "CIFAR-10 和 CIFAR-100 数据集" }, "authority_level": "research", - "data_url": "https://www.ccdc.cam.ac.uk", - "has_api": true, - "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json", + "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": "derwent-innovation-index", + "id": "imagenet", "name": { - "en": "Derwent Innovation Index", - "zh": "德温特创新索引" + "en": "ImageNet", + "zh": "ImageNet 图像数据库" }, - "authority_level": "commercial", - "data_url": "https://clarivate.com/products/derwent-innovation/", - "has_api": true, - "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json", + "authority_level": "research", + "data_url": "https://www.image-net.org", + "has_api": false, + "file_path": "sectors/J-information-communication/imagenet.json", "geographic_scope": "global" } ], - "Mathematical Literacy": [ + "defence": [ { - "id": "oecd-pisa", + "id": "uk-data-gov", "name": { - "en": "PISA - Programme for International Student Assessment", - "zh": "国际学生评估项目" + "en": "Data.gov.uk", + "zh": "英国政府开放数据平台" }, - "authority_level": "international", - "data_url": "https://www.oecd.org/en/about/programmes/pisa.html", - "has_api": false, - "file_path": "international/education/oecd-pisa.json", - "geographic_scope": "global" + "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" } ], - "Measurement Standards": [ + "defense": [ { - "id": "bipm-kcdb", + "id": "china-avic", "name": { - "en": "BIPM Key Comparison Database (KCDB)", - "zh": "国际度量衡局关键比对数据库", - "native": "Bureau International des Poids et Mesures (BIPM)" + "en": "Aviation Industry Corporation of China (AVIC)", + "zh": "中国航空工业集团有限公司" }, - "authority_level": "international", - "data_url": "https://www.bipm.org/kcdb", - "has_api": true, - "file_path": "international/standards-metrology/bipm-kcdb.json", - "geographic_scope": "global" - } - ], - "Mechanical Engineering": [ + "authority_level": "government", + "data_url": "https://www.avic.com", + "has_api": false, + "file_path": "china/industry/aerospace/china-avic.json", + "geographic_scope": "national" + }, { - "id": "derwent-innovation-index", + "id": "china-casc", "name": { - "en": "Derwent Innovation Index", - "zh": "德温特创新索引" + "en": "China Aerospace Science and Technology Corporation (CASC)", + "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" + "authority_level": "government", + "data_url": "https://www.spacechina.com/n25/index.html", + "has_api": false, + "file_path": "china/industry/aerospace/china-casc.json", + "geographic_scope": "national" } ], - "Medical Technology": [ + "defi": [ { - "id": "derwent-innovation-index", + "id": "cryptocurrency-data", "name": { - "en": "Derwent Innovation Index", - "zh": "德温特创新索引" + "en": "Cryptocurrency Market Data (CoinMarketCap & CoinGecko)", + "zh": "加密货币市场数据(CoinMarketCap 和 CoinGecko)" }, "authority_level": "commercial", - "data_url": "https://clarivate.com/products/derwent-innovation/", + "data_url": "https://coinmarketcap.com", "has_api": true, - "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json", + "file_path": "sectors/K-finance-insurance/cryptocurrency-data.json", "geographic_scope": "global" } ], - "Medicinal Chemistry": [ + "democracy-and-governance": [ { - "id": "chembl", + "id": "afrobarometer", "name": { - "en": "ChEMBL Database", - "zh": "ChEMBL生物活性数据库" + "en": "Afrobarometer", + "zh": "非洲晴雨表" }, "authority_level": "research", - "data_url": "https://www.ebi.ac.uk/chembl/", - "has_api": true, - "file_path": "academic/chemistry/chembl.json", - "geographic_scope": "global" + "data_url": "https://www.afrobarometer.org/data/", + "has_api": false, + "file_path": "academic/social/afrobarometer.json", + "geographic_scope": "regional" }, { - "id": "drugbank", + "id": "usaid-ddl", "name": { - "en": "DrugBank", - "zh": "药物与药物靶点数据库" + "en": "USAID Development Data Library", + "zh": "美国国际开发署发展数据库" }, - "authority_level": "research", - "data_url": "https://go.drugbank.com", + "authority_level": "government", + "data_url": "https://data.usaid.gov", "has_api": true, - "file_path": "academic/chemistry/drugbank.json", + "file_path": "countries/north-america/usa/usaid-ddl.json", "geographic_scope": "global" } ], - "Medicine": [ + "democracy-studies": [ { - "id": "pubchem", + "id": "asian-barometer", "name": { - "en": "PubChem", - "zh": "PubChem化学数据库" + "en": "Asian Barometer Survey", + "zh": "亚洲民主动态调查" }, - "authority_level": "government", - "data_url": "https://pubchem.ncbi.nlm.nih.gov/", - "has_api": true, - "file_path": "academic/chemistry/pubchem.json", - "geographic_scope": "global" + "authority_level": "research", + "data_url": "https://asianbarometer.org", + "has_api": false, + "file_path": "academic/social/asian-barometer.json", + "geographic_scope": "regional" } ], - "Mental health": [ + "demographic-statistics": [ { - "id": "aus-aihw", + "id": "dosm", "name": { - "en": "Australian Institute of Health and Welfare", - "zh": "澳大利亚健康与福利研究所" + "en": "Department of Statistics Malaysia", + "zh": "马来西亚统计局" }, "authority_level": "government", - "data_url": "https://www.aihw.gov.au/", + "data_url": "https://open.dosm.gov.my/", "has_api": true, - "file_path": "countries/oceania/australia/aihw.json", + "file_path": "countries/asia/dosm.json", "geographic_scope": "national" } ], - "Metagenomics": [ + "demographics": [ { - "id": "ena", + "id": "uk-biobank", "name": { - "en": "European Nucleotide Archive", - "zh": "欧洲核苷酸档案库" + "en": "UK Biobank", + "zh": "英国生物样本库" }, - "authority_level": "international", - "data_url": "https://www.ebi.ac.uk/ena/browser/", + "authority_level": "research", + "data_url": "https://www.ukbiobank.ac.uk/", "has_api": true, - "file_path": "academic/biology/ena.json", - "geographic_scope": "global" - } - ], - "Metal Materials": [ + "file_path": "academic/biology/uk-biobank.json", + "geographic_scope": "national" + }, { - "id": "china-rare-earth-association", + "id": "dhs", "name": { - "en": "Association of China Rare Earth Industry", - "zh": "中国稀土行业协会" + "en": "Demographic and Health Surveys (DHS) Program", + "zh": "人口与健康调查项目" }, - "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", - "geographic_scope": "national" - } - ], - "Metal-Organic Frameworks": [ + "authority_level": "international", + "data_url": "https://dhsprogram.com/", + "has_api": true, + "file_path": "academic/health/dhs.json", + "geographic_scope": "regional" + }, { - "id": "cambridge-structural-database", + "id": "ghdx", "name": { - "en": "Cambridge Structural Database (CSD)", - "zh": "剑桥晶体结构数据库" + "en": "Global Health Data Exchange (GHDx)", + "zh": "全球健康数据交换平台" }, "authority_level": "research", - "data_url": "https://www.ccdc.cam.ac.uk", + "data_url": "https://ghdx.healthdata.org/", "has_api": true, - "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json", + "file_path": "academic/health/ghdx.json", "geographic_scope": "global" - } - ], - "Metrology": [ + }, { - "id": "bipm-kcdb", + "id": "owid", "name": { - "en": "BIPM Key Comparison Database (KCDB)", - "zh": "国际度量衡局关键比对数据库", - "native": "Bureau International des Poids et Mesures (BIPM)" + "en": "Our World in Data", + "zh": "用数据看世界" }, - "authority_level": "international", - "data_url": "https://www.bipm.org/kcdb", + "authority_level": "research", + "data_url": "https://github.com/owid/owid-datasets", "has_api": true, - "file_path": "international/standards-metrology/bipm-kcdb.json", + "file_path": "academic/multidisciplinary/owid.json", "geographic_scope": "global" - } - ], - "Mineralogy": [ + }, { - "id": "acad-cod", + "id": "china-caupd", "name": { - "en": "Crystallography Open Database", - "zh": "晶体学开放数据库" + "en": "China Academy of Urban Planning and Design", + "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" - } - ], - "Mining": [ + "data_url": "https://www.caupd.com/", + "has_api": false, + "file_path": "china/construction/china-caupd.json", + "geographic_scope": "national" + }, { - "id": "china-rare-earth-association", + "id": "china-urban-planning", "name": { - "en": "Association of China Rare Earth Industry", - "zh": "中国稀土行业协会" + "en": "Chinese Society for Urban Studies", + "zh": "中国城市规划学会" }, - "authority_level": "market", - "data_url": "https://ac-rei.org.cn", + "authority_level": "research", + "data_url": "https://www.planning.org.cn/paper", "has_api": false, - "file_path": "sectors/B-mining/rare-earth/china-rare-earth-association.json", + "file_path": "china/construction/china-urban-planning.json", "geographic_scope": "national" - } - ], - "Molecular Biology": [ + }, { - "id": "alphafold-db", + "id": "china-beijing-stats", "name": { - "en": "AlphaFold Protein Structure Database", - "zh": "AlphaFold蛋白质结构数据库" + "en": "Beijing Bureau of Statistics", + "zh": "北京市统计局" }, - "authority_level": "international", - "data_url": "https://alphafold.com", - "has_api": true, - "file_path": "academic/biology/alphafold-db.json", - "geographic_scope": "global" + "authority_level": "government", + "data_url": "https://tjj.beijing.gov.cn/tjsj_31433/", + "has_api": false, + "file_path": "china/economy/provincial/china-beijing-stats.json", + "geographic_scope": "subnational" }, { - "id": "ena", + "id": "china-shenzhen-stats", "name": { - "en": "European Nucleotide Archive", - "zh": "欧洲核苷酸档案库" + "en": "Shenzhen Bureau of Statistics", + "zh": "深圳市统计局" }, - "authority_level": "international", - "data_url": "https://www.ebi.ac.uk/ena/browser/", - "has_api": true, - "file_path": "academic/biology/ena.json", - "geographic_scope": "global" + "authority_level": "government", + "data_url": "https://tjj.sz.gov.cn/zwgk/zfxxgkml/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-shenzhen-stats.json", + "geographic_scope": "subnational" }, { - "id": "us-ncbi-genbank", + "id": "china-hk-censtatd", "name": { - "en": "GenBank", - "zh": "基因库" + "en": "Hong Kong Census and Statistics Department", + "zh": "香港政府统计处" }, "authority_level": "government", - "data_url": "https://www.ncbi.nlm.nih.gov/genbank/", - "has_api": true, - "file_path": "academic/biology/genbank.json", - "geographic_scope": "global" + "data_url": "https://www.censtatd.gov.hk/", + "has_api": false, + "file_path": "china/economy/special_admin_regions/china-hk-censtatd.json", + "geographic_scope": "subnational" }, { - "id": "intl-rcsb-pdb", + "id": "china-cdpf", "name": { - "en": "Protein Data Bank (PDB)", - "zh": "蛋白质数据银行" + "en": "China Disabled Persons' Federation", + "zh": "中国残疾人联合会" }, - "authority_level": "research", - "data_url": "https://www.rcsb.org", - "has_api": true, - "file_path": "academic/biology/pdb.json", - "geographic_scope": "global" - } - ], - "Molecular Properties": [ + "authority_level": "government", + "data_url": "https://www.cdpf.org.cn/zwgk/index.htm", + "has_api": false, + "file_path": "china/governance/china-cdpf.json", + "geographic_scope": "national" + }, { - "id": "intl-chemspider", + "id": "china-neac", "name": { - "en": "ChemSpider", - "zh": "化学蜘蛛数据库" + "en": "National Ethnic Affairs Commission of China", + "zh": "国家民族事务委员会" }, - "authority_level": "international", - "data_url": "https://www.chemspider.com", + "authority_level": "government", + "data_url": "https://www.neac.gov.cn/seac/xxgk/tjsj/", "has_api": false, - "file_path": "academic/chemistry/chemspider.json", - "geographic_scope": "global" - } - ], - "Monetary Policy": [ + "file_path": "china/governance/china-neac.json", + "geographic_scope": "national" + }, { - "id": "boj-statistics", + "id": "china-class", "name": { - "en": "Bank of Japan Statistics", - "zh": "日本银行统计数据", - "native": "日本銀行統計" + "en": "China Longitudinal Aging Social Survey (CLASS)", + "zh": "中国老年社会追踪调查(CLASS)" }, - "authority_level": "government", - "data_url": "https://www.boj.or.jp/en/statistics/index.htm", + "authority_level": "research", + "data_url": "http://class.ruc.edu.cn/", "has_api": false, - "file_path": "countries/asia/japan/boj-statistics.json", + "file_path": "china/health/china-class.json", "geographic_scope": "national" }, { - "id": "uk-boe", + "id": "china-cpdrc", "name": { - "en": "Bank of England Statistical Interactive Database", - "zh": "英格兰银行统计数据库" + "en": "China Population and Development Research Center", + "zh": "中国人口与发展研究中心" }, - "authority_level": "government", - "data_url": "https://www.bankofengland.co.uk/boeapps/database/", + "authority_level": "research", + "data_url": "https://www.cpdrc.org.cn/sjzw/", "has_api": false, - "file_path": "countries/europe/uk/bank-of-england.json", + "file_path": "china/health/china-cpdrc.json", "geographic_scope": "national" }, { - "id": "brazil-bcb", + "id": "china-nhc", "name": { - "en": "Central Bank of Brazil", - "zh": "巴西中央银行", - "native": "Banco Central do Brasil" + "en": "National Health Commission of China", + "zh": "国家卫生健康委员会", + "native": "国家卫生健康委员会" }, "authority_level": "government", - "data_url": "https://dadosabertos.bcb.gov.br", - "has_api": true, - "file_path": "countries/south-america/brazil/brazil-bcb.json", + "data_url": "https://www.nhc.gov.cn/mohwsbwstjxxzx/s7967/new_list.shtml", + "has_api": false, + "file_path": "china/health/china-nhc.json", "geographic_scope": "national" }, { - "id": "ecb-sdw", + "id": "china-nphsd", "name": { - "en": "ECB Statistical Data Warehouse (ECB Data Portal)", - "zh": "欧洲央行统计数据仓库" + "en": "National Population and Health Science Data Center", + "zh": "国家人口与健康科学数据中心" }, - "authority_level": "government", - "data_url": "https://data.ecb.europa.eu/", - "has_api": true, - "file_path": "international/economics/ecb-sdw.json", - "geographic_scope": "regional" + "authority_level": "research", + "data_url": "https://www.phsciencedata.cn", + "has_api": false, + "file_path": "china/health/china-nphsd.json", + "geographic_scope": "national" }, { - "id": "bis-reserves", + "id": "ceic-china-urbanization", "name": { - "en": "BIS Central Bank Reserves Statistics", - "zh": "国际清算银行外汇储备统计" + "en": "CEIC Data - China Urbanization Rate", + "zh": "CEIC数据库 - 中国城镇化率" }, - "authority_level": "international", - "data_url": "https://data.bis.org/topics/CBTA", + "authority_level": "commercial", + "data_url": "https://www.ceicdata.com/zh-hans/china/population-urbanization-rate", "has_api": true, - "file_path": "international/finance/bis-reserves.json", - "geographic_scope": "global" + "file_path": "china/national/ceic-china-urbanization.json", + "geographic_scope": "national" }, { - "id": "bis-statistics", + "id": "china-acwf", "name": { - "en": "BIS Statistics - Bank for International Settlements", - "zh": "国际清算银行统计数据" + "en": "All-China Women's Federation", + "zh": "中华全国妇女联合会" }, - "authority_level": "international", - "data_url": "https://data.bis.org", - "has_api": true, - "file_path": "international/finance/bis-statistics.json", - "geographic_scope": "global" - } - ], - "Mortality": [ + "authority_level": "government", + "data_url": "https://www.women.org.cn/", + "has_api": false, + "file_path": "china/national/china-acwf.json", + "geographic_scope": "national" + }, { - "id": "us-cdc", + "id": "china-cncaprc", "name": { - "en": "CDC Data & Statistics", - "zh": "美国疾控中心数据与统计" + "en": "China National Committee on Ageing", + "zh": "中国老龄协会" }, "authority_level": "government", - "data_url": "https://data.cdc.gov/", - "has_api": true, - "file_path": "countries/north-america/usa/us-cdc.json", + "data_url": "https://www.cncaprc.gov.cn", + "has_api": false, + "file_path": "china/national/china-cncaprc.json", "geographic_scope": "national" }, { - "id": "aus-aihw", + "id": "china-mca", "name": { - "en": "Australian Institute of Health and Welfare", - "zh": "澳大利亚健康与福利研究所" + "en": "Ministry of Civil Affairs of China", + "zh": "中华人民共和国民政部", + "native": "中华人民共和国民政部" }, "authority_level": "government", - "data_url": "https://www.aihw.gov.au/", - "has_api": true, - "file_path": "countries/oceania/australia/aihw.json", + "data_url": "https://www.mca.gov.cn/n156/n2679/index.html", + "has_api": false, + "file_path": "china/national/china-mca.json", "geographic_scope": "national" - } - ], - "Museum Studies": [ + }, { - "id": "british-museum-collection", + "id": "china-mps", "name": { - "en": "British Museum Collection", - "zh": "大英博物馆馆藏" + "en": "Ministry of Public Security of China", + "zh": "中华人民共和国公安部" }, - "authority_level": "research", - "data_url": "https://www.britishmuseum.org/collection", + "authority_level": "government", + "data_url": "https://www.mps.gov.cn/n6557558/index.html", "has_api": false, - "file_path": "sectors/R-arts-entertainment/british-museum-collection.json", - "geographic_scope": "global" - } - ], - "NFT Markets": [ + "file_path": "china/national/china-mps.json", + "geographic_scope": "national" + }, { - "id": "cryptocurrency-data", + "id": "cnki-population-census", "name": { - "en": "Cryptocurrency Market Data (CoinMarketCap & CoinGecko)", - "zh": "加密货币市场数据(CoinMarketCap 和 CoinGecko)" + "en": "CNKI China Population Census Database", + "zh": "中国人口普查数据库" }, "authority_level": "commercial", - "data_url": "https://coinmarketcap.com", + "data_url": "https://data.cnki.net/npcd", + "has_api": false, + "file_path": "china/national/cnki-population-census.json", + "geographic_scope": "national" + }, + { + "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": "sectors/K-finance-insurance/cryptocurrency-data.json", - "geographic_scope": "global" - } - ], - "Named Entity Recognition": [ + "file_path": "china/national/nbs.json", + "geographic_scope": "national" + }, { - "id": "conll-shared-tasks", + "id": "china-cfps", "name": { - "en": "CoNLL Shared Tasks Data", - "zh": "CoNLL共享任务数据集" + "en": "China Family Panel Studies (CFPS)", + "zh": "中国家庭追踪调查(CFPS)" }, "authority_level": "research", - "data_url": "https://www.conll.org/previous-tasks", + "data_url": "https://opendata.pku.edu.cn/dataverse/CFPS", "has_api": false, - "file_path": "sectors/J-information-communication/conll-shared-tasks.json", - "geographic_scope": "global" - } - ], - "Natality": [ + "file_path": "china/research/china-cfps.json", + "geographic_scope": "national" + }, { - "id": "us-cdc", + "id": "china-cgss", "name": { - "en": "CDC Data & Statistics", - "zh": "美国疾控中心数据与统计" + "en": "Chinese General Social Survey (CGSS)", + "zh": "中国综合社会调查(CGSS)" }, - "authority_level": "government", - "data_url": "https://data.cdc.gov/", - "has_api": true, - "file_path": "countries/north-america/usa/us-cdc.json", + "authority_level": "research", + "data_url": "http://cgss.ruc.edu.cn/", + "has_api": false, + "file_path": "china/research/china-cgss.json", "geographic_scope": "national" - } - ], - "National Accounts": [ + }, { - "id": "us-bea", + "id": "china-cipd", "name": { - "en": "Bureau of Economic Analysis", - "zh": "美国经济分析局" + "en": "China Population and Development Research Center", + "zh": "中国人口与发展研究中心" }, - "authority_level": "government", - "data_url": "https://www.bea.gov/data", - "has_api": true, - "file_path": "countries/north-america/usa/us-bea.json", + "authority_level": "research", + "data_url": "https://www.cpirc.org.cn", + "has_api": false, + "file_path": "china/research/china-cipd.json", "geographic_scope": "national" }, { - "id": "ecb-sdw", + "id": "egypt-capmas", "name": { - "en": "ECB Statistical Data Warehouse (ECB Data Portal)", - "zh": "欧洲央行统计数据仓库" + "en": "Central Agency for Public Mobilization and Statistics (CAPMAS)", + "zh": "埃及中央公共动员与统计局" }, "authority_level": "government", - "data_url": "https://data.ecb.europa.eu/", - "has_api": true, - "file_path": "international/economics/ecb-sdw.json", - "geographic_scope": "regional" - } - ], - "Natural Language Processing": [ + "data_url": "https://www.capmas.gov.eg/Pages/Publications.aspx", + "has_api": false, + "file_path": "countries/africa/egypt/egypt-capmas.json", + "geographic_scope": "national" + }, { - "id": "bookscorpus", + "id": "ghana-gss", "name": { - "en": "BooksCorpus", - "zh": "图书语料库" + "en": "Ghana Statistical Service", + "zh": "加纳统计局" }, - "authority_level": "research", - "data_url": "https://github.com/soskek/bookcorpus", + "authority_level": "government", + "data_url": "https://statsghana.gov.gh/data-statistics/economic-statistics", "has_api": false, - "file_path": "sectors/J-information-communication/bookscorpus.json", - "geographic_scope": "global" + "file_path": "countries/africa/ghana/ghana-gss.json", + "geographic_scope": "national" }, { - "id": "common-crawl", + "id": "kenya-knbs", "name": { - "en": "Common Crawl", - "zh": "Common Crawl 网络爬取数据" + "en": "Kenya National Bureau of Statistics", + "zh": "肯尼亚国家统计局" }, - "authority_level": "research", - "data_url": "https://commoncrawl.org", - "has_api": true, - "file_path": "sectors/J-information-communication/common-crawl.json", - "geographic_scope": "global" + "authority_level": "government", + "data_url": "https://www.knbs.or.ke/publications/", + "has_api": false, + "file_path": "countries/africa/kenya/kenya-knbs.json", + "geographic_scope": "national" }, { - "id": "conll-shared-tasks", + "id": "nigeria-nbs", "name": { - "en": "CoNLL Shared Tasks Data", - "zh": "CoNLL共享任务数据集" + "en": "National Bureau of Statistics Nigeria (NBS)", + "zh": "尼日利亚国家统计局" }, - "authority_level": "research", - "data_url": "https://www.conll.org/previous-tasks", + "authority_level": "government", + "data_url": "https://www.nigerianstat.gov.ng/elibrary", "has_api": false, - "file_path": "sectors/J-information-communication/conll-shared-tasks.json", - "geographic_scope": "global" - } - ], - "New Energy Vehicles": [ + "file_path": "countries/africa/nigeria/nigeria-nbs.json", + "geographic_scope": "national" + }, { - "id": "china-auto-association", + "id": "south-africa-statssa", "name": { - "en": "China Association of Automobile Manufacturers", - "zh": "中国汽车工业协会" + "en": "Statistics South Africa (Stats SA)", + "zh": "南非统计局" }, - "authority_level": "market", - "data_url": "http://www.caam.org.cn/tjsj", + "authority_level": "government", + "data_url": "https://www.statssa.gov.za/?page_id=1854", "has_api": false, - "file_path": "sectors/C-manufacturing/automotive/china-auto-association.json", + "file_path": "countries/africa/south-africa/south-africa-statssa.json", "geographic_scope": "national" - } - ], - "Nuclear Physics": [ - { - "id": "cern-open-data", - "name": { - "en": "CERN Open Data Portal", - "zh": "CERN 开放数据门户" - }, - "authority_level": "research", - "data_url": "https://opendata.cern.ch/", - "has_api": true, - "file_path": "academic/physics/cern-open-data.json", - "geographic_scope": "global" - } - ], - "Nutrition": [ + }, { - "id": "us-cdc", + "id": "stats-sa", "name": { - "en": "CDC Data & Statistics", - "zh": "美国疾控中心数据与统计" + "en": "Statistics South Africa (Stats SA)", + "zh": "南非统计局", + "native": "Statistics South Africa (Stats SA)" }, "authority_level": "government", - "data_url": "https://data.cdc.gov/", - "has_api": true, - "file_path": "countries/north-america/usa/us-cdc.json", + "data_url": "https://www.statssa.gov.za/?page_id=1521", + "has_api": false, + "file_path": "countries/africa/south-africa/stats-sa.json", "geographic_scope": "national" }, { - "id": "cgiar-research-data", + "id": "brunei-deps", "name": { - "en": "CGIAR Research Data", - "zh": "国际农业研究磋商组织研究数据" + "en": "Department of Economic Planning and Statistics, Brunei (DEPS)", + "zh": "文莱经济规划与统计局" }, - "authority_level": "international", - "data_url": "https://gardian.cgiar.org/", - "has_api": true, - "file_path": "international/agriculture/cgiar-research-data.json", - "geographic_scope": "global" + "authority_level": "government", + "data_url": "https://deps.mofe.gov.bn/edata-library/", + "has_api": false, + "file_path": "countries/asia/brunei/brunei-deps.json", + "geographic_scope": "national" }, { - "id": "faostat", + "id": "cambodia-nis", "name": { - "en": "FAOSTAT - Food and Agriculture Data", - "zh": "粮农组织统计数据库" + "en": "National Institute of Statistics of Cambodia (NIS)", + "zh": "柬埔寨国家统计局" }, - "authority_level": "international", - "data_url": "https://www.fao.org/faostat/en/", - "has_api": true, - "file_path": "international/agriculture/faostat.json", - "geographic_scope": "global" + "authority_level": "government", + "data_url": "https://camstat.nis.gov.kh/", + "has_api": false, + "file_path": "countries/asia/cambodia/cambodia-nis.json", + "geographic_scope": "national" }, { - "id": "codex-alimentarius", + "id": "india-mospi", "name": { - "en": "Codex Alimentarius Standards", - "zh": "国际食品法典委员会标准" + "en": "Ministry of Statistics and Programme Implementation (MoSPI)", + "zh": "印度统计与计划实施部", + "native": "सांख्यिकी और कार्यक्रम कार्यान्वयन मंत्रालय" }, - "authority_level": "international", - "data_url": "https://www.fao.org/fao-who-codexalimentarius/codex-texts/all-standards/en/", + "authority_level": "government", + "data_url": "https://mospi.gov.in/data", "has_api": false, - "file_path": "international/standards-metrology/codex-alimentarius.json", - "geographic_scope": "global" - } - ], - "Object Recognition": [ + "file_path": "countries/asia/india/india-mospi.json", + "geographic_scope": "national" + }, { - "id": "cifar", + "id": "indonesia-bps", "name": { - "en": "CIFAR-10 and CIFAR-100", - "zh": "CIFAR-10 和 CIFAR-100 数据集" + "en": "Statistics Indonesia (BPS)", + "zh": "印度尼西亚中央统计局", + "native": "Badan Pusat Statistik" }, - "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" + "authority_level": "government", + "data_url": "https://www.bps.go.id/en/statistics-table", + "has_api": true, + "file_path": "countries/asia/indonesia/indonesia-bps.json", + "geographic_scope": "national" }, { - "id": "imagenet", + "id": "japan-estat", "name": { - "en": "ImageNet", - "zh": "ImageNet 图像数据库" + "en": "Japan e-Stat (Portal Site of Official Statistics)", + "zh": "日本统计局 e-Stat(政府统计综合窗口)", + "native": "政府統計の総合窓口 e-Stat" }, - "authority_level": "research", - "data_url": "https://www.image-net.org", - "has_api": false, - "file_path": "sectors/J-information-communication/imagenet.json", - "geographic_scope": "global" - } - ], - "Occupational Statistics": [ + "authority_level": "government", + "data_url": "https://www.e-stat.go.jp/en/stat-search", + "has_api": true, + "file_path": "countries/asia/japan/japan-estat.json", + "geographic_scope": "national" + }, { - "id": "us-bls", + "id": "kostat", "name": { - "en": "Bureau of Labor Statistics", - "zh": "美国劳工统计局" + "en": "Statistics Korea (KOSTAT)", + "zh": "韩国统计厅" }, "authority_level": "government", - "data_url": "https://www.bls.gov/data/", + "data_url": "https://kosis.kr/eng/", "has_api": true, - "file_path": "countries/north-america/usa/us-bls.json", + "file_path": "countries/asia/kostat.json", "geographic_scope": "national" - } - ], - "Ocean": [ + }, { - "id": "us-data-gov", + "id": "laos-lsb", "name": { - "en": "Data.gov", - "zh": "美国政府开放数据平台" + "en": "Lao Statistics Bureau (LSB)", + "zh": "老挝统计局" }, "authority_level": "government", - "data_url": "https://catalog.data.gov/dataset", + "data_url": "https://laosis.lsb.gov.la/", "has_api": false, - "file_path": "countries/north-america/usa/us-data-gov.json", + "file_path": "countries/asia/laos/laos-lsb.json", "geographic_scope": "national" - } - ], - "Ocean Monitoring": [ + }, { - "id": "intl-copernicus-cdse", + "id": "malaysia-dosm", "name": { - "en": "Copernicus Data Space Ecosystem", - "zh": "哥白尼数据空间生态系统" + "en": "Department of Statistics Malaysia (DOSM)", + "zh": "马来西亚统计局" }, - "authority_level": "international", - "data_url": "https://dataspace.copernicus.eu", + "authority_level": "government", + "data_url": "https://open.dosm.gov.my/", "has_api": true, - "file_path": "international/earth-science/copernicus-data-space.json", - "geographic_scope": "global" - } - ], - "Oil and Gas": [ + "file_path": "countries/asia/malaysia/malaysia-dosm.json", + "geographic_scope": "national" + }, { - "id": "canada-cer", + "id": "myanmar-cso", "name": { - "en": "Canada Energy Regulator", - "zh": "加拿大能源监管局", - "native": "Régie de l'énergie du Canada" + "en": "Central Statistical Organization (Myanmar)", + "zh": "缅甸中央统计局" }, "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", + "data_url": "https://www.csostat.gov.mm", + "has_api": false, + "file_path": "countries/asia/myanmar/myanmar-cso.json", "geographic_scope": "national" - } - ], - "Options": [ + }, { - "id": "akshare", + "id": "philippines-psa", "name": { - "en": "AKShare - Open Source Financial Data Interface Library", - "zh": "AKShare - 开源财经数据接口库" + "en": "Philippine Statistics Authority", + "zh": "菲律宾统计局" }, - "authority_level": "other", - "data_url": "https://github.com/akfamily/akshare", - "has_api": true, - "file_path": "sectors/K-finance-insurance/akshare.json", - "geographic_scope": "global" - } - ], - "Organic Chemistry": [ + "authority_level": "government", + "data_url": "https://openstat.psa.gov.ph", + "has_api": false, + "file_path": "countries/asia/philippines/psa.json", + "geographic_scope": "national" + }, { - "id": "intl-chemspider", + "id": "saudi-gastat", "name": { - "en": "ChemSpider", - "zh": "化学蜘蛛数据库" + "en": "General Authority for Statistics (GASTAT)", + "zh": "沙特阿拉伯统计总局" }, - "authority_level": "international", - "data_url": "https://www.chemspider.com", + "authority_level": "government", + "data_url": "https://www.stats.gov.sa/statistics", "has_api": false, - "file_path": "academic/chemistry/chemspider.json", - "geographic_scope": "global" + "file_path": "countries/asia/saudi-arabia/saudi-gastat.json", + "geographic_scope": "national" }, { - "id": "cambridge-structural-database", + "id": "singapore-singstat", "name": { - "en": "Cambridge Structural Database (CSD)", - "zh": "剑桥晶体结构数据库" + "en": "Singapore Department of Statistics (SingStat)", + "zh": "新加坡统计局", + "native": "Department of Statistics Singapore" }, - "authority_level": "research", - "data_url": "https://www.ccdc.cam.ac.uk", + "authority_level": "government", + "data_url": "https://tablebuilder.singstat.gov.sg", "has_api": true, - "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json", - "geographic_scope": "global" - } - ], - "Parsing": [ + "file_path": "countries/asia/singapore/singapore-singstat.json", + "geographic_scope": "national" + }, { - "id": "conll-shared-tasks", + "id": "korea-kostat", "name": { - "en": "CoNLL Shared Tasks Data", - "zh": "CoNLL共享任务数据集" + "en": "Statistics Korea (KOSTAT)", + "zh": "韩国统计厅" }, - "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" - } - ], - "Particle Physics": [ + "authority_level": "government", + "data_url": "https://kosis.kr/eng/", + "has_api": true, + "file_path": "countries/asia/south-korea/korea-kostat.json", + "geographic_scope": "national" + }, { - "id": "cern-open-data", + "id": "taiwan-dgbas", "name": { - "en": "CERN Open Data Portal", - "zh": "CERN 开放数据门户" + "en": "Directorate-General of Budget, Accounting and Statistics (DGBAS)", + "zh": "台湾主计总处" }, - "authority_level": "research", - "data_url": "https://opendata.cern.ch/", - "has_api": true, - "file_path": "academic/physics/cern-open-data.json", - "geographic_scope": "global" - } - ], - "Patents": [ + "authority_level": "government", + "data_url": "https://eng.stat.gov.tw/", + "has_api": false, + "file_path": "countries/asia/taiwan/taiwan-dgbas.json", + "geographic_scope": "national" + }, { - "id": "derwent-innovation-index", + "id": "vietnam-gso", "name": { - "en": "Derwent Innovation Index", - "zh": "德温特创新索引" + "en": "General Statistics Office of Vietnam", + "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" - } - ], - "Pathogen Surveillance": [ + "authority_level": "government", + "data_url": "https://www.nso.gov.vn/en/statistical-data/", + "has_api": false, + "file_path": "countries/asia/vietnam/gso.json", + "geographic_scope": "national" + }, { - "id": "ena", + "id": "austria-statistik", "name": { - "en": "European Nucleotide Archive", - "zh": "欧洲核苷酸档案库" + "en": "Statistics Austria", + "zh": "奥地利统计局", + "native": "Statistik Austria" }, - "authority_level": "international", - "data_url": "https://www.ebi.ac.uk/ena/browser/", + "authority_level": "government", + "data_url": "https://www.statistik.at/statistiken", "has_api": true, - "file_path": "academic/biology/ena.json", - "geographic_scope": "global" - } - ], - "Payment Systems": [ + "file_path": "countries/europe/at/austria-statistik.json", + "geographic_scope": "national" + }, { - "id": "bis-statistics", + "id": "belgium-statbel", "name": { - "en": "BIS Statistics", - "zh": "国际清算银行统计数据" + "en": "Statbel - Belgian Statistical Office", + "zh": "比利时统计局" }, "authority_level": "government", - "data_url": "https://data.bis.org/", - "has_api": true, - "file_path": "academic/economics/bis-statistics.json", - "geographic_scope": "global" + "data_url": "https://statbel.fgov.be/en/open-data", + "has_api": false, + "file_path": "countries/europe/belgium/belgium-statbel.json", + "geographic_scope": "national" }, { - "id": "boj-statistics", + "id": "bulgaria-nsi", "name": { - "en": "Bank of Japan Statistics", - "zh": "日本银行统计数据", - "native": "日本銀行統計" + "en": "National Statistical Institute of Bulgaria (NSI)", + "zh": "保加利亚国家统计局" }, "authority_level": "government", - "data_url": "https://www.boj.or.jp/en/statistics/index.htm", + "data_url": "https://www.nsi.bg/en/content/2666/statisticsdatabases", "has_api": false, - "file_path": "countries/asia/japan/boj-statistics.json", + "file_path": "countries/europe/bulgaria/bulgaria-nsi.json", "geographic_scope": "national" }, { - "id": "uk-boe", + "id": "croatia-dzs", "name": { - "en": "Bank of England Statistical Interactive Database", - "zh": "英格兰银行统计数据库" + "en": "Croatian Bureau of Statistics (DZS)", + "zh": "克罗地亚统计局" }, "authority_level": "government", - "data_url": "https://www.bankofengland.co.uk/boeapps/database/", + "data_url": "https://dzs.gov.hr/en/data-and-statistics", "has_api": false, - "file_path": "countries/europe/uk/bank-of-england.json", + "file_path": "countries/europe/croatia/croatia-dzs.json", "geographic_scope": "national" }, { - "id": "brazil-bcb", + "id": "czechia-czso", "name": { - "en": "Central Bank of Brazil", - "zh": "巴西中央银行", - "native": "Banco Central do Brasil" + "en": "Czech Statistical Office (CZSO)", + "zh": "捷克统计局" }, "authority_level": "government", - "data_url": "https://dadosabertos.bcb.gov.br", + "data_url": "https://vdb.czso.cz", "has_api": true, - "file_path": "countries/south-america/brazil/brazil-bcb.json", + "file_path": "countries/europe/czechia/czechia-czso.json", "geographic_scope": "national" - } - ], - "Payments": [ + }, { - "id": "bis-statistics", + "id": "denmark-dst", "name": { - "en": "BIS Statistics - Bank for International Settlements", - "zh": "国际清算银行统计数据" + "en": "Statistics Denmark", + "zh": "丹麦统计局", + "native": "Danmarks Statistik" }, "authority_level": "government", - "data_url": "https://data.bis.org/", + "data_url": "https://www.dst.dk/en/Statistik", "has_api": true, - "file_path": "international/economics/bis.json", - "geographic_scope": "global" + "file_path": "countries/europe/dk/denmark-dst.json", + "geographic_scope": "national" }, { - "id": "bis-statistics", + "id": "france-insee", "name": { - "en": "BIS Statistics - Bank for International Settlements", - "zh": "国际清算银行统计数据" + "en": "INSEE - National Institute of Statistics and Economic Studies", + "zh": "法国国家统计与经济研究所", + "native": "Institut national de la statistique et des études économiques" }, - "authority_level": "international", - "data_url": "https://data.bis.org", + "authority_level": "government", + "data_url": "https://www.insee.fr/en/statistiques", "has_api": true, - "file_path": "international/finance/bis-statistics.json", - "geographic_scope": "global" - } - ], - "Personal Income": [ + "file_path": "countries/europe/fr/france-insee.json", + "geographic_scope": "national" + }, { - "id": "us-bea", + "id": "germany-destatis", "name": { - "en": "Bureau of Economic Analysis", - "zh": "美国经济分析局" + "en": "Federal Statistical Office of Germany (Destatis)", + "zh": "德国联邦统计局", + "native": "Statistisches Bundesamt (Destatis)" }, "authority_level": "government", - "data_url": "https://www.bea.gov/data", + "data_url": "https://www.destatis.de/EN/Themes/_node.html", "has_api": true, - "file_path": "countries/north-america/usa/us-bea.json", + "file_path": "countries/europe/germany/germany-destatis.json", "geographic_scope": "national" - } - ], - "Pesticide Residues": [ + }, { - "id": "codex-alimentarius", + "id": "greece-elstat", "name": { - "en": "Codex Alimentarius Standards", - "zh": "国际食品法典委员会标准" + "en": "Hellenic Statistical Authority (ELSTAT)", + "zh": "希腊统计局", + "native": "Ελληνική Στατιστική Αρχή (ΕΛΣΤΑΤ)" }, - "authority_level": "international", - "data_url": "https://www.fao.org/fao-who-codexalimentarius/codex-texts/all-standards/en/", + "authority_level": "government", + "data_url": "https://www.statistics.gr/en/statistics", "has_api": false, - "file_path": "international/standards-metrology/codex-alimentarius.json", - "geographic_scope": "global" - } - ], - "Petrochemicals": [ + "file_path": "countries/europe/greece/greece-elstat.json", + "geographic_scope": "national" + }, { - "id": "china-petroleum-chemical-federation", + "id": "hungary-ksh", "name": { - "en": "China Petroleum and Chemical Industry Federation", - "zh": "中国石油和化学工业联合会" + "en": "Hungarian Central Statistical Office", + "zh": "匈牙利中央统计局" }, - "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", + "authority_level": "government", + "data_url": "https://www.ksh.hu/engstadat", + "has_api": true, + "file_path": "countries/europe/hungary/hungary-ksh.json", "geographic_scope": "national" - } - ], - "Petroleum Industry": [ + }, { - "id": "china-petroleum-chemical-federation", + "id": "ireland-cso", "name": { - "en": "China Petroleum and Chemical Industry Federation", - "zh": "中国石油和化学工业联合会" + "en": "Central Statistics Office (CSO)", + "zh": "爱尔兰中央统计局" }, - "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", + "authority_level": "government", + "data_url": "https://data.cso.ie", + "has_api": true, + "file_path": "countries/europe/ireland/ireland-cso.json", "geographic_scope": "national" - } - ], - "Pharmaceutical Sciences": [ + }, { - "id": "chembl", + "id": "italy-istat", "name": { - "en": "ChEMBL Database", - "zh": "ChEMBL生物活性数据库" + "en": "Italian National Institute of Statistics", + "zh": "意大利国家统计局" }, - "authority_level": "research", - "data_url": "https://www.ebi.ac.uk/chembl/", + "authority_level": "government", + "data_url": "https://esploradati.istat.it/databrowser/", "has_api": true, - "file_path": "academic/chemistry/chembl.json", - "geographic_scope": "global" + "file_path": "countries/europe/italy/italy-istat.json", + "geographic_scope": "national" }, { - "id": "intl-chemspider", + "id": "netherlands-cbs", "name": { - "en": "ChemSpider", - "zh": "化学蜘蛛数据库" + "en": "Statistics Netherlands (CBS)", + "zh": "荷兰统计局" }, - "authority_level": "international", - "data_url": "https://www.chemspider.com", - "has_api": false, - "file_path": "academic/chemistry/chemspider.json", - "geographic_scope": "global" + "authority_level": "government", + "data_url": "https://opendata.cbs.nl/statline/", + "has_api": true, + "file_path": "countries/europe/netherlands/netherlands-cbs.json", + "geographic_scope": "national" }, { - "id": "drugbank", + "id": "norway-ssb", "name": { - "en": "DrugBank", - "zh": "药物与药物靶点数据库" + "en": "Statistics Norway (SSB)", + "zh": "挪威统计局", + "native": "Statistisk sentralbyrå (SSB)" }, - "authority_level": "research", - "data_url": "https://go.drugbank.com", + "authority_level": "government", + "data_url": "https://www.ssb.no/en/statbank", "has_api": true, - "file_path": "academic/chemistry/drugbank.json", - "geographic_scope": "global" + "file_path": "countries/europe/norway/norway-ssb.json", + "geographic_scope": "national" }, { - "id": "cambridge-structural-database", + "id": "portugal-ine", "name": { - "en": "Cambridge Structural Database (CSD)", - "zh": "剑桥晶体结构数据库" + "en": "Statistics Portugal (INE)", + "zh": "葡萄牙国家统计局" }, - "authority_level": "research", - "data_url": "https://www.ccdc.cam.ac.uk", + "authority_level": "government", + "data_url": "https://www.ine.pt/xportal/xmain?xpid=INE&xpgid=ine_base_dados", "has_api": true, - "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json", - "geographic_scope": "global" - } - ], - "Pharmaceuticals": [ + "file_path": "countries/europe/portugal/portugal-ine.json", + "geographic_scope": "national" + }, { - "id": "derwent-innovation-index", + "id": "romania-ins", "name": { - "en": "Derwent Innovation Index", - "zh": "德温特创新索引" + "en": "National Institute of Statistics (Romania)", + "zh": "罗马尼亚国家统计局" }, - "authority_level": "commercial", - "data_url": "https://clarivate.com/products/derwent-innovation/", + "authority_level": "government", + "data_url": "https://insse.ro/cms/en/statistici-2", "has_api": true, - "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json", - "geographic_scope": "global" - } - ], - "Pharmacology": [ + "file_path": "countries/europe/romania/romania-ins.json", + "geographic_scope": "national" + }, { - "id": "chembl", + "id": "russia-rosstat", "name": { - "en": "ChEMBL Database", - "zh": "ChEMBL生物活性数据库" + "en": "Federal State Statistics Service (Rosstat)", + "zh": "俄罗斯联邦统计局", + "native": "Федеральная служба государственной статистики (Росстат)" }, - "authority_level": "research", - "data_url": "https://www.ebi.ac.uk/chembl/", + "authority_level": "government", + "data_url": "https://rosstat.gov.ru/statistics", "has_api": true, - "file_path": "academic/chemistry/chembl.json", - "geographic_scope": "global" + "file_path": "countries/europe/russia/russia-rosstat.json", + "geographic_scope": "national" }, { - "id": "drugbank", + "id": "slovakia-susr", "name": { - "en": "DrugBank", - "zh": "药物与药物靶点数据库" + "en": "Statistical Office of the Slovak Republic (SUSR)", + "zh": "斯洛伐克共和国统计局" }, - "authority_level": "research", - "data_url": "https://go.drugbank.com", + "authority_level": "government", + "data_url": "https://datacube.statistics.sk", + "has_api": false, + "file_path": "countries/europe/slovakia/slovakia-susr.json", + "geographic_scope": "national" + }, + { + "id": "slovenia-surs", + "name": { + "en": "Statistical Office of the Republic of Slovenia (SURS)", + "zh": "斯洛文尼亚共和国统计局" + }, + "authority_level": "government", + "data_url": "https://www.stat.si/StatWeb/en", "has_api": true, - "file_path": "academic/chemistry/drugbank.json", - "geographic_scope": "global" + "file_path": "countries/europe/slovenia/slovenia-surs.json", + "geographic_scope": "national" }, { - "id": "pubchem", + "id": "spain-ine", "name": { - "en": "PubChem", - "zh": "PubChem化学数据库" + "en": "National Statistics Institute of Spain", + "zh": "西班牙国家统计局" }, "authority_level": "government", - "data_url": "https://pubchem.ncbi.nlm.nih.gov/", + "data_url": "https://www.ine.es/dyngs/INEbase/listaoperaciones.htm", "has_api": true, - "file_path": "academic/chemistry/pubchem.json", - "geographic_scope": "global" - } - ], - "Photometry and Radiometry": [ + "file_path": "countries/europe/spain/spain-ine.json", + "geographic_scope": "national" + }, { - "id": "bipm-kcdb", + "id": "sweden-scb", "name": { - "en": "BIPM Key Comparison Database (KCDB)", - "zh": "国际度量衡局关键比对数据库", - "native": "Bureau International des Poids et Mesures (BIPM)" + "en": "Statistics Sweden (SCB)", + "zh": "瑞典统计局" }, - "authority_level": "international", - "data_url": "https://www.bipm.org/kcdb", + "authority_level": "government", + "data_url": "https://www.statistikdatabasen.scb.se", "has_api": true, - "file_path": "international/standards-metrology/bipm-kcdb.json", - "geographic_scope": "global" - } - ], - "Physics": [ + "file_path": "countries/europe/sweden/sweden-scb.json", + "geographic_scope": "national" + }, { - "id": "acad-cod", + "id": "switzerland-fso", "name": { - "en": "Crystallography Open Database", - "zh": "晶体学开放数据库" + "en": "Swiss Federal Statistical Office (FSO)", + "zh": "瑞士联邦统计局", + "native": "Bundesamt für Statistik (BFS)" }, - "authority_level": "research", - "data_url": "https://www.crystallography.net/cod/", + "authority_level": "government", + "data_url": "https://www.bfs.admin.ch/bfs/en/home/statistics.html", "has_api": true, - "file_path": "academic/physics/crystallography-open-database.json", - "geographic_scope": "global" - } - ], - "Pipeline Regulation": [ + "file_path": "countries/europe/switzerland/switzerland-fso.json", + "geographic_scope": "national" + }, { - "id": "canada-cer", + "id": "turkey-tuik", "name": { - "en": "Canada Energy Regulator", - "zh": "加拿大能源监管局", - "native": "Régie de l'énergie du Canada" + "en": "Turkish Statistical Institute (TurkStat)", + "zh": "土耳其统计局", + "native": "Türkiye İstatistik Kurumu (TÜİK)" }, "authority_level": "government", - "data_url": "https://www.cer-rec.gc.ca/en/data-analysis/", + "data_url": "https://data.tuik.gov.tr", "has_api": true, - "file_path": "countries/north-america/canada/canada-energy-regulator.json", + "file_path": "countries/europe/turkey/turkey-tuik.json", "geographic_scope": "national" - } - ], - "Player Performance Analytics": [ + }, { - "id": "tennis-atp-wta-data", + "id": "canada-statcan", "name": { - "en": "ATP/WTA Tennis Data", - "zh": "ATP/WTA网球数据" + "en": "Statistics Canada", + "zh": "加拿大统计局", + "native": "Statistique Canada" }, - "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" - } - ], - "Policy Coordination": [ + "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": "amis", + "id": "mexico-inegi", "name": { - "en": "Agricultural Market Information System (AMIS)", - "zh": "农业市场信息系统" + "en": "National Institute of Statistics and Geography (INEGI)", + "zh": "墨西哥国家统计和地理研究所", + "native": "Instituto Nacional de Estadística y Geografía (INEGI)" }, - "authority_level": "international", - "data_url": "https://www.amis-outlook.org", - "has_api": false, - "file_path": "sectors/A-agriculture/amis.json", - "geographic_scope": "global" - } - ], - "Political Participation": [ + "authority_level": "government", + "data_url": "https://www.inegi.org.mx/datos/", + "has_api": true, + "file_path": "countries/north-america/mexico/mexico-inegi.json", + "geographic_scope": "national" + }, { - "id": "afrobarometer", + "id": "us-census", "name": { - "en": "Afrobarometer", - "zh": "非洲晴雨表" + "en": "U.S. Census Bureau", + "zh": "美国人口普查局" }, - "authority_level": "research", - "data_url": "https://www.afrobarometer.org/data/", - "has_api": false, - "file_path": "academic/social/afrobarometer.json", - "geographic_scope": "regional" - } - ], - "Political Science": [ + "authority_level": "government", + "data_url": "https://data.census.gov", + "has_api": true, + "file_path": "countries/north-america/usa/us-census.json", + "geographic_scope": "national" + }, { - "id": "asian-barometer", + "id": "australia-abs", "name": { - "en": "Asian Barometer Survey", - "zh": "亚洲民主动态调查" + "en": "Australian Bureau of Statistics", + "zh": "澳大利亚统计局" }, - "authority_level": "research", - "data_url": "https://asianbarometer.org", - "has_api": false, - "file_path": "academic/social/asian-barometer.json", - "geographic_scope": "regional" - } - ], - "Political Values": [ + "authority_level": "government", + "data_url": "https://www.abs.gov.au", + "has_api": true, + "file_path": "countries/oceania/australia/abs.json", + "geographic_scope": "national" + }, { - "id": "asian-barometer", + "id": "nz-stats", "name": { - "en": "Asian Barometer Survey", - "zh": "亚洲民主动态调查" + "en": "Statistics New Zealand (Stats NZ)", + "zh": "新西兰统计局" }, - "authority_level": "research", - "data_url": "https://asianbarometer.org", + "authority_level": "government", + "data_url": "https://infoshare.stats.govt.nz", "has_api": false, - "file_path": "academic/social/asian-barometer.json", - "geographic_scope": "regional" - } - ], - "Population Health": [ + "file_path": "countries/oceania/new-zealand/nz-stats.json", + "geographic_scope": "national" + }, { - "id": "us-cdc", + "id": "argentina-indec", "name": { - "en": "CDC Data & Statistics", - "zh": "美国疾控中心数据与统计" + "en": "National Institute of Statistics and Censuses (INDEC)", + "zh": "阿根廷国家统计与普查局" }, "authority_level": "government", - "data_url": "https://data.cdc.gov/", + "data_url": "https://www.indec.gob.ar/indec/web/Nivel3-Tema-3-35", "has_api": true, - "file_path": "countries/north-america/usa/us-cdc.json", + "file_path": "countries/south-america/argentina/argentina-indec.json", "geographic_scope": "national" - } - ], - "Poverty Analysis": [ + }, { - "id": "adb-ado", + "id": "brazil-ibge", "name": { - "en": "Asian Development Outlook", - "zh": "亚洲开发展望" + "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": "chile-ine", + "name": { + "en": "National Statistics Institute of Chile (INE)", + "zh": "智利国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.ine.gob.cl/estadisticas", + "has_api": false, + "file_path": "countries/south-america/chile/chile-ine.json", + "geographic_scope": "national" + }, + { + "id": "colombia-dane", + "name": { + "en": "National Administrative Department of Statistics (DANE)", + "zh": "哥伦比亚国家统计局", + "native": "Departamento Administrativo Nacional de Estadística (DANE)" + }, + "authority_level": "government", + "data_url": "https://www.dane.gov.co/index.php/estadisticas-por-tema", + "has_api": true, + "file_path": "countries/south-america/colombia/colombia-dane.json", + "geographic_scope": "national" + }, + { + "id": "peru-inei", + "name": { + "en": "National Institute of Statistics and Informatics of Peru (INEI)", + "zh": "秘鲁国家统计和信息学研究所" + }, + "authority_level": "government", + "data_url": "https://www.inei.gob.pe/estadisticas/", + "has_api": false, + "file_path": "countries/south-america/peru/peru-inei.json", + "geographic_scope": "national" + }, + { + "id": "unfpa-china", + "name": { + "en": "UNFPA China", + "zh": "联合国人口基金驻华代表处" }, "authority_level": "international", - "data_url": "https://www.adb.org/outlook", + "data_url": "https://china.unfpa.org/en/publications", "has_api": false, - "file_path": "international/economics/adb-ado.json", - "geographic_scope": "regional" - } - ], - "Poverty Reduction": [ + "file_path": "international/demographics/unfpa-china.json", + "geographic_scope": "national" + }, { - "id": "caribbean-development-bank", + "id": "unfpa-urbanization", "name": { - "en": "Caribbean Development Bank", - "zh": "加勒比开发银行" + "zh": "联合国人口基金 - 城镇化数据", + "en": "UNFPA - Urbanization Data" }, "authority_level": "international", - "data_url": "https://www.caribank.org/data/country-data-reports", + "data_url": "https://www.unfpa.org/urbanization", "has_api": false, - "file_path": "international/development/caribbean-development-bank.json", - "geographic_scope": "regional" - } - ], - "Poverty and Inequality": [ + "file_path": "international/demographics/unfpa-urbanization.json", + "geographic_scope": "global" + }, { - "id": "adb-data-library", + "id": "adb-key-indicators", "name": { - "en": "Asian Development Bank Data Library", - "zh": "亚洲开发银行数据库" + "en": "Asian Development Bank Key Indicators", + "zh": "亚洲开发银行关键指标" }, "authority_level": "international", - "data_url": "https://data.adb.org", + "data_url": "https://kidb.adb.org", "has_api": true, - "file_path": "international/development/adb-data-library.json", + "file_path": "international/development/adb-key-indicators.json", "geographic_scope": "regional" - } - ], - "Prices": [ + }, { - "id": "boj-statistics", + "id": "asean-stats", "name": { - "en": "Bank of Japan Statistics", - "zh": "日本银行统计数据", - "native": "日本銀行統計" + "en": "ASEAN Statistics", + "zh": "东盟统计局", + "native": "ASEANstats" }, - "authority_level": "government", - "data_url": "https://www.boj.or.jp/en/statistics/index.htm", + "authority_level": "international", + "data_url": "https://data.aseanstats.org", "has_api": false, - "file_path": "countries/asia/japan/boj-statistics.json", - "geographic_scope": "national" + "file_path": "international/economics/asean-stats.json", + "geographic_scope": "regional" }, { - "id": "us-bls", + "id": "eurostat", "name": { - "en": "Bureau of Labor Statistics", - "zh": "美国劳工统计局" + "en": "Eurostat - Statistical Office of the European Union", + "zh": "欧盟统计局", + "native": "Eurostat" }, - "authority_level": "government", - "data_url": "https://www.bls.gov/data/", + "authority_level": "international", + "data_url": "https://ec.europa.eu/eurostat/databrowser/explore/all/all_themes", "has_api": true, - "file_path": "countries/north-america/usa/us-bls.json", - "geographic_scope": "national" + "file_path": "international/economics/eurostat.json", + "geographic_scope": "regional" }, { - "id": "faostat", + "id": "un-population", "name": { - "en": "FAOSTAT - Food and Agriculture Data", - "zh": "粮农组织统计数据库" + "en": "UN Population Division", + "zh": "联合国人口司" }, "authority_level": "international", - "data_url": "https://www.fao.org/faostat/en/", + "data_url": "https://population.un.org/wpp/", "has_api": true, - "file_path": "international/agriculture/faostat.json", + "file_path": "international/humanitarian/un-population.json", "geographic_scope": "global" }, { - "id": "bis-statistics", + "id": "unhcr", "name": { - "en": "BIS Statistics - Bank for International Settlements", - "zh": "国际清算银行统计数据" + "en": "UNHCR Refugee Data Finder", + "zh": "联合国难民署难民数据查询" }, - "authority_level": "government", - "data_url": "https://data.bis.org/", + "authority_level": "international", + "data_url": "https://www.unhcr.org/refugee-statistics/", "has_api": true, - "file_path": "international/economics/bis.json", + "file_path": "international/humanitarian/unhcr.json", "geographic_scope": "global" - } - ], - "Productivity": [ + }, { - "id": "us-bls", + "id": "unicef", "name": { - "en": "Bureau of Labor Statistics", - "zh": "美国劳工统计局" + "en": "UNICEF Data", + "zh": "联合国儿童基金会数据" + }, + "authority_level": "international", + "data_url": "https://data.unicef.org/resources/resource-type/datasets/", + "has_api": true, + "file_path": "international/humanitarian/unicef.json", + "geographic_scope": "global" + }, + { + "id": "singapore-dos", + "name": { + "en": "Department of Statistics Singapore", + "zh": "新加坡统计局" }, "authority_level": "government", - "data_url": "https://www.bls.gov/data/", + "data_url": "https://tablebuilder.singstat.gov.sg", "has_api": true, - "file_path": "countries/north-america/usa/us-bls.json", + "file_path": "singapore/national/singapore-dos.json", "geographic_scope": "national" - } - ], - "Professional Sports Data": [ + }, { - "id": "tennis-atp-wta-data", + "id": "thailand-nso", "name": { - "en": "ATP/WTA Tennis Data", - "zh": "ATP/WTA网球数据" + "en": "National Statistical Office of Thailand", + "zh": "泰国国家统计局", + "native": "สำนักงานสถิติแห่งชาติ" }, - "authority_level": "research", - "data_url": "https://github.com/JeffSackmann/tennis_atp", + "authority_level": "government", + "data_url": "https://www.nso.go.th/nsoweb/officialStatistics", "has_api": false, - "file_path": "sectors/R-arts-entertainment/tennis-atp-wta-data.json", - "geographic_scope": "global" + "file_path": "thailand/national/thailand-nso.json", + "geographic_scope": "national" } ], - "Property Prices": [ + "derivatives": [ { "id": "bis-statistics", "name": { @@ -7284,266 +6920,304 @@ "has_api": true, "file_path": "academic/economics/bis-statistics.json", "geographic_scope": "global" - } - ], - "Protein Science": [ + }, { - "id": "intl-rcsb-pdb", + "id": "china-shanghai-clearing-house", "name": { - "en": "Protein Data Bank (PDB)", - "zh": "蛋白质数据银行" + "en": "Shanghai Clearing House", + "zh": "上海清算所" }, - "authority_level": "research", - "data_url": "https://www.rcsb.org", - "has_api": true, - "file_path": "academic/biology/pdb.json", - "geographic_scope": "global" - } - ], - "Proteomics": [ + "authority_level": "market", + "data_url": "https://www.shclearing.com.cn/sjtj/", + "has_api": false, + "file_path": "china/finance/china-shanghai-clearing-house.json", + "geographic_scope": "national" + }, { - "id": "alphafold-db", + "id": "hkex", "name": { - "en": "AlphaFold Protein Structure Database", - "zh": "AlphaFold蛋白质结构数据库" + "en": "Hong Kong Exchanges and Clearing Limited (HKEX)", + "zh": "香港交易及结算所有限公司(港交所)", + "native": "香港交易及结算所有限公司" }, - "authority_level": "international", - "data_url": "https://alphafold.com", + "authority_level": "commercial", + "data_url": "https://www.hkexnews.hk", "has_api": true, - "file_path": "academic/biology/alphafold-db.json", - "geographic_scope": "global" + "file_path": "china/finance/securities/hkex.json", + "geographic_scope": "regional" }, { - "id": "chembl", + "id": "jpx", "name": { - "en": "ChEMBL Database", - "zh": "ChEMBL生物活性数据库" + "en": "Japan Exchange Group", + "zh": "日本交易所集团" }, - "authority_level": "research", - "data_url": "https://www.ebi.ac.uk/chembl/", - "has_api": true, - "file_path": "academic/chemistry/chembl.json", - "geographic_scope": "global" - } - ], - "Public Finance": [ + "authority_level": "market", + "data_url": "https://www.jpx.co.jp/english/markets/statistics-equities/index.html", + "has_api": false, + "file_path": "countries/asia/japan/jpx.json", + "geographic_scope": "national" + }, { - "id": "boj-statistics", + "id": "asx", "name": { - "en": "Bank of Japan Statistics", - "zh": "日本银行统计数据", - "native": "日本銀行統計" + "en": "Australian Securities Exchange", + "zh": "澳大利亚证券交易所" }, - "authority_level": "government", - "data_url": "https://www.boj.or.jp/en/statistics/index.htm", + "authority_level": "market", + "data_url": "https://www.asx.com.au/markets", "has_api": false, - "file_path": "countries/asia/japan/boj-statistics.json", + "file_path": "countries/oceania/australia/asx.json", "geographic_scope": "national" }, { - "id": "adb-data-library", + "id": "bloomberg-terminal", "name": { - "en": "Asian Development Bank Data Library", - "zh": "亚洲开发银行数据库" + "en": "Bloomberg Terminal (Public Data)", + "zh": "彭博终端(部分公开数据)" }, - "authority_level": "international", - "data_url": "https://data.adb.org", + "authority_level": "commercial", + "data_url": "https://www.bloomberg.com/markets", "has_api": true, - "file_path": "international/development/adb-data-library.json", - "geographic_scope": "regional" + "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json", + "geographic_scope": "global" + }, + { + "id": "refinitiv-lseg", + "name": { + "en": "LSEG Data & Analytics (Refinitiv)", + "zh": "伦敦证交所数据分析(路孚特)" + }, + "authority_level": "commercial", + "data_url": "https://www.lseg.com/en/data-analytics/products/workspace", + "has_api": true, + "file_path": "sectors/K-finance-insurance/refinitiv-lseg.json", + "geographic_scope": "global" } ], - "Public Health": [ + "development": [ { - "id": "us-cdc", + "id": "ggdc-databases", "name": { - "en": "CDC Data & Statistics", - "zh": "美国疾控中心数据与统计" + "en": "Groningen Growth and Development Centre (GGDC) Databases", + "zh": "格罗宁根增长与发展中心数据库" }, - "authority_level": "government", - "data_url": "https://data.cdc.gov/", - "has_api": true, - "file_path": "countries/north-america/usa/us-cdc.json", - "geographic_scope": "national" + "authority_level": "research", + "data_url": "https://www.rug.nl/ggdc/", + "has_api": false, + "file_path": "academic/economics/ggdc-databases.json", + "geographic_scope": "global" }, { - "id": "ecdc-surveillance", + "id": "penn-world-table", "name": { - "en": "ECDC Surveillance Data", - "zh": "欧洲疾病预防控制中心监测数据" + "en": "Penn World Table", + "zh": "宾州世界表" }, - "authority_level": "international", - "data_url": "https://www.ecdc.europa.eu/en/data-dashboards-and-databases", + "authority_level": "research", + "data_url": "https://www.rug.nl/ggdc/productivity/pwt/", "has_api": false, - "file_path": "international/health/ecdc-surveillance.json", - "geographic_scope": "regional" - } - ], - "Public Opinion": [ + "file_path": "academic/economics/penn-world-table.json", + "geographic_scope": "global" + }, { - "id": "asian-barometer", + "id": "china-iprcc", "name": { - "en": "Asian Barometer Survey", - "zh": "亚洲民主动态调查" + "en": "International Poverty Reduction Center in China", + "zh": "中国国际减贫中心" }, "authority_level": "research", - "data_url": "https://asianbarometer.org", + "data_url": "https://www.iprcc.org.cn", "has_api": false, - "file_path": "academic/social/asian-barometer.json", - "geographic_scope": "regional" - } - ], - "Public Safety": [ + "file_path": "china/economy/macro/china-iprcc.json", + "geographic_scope": "national" + }, { - "id": "us-data-gov", + "id": "china-ndrc", "name": { - "en": "Data.gov", - "zh": "美国政府开放数据平台" + "en": "National Development and Reform Commission", + "zh": "国家发展和改革委员会", + "native": "国家发展和改革委员会" }, "authority_level": "government", - "data_url": "https://catalog.data.gov/dataset", + "data_url": "https://www.ndrc.gov.cn/fgsj/", "has_api": false, - "file_path": "countries/north-america/usa/us-data-gov.json", + "file_path": "china/economy/macro/ndrc.json", "geographic_scope": "national" - } - ], - "Public Sector": [ + }, { - "id": "idb", + "id": "adb-data", "name": { - "en": "Inter-American Development Bank", - "zh": "美洲开发银行" + "en": "Asian Development Bank Data Library", + "zh": "亚洲开发银行数据库", + "native": "ADB Data Library" }, "authority_level": "international", - "data_url": "https://www.iadb.org/en/knowledge-resources/data", + "data_url": "https://data.adb.org", "has_api": true, - "file_path": "international/development/idb.json", + "file_path": "international/development/adb-data.json", "geographic_scope": "regional" - } - ], - "Public Sector Management": [ + }, + { + "id": "afdb-statistics", + "name": { + "en": "African Development Bank Statistics", + "zh": "非洲开发银行统计数据" + }, + "authority_level": "international", + "data_url": "https://dataportal.opendataforafrica.org", + "has_api": true, + "file_path": "international/development/afdb-statistics.json", + "geographic_scope": "regional" + }, + { + "id": "aiddata", + "name": { + "en": "AidData - Global Development Finance", + "zh": "AidData全球发展援助数据库" + }, + "authority_level": "research", + "data_url": "https://www.aiddata.org/datasets", + "has_api": false, + "file_path": "international/development/aiddata.json", + "geographic_scope": "global" + }, + { + "id": "undp-hdr", + "name": { + "en": "UNDP Human Development Reports", + "zh": "联合国开发计划署人类发展报告" + }, + "authority_level": "international", + "data_url": "https://hdr.undp.org/data-center", + "has_api": false, + "file_path": "international/development/undp-hdr.json", + "geographic_scope": "global" + }, { "id": "adb-ado", "name": { "en": "Asian Development Outlook", - "zh": "亚洲开发展望" + "zh": "亚洲发展展望" }, "authority_level": "international", - "data_url": "https://www.adb.org/outlook", + "data_url": "https://www.adb.org/publications/series/asian-development-outlook", "has_api": false, "file_path": "international/economics/adb-ado.json", "geographic_scope": "regional" - } - ], - "Public Services": [ + }, { - "id": "afrobarometer", + "id": "adb-vietnam-data", "name": { - "en": "Afrobarometer", - "zh": "非洲晴雨表" + "en": "Asian Development Bank - Vietnam Country Data", + "zh": "亚洲开发银行越南国别数据" }, - "authority_level": "research", - "data_url": "https://www.afrobarometer.org/data/", + "authority_level": "international", + "data_url": "https://www.adb.org/countries/viet-nam/data", "has_api": false, - "file_path": "academic/social/afrobarometer.json", + "file_path": "international/economics/adb-vietnam-data.json", + "geographic_scope": "national" + }, + { + "id": "adb-vietnam", + "name": { + "en": "Asian Development Bank - Vietnam Country Data", + "zh": "亚洲开发银行越南国别数据" + }, + "authority_level": "international", + "data_url": "https://www.adb.org/countries/viet-nam/data", + "has_api": false, + "file_path": "international/economics/adb-vietnam.json", + "geographic_scope": "national" + }, + { + "id": "adb", + "name": { + "en": "Asian Development Bank Data", + "zh": "亚洲开发银行数据" + }, + "authority_level": "international", + "data_url": "https://www.adb.org/what-we-do/data", + "has_api": false, + "file_path": "international/economics/adb.json", "geographic_scope": "regional" - } - ], - "Quantitative Finance": [ + }, { - "id": "akshare", + "id": "ebrd", "name": { - "en": "AKShare - Open Source Financial Data Interface Library", - "zh": "AKShare - 开源财经数据接口库" + "en": "European Bank for Reconstruction and Development", + "zh": "欧洲复兴开发银行" }, - "authority_level": "other", - "data_url": "https://github.com/akfamily/akshare", - "has_api": true, - "file_path": "sectors/K-finance-insurance/akshare.json", - "geographic_scope": "global" - } - ], - "Rare Earth Industry": [ + "authority_level": "international", + "data_url": "https://www.ebrd.com", + "has_api": false, + "file_path": "international/finance/ebrd.json", + "geographic_scope": "regional" + }, { - "id": "china-rare-earth-association", + "id": "paris-club", "name": { - "en": "Association of China Rare Earth Industry", - "zh": "中国稀土行业协会" + "en": "Paris Club", + "zh": "巴黎俱乐部" }, - "authority_level": "market", - "data_url": "https://ac-rei.org.cn", + "authority_level": "international", + "data_url": "https://www.clubdeparis.org", "has_api": false, - "file_path": "sectors/B-mining/rare-earth/china-rare-earth-association.json", - "geographic_scope": "national" - } - ], - "Reading Literacy": [ + "file_path": "international/finance/paris-club.json", + "geographic_scope": "regional" + }, { - "id": "oecd-pisa", + "id": "gavi", "name": { - "en": "PISA - Programme for International Student Assessment", - "zh": "国际学生评估项目" + "en": "GAVI, the Vaccine Alliance", + "zh": "全球疫苗免疫联盟" }, "authority_level": "international", - "data_url": "https://www.oecd.org/en/about/programmes/pisa.html", + "data_url": "https://www.gavi.org/programmes-impact/our-impact/facts-and-figures", "has_api": false, - "file_path": "international/education/oecd-pisa.json", + "file_path": "international/health/gavi.json", "geographic_scope": "global" - } - ], - "Real Estate": [ + }, { - "id": "bis-statistics", + "id": "un-ocha-fts", "name": { - "en": "BIS Statistics - Bank for International Settlements", - "zh": "国际清算银行统计数据" + "en": "UN OCHA Financial Tracking Service", + "zh": "联合国人道主义事务协调厅资金追踪系统" }, - "authority_level": "government", - "data_url": "https://data.bis.org/", + "authority_level": "international", + "data_url": "https://fts.unocha.org", "has_api": true, - "file_path": "international/economics/bis.json", + "file_path": "international/humanitarian/un-ocha-fts.json", "geographic_scope": "global" }, { - "id": "bis-statistics", + "id": "unctad", "name": { - "en": "BIS Statistics - Bank for International Settlements", - "zh": "国际清算银行统计数据" + "en": "UNCTAD - United Nations Conference on Trade and Development", + "zh": "联合国贸易和发展会议" }, "authority_level": "international", - "data_url": "https://data.bis.org", + "data_url": "https://unctadstat.unctad.org", "has_api": true, - "file_path": "international/finance/bis-statistics.json", + "file_path": "international/trade/unctad.json", "geographic_scope": "global" } ], - "Regional Economics": [ + "development-aid": [ { - "id": "us-bea", + "id": "china-cidca", "name": { - "en": "Bureau of Economic Analysis", - "zh": "美国经济分析局" + "en": "China International Development Cooperation Agency", + "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" - }, - { - "id": "adb-ado", - "name": { - "en": "Asian Development Outlook", - "zh": "亚洲开发展望" - }, - "authority_level": "international", - "data_url": "https://www.adb.org/outlook", + "data_url": "http://www.cidca.gov.cn/ywgz.htm", "has_api": false, - "file_path": "international/economics/adb-ado.json", - "geographic_scope": "regional" + "file_path": "china/governance/china-cidca.json", + "geographic_scope": "global" } ], - "Regional Integration": [ + "development-finance": [ { "id": "adb-data-library", "name": { @@ -7556,6 +7230,18 @@ "file_path": "international/development/adb-data-library.json", "geographic_scope": "regional" }, + { + "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": "caf", "name": { @@ -7568,4671 +7254,4307 @@ "has_api": false, "file_path": "international/development/caf.json", "geographic_scope": "regional" - } - ], - "Regulatory Capital": [ + }, { - "id": "uk-boe", + "id": "caribbean-development-bank", "name": { - "en": "Bank of England Statistical Interactive Database", - "zh": "英格兰银行统计数据库" + "en": "Caribbean Development Bank", + "zh": "加勒比开发银行" }, - "authority_level": "government", - "data_url": "https://www.bankofengland.co.uk/boeapps/database/", + "authority_level": "international", + "data_url": "https://www.caribank.org/data/country-data-reports", "has_api": false, - "file_path": "countries/europe/uk/bank-of-england.json", - "geographic_scope": "national" - } - ], - "Remote Sensing": [ + "file_path": "international/development/caribbean-development-bank.json", + "geographic_scope": "regional" + }, { - "id": "intl-copernicus-cdse", + "id": "idb", "name": { - "en": "Copernicus Data Space Ecosystem", - "zh": "哥白尼数据空间生态系统" + "en": "Inter-American Development Bank", + "zh": "美洲开发银行" }, "authority_level": "international", - "data_url": "https://dataspace.copernicus.eu", + "data_url": "https://www.iadb.org/en/knowledge-resources/data", "has_api": true, - "file_path": "international/earth-science/copernicus-data-space.json", - "geographic_scope": "global" + "file_path": "international/development/idb.json", + "geographic_scope": "regional" } ], - "Renewable Energy": [ + "development-planning": [ { - "id": "canada-cer", + "id": "china-shenzhen-drc", "name": { - "en": "Canada Energy Regulator", - "zh": "加拿大能源监管局", - "native": "Régie de l'énergie du Canada" + "en": "Shenzhen Municipal Development and Reform Commission", + "zh": "深圳市发展和改革委员会" }, "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": "bp-statistical-review", - "name": { - "en": "Statistical Review of World Energy", - "zh": "世界能源统计年鉴" - }, - "authority_level": "market", - "data_url": "https://www.energyinst.org/statistical-review", + "data_url": "http://fgw.sz.gov.cn/zwgk/", "has_api": false, - "file_path": "sectors/D-energy/bp-statistical-review.json", - "geographic_scope": "global" + "file_path": "china/economy/macro/china-shenzhen-drc.json", + "geographic_scope": "subnational" } ], - "Research": [ + "digital-assets": [ { - "id": "common-crawl", + "id": "cryptocurrency-data", "name": { - "en": "Common Crawl", - "zh": "Common Crawl 网络爬取数据" + "en": "Cryptocurrency Market Data (CoinMarketCap & CoinGecko)", + "zh": "加密货币市场数据(CoinMarketCap 和 CoinGecko)" }, - "authority_level": "research", - "data_url": "https://commoncrawl.org", + "authority_level": "commercial", + "data_url": "https://coinmarketcap.com", "has_api": true, - "file_path": "sectors/J-information-communication/common-crawl.json", + "file_path": "sectors/K-finance-insurance/cryptocurrency-data.json", "geographic_scope": "global" } ], - "Research Performance": [ + "digital-economy": [ { - "id": "arwu", + "id": "china-iresearch", "name": { - "en": "Academic Ranking of World Universities", - "zh": "世界大学学术排名" + "en": "iResearch Consulting Group", + "zh": "艾瑞咨询" }, - "authority_level": "research", - "data_url": "https://www.shanghairanking.com/rankings/arwu/2025", + "authority_level": "market", + "data_url": "https://www.iresearch.com.cn/report.shtml", "has_api": false, - "file_path": "sectors/P-education/arwu.json", - "geographic_scope": "global" - } - ], - "Resource Management": [ + "file_path": "china/economy/market/china-iresearch.json", + "geographic_scope": "national" + }, { - "id": "china-rare-earth-association", + "id": "china-nifa", "name": { - "en": "Association of China Rare Earth Industry", - "zh": "中国稀土行业协会" + "en": "National Internet Finance Association of China", + "zh": "中国互联网金融协会" }, - "authority_level": "market", - "data_url": "https://ac-rei.org.cn", + "authority_level": "other", + "data_url": "https://www.nifa.org.cn", "has_api": false, - "file_path": "sectors/B-mining/rare-earth/china-rare-earth-association.json", + "file_path": "china/finance/china-nifa.json", "geographic_scope": "national" - } - ], - "Respiratory Diseases": [ + }, { - "id": "ecdc-surveillance", + "id": "china-caict", "name": { - "en": "ECDC Surveillance Data", - "zh": "欧洲疾病预防控制中心监测数据" + "en": "China Academy of Information and Communications Technology", + "zh": "中国信息通信研究院" }, - "authority_level": "international", - "data_url": "https://www.ecdc.europa.eu/en/data-dashboards-and-databases", + "authority_level": "research", + "data_url": "http://www.caict.ac.cn/kxyj/qwfb/", "has_api": false, - "file_path": "international/health/ecdc-surveillance.json", - "geographic_scope": "regional" - } - ], - "Robotics": [ + "file_path": "china/research/china-caict.json", + "geographic_scope": "national" + }, { - "id": "china-robot-industry-alliance", + "id": "china-national-data-bureau", "name": { - "en": "Robot Branch of China Machinery Industry Federation", - "zh": "中国机械工业联合会机器人分会" + "en": "National Data Administration of China", + "zh": "国家数据局" }, - "authority_level": "market", - "data_url": "http://cria.mei.net.cn/gzpt.asp?lm=/1310", + "authority_level": "government", + "data_url": "https://sjdj.nda.gov.cn/", "has_api": false, - "file_path": "sectors/C-manufacturing/robotics/china-robot-industry-alliance.json", + "file_path": "china/technology/digital_economy/china-national-data-bureau.json", "geographic_scope": "national" - } - ], - "Science & Research": [ + }, { - "id": "us-data-gov", + "id": "china-ciia", "name": { - "en": "Data.gov", - "zh": "美国政府开放数据平台" + "en": "China Information Association", + "zh": "中国信息协会" }, - "authority_level": "government", - "data_url": "https://catalog.data.gov/dataset", + "authority_level": "other", + "data_url": "https://www.ciia.org.cn", "has_api": false, - "file_path": "countries/north-america/usa/us-data-gov.json", + "file_path": "china/technology/industry_associations/china-ciia.json", "geographic_scope": "national" - } - ], - "Scientific Literacy": [ + }, { - "id": "oecd-pisa", + "id": "china-ccsa", "name": { - "en": "PISA - Programme for International Student Assessment", - "zh": "国际学生评估项目" + "en": "China Communication Standards Association", + "zh": "中国通信标准化协会" }, - "authority_level": "international", - "data_url": "https://www.oecd.org/en/about/programmes/pisa.html", + "authority_level": "other", + "data_url": "https://www.ccsa.org.cn/webadmin/", "has_api": false, - "file_path": "international/education/oecd-pisa.json", - "geographic_scope": "global" + "file_path": "china/technology/telecommunications/china-ccsa.json", + "geographic_scope": "national" } ], - "Securities": [ + "digital-infrastructure": [ { - "id": "bis-statistics", + "id": "china-national-data-bureau", "name": { - "en": "BIS Statistics - Bank for International Settlements", - "zh": "国际清算银行统计数据" + "en": "National Data Administration of China", + "zh": "国家数据局" }, "authority_level": "government", - "data_url": "https://data.bis.org/", - "has_api": true, - "file_path": "international/economics/bis.json", - "geographic_scope": "global" - }, + "data_url": "https://sjdj.nda.gov.cn/", + "has_api": false, + "file_path": "china/technology/digital_economy/china-national-data-bureau.json", + "geographic_scope": "national" + } + ], + "digital-service-performance": [ { - "id": "bis-statistics", + "id": "uk-data-gov", "name": { - "en": "BIS Statistics - Bank for International Settlements", - "zh": "国际清算银行统计数据" + "en": "Data.gov.uk", + "zh": "英国政府开放数据平台" }, - "authority_level": "international", - "data_url": "https://data.bis.org", + "authority_level": "government", + "data_url": "https://www.data.gov.uk", "has_api": true, - "file_path": "international/finance/bis-statistics.json", - "geographic_scope": "global" + "file_path": "countries/europe/uk/uk-data-gov.json", + "geographic_scope": "national" } ], - "Securities Issuance": [ + "digital-technology": [ { - "id": "bloomberg-terminal-ipo", + "id": "adb", "name": { - "en": "Bloomberg Terminal - IPO Module", - "zh": "彭博终端 - IPO模块" + "en": "Asian Development Bank Data", + "zh": "亚洲开发银行数据" }, - "authority_level": "commercial", - "data_url": "https://www.bloomberg.com/professional/products/bloomberg-terminal/", - "has_api": true, - "file_path": "sectors/K-finance-insurance/bloomberg-terminal-ipo.json", - "geographic_scope": "global" + "authority_level": "international", + "data_url": "https://www.adb.org/what-we-do/data", + "has_api": false, + "file_path": "international/economics/adb.json", + "geographic_scope": "regional" } ], - "Security and Conflict": [ + "digital-transformation": [ { - "id": "afrobarometer", + "id": "caf", "name": { - "en": "Afrobarometer", - "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": "research", - "data_url": "https://www.afrobarometer.org/data/", + "authority_level": "international", + "data_url": "https://www.caf.com/en/", "has_api": false, - "file_path": "academic/social/afrobarometer.json", + "file_path": "international/development/caf.json", "geographic_scope": "regional" } ], - "Semantic Analysis": [ + "diplomacy": [ { - "id": "conll-shared-tasks", + "id": "china-cafiu", "name": { - "en": "CoNLL Shared Tasks Data", - "zh": "CoNLL共享任务数据集" + "en": "China Association for International Understanding", + "zh": "中国国际交流协会" }, - "authority_level": "research", - "data_url": "https://www.conll.org/previous-tasks", + "authority_level": "other", + "data_url": "https://www.cafiu.org.cn", "has_api": false, - "file_path": "sectors/J-information-communication/conll-shared-tasks.json", - "geographic_scope": "global" + "file_path": "china/governance/china-cafiu.json", + "geographic_scope": "national" } ], - "Sexually Transmitted Diseases": [ + "disability": [ { - "id": "us-cdc", + "id": "aus-aihw", "name": { - "en": "CDC Data & Statistics", - "zh": "美国疾控中心数据与统计" + "en": "Australian Institute of Health and Welfare", + "zh": "澳大利亚健康与福利研究所" }, "authority_level": "government", - "data_url": "https://data.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" } ], - "Shipping Statistics": [ + "disaster-management": [ { - "id": "india-dgcis", + "id": "copernicus-open-access-hub", "name": { - "en": "Directorate General of Commercial Intelligence and Statistics", - "zh": "印度商业情报与统计总局" + "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", + "geographic_scope": "global" + } + ], + "disaster-prevention": [ + { + "id": "china-nmc", + "name": { + "en": "National Meteorological Centre of China", + "zh": "中央气象台" }, "authority_level": "government", - "data_url": "https://www.commerce.gov.in/trade-statistics/", + "data_url": "https://www.nmc.cn/publish/observations.html", "has_api": false, - "file_path": "countries/asia/india/india-dgcis.json", + "file_path": "china/national/meteorology/china-nmc.json", "geographic_scope": "national" } ], - "Social Development": [ + "disaster-response": [ { - "id": "adb-key-indicators", + "id": "aws-open-data-registry", "name": { - "en": "Asian Development Bank Key Indicators", - "zh": "亚洲开发银行关键指标" + "en": "Registry of Open Data on AWS", + "zh": "AWS开放数据注册表" }, - "authority_level": "international", - "data_url": "https://kidb.adb.org", + "authority_level": "commercial", + "data_url": "https://registry.opendata.aws/", + "has_api": false, + "file_path": "sectors/computer_science_ai/aws-open-data-registry.json", + "geographic_scope": "global" + } + ], + "disease-and-injury": [ + { + "id": "aus-aihw", + "name": { + "en": "Australian Institute of Health and Welfare", + "zh": "澳大利亚健康与福利研究所" + }, + "authority_level": "government", + "data_url": "https://www.aihw.gov.au/", "has_api": true, - "file_path": "international/development/adb-key-indicators.json", - "geographic_scope": "regional" - }, + "file_path": "countries/oceania/australia/aihw.json", + "geographic_scope": "national" + } + ], + "disease-burden": [ { - "id": "afdb", + "id": "ghdx", "name": { - "en": "African Development Bank", - "zh": "非洲开发银行" + "en": "Global Health Data Exchange (GHDx)", + "zh": "全球健康数据交换平台" }, - "authority_level": "international", - "data_url": "https://www.afdb.org/en/knowledge/statistics", + "authority_level": "research", + "data_url": "https://ghdx.healthdata.org/", "has_api": true, - "file_path": "international/development/afdb.json", - "geographic_scope": "regional" - }, + "file_path": "academic/health/ghdx.json", + "geographic_scope": "global" + } + ], + "disease-surveillance": [ { - "id": "caf", + "id": "us-cdc", "name": { - "en": "Development Bank of Latin America and the Caribbean (CAF)", - "zh": "拉美和加勒比开发银行", - "native": "Banco de Desarrollo de América Latina y El Caribe" + "en": "Centers for Disease Control and Prevention", + "zh": "美国疾病控制与预防中心" }, - "authority_level": "international", - "data_url": "https://www.caf.com/en/", - "has_api": false, - "file_path": "international/development/caf.json", - "geographic_scope": "regional" + "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": "caribbean-development-bank", + "id": "africa-cdc", "name": { - "en": "Caribbean Development Bank", - "zh": "加勒比开发银行" + "en": "Africa CDC Health Data", + "zh": "非洲疾控中心健康数据" }, "authority_level": "international", - "data_url": "https://www.caribank.org/data/country-data-reports", + "data_url": "https://africacdc.org", "has_api": false, - "file_path": "international/development/caribbean-development-bank.json", + "file_path": "international/health/africa-cdc.json", "geographic_scope": "regional" }, { - "id": "idb", + "id": "ecdc-surveillance", "name": { - "en": "Inter-American Development Bank", - "zh": "美洲开发银行" + "en": "ECDC Surveillance Data", + "zh": "欧洲疾病预防控制中心监测数据" }, "authority_level": "international", - "data_url": "https://www.iadb.org/en/knowledge-resources/data", - "has_api": true, - "file_path": "international/development/idb.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" } ], - "Social Issues": [ + "drug-development": [ { - "id": "afrobarometer", + "id": "drugbank", "name": { - "en": "Afrobarometer", - "zh": "非洲晴雨表" + "en": "DrugBank", + "zh": "药物与药物靶点数据库" }, "authority_level": "research", - "data_url": "https://www.afrobarometer.org/data/", - "has_api": false, - "file_path": "academic/social/afrobarometer.json", - "geographic_scope": "regional" - } - ], - "Social Science": [ + "data_url": "https://go.drugbank.com", + "has_api": true, + "file_path": "academic/chemistry/drugbank.json", + "geographic_scope": "global" + }, { - "id": "asian-barometer", + "id": "cambridge-structural-database", "name": { - "en": "Asian Barometer Survey", - "zh": "亚洲民主动态调查" + "en": "Cambridge Structural Database (CSD)", + "zh": "剑桥晶体结构数据库" }, "authority_level": "research", - "data_url": "https://asianbarometer.org", - "has_api": false, - "file_path": "academic/social/asian-barometer.json", - "geographic_scope": "regional" + "data_url": "https://www.ccdc.cam.ac.uk", + "has_api": true, + "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json", + "geographic_scope": "global" } ], - "Social Statistics": [ + "drug-discovery": [ { - "id": "adb-data-library", + "id": "alphafold-db", "name": { - "en": "Asian Development Bank Data Library", - "zh": "亚洲开发银行数据库" + "en": "AlphaFold Protein Structure Database", + "zh": "AlphaFold蛋白质结构数据库" }, "authority_level": "international", - "data_url": "https://data.adb.org", + "data_url": "https://alphafold.com", "has_api": true, - "file_path": "international/development/adb-data-library.json", - "geographic_scope": "regional" - } - ], - "Society": [ + "file_path": "academic/biology/alphafold-db.json", + "geographic_scope": "global" + }, { - "id": "uk-data-gov", + "id": "intl-rcsb-pdb", "name": { - "en": "Data.gov.uk", - "zh": "英国政府开放数据平台" + "en": "Protein Data Bank (PDB)", + "zh": "蛋白质数据银行" }, - "authority_level": "government", - "data_url": "https://www.data.gov.uk", + "authority_level": "research", + "data_url": "https://www.rcsb.org", "has_api": true, - "file_path": "countries/europe/uk/uk-data-gov.json", - "geographic_scope": "national" - } - ], - "Soil Science": [ + "file_path": "academic/biology/pdb.json", + "geographic_scope": "global" + }, { - "id": "cgiar-research-data", + "id": "chembl", "name": { - "en": "CGIAR Research Data", - "zh": "国际农业研究磋商组织研究数据" + "en": "ChEMBL Database", + "zh": "ChEMBL生物活性数据库" }, - "authority_level": "international", - "data_url": "https://gardian.cgiar.org/", + "authority_level": "research", + "data_url": "https://www.ebi.ac.uk/chembl/", "has_api": true, - "file_path": "international/agriculture/cgiar-research-data.json", + "file_path": "academic/chemistry/chembl.json", "geographic_scope": "global" - } - ], - "Sports Statistics": [ + }, { - "id": "tennis-atp-wta-data", + "id": "drugbank", "name": { - "en": "ATP/WTA Tennis Data", - "zh": "ATP/WTA网球数据" + "en": "DrugBank", + "zh": "药物与药物靶点数据库" }, "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", + "data_url": "https://go.drugbank.com", + "has_api": true, + "file_path": "academic/chemistry/drugbank.json", "geographic_scope": "global" - } - ], - "Stock Market": [ + }, { - "id": "akshare", + "id": "cambridge-structural-database", "name": { - "en": "AKShare - Open Source Financial Data Interface Library", - "zh": "AKShare - 开源财经数据接口库" + "en": "Cambridge Structural Database (CSD)", + "zh": "剑桥晶体结构数据库" }, - "authority_level": "other", - "data_url": "https://github.com/akfamily/akshare", + "authority_level": "research", + "data_url": "https://www.ccdc.cam.ac.uk", "has_api": true, - "file_path": "sectors/K-finance-insurance/akshare.json", + "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json", "geographic_scope": "global" } ], - "Stock Markets": [ + "drug-metabolism": [ { - "id": "alpha-vantage", + "id": "drugbank", "name": { - "en": "Alpha Vantage API", - "zh": "Alpha Vantage API" + "en": "DrugBank", + "zh": "药物与药物靶点数据库" }, - "authority_level": "commercial", - "data_url": "https://www.alphavantage.co/", + "authority_level": "research", + "data_url": "https://go.drugbank.com", "has_api": true, - "file_path": "sectors/K-finance-insurance/alpha-vantage.json", + "file_path": "academic/chemistry/drugbank.json", "geographic_scope": "global" - }, + } + ], + "earnings": [ { - "id": "crsp", + "id": "us-bls", "name": { - "en": "CRSP - Center for Research in Security Prices", - "zh": "证券价格研究中心" + "en": "Bureau of Labor Statistics", + "zh": "劳工统计局" }, - "authority_level": "research", - "data_url": "https://www.crsp.org/", + "authority_level": "government", + "data_url": "https://www.bls.gov/data/", "has_api": true, - "file_path": "sectors/K-finance-insurance/crsp.json", + "file_path": "countries/north-america/usa/us-bls.json", "geographic_scope": "national" } ], - "Structural Biology": [ + "earth-observation": [ { - "id": "alphafold-db", + "id": "usgs-earthexplorer", "name": { - "en": "AlphaFold Protein Structure Database", - "zh": "AlphaFold蛋白质结构数据库" + "en": "USGS EarthExplorer", + "zh": "美国地质调查局地球探索者" }, - "authority_level": "international", - "data_url": "https://alphafold.com", + "authority_level": "government", + "data_url": "https://earthexplorer.usgs.gov/", "has_api": true, - "file_path": "academic/biology/alphafold-db.json", + "file_path": "countries/north-america/usa/usgs-earthexplorer.json", "geographic_scope": "global" }, { - "id": "intl-rcsb-pdb", + "id": "intl-copernicus-cdse", "name": { - "en": "Protein Data Bank (PDB)", - "zh": "蛋白质数据银行" + "en": "Copernicus Data Space Ecosystem", + "zh": "哥白尼数据空间生态系统" }, - "authority_level": "research", - "data_url": "https://www.rcsb.org", + "authority_level": "international", + "data_url": "https://dataspace.copernicus.eu", "has_api": true, - "file_path": "academic/biology/pdb.json", + "file_path": "international/earth-science/copernicus-data-space.json", "geographic_scope": "global" } ], - "Structural Chemistry": [ + "earth-science": [ { - "id": "cambridge-structural-database", + "id": "china-cma", "name": { - "en": "Cambridge Structural Database (CSD)", - "zh": "剑桥晶体结构数据库" + "en": "China Meteorological Administration", + "zh": "中国气象局" + }, + "authority_level": "government", + "data_url": "https://data.cma.cn", + "has_api": false, + "file_path": "china/national/meteorology/china-cma.json", + "geographic_scope": "national" + }, + { + "id": "china-nmic", + "name": { + "en": "National Meteorological Information Center", + "zh": "国家气象信息中心" + }, + "authority_level": "government", + "data_url": "https://data.cma.cn/data/index.html", + "has_api": false, + "file_path": "china/national/meteorology/china-nmic.json", + "geographic_scope": "national" + }, + { + "id": "china-cstr", + "name": { + "en": "China Science & Technology Resource Identifier Platform", + "zh": "科技资源标识服务平台" + }, + "authority_level": "government", + "data_url": "https://cstr.cn/resreg", + "has_api": false, + "file_path": "china/research/china-cstr.json", + "geographic_scope": "national" + }, + { + "id": "china-ngeos", + "name": { + "en": "National Earth System Science Data Center", + "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" - } - ], - "Student Assessment": [ + "data_url": "https://www.geodata.cn/data/", + "has_api": false, + "file_path": "china/research/china-ngeos.json", + "geographic_scope": "national" + }, { - "id": "oecd-pisa", + "id": "china-resdc", "name": { - "en": "PISA - Programme for International Student Assessment", - "zh": "国际学生评估项目" + "en": "Resource and Environment Science and Data Center, Chinese Academy of Sciences", + "zh": "中国科学院资源环境科学与数据中心" }, - "authority_level": "international", - "data_url": "https://www.oecd.org/en/about/programmes/pisa.html", + "authority_level": "research", + "data_url": "https://www.resdc.cn", "has_api": false, - "file_path": "international/education/oecd-pisa.json", - "geographic_scope": "global" - } - ], - "Student Outcomes": [ + "file_path": "china/research/china-resdc.json", + "geographic_scope": "national" + }, { - "id": "qs-world-university-rankings", + "id": "china-scidb", "name": { - "en": "QS World University Rankings", - "zh": "QS世界大学排名" + "en": "Science Data Bank (ScienceDB)", + "zh": "中国科学数据银行" }, - "authority_level": "market", - "data_url": "https://www.topuniversities.com/world-university-rankings", + "authority_level": "research", + "data_url": "https://www.scidb.cn/list?type=all", "has_api": false, - "file_path": "sectors/P-education/qs-world-university-rankings.json", + "file_path": "china/research/china-scidb.json", "geographic_scope": "global" - } - ], - "Sustainable Development Goals": [ + }, { - "id": "adb-key-indicators", + "id": "china-tpdc", "name": { - "en": "Asian Development Bank Key Indicators", - "zh": "亚洲开发银行关键指标" + "en": "National Tibetan Plateau Data Center", + "zh": "国家青藏高原科学数据中心" }, - "authority_level": "international", - "data_url": "https://kidb.adb.org", - "has_api": true, - "file_path": "international/development/adb-key-indicators.json", + "authority_level": "research", + "data_url": "https://data.tpdc.ac.cn", + "has_api": false, + "file_path": "china/research/china-tpdc.json", "geographic_scope": "regional" - } - ], - "Sustainable Intensification": [ + }, { - "id": "cgiar-research-data", + "id": "usgs", "name": { - "en": "CGIAR Research Data", - "zh": "国际农业研究磋商组织研究数据" + "en": "U.S. Geological Survey (USGS)", + "zh": "美国地质调查局" }, - "authority_level": "international", - "data_url": "https://gardian.cgiar.org/", + "authority_level": "government", + "data_url": "https://www.usgs.gov/products/data", "has_api": true, - "file_path": "international/agriculture/cgiar-research-data.json", + "file_path": "countries/us/geology/usgs.json", + "geographic_scope": "national" + }, + { + "id": "nasa-earthdata", + "name": { + "en": "NASA Earthdata", + "zh": "NASA地球数据" + }, + "authority_level": "government", + "data_url": "https://www.earthdata.nasa.gov", + "has_api": true, + "file_path": "international/earth-science/nasa-earthdata.json", "geographic_scope": "global" - } - ], - "Technical Analysis": [ + }, { - "id": "alpha-vantage", + "id": "isric-world-soil", "name": { - "en": "Alpha Vantage API", - "zh": "Alpha Vantage API" + "en": "ISRIC World Soil Information", + "zh": "ISRIC世界土壤信息中心" }, - "authority_level": "commercial", - "data_url": "https://www.alphavantage.co/", + "authority_level": "research", + "data_url": "https://www.isric.org/explore", "has_api": true, - "file_path": "sectors/K-finance-insurance/alpha-vantage.json", + "file_path": "international/environment/isric-world-soil.json", "geographic_scope": "global" } ], - "Technology Standards": [ + "earth-sciences": [ { - "id": "china-robot-industry-alliance", + "id": "china-cigem", "name": { - "en": "Robot Branch of China Machinery Industry Federation", - "zh": "中国机械工业联合会机器人分会" + "en": "China Institute of Geo-Environment Monitoring", + "zh": "中国地质环境监测院" }, - "authority_level": "market", - "data_url": "http://cria.mei.net.cn/gzpt.asp?lm=/1310", + "authority_level": "government", + "data_url": "http://www.cigem.cgs.gov.cn/", "has_api": false, - "file_path": "sectors/C-manufacturing/robotics/china-robot-industry-alliance.json", + "file_path": "china/resources/environment/china-cigem.json", "geographic_scope": "national" } ], - "Telecommunications": [ + "earthquakes": [ { - "id": "derwent-innovation-index", + "id": "usgs", "name": { - "en": "Derwent Innovation Index", - "zh": "德温特创新索引" + "en": "U.S. Geological Survey (USGS)", + "zh": "美国地质调查局" }, - "authority_level": "commercial", - "data_url": "https://clarivate.com/products/derwent-innovation/", + "authority_level": "government", + "data_url": "https://www.usgs.gov/products/data", "has_api": true, - "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json", - "geographic_scope": "global" + "file_path": "countries/us/geology/usgs.json", + "geographic_scope": "national" } ], - "Tennis": [ + "ecology": [ { - "id": "tennis-atp-wta-data", + "id": "china-nsii", "name": { - "en": "ATP/WTA Tennis Data", - "zh": "ATP/WTA网球数据" + "en": "National Specimen Information Infrastructure of China", + "zh": "中国国家标本资源平台" }, "authority_level": "research", - "data_url": "https://github.com/JeffSackmann/tennis_atp", + "data_url": "https://www.nsii.org.cn/2017/home.php", "has_api": false, - "file_path": "sectors/R-arts-entertainment/tennis-atp-wta-data.json", - "geographic_scope": "global" - } - ], - "Text Mining": [ + "file_path": "china/research/china-nsii.json", + "geographic_scope": "national" + }, { - "id": "bookscorpus", + "id": "china-plant-csdb", "name": { - "en": "BooksCorpus", - "zh": "图书语料库" + "en": "China Plant Thematic Database (CAS Science Database)", + "zh": "中国植物主题数据库" }, "authority_level": "research", - "data_url": "https://github.com/soskek/bookcorpus", + "data_url": "https://www.plant.csdb.cn", "has_api": false, - "file_path": "sectors/J-information-communication/bookscorpus.json", - "geographic_scope": "global" - } - ], - "Thermometry": [ + "file_path": "china/research/china-plant-csdb.json", + "geographic_scope": "national" + }, { - "id": "bipm-kcdb", + "id": "china-tpdc", "name": { - "en": "BIPM Key Comparison Database (KCDB)", - "zh": "国际度量衡局关键比对数据库", - "native": "Bureau International des Poids et Mesures (BIPM)" + "en": "National Tibetan Plateau Data Center", + "zh": "国家青藏高原科学数据中心" + }, + "authority_level": "research", + "data_url": "https://data.tpdc.ac.cn", + "has_api": false, + "file_path": "china/research/china-tpdc.json", + "geographic_scope": "regional" + }, + { + "id": "china-cern", + "name": { + "en": "Chinese Ecosystem Research Network (CERN)", + "zh": "中国生态系统研究网络" + }, + "authority_level": "research", + "data_url": "https://cern.ac.cn/0index/index.asp", + "has_api": false, + "file_path": "china/resources/environment/china-cern.json", + "geographic_scope": "national" + }, + { + "id": "china-nesdc", + "name": { + "en": "National Ecosystem Science Data Center", + "zh": "国家生态科学数据中心" + }, + "authority_level": "research", + "data_url": "https://www.nesdc.org.cn", + "has_api": false, + "file_path": "china/resources/environment/china-nesdc.json", + "geographic_scope": "national" + }, + { + "id": "gbif", + "name": { + "en": "Global Biodiversity Information Facility (GBIF)", + "zh": "全球生物多样性信息设施" }, "authority_level": "international", - "data_url": "https://www.bipm.org/kcdb", + "data_url": "https://www.gbif.org/occurrence/search", "has_api": true, - "file_path": "international/standards-metrology/bipm-kcdb.json", + "file_path": "international/paleontology/gbif.json", "geographic_scope": "global" } ], - "Time and Frequency": [ + "economic-analysis": [ { - "id": "bipm-kcdb", + "id": "china-petroleum-chemical-federation", "name": { - "en": "BIPM Key Comparison Database (KCDB)", - "zh": "国际度量衡局关键比对数据库", - "native": "Bureau International des Poids et Mesures (BIPM)" + "en": "China Petroleum and Chemical Industry Federation", + "zh": "中国石油和化学工业联合会" }, - "authority_level": "international", - "data_url": "https://www.bipm.org/kcdb", - "has_api": true, - "file_path": "international/standards-metrology/bipm-kcdb.json", - "geographic_scope": "global" - } - ], - "Towns and cities": [ - { - "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", + "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" } ], - "Toxicology": [ - { - "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" - }, + "economic-data": [ { - "id": "drugbank", + "id": "bloomberg-terminal", "name": { - "en": "DrugBank", - "zh": "药物与药物靶点数据库" + "en": "Bloomberg Terminal (Public Data)", + "zh": "彭博终端(部分公开数据)" }, - "authority_level": "research", - "data_url": "https://go.drugbank.com", + "authority_level": "commercial", + "data_url": "https://www.bloomberg.com/markets", "has_api": true, - "file_path": "academic/chemistry/drugbank.json", + "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json", "geographic_scope": "global" }, { - "id": "pubchem", + "id": "refinitiv-lseg", "name": { - "en": "PubChem", - "zh": "PubChem化学数据库" + "en": "LSEG Data & Analytics (Refinitiv)", + "zh": "伦敦证交所数据分析(路孚特)" }, - "authority_level": "government", - "data_url": "https://pubchem.ncbi.nlm.nih.gov/", + "authority_level": "commercial", + "data_url": "https://www.lseg.com/en/data-analytics/products/workspace", "has_api": true, - "file_path": "academic/chemistry/pubchem.json", + "file_path": "sectors/K-finance-insurance/refinitiv-lseg.json", "geographic_scope": "global" } ], - "Trade": [ + "economic-development": [ { - "id": "faostat", + "id": "afrobarometer", "name": { - "en": "FAOSTAT - Food and Agriculture Data", - "zh": "粮农组织统计数据库" + "en": "Afrobarometer", + "zh": "非洲晴雨表" }, - "authority_level": "international", - "data_url": "https://www.fao.org/faostat/en/", - "has_api": true, - "file_path": "international/agriculture/faostat.json", - "geographic_scope": "global" + "authority_level": "research", + "data_url": "https://www.afrobarometer.org/data/", + "has_api": false, + "file_path": "academic/social/afrobarometer.json", + "geographic_scope": "regional" }, { - "id": "adb-data-library", + "id": "vietnam-fia", "name": { - "en": "Asian Development Bank Data Library", - "zh": "亚洲开发银行数据库" + "en": "Foreign Investment Agency - Ministry of Planning and Investment", + "zh": "越南计划投资部外国投资局" }, - "authority_level": "international", - "data_url": "https://data.adb.org", - "has_api": true, - "file_path": "international/development/adb-data-library.json", - "geographic_scope": "regional" + "authority_level": "government", + "data_url": "https://www.mpi.gov.vn/en/Pages/FDI-1637.aspx", + "has_api": false, + "file_path": "countries/asia/vietnam/vietnam-fia.json", + "geographic_scope": "national" }, { - "id": "adb-key-indicators", + "id": "caf", "name": { - "en": "Asian Development Bank Key Indicators", - "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://kidb.adb.org", - "has_api": true, - "file_path": "international/development/adb-key-indicators.json", + "data_url": "https://www.caf.com/en/", + "has_api": false, + "file_path": "international/development/caf.json", "geographic_scope": "regional" - } - ], - "Trade and Integration": [ + }, { - "id": "idb", + "id": "caribbean-development-bank", "name": { - "en": "Inter-American Development Bank", - "zh": "美洲开发银行" + "en": "Caribbean 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", + "data_url": "https://www.caribank.org/data/country-data-reports", + "has_api": false, + "file_path": "international/development/caribbean-development-bank.json", "geographic_scope": "regional" } ], - "Trading Data": [ + "economic-forecasting": [ { - "id": "cryptocurrency-data", + "id": "acad-conferenceboard", "name": { - "en": "Cryptocurrency Market Data (CoinMarketCap & CoinGecko)", - "zh": "加密货币市场数据(CoinMarketCap 和 CoinGecko)" + "en": "The Conference Board Economic Data", + "zh": "世界大型企业联合会经济数据" }, - "authority_level": "commercial", - "data_url": "https://coinmarketcap.com", - "has_api": true, - "file_path": "sectors/K-finance-insurance/cryptocurrency-data.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" } ], - "Transcriptomics": [ + "economic-growth": [ { - "id": "ena", + "id": "usaid-ddl", "name": { - "en": "European Nucleotide Archive", - "zh": "欧洲核苷酸档案库" + "en": "USAID Development Data Library", + "zh": "美国国际开发署发展数据库" }, - "authority_level": "international", - "data_url": "https://www.ebi.ac.uk/ena/browser/", + "authority_level": "government", + "data_url": "https://data.usaid.gov", "has_api": true, - "file_path": "academic/biology/ena.json", + "file_path": "countries/north-america/usa/usaid-ddl.json", "geographic_scope": "global" } ], - "Transport": [ + "economic-indicators": [ { - "id": "uk-data-gov", + "id": "kostat-cpi", "name": { - "en": "Data.gov.uk", - "zh": "英国政府开放数据平台" + "en": "Statistics Korea (KOSTAT) - Consumer Price Index", + "zh": "韩国统计局 - 消费者物价指数", + "ko": "통계청 - 소비자물가지수" }, "authority_level": "government", - "data_url": "https://www.data.gov.uk", + "data_url": "https://kosis.kr/eng/", "has_api": true, - "file_path": "countries/europe/uk/uk-data-gov.json", + "file_path": "countries/asia/kostat-cpi.json", "geographic_scope": "national" - } - ], - "Transportation": [ + }, { - "id": "us-data-gov", + "id": "uk-ons-cpi-rpi", "name": { - "en": "Data.gov", - "zh": "美国政府开放数据平台" + "en": "UK Office for National Statistics - Consumer Price Index and Retail Prices Index", + "zh": "英国国家统计局 - 消费者价格指数和零售价格指数" }, "authority_level": "government", - "data_url": "https://catalog.data.gov/dataset", + "data_url": "https://www.ons.gov.uk/economy/inflationandpriceindices", "has_api": false, - "file_path": "countries/north-america/usa/us-data-gov.json", + "file_path": "countries/europe/uk-ons-cpi-rpi.json", "geographic_scope": "national" }, { - "id": "adb-key-indicators", + "id": "canada-boc", "name": { - "en": "Asian Development Bank Key Indicators", - "zh": "亚洲开发银行关键指标" + "en": "Bank of Canada", + "zh": "加拿大银行", + "native": "Banque du Canada" }, - "authority_level": "international", - "data_url": "https://kidb.adb.org", + "authority_level": "government", + "data_url": "https://www.bankofcanada.ca/rates/", "has_api": true, - "file_path": "international/development/adb-key-indicators.json", - "geographic_scope": "regional" + "file_path": "countries/north-america/canada/canada-boc.json", + "geographic_scope": "national" }, { - "id": "caf", + "id": "akshare", "name": { - "en": "Development Bank of Latin America and the Caribbean (CAF)", - "zh": "拉美和加勒比开发银行", - "native": "Banco de Desarrollo de América Latina y El Caribe" + "en": "AkShare", + "zh": "AkShare" }, - "authority_level": "international", - "data_url": "https://www.caf.com/en/", - "has_api": false, - "file_path": "international/development/caf.json", - "geographic_scope": "regional" + "authority_level": "other", + "data_url": "https://github.com/akfamily/akshare", + "has_api": true, + "file_path": "sectors/K-finance-insurance/akshare.json", + "geographic_scope": "global" }, { - "id": "china-auto-association", + "id": "alpha-vantage", "name": { - "en": "China Association of Automobile Manufacturers", - "zh": "中国汽车工业协会" + "en": "Alpha Vantage API", + "zh": "Alpha Vantage API" }, - "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" + "authority_level": "commercial", + "data_url": "https://www.alphavantage.co/", + "has_api": true, + "file_path": "sectors/K-finance-insurance/alpha-vantage.json", + "geographic_scope": "global" } ], - "Tuberculosis": [ + "economic-policy": [ { - "id": "us-cdc", + "id": "china-drcnet", "name": { - "en": "CDC Data & Statistics", - "zh": "美国疾控中心数据与统计" + "en": "DRCNET - Development Research Center Network", + "zh": "国研网" }, - "authority_level": "government", - "data_url": "https://data.cdc.gov/", - "has_api": true, - "file_path": "countries/north-america/usa/us-cdc.json", + "authority_level": "research", + "data_url": "https://www.drcnet.com.cn", + "has_api": false, + "file_path": "china/economy/macro/china-drcnet.json", "geographic_scope": "national" } ], - "Unemployment": [ + "economic-statistics": [ { - "id": "us-bls", + "id": "dosm", "name": { - "en": "Bureau of Labor Statistics", - "zh": "美国劳工统计局" + "en": "Department of Statistics Malaysia", + "zh": "马来西亚统计局" }, "authority_level": "government", - "data_url": "https://www.bls.gov/data/", + "data_url": "https://open.dosm.gov.my/", "has_api": true, - "file_path": "countries/north-america/usa/us-bls.json", + "file_path": "countries/asia/dosm.json", "geographic_scope": "national" - } - ], - "University Rankings": [ + }, { - "id": "arwu", + "id": "fia-fdi", "name": { - "en": "Academic Ranking of World Universities", - "zh": "世界大学学术排名" + "en": "Foreign Investment Agency - FDI Statistics", + "zh": "越南外国投资局 - FDI统计数据" }, - "authority_level": "research", - "data_url": "https://www.shanghairanking.com/rankings/arwu/2025", + "authority_level": "government", + "data_url": "https://www.mpi.gov.vn/en/Pages/FDI-1637.aspx", "has_api": false, - "file_path": "sectors/P-education/arwu.json", - "geographic_scope": "global" + "file_path": "countries/asia/vietnam/fia-fdi.json", + "geographic_scope": "national" }, { - "id": "qs-world-university-rankings", + "id": "vietnam-mof", "name": { - "en": "QS World University Rankings", - "zh": "QS世界大学排名" + "en": "Ministry of Finance of Vietnam", + "zh": "越南财政部" }, - "authority_level": "market", - "data_url": "https://www.topuniversities.com/world-university-rankings", + "authority_level": "government", + "data_url": "https://www.mof.gov.vn/webcenter/portal/btcen/pages_r/m/statistics", "has_api": false, - "file_path": "sectors/P-education/qs-world-university-rankings.json", - "geographic_scope": "global" - } - ], - "Urban Development": [ + "file_path": "countries/asia/vietnam/vietnam-mof.json", + "geographic_scope": "national" + }, { - "id": "caf", + "id": "afdb", "name": { - "en": "Development Bank of Latin America and the Caribbean (CAF)", - "zh": "拉美和加勒比开发银行", - "native": "Banco de Desarrollo de América Latina y El Caribe" + "en": "African Development Bank", + "zh": "非洲开发银行" }, "authority_level": "international", - "data_url": "https://www.caf.com/en/", - "has_api": false, - "file_path": "international/development/caf.json", + "data_url": "https://www.afdb.org/en/knowledge/statistics", + "has_api": true, + "file_path": "international/development/afdb.json", "geographic_scope": "regional" } ], - "Vaccine Safety": [ + "economic-surveys": [ { - "id": "us-cdc", + "id": "boj-statistics", "name": { - "en": "CDC Data & Statistics", - "zh": "美国疾控中心数据与统计" + "en": "Bank of Japan Statistics", + "zh": "日本银行统计数据", + "native": "日本銀行統計" }, "authority_level": "government", - "data_url": "https://data.cdc.gov/", - "has_api": true, - "file_path": "countries/north-america/usa/us-cdc.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" } ], - "Vector-Borne Diseases": [ + "economics": [ { - "id": "ecdc-surveillance", + "id": "acad-conferenceboard", "name": { - "en": "ECDC Surveillance Data", - "zh": "欧洲疾病预防控制中心监测数据" + "en": "The Conference Board Economic Data", + "zh": "世界大型企业联合会经济数据" }, - "authority_level": "international", - "data_url": "https://www.ecdc.europa.eu/en/data-dashboards-and-databases", + "authority_level": "research", + "data_url": "https://www.conference-board.org/topics/economic-data-analysis", "has_api": false, - "file_path": "international/health/ecdc-surveillance.json", - "geographic_scope": "regional" - } - ], - "Veterinary Drug Residues": [ + "file_path": "academic/economics/conference-board.json", + "geographic_scope": "global" + }, { - "id": "codex-alimentarius", + "id": "ggdc-databases", "name": { - "en": "Codex Alimentarius Standards", - "zh": "国际食品法典委员会标准" + "en": "Groningen Growth and Development Centre (GGDC) Databases", + "zh": "格罗宁根增长与发展中心数据库" }, - "authority_level": "international", - "data_url": "https://www.fao.org/fao-who-codexalimentarius/codex-texts/all-standards/en/", + "authority_level": "research", + "data_url": "https://www.rug.nl/ggdc/", "has_api": false, - "file_path": "international/standards-metrology/codex-alimentarius.json", + "file_path": "academic/economics/ggdc-databases.json", "geographic_scope": "global" - } - ], - "Vital Statistics": [ - { - "id": "us-cdc", - "name": { - "en": "CDC Data & Statistics", - "zh": "美国疾控中心数据与统计" - }, - "authority_level": "government", - "data_url": "https://data.cdc.gov/", - "has_api": true, - "file_path": "countries/north-america/usa/us-cdc.json", - "geographic_scope": "national" - } - ], - "Wages": [ - { - "id": "us-bls", - "name": { - "en": "Bureau of Labor Statistics", - "zh": "美国劳工统计局" - }, - "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" - } - ], - "Waste Management": [ + }, { - "id": "basel-convention", + "id": "nber-data", "name": { - "en": "Basel Convention Data", - "zh": "巴塞尔公约数据" + "en": "NBER Data Library", + "zh": "国家经济研究局数据库", + "native": "NBER Data Library" }, - "authority_level": "international", - "data_url": "https://www.basel.int", + "authority_level": "research", + "data_url": "https://www.nber.org", "has_api": false, - "file_path": "international/environment/basel-convention.json", + "file_path": "academic/economics/nber.json", "geographic_scope": "global" - } - ], - "Water Resources": [ + }, { - "id": "caf", + "id": "penn-world-table", "name": { - "en": "Development Bank of Latin America and the Caribbean (CAF)", - "zh": "拉美和加勒比开发银行", - "native": "Banco de Desarrollo de América Latina y El Caribe" + "en": "Penn World Table", + "zh": "宾州世界表" }, - "authority_level": "international", - "data_url": "https://www.caf.com/en/", + "authority_level": "research", + "data_url": "https://www.rug.nl/ggdc/productivity/pwt/", "has_api": false, - "file_path": "international/development/caf.json", - "geographic_scope": "regional" - } - ], - "Water Resources Management": [ + "file_path": "academic/economics/penn-world-table.json", + "geographic_scope": "global" + }, { - "id": "cgiar-research-data", + "id": "world-inequality-database", "name": { - "en": "CGIAR Research Data", - "zh": "国际农业研究磋商组织研究数据" + "en": "World Inequality Database (WID.world)", + "zh": "世界不平等数据库" }, - "authority_level": "international", - "data_url": "https://gardian.cgiar.org/", + "authority_level": "research", + "data_url": "https://wid.world/", "has_api": true, - "file_path": "international/agriculture/cgiar-research-data.json", + "file_path": "academic/economics/world-inequality-database.json", "geographic_scope": "global" - } - ], - "Web Analytics": [ + }, { - "id": "common-crawl", + "id": "owid", "name": { - "en": "Common Crawl", - "zh": "Common Crawl 网络爬取数据" + "en": "Our World in Data", + "zh": "用数据看世界" }, "authority_level": "research", - "data_url": "https://commoncrawl.org", + "data_url": "https://github.com/owid/owid-datasets", "has_api": true, - "file_path": "sectors/J-information-communication/common-crawl.json", + "file_path": "academic/multidisciplinary/owid.json", "geographic_scope": "global" - } - ], - "Web Crawling": [ + }, { - "id": "common-crawl", + "id": "china-beike-research", "name": { - "en": "Common Crawl", - "zh": "Common Crawl 网络爬取数据" + "en": "Beike Research Institute", + "zh": "贝壳研究院" }, - "authority_level": "research", - "data_url": "https://commoncrawl.org", - "has_api": true, - "file_path": "sectors/J-information-communication/common-crawl.json", - "geographic_scope": "global" - } - ], - "Welfare": [ + "authority_level": "market", + "data_url": "https://research.ke.com", + "has_api": false, + "file_path": "china/construction/china-beike-research.json", + "geographic_scope": "national" + }, { - "id": "aus-aihw", + "id": "china-ccia", "name": { - "en": "Australian Institute of Health and Welfare", - "zh": "澳大利亚健康与福利研究所" + "en": "China Construction Industry Association", + "zh": "中国建筑业协会" }, - "authority_level": "government", - "data_url": "https://www.aihw.gov.au/", - "has_api": true, - "file_path": "countries/oceania/australia/aihw.json", + "authority_level": "other", + "data_url": "http://www.zgjzy.org.cn/newsList/11/1.html", + "has_api": false, + "file_path": "china/construction/china-ccia.json", "geographic_scope": "national" - } - ], - "Wildlife Conservation": [ + }, { - "id": "cites-trade-database", + "id": "china-cih-index", "name": { - "en": "CITES Trade Database", - "zh": "濒危物种国际贸易公约贸易数据库" + "en": "China Index Academy (CIH Cloud)", + "zh": "中指研究院(中指云)" }, - "authority_level": "international", - "data_url": "https://trade.cites.org", + "authority_level": "research", + "data_url": "https://www.cih-index.com", "has_api": false, - "file_path": "international/environment/cites-trade-database.json", - "geographic_scope": "global" - } - ], - "Workplace Safety": [ + "file_path": "china/construction/china-cih-index.json", + "geographic_scope": "national" + }, { - "id": "us-bls", + "id": "china-agri", "name": { - "en": "Bureau of Labor Statistics", - "zh": "美国劳工统计局" + "en": "China Agricultural and Rural Information Network", + "zh": "中国农业农村信息网" }, "authority_level": "government", - "data_url": "https://www.bls.gov/data/", - "has_api": true, - "file_path": "countries/north-america/usa/us-bls.json", + "data_url": "https://www.agri.cn/", + "has_api": false, + "file_path": "china/economy/agriculture/china-agri.json", "geographic_scope": "national" - } - ], - "Youth Development": [ + }, { - "id": "afrobarometer", + "id": "china-cfeed", "name": { - "en": "Afrobarometer", - "zh": "非洲晴雨表" + "en": "China Feed Industry Association", + "zh": "中国饲料工业协会" }, - "authority_level": "research", - "data_url": "https://www.afrobarometer.org/data/", + "authority_level": "other", + "data_url": "https://www.chinafeed.org.cn/hyfx/", "has_api": false, - "file_path": "academic/social/afrobarometer.json", - "geographic_scope": "regional" - } - ], - "academic-degrees": [ + "file_path": "china/economy/agriculture/china-cfeed.json", + "geographic_scope": "national" + }, { - "id": "cdgdc", + "id": "china-cofco", "name": { - "en": "China Academic Degrees & Graduate Education Development Center", - "zh": "教育部学位与研究生教育发展中心" + "en": "COFCO Corporation", + "zh": "中粮集团有限公司" }, "authority_level": "government", - "data_url": "https://www.chinadegrees.cn/", + "data_url": "https://www.cofco.com", "has_api": false, - "file_path": "china/education/higher_education/cdgdc.json", - "geographic_scope": "national" - } - ], - "admissions": [ + "file_path": "china/economy/agriculture/china-cofco.json", + "geographic_scope": "global" + }, { - "id": "moe-gaokao", + "id": "china-moa", "name": { - "en": "Sunshine Gaokao Platform", - "zh": "阳光高考信息平台" + "en": "Ministry of Agriculture and Rural Affairs of China - Agricultural Statistics", + "zh": "中华人民共和国农业农村部农业统计" }, "authority_level": "government", - "data_url": "https://gaokao.chsi.com.cn/", + "data_url": "https://www.moa.gov.cn/nybgb/", "has_api": false, - "file_path": "china/education/moe-gaokao.json", + "file_path": "china/economy/agriculture/china-moa.json", "geographic_scope": "national" - } - ], - "agriculture": [ + }, { - "id": "china-nbs", + "id": "china-nfsra", "name": { - "en": "National Bureau of Statistics of China", - "zh": "国家统计局", - "native": "国家统计局" + "en": "National Food and Strategic Reserves Administration of China", + "zh": "国家粮食和物资储备局" }, "authority_level": "government", - "data_url": "https://www.stats.gov.cn/sj/", - "has_api": true, - "file_path": "china/national/nbs.json", + "data_url": "https://lswz.gov.cn/html/xwzx/sjfb/index.html", + "has_api": false, + "file_path": "china/economy/agriculture/china-nfsra.json", "geographic_scope": "national" }, { - "id": "china-sac-standards", + "id": "china-sinograin", "name": { - "en": "Standardization Administration of China (SAC)", - "zh": "国家标准化管理委员会" + "en": "Sinograin - China Grain Reserves Corporation", + "zh": "中国储备粮管理集团有限公司" }, "authority_level": "government", - "data_url": "https://std.samr.gov.cn/", + "data_url": "https://www.sinograin.com.cn", "has_api": false, - "file_path": "china/technology/standards/china-sac-standards.json", + "file_path": "china/economy/agriculture/china-sinograin.json", "geographic_scope": "national" }, { - "id": "canada-statcan", + "id": "china-acfic", "name": { - "en": "Statistics Canada", - "zh": "加拿大统计局", - "native": "Statistique Canada" + "en": "All-China Federation of Industry and Commerce", + "zh": "中华全国工商业联合会" }, - "authority_level": "government", - "data_url": "https://www.statcan.gc.ca/en/start", - "has_api": true, - "file_path": "countries/north-america/canada/statcan.json", + "authority_level": "other", + "data_url": "https://www.acfic.org.cn/myjjsj/", + "has_api": false, + "file_path": "china/economy/china-acfic.json", "geographic_scope": "national" }, { - "id": "australia-abs", + "id": "china-caac", "name": { - "en": "Australian Bureau of Statistics", - "zh": "澳大利亚统计局" + "en": "Civil Aviation Administration of China", + "zh": "中国民用航空局", + "native": "中国民用航空局" }, "authority_level": "government", - "data_url": "https://www.abs.gov.au", - "has_api": true, - "file_path": "countries/oceania/australia/abs.json", + "data_url": "https://www.caac.gov.cn/XXGK/XXGK/TJSJ/index.html", + "has_api": false, + "file_path": "china/economy/china-caac.json", "geographic_scope": "national" }, { - "id": "brazil-cecafe", + "id": "china-cada", "name": { - "en": "Brazilian Coffee Exporters Council", - "zh": "巴西咖啡出口商协会" + "en": "China Automobile Dealers Association", + "zh": "中国汽车流通协会" }, - "authority_level": "market", - "data_url": "https://www.cecafe.com.br/publicacoes/relatorio-de-exportacoes/", + "authority_level": "other", + "data_url": "http://data.cada.cn/main/overview.do", "has_api": false, - "file_path": "countries/south-america/brazil-cecafe.json", + "file_path": "china/economy/china-cada.json", "geographic_scope": "national" }, { - "id": "brazil-conab", + "id": "china-mct", "name": { - "en": "National Supply Company (CONAB)", - "zh": "巴西国家商品供应公司" + "en": "Ministry of Culture and Tourism of China", + "zh": "中华人民共和国文化和旅游部", + "native": "中华人民共和国文化和旅游部" }, "authority_level": "government", - "data_url": "https://www.gov.br/conab/pt-br/atuacao/informacoes-agropecuarias/safras/safra-de-cafe", + "data_url": "https://www.mct.gov.cn/zwgk/tjsj/", "has_api": false, - "file_path": "countries/south-america/brazil-conab.json", + "file_path": "china/economy/china-mct.json", "geographic_scope": "national" }, { - "id": "brazil-ibge", + "id": "china-miit-sme", "name": { - "en": "Brazilian Institute of Geography and Statistics", - "zh": "巴西地理统计局" + "en": "China Center for Promotion of SME Development (MIIT)", + "zh": "中国中小企业发展促进中心(工业和信息化部中小企业发展促进中心)" }, "authority_level": "government", - "data_url": "https://www.ibge.gov.br/en/indicators", - "has_api": true, - "file_path": "countries/south-america/brazil-ibge.json", + "data_url": "https://www.chinasme.org.cn/html/mcms/daohang/tongzhigonggao/index.html", + "has_api": false, + "file_path": "china/economy/china-miit-sme.json", "geographic_scope": "national" }, { - "id": "afdb-statistics", + "id": "china-cansi", "name": { - "en": "African Development Bank Statistics", - "zh": "非洲开发银行统计数据" + "en": "China Association of the National Shipbuilding Industry", + "zh": "中国船舶工业行业协会" }, - "authority_level": "international", - "data_url": "https://dataportal.opendataforafrica.org", - "has_api": true, - "file_path": "international/development/afdb-statistics.json", - "geographic_scope": "regional" - } - ], - "artificial-intelligence": [ + "authority_level": "other", + "data_url": "https://www.cansi.org.cn/cms/document/show/43.html", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cansi.json", + "geographic_scope": "national" + }, { - "id": "china-caict", + "id": "china-cantonfair", "name": { - "en": "China Academy of Information and Communications Technology", - "zh": "中国信息通信研究院" + "en": "China Import and Export Fair (Canton Fair)", + "zh": "中国进出口商品交易会(广交会)" }, - "authority_level": "research", - "data_url": "http://www.caict.ac.cn/kxyj/qwfb/", + "authority_level": "government", + "data_url": "https://www.cantonfair.org.cn", "has_api": false, - "file_path": "china/research/china-caict.json", + "file_path": "china/economy/industry_associations/china-cantonfair.json", "geographic_scope": "national" - } - ], - "atmosphere": [ + }, { - "id": "copernicus-open-access-hub", + "id": "china-cbea", "name": { - "en": "Copernicus Open Access Hub", - "zh": "哥白尼开放访问中心" + "en": "China Beverage Association", + "zh": "中国饮料工业协会" }, - "authority_level": "international", - "data_url": "https://dataspace.copernicus.eu/", - "has_api": true, - "file_path": "academic/environment/copernicus-open-access-hub.json", - "geographic_scope": "global" + "authority_level": "other", + "data_url": "https://www.chinabeverage.org", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cbea.json", + "geographic_scope": "national" }, { - "id": "bureau-of-meteorology", + "id": "china-cbmf", "name": { - "en": "Bureau of Meteorology", - "zh": "澳大利亚气象局" + "en": "China Building Materials Federation", + "zh": "中国建筑材料联合会" }, - "authority_level": "government", - "data_url": "https://www.bom.gov.au", - "has_api": true, - "file_path": "countries/oceania/australia/bureau-of-meteorology.json", + "authority_level": "other", + "data_url": "https://www.cbmf.org/yxjc/", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cbmf.json", "geographic_scope": "national" }, { - "id": "nasa-earthdata", + "id": "china-ccfa", "name": { - "en": "NASA Earthdata", - "zh": "NASA地球数据" + "en": "China Chemical Fiber Industry Association", + "zh": "中国化学纤维工业协会" }, - "authority_level": "government", - "data_url": "https://www.earthdata.nasa.gov", - "has_api": true, - "file_path": "international/earth-science/nasa-earthdata.json", - "geographic_scope": "global" - } - ], - "atmospheric_science": [ + "authority_level": "other", + "data_url": "https://www.ccfa.com.cn/19/index.html", + "has_api": false, + "file_path": "china/economy/industry_associations/china-ccfa.json", + "geographic_scope": "national" + }, { - "id": "noaa-cdo", + "id": "china-cheaa", "name": { - "en": "NOAA Climate Data Online (CDO)", - "zh": "NOAA气候数据在线系统" + "en": "China Household Electrical Appliances Association", + "zh": "中国家用电器协会" }, - "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" - } - ], - "automotive": [ + "authority_level": "other", + "data_url": "https://www.cheaa.org/channels/116.html", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cheaa.json", + "geographic_scope": "national" + }, { - "id": "china-charging-alliance", + "id": "china-cnea", "name": { - "en": "China Electric Vehicle Charging Infrastructure Promotion Alliance", - "zh": "中国电动汽车充电基础设施促进联盟" + "en": "China Nuclear Energy Association", + "zh": "中国核能行业协会" }, - "authority_level": "market", - "data_url": "https://evcipa.com/dataCenter/dataList", + "authority_level": "other", + "data_url": "https://www.china-nea.cn/", "has_api": false, - "file_path": "sectors/C-manufacturing/automotive/china-charging-alliance.json", + "file_path": "china/economy/industry_associations/china-cnea.json", "geographic_scope": "national" - } - ], - "aviation": [ + }, { - "id": "icao-aviation-data", + "id": "china-cria", "name": { - "en": "ICAO Aviation Data", - "zh": "国际民航组织航空数据" + "en": "China Rubber Industry Association", + "zh": "中国橡胶工业协会" }, - "authority_level": "international", - "data_url": "https://dataservices.icao.int/", - "has_api": true, - "file_path": "international/transportation/icao-aviation-data.json", - "geographic_scope": "global" - } - ], - "balance_of_payments": [ + "authority_level": "other", + "data_url": "https://www.cria.org.cn/c/id/1760910256413655041", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cria.json", + "geographic_scope": "national" + }, { - "id": "korea-bok", + "id": "china-acftu", "name": { - "en": "Bank of Korea", - "zh": "韩国银行", - "native": "한국은행" + "en": "All-China Federation of Trade Unions", + "zh": "中华全国总工会" }, "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", + "data_url": "https://www.acftu.org", + "has_api": false, + "file_path": "china/economy/labor/china-acftu.json", "geographic_scope": "national" }, { - "id": "mx-banxico", + "id": "china-mohrss", "name": { - "en": "Bank of Mexico Economic Information System", - "zh": "墨西哥银行经济信息系统", - "native": "Sistema de Información Económica - Banco de México" + "en": "Ministry of Human Resources and Social Security of China - Employment and Social Security Statistics", + "zh": "人力资源和社会保障部统计数据" }, "authority_level": "government", - "data_url": "https://www.banxico.org.mx", - "has_api": true, - "file_path": "countries/north-america/mexico/banxico.json", + "data_url": "https://www.mohrss.gov.cn/SYrlzyhshbzb/zwgk/szrs/", + "has_api": false, + "file_path": "china/economy/labor/china-mohrss.json", "geographic_scope": "national" - } - ], - "banking": [ + }, { - "id": "china-nfra", + "id": "china-cei", "name": { - "en": "National Financial Regulatory Administration", - "zh": "国家金融监督管理总局", - "native": "国家金融监督管理总局" + "en": "China Economic Information Service", + "zh": "中国经济信息社" }, - "authority_level": "government", - "data_url": "https://www.nfra.gov.cn/cn/view/pages/tongjishuju/tongjishuju.html", + "authority_level": "commercial", + "data_url": "https://www.cei.cn/category/", "has_api": false, - "file_path": "china/finance/banking/nfra.json", + "file_path": "china/economy/macro/china-cei.json", "geographic_scope": "national" }, { - "id": "canada-boc", + "id": "china-ndrc-computing", "name": { - "en": "Bank of Canada", - "zh": "加拿大银行", - "native": "Banque du Canada" + "en": "NDRC East-to-West Computing Resources Project", + "zh": "国家发展改革委东数西算工程" }, "authority_level": "government", - "data_url": "https://www.bankofcanada.ca/rates/", - "has_api": true, - "file_path": "countries/north-america/canada/canada-boc.json", + "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": "mx-banxico", + "id": "china-sasac", "name": { - "en": "Bank of Mexico Economic Information System", - "zh": "墨西哥银行经济信息系统", - "native": "Sistema de Información Económica - Banco de México" + "en": "State-owned Assets Supervision and Administration Commission of the State Council", + "zh": "国务院国有资产监督管理委员会" }, "authority_level": "government", - "data_url": "https://www.banxico.org.mx", - "has_api": true, - "file_path": "countries/north-america/mexico/banxico.json", + "data_url": "https://www.sasac.gov.cn/n2588030/index.html", + "has_api": false, + "file_path": "china/economy/macro/china-sasac.json", "geographic_scope": "national" }, { - "id": "icc-trade-register", + "id": "china-shenzhen-drc", "name": { - "en": "ICC Trade Register", - "zh": "国际商会贸易统计" + "en": "Shenzhen Municipal Development and Reform Commission", + "zh": "深圳市发展和改革委员会" }, - "authority_level": "international", - "data_url": "https://iccwbo.org/news-publications/policies-reports/icc-trade-register-report/", + "authority_level": "government", + "data_url": "http://fgw.sz.gov.cn/zwgk/", "has_api": false, - "file_path": "international/trade/icc-trade-register.json", - "geographic_scope": "global" - } - ], - "banking_statistics": [ + "file_path": "china/economy/macro/china-shenzhen-drc.json", + "geographic_scope": "subnational" + }, { - "id": "korea-bok", + "id": "china-sic", "name": { - "en": "Bank of Korea", - "zh": "韩国银行", - "native": "한국은행" + "en": "State Information Center of China", + "zh": "国家信息中心" }, "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", + "data_url": "https://www.sic.gov.cn/", + "has_api": false, + "file_path": "china/economy/macro/china-sic.json", "geographic_scope": "national" - } - ], - "basic-education": [ + }, { - "id": "moe-china", + "id": "china-ndrc", "name": { - "en": "Ministry of Education of the People's Republic of China", - "zh": "中华人民共和国教育部" + "en": "National Development and Reform Commission", + "zh": "国家发展和改革委员会", + "native": "国家发展和改革委员会" }, "authority_level": "government", - "data_url": "http://www.moe.gov.cn/jyb_xxgk/xxgk/neirong/tongji/", + "data_url": "https://www.ndrc.gov.cn/fgsj/", "has_api": false, - "file_path": "china/education/moe-china.json", + "file_path": "china/economy/macro/ndrc.json", "geographic_scope": "national" - } - ], - "bioinformatics": [ + }, { - "id": "1000-genomes", + "id": "china-cgcc", "name": { - "en": "1000 Genomes Project", - "zh": "千人基因组计划" + "en": "China General Chamber of Commerce", + "zh": "中国商业联合会" }, - "authority_level": "research", - "data_url": "https://www.internationalgenome.org/", + "authority_level": "other", + "data_url": "https://www.cgcc.org.cn/hyfz/zglsyfzzs/", "has_api": false, - "file_path": "academic/biology/1000-genomes.json", - "geographic_scope": "global" + "file_path": "china/economy/market/china-cgcc.json", + "geographic_scope": "national" }, { - "id": "tcga", + "id": "china-samr", "name": { - "en": "The Cancer Genome Atlas (TCGA)", - "zh": "癌症基因组图谱" + "en": "State Administration for Market Regulation", + "zh": "国家市场监督管理总局", + "native": "国家市场监督管理总局" }, "authority_level": "government", - "data_url": "https://portal.gdc.cancer.gov/", - "has_api": true, - "file_path": "academic/health/tcga.json", + "data_url": "https://www.samr.gov.cn/zw/sj/sjzx/", + "has_api": false, + "file_path": "china/economy/market/china-samr.json", "geographic_scope": "national" - } - ], - "biomarkers": [ + }, { - "id": "uk-biobank", + "id": "china-ah-stats", "name": { - "en": "UK Biobank", - "zh": "英国生物样本库" + "en": "Anhui Bureau of Statistics", + "zh": "安徽省统计局" }, - "authority_level": "research", - "data_url": "https://www.ukbiobank.ac.uk/", - "has_api": true, - "file_path": "academic/biology/uk-biobank.json", - "geographic_scope": "national" - } - ], - "biomedical": [ + "authority_level": "government", + "data_url": "https://tjj.ah.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-ah-stats.json", + "geographic_scope": "subnational" + }, { - "id": "pubmed", + "id": "china-beijing-stats", "name": { - "en": "PubMed", - "zh": "PubMed生物医学文献数据库" + "en": "Beijing Bureau of Statistics", + "zh": "北京市统计局" }, "authority_level": "government", - "data_url": "https://pubmed.ncbi.nlm.nih.gov/", - "has_api": true, - "file_path": "academic/health/pubmed.json", - "geographic_scope": "global" - } - ], - "biomedical research": [ + "data_url": "https://tjj.beijing.gov.cn/tjsj_31433/", + "has_api": false, + "file_path": "china/economy/provincial/china-beijing-stats.json", + "geographic_scope": "subnational" + }, { - "id": "tcga", + "id": "china-chengdu-stats", "name": { - "en": "The Cancer Genome Atlas (TCGA)", - "zh": "癌症基因组图谱" + "en": "Chengdu Bureau of Statistics", + "zh": "成都市统计局" }, "authority_level": "government", - "data_url": "https://portal.gdc.cancer.gov/", - "has_api": true, - "file_path": "academic/health/tcga.json", - "geographic_scope": "national" - } - ], - "biosphere": [ + "data_url": "http://cdstats.chengdu.gov.cn/", + "has_api": false, + "file_path": "china/economy/provincial/china-chengdu-stats.json", + "geographic_scope": "subnational" + }, { - "id": "nasa-earthdata", + "id": "china-cq-stats", "name": { - "en": "NASA Earthdata", - "zh": "NASA地球数据" + "en": "Chongqing Bureau of Statistics", + "zh": "重庆市统计局" }, "authority_level": "government", - "data_url": "https://www.earthdata.nasa.gov", - "has_api": true, - "file_path": "international/earth-science/nasa-earthdata.json", - "geographic_scope": "global" - } - ], - "business": [ + "data_url": "https://tjj.cq.gov.cn/zwgk_233040/zfxxgkml/tjxx/", + "has_api": false, + "file_path": "china/economy/provincial/china-cq-stats.json", + "geographic_scope": "subnational" + }, { - "id": "canada-statcan", + "id": "china-fj-stats", "name": { - "en": "Statistics Canada", - "zh": "加拿大统计局", - "native": "Statistique Canada" + "en": "Fujian Bureau of Statistics", + "zh": "福建省统计局" }, "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" + "data_url": "https://tjj.fujian.gov.cn/xxgk/tjxx/", + "has_api": false, + "file_path": "china/economy/provincial/china-fj-stats.json", + "geographic_scope": "subnational" }, { - "id": "usa-census-bureau", + "id": "china-fuzhou-stats", "name": { - "en": "United States Census Bureau", - "zh": "美国人口普查局" + "en": "Fuzhou Bureau of Statistics", + "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" + "data_url": "https://tjj.fuzhou.gov.cn", + "has_api": false, + "file_path": "china/economy/provincial/china-fuzhou-stats.json", + "geographic_scope": "subnational" }, { - "id": "australia-abs", + "id": "china-gd-stats", "name": { - "en": "Australian Bureau of Statistics", - "zh": "澳大利亚统计局" + "en": "Guangdong 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": [ + "data_url": "https://stats.gd.gov.cn/tjsj186/index.html", + "has_api": false, + "file_path": "china/economy/provincial/china-gd-stats.json", + "geographic_scope": "subnational" + }, { - "id": "korea-bok", + "id": "china-gs-stats", "name": { - "en": "Bank of Korea", - "zh": "韩国银行", - "native": "한국은행" + "en": "Gansu Bureau of Statistics", + "zh": "甘肃省统计局" }, "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", - "geographic_scope": "national" - } - ], - "cancer genomics": [ + "data_url": "https://tjj.gansu.gov.cn/tjj/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-gs-stats.json", + "geographic_scope": "subnational" + }, { - "id": "tcga", + "id": "china-gx-stats", "name": { - "en": "The Cancer Genome Atlas (TCGA)", - "zh": "癌症基因组图谱" + "en": "Guangxi Bureau of Statistics", + "zh": "广西壮族自治区统计局" }, "authority_level": "government", - "data_url": "https://portal.gdc.cancer.gov/", - "has_api": true, - "file_path": "academic/health/tcga.json", - "geographic_scope": "national" - } - ], - "capital_markets": [ + "data_url": "https://tjj.gxzf.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-gx-stats.json", + "geographic_scope": "subnational" + }, { - "id": "china-csrc", + "id": "china-gz-stats", "name": { - "en": "China Securities Regulatory Commission", - "zh": "中国证券监督管理委员会", - "native": "中国证券监督管理委员会" + "en": "Guizhou Bureau of Statistics", + "zh": "贵州省统计局" }, "authority_level": "government", - "data_url": "https://www.csrc.gov.cn/csrc/c100103/common_list.shtml", + "data_url": "https://stjj.guizhou.gov.cn/tjsj/", "has_api": false, - "file_path": "china/finance/securities/csrc.json", - "geographic_scope": "national" + "file_path": "china/economy/provincial/china-gz-stats.json", + "geographic_scope": "subnational" }, { - "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, - "file_path": "china/finance/securities/hkex.json", - "geographic_scope": "regional" - } - ], - "cartography": [ - { - "id": "brazil-ibge", + "id": "china-ha-stats", "name": { - "en": "Brazilian Institute of Geography and Statistics", - "zh": "巴西地理统计局" + "en": "Henan Bureau of 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" - } - ], - "census": [ + "data_url": "https://tjj.henan.gov.cn/tjfw/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-ha-stats.json", + "geographic_scope": "subnational" + }, { - "id": "brazil-ibge", + "id": "china-hb-stats", "name": { - "en": "Brazilian Institute of Geography and Statistics", - "zh": "巴西地理统计局" + "en": "Hubei Bureau of 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" - } - ], - "climate": [ + "data_url": "https://tjj.hubei.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-hb-stats.json", + "geographic_scope": "subnational" + }, { - "id": "copernicus-open-access-hub", + "id": "china-heb-stats", "name": { - "en": "Copernicus Open Access Hub", - "zh": "哥白尼开放访问中心" + "en": "Hebei Bureau of Statistics", + "zh": "河北省统计局" }, - "authority_level": "international", - "data_url": "https://dataspace.copernicus.eu/", - "has_api": true, - "file_path": "academic/environment/copernicus-open-access-hub.json", - "geographic_scope": "global" + "authority_level": "government", + "data_url": "https://tjj.hebei.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-heb-stats.json", + "geographic_scope": "subnational" }, { - "id": "noaa-cdo", + "id": "china-hi-stats", "name": { - "en": "NOAA Climate Data Online (CDO)", - "zh": "NOAA气候数据在线系统" + "en": "Hainan Bureau of Statistics", + "zh": "海南省统计局" }, "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" + "data_url": "https://stats.hainan.gov.cn/hntjj/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-hi-stats.json", + "geographic_scope": "subnational" }, { - "id": "bureau-of-meteorology", + "id": "china-hlj-stats", "name": { - "en": "Bureau of Meteorology", - "zh": "澳大利亚气象局" + "en": "Heilongjiang Bureau of Statistics", + "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" + "data_url": "https://tjj.hlj.gov.cn/tjj/c106777/common_zfxxgk.shtml?tab=tjxx", + "has_api": false, + "file_path": "china/economy/provincial/china-hlj-stats.json", + "geographic_scope": "subnational" }, { - "id": "nasa-earthdata", + "id": "china-hn-stats", "name": { - "en": "NASA Earthdata", - "zh": "NASA地球数据" + "en": "Hunan Bureau of Statistics", + "zh": "湖南省统计局" }, "authority_level": "government", - "data_url": "https://www.earthdata.nasa.gov", - "has_api": true, - "file_path": "international/earth-science/nasa-earthdata.json", - "geographic_scope": "global" + "data_url": "https://tjj.hunan.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-hn-stats.json", + "geographic_scope": "subnational" }, { - "id": "iea-energy-data", + "id": "china-jl-stats", "name": { - "en": "IEA Energy Data", - "zh": "国际能源署能源数据", - "native": "IEA Energy Data" + "en": "Jilin Bureau of Statistics", + "zh": "吉林省统计局" }, - "authority_level": "international", - "data_url": "https://www.iea.org/data-and-statistics", - "has_api": true, - "file_path": "international/energy/iea.json", - "geographic_scope": "global" - } - ], - "clinical_research": [ + "authority_level": "government", + "data_url": "https://tjj.jl.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-jl-stats.json", + "geographic_scope": "subnational" + }, { - "id": "clinicaltrials-gov", + "id": "china-js-stats", "name": { - "en": "ClinicalTrials.gov", - "zh": "临床试验注册数据库" + "en": "Jiangsu Bureau of Statistics", + "zh": "江苏省统计局" }, "authority_level": "government", - "data_url": "https://clinicaltrials.gov/", - "has_api": true, - "file_path": "academic/health/clinicaltrials-gov.json", - "geographic_scope": "global" - } - ], - "cloud-computing": [ + "data_url": "https://tj.jiangsu.gov.cn/col/col85273/index.html", + "has_api": false, + "file_path": "china/economy/provincial/china-js-stats.json", + "geographic_scope": "subnational" + }, { - "id": "china-caict", + "id": "china-jx-stats", "name": { - "en": "China Academy of Information and Communications Technology", - "zh": "中国信息通信研究院" + "en": "Jiangxi Bureau of Statistics", + "zh": "江西省统计局" }, - "authority_level": "research", - "data_url": "http://www.caict.ac.cn/kxyj/qwfb/", + "authority_level": "government", + "data_url": "https://tjj.jiangxi.gov.cn/jxstjj/col/col40939/index.html", "has_api": false, - "file_path": "china/research/china-caict.json", - "geographic_scope": "national" - } - ], - "coal": [ + "file_path": "china/economy/provincial/china-jx-stats.json", + "geographic_scope": "subnational" + }, { - "id": "usa-eia", + "id": "china-ln-stats", "name": { - "en": "U.S. Energy Information Administration", - "zh": "美国能源信息署" + "en": "Liaoning Bureau of Statistics", + "zh": "辽宁省统计局" }, "authority_level": "government", - "data_url": "https://www.eia.gov", - "has_api": true, - "file_path": "countries/north-america/usa/eia.json", - "geographic_scope": "national" - } - ], - "commerce": [ + "data_url": "https://tjj.ln.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-ln-stats.json", + "geographic_scope": "subnational" + }, { - "id": "china-mofcom", + "id": "china-nanchang-stats", "name": { - "en": "Ministry of Commerce of China", - "zh": "中华人民共和国商务部", - "native": "中华人民共和国商务部" + "en": "Nanchang Bureau of Statistics", + "zh": "南昌市统计局" }, "authority_level": "government", - "data_url": "https://data.mofcom.gov.cn", + "data_url": "http://tjj.nc.gov.cn/tjsj/", "has_api": false, - "file_path": "china/economy/trade/mofcom.json", - "geographic_scope": "national" - } - ], - "commodities": [ + "file_path": "china/economy/provincial/china-nanchang-stats.json", + "geographic_scope": "subnational" + }, { - "id": "brazil-cecafe", + "id": "china-nanjing-stats", "name": { - "en": "Brazilian Coffee Exporters Council", - "zh": "巴西咖啡出口商协会" + "en": "Nanjing Bureau of Statistics", + "zh": "南京市统计局" }, - "authority_level": "market", - "data_url": "https://www.cecafe.com.br/publicacoes/relatorio-de-exportacoes/", + "authority_level": "government", + "data_url": "https://tjj.nanjing.gov.cn/", "has_api": false, - "file_path": "countries/south-america/brazil-cecafe.json", - "geographic_scope": "national" + "file_path": "china/economy/provincial/china-nanjing-stats.json", + "geographic_scope": "subnational" }, { - "id": "brazil-conab", + "id": "china-nm-stats", "name": { - "en": "National Supply Company (CONAB)", - "zh": "巴西国家商品供应公司" + "en": "Inner Mongolia Bureau of Statistics", + "zh": "内蒙古自治区统计局" }, "authority_level": "government", - "data_url": "https://www.gov.br/conab/pt-br/atuacao/informacoes-agropecuarias/safras/safra-de-cafe", + "data_url": "http://tj.nmg.gov.cn", "has_api": false, - "file_path": "countries/south-america/brazil-conab.json", - "geographic_scope": "national" - } - ], - "consumer_surveys": [ + "file_path": "china/economy/provincial/china-nm-stats.json", + "geographic_scope": "subnational" + }, { - "id": "korea-bok", + "id": "china-nx-stats", "name": { - "en": "Bank of Korea", - "zh": "韩国银行", - "native": "한국은행" + "en": "Ningxia Bureau of Statistics", + "zh": "宁夏回族自治区统计局" }, "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", - "geographic_scope": "national" - } - ], - "continuing_care": [ + "data_url": "https://tj.nx.gov.cn/tjsj_htr/jdsj_htr/", + "has_api": false, + "file_path": "china/economy/provincial/china-nx-stats.json", + "geographic_scope": "subnational" + }, { - "id": "canada-cihi", + "id": "china-qh-stats", "name": { - "en": "Canadian Institute for Health Information", - "zh": "加拿大健康信息研究所", - "native": "Institut canadien d'information sur la santé" + "en": "Qinghai Bureau of Statistics", + "zh": "青海省统计局" }, "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" - } - ], - "credential-verification": [ + "data_url": "https://tjj.qinghai.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-qh-stats.json", + "geographic_scope": "subnational" + }, { - "id": "cscse", + "id": "china-qingdao-stats", "name": { - "en": "Chinese Service Center for Scholarly Exchange", - "zh": "教育部留学服务中心" + "en": "Qingdao Bureau of Statistics", + "zh": "青岛市统计局" }, "authority_level": "government", - "data_url": "https://zwfw.cscse.edu.cn", + "data_url": "http://qdtj.qingdao.gov.cn/", "has_api": false, - "file_path": "china/education/cscse.json", - "geographic_scope": "national" - } - ], - "cryosphere": [ + "file_path": "china/economy/provincial/china-qingdao-stats.json", + "geographic_scope": "subnational" + }, { - "id": "nasa-earthdata", + "id": "china-sc-stats", "name": { - "en": "NASA Earthdata", - "zh": "NASA地球数据" + "en": "Sichuan Bureau of Statistics", + "zh": "四川省统计局" }, "authority_level": "government", - "data_url": "https://www.earthdata.nasa.gov", - "has_api": true, - "file_path": "international/earth-science/nasa-earthdata.json", - "geographic_scope": "global" - } - ], - "culture": [ + "data_url": "https://tjj.sc.gov.cn/scstjj/c112124/sjcx.shtml", + "has_api": false, + "file_path": "china/economy/provincial/china-sc-stats.json", + "geographic_scope": "subnational" + }, { - "id": "canada-statcan", + "id": "china-sd-stats", "name": { - "en": "Statistics Canada", - "zh": "加拿大统计局", - "native": "Statistique Canada" + "en": "Shandong Bureau of Statistics", + "zh": "山东省统计局" }, "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" - } - ], - "data_governance": [ + "data_url": "https://tjj.shandong.gov.cn/col/col8456/index.html", + "has_api": false, + "file_path": "china/economy/provincial/china-sd-stats.json", + "geographic_scope": "subnational" + }, { - "id": "china-national-data-bureau", + "id": "china-shanghai-stats", "name": { - "en": "National Data Administration of China", - "zh": "国家数据局" + "en": "Shanghai Municipal Bureau of Statistics", + "zh": "上海市统计局" }, "authority_level": "government", - "data_url": "https://sjdj.nda.gov.cn/", + "data_url": "https://tjj.sh.gov.cn/sjxx/index.html", "has_api": false, - "file_path": "china/technology/digital_economy/china-national-data-bureau.json", - "geographic_scope": "national" - } - ], - "demographics": [ + "file_path": "china/economy/provincial/china-shanghai-stats.json", + "geographic_scope": "subnational" + }, { - "id": "uk-biobank", + "id": "china-shenzhen-open-data", "name": { - "en": "UK Biobank", - "zh": "英国生物样本库" + "en": "Shenzhen Open Data Platform", + "zh": "深圳市政府数据开放平台" }, - "authority_level": "research", - "data_url": "https://www.ukbiobank.ac.uk/", + "authority_level": "government", + "data_url": "https://opendata.sz.gov.cn/data/dataSet/toDataList", "has_api": true, - "file_path": "academic/biology/uk-biobank.json", - "geographic_scope": "national" + "file_path": "china/economy/provincial/china-shenzhen-open-data.json", + "geographic_scope": "subnational" }, { - "id": "dhs", + "id": "china-shenzhen-stats", "name": { - "en": "Demographic and Health Surveys (DHS) Program", - "zh": "人口与健康调查项目" + "en": "Shenzhen Bureau of Statistics", + "zh": "深圳市统计局" }, - "authority_level": "international", - "data_url": "https://dhsprogram.com/", - "has_api": true, - "file_path": "academic/health/dhs.json", - "geographic_scope": "regional" + "authority_level": "government", + "data_url": "https://tjj.sz.gov.cn/zwgk/zfxxgkml/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-shenzhen-stats.json", + "geographic_scope": "subnational" }, { - "id": "ghdx", + "id": "china-sn-stats", "name": { - "en": "Global Health Data Exchange (GHDx)", - "zh": "全球健康数据交换平台" + "en": "Shaanxi Bureau of Statistics", + "zh": "陕西省统计局" }, - "authority_level": "research", - "data_url": "https://ghdx.healthdata.org/", - "has_api": true, - "file_path": "academic/health/ghdx.json", - "geographic_scope": "global" + "authority_level": "government", + "data_url": "https://tjj.shaanxi.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-sn-stats.json", + "geographic_scope": "subnational" }, { - "id": "ceic-china-urbanization", + "id": "china-suzhou-stats", "name": { - "en": "CEIC Data - China Urbanization Rate", - "zh": "CEIC数据库 - 中国城镇化率" + "en": "Suzhou Bureau of Statistics", + "zh": "苏州市统计局" }, - "authority_level": "commercial", - "data_url": "https://www.ceicdata.com/zh-hans/china/population-urbanization-rate", - "has_api": true, - "file_path": "china/national/ceic-china-urbanization.json", - "geographic_scope": "national" + "authority_level": "government", + "data_url": "http://tjj.suzhou.gov.cn/", + "has_api": false, + "file_path": "china/economy/provincial/china-suzhou-stats.json", + "geographic_scope": "subnational" }, { - "id": "cnki-population-census", + "id": "china-sx-stats", "name": { - "en": "CNKI China Population Census Database", - "zh": "中国人口普查数据库" + "en": "Shanxi Bureau of Statistics", + "zh": "山西省统计局" }, - "authority_level": "commercial", - "data_url": "https://data.cnki.net/npcd", + "authority_level": "government", + "data_url": "https://tjj.shanxi.gov.cn/tjsj/", "has_api": false, - "file_path": "china/national/cnki-population-census.json", - "geographic_scope": "national" + "file_path": "china/economy/provincial/china-sx-stats.json", + "geographic_scope": "subnational" }, { - "id": "china-nbs", + "id": "china-tj-stats", "name": { - "en": "National Bureau of Statistics of China", - "zh": "国家统计局", - "native": "国家统计局" + "en": "Tianjin Bureau of Statistics", + "zh": "天津市统计局" }, "authority_level": "government", - "data_url": "https://www.stats.gov.cn/sj/", - "has_api": true, - "file_path": "china/national/nbs.json", - "geographic_scope": "national" + "data_url": "https://stats.tj.gov.cn/tjsj_52032/", + "has_api": false, + "file_path": "china/economy/provincial/china-tj-stats.json", + "geographic_scope": "subnational" }, { - "id": "canada-statcan", + "id": "china-wuhan-stats", "name": { - "en": "Statistics Canada", - "zh": "加拿大统计局", - "native": "Statistique Canada" + "en": "Wuhan Bureau of Statistics", + "zh": "武汉市统计局" }, "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" + "data_url": "https://tjj.wuhan.gov.cn/zfxxgk/", + "has_api": false, + "file_path": "china/economy/provincial/china-wuhan-stats.json", + "geographic_scope": "subnational" }, { - "id": "usa-census-bureau", + "id": "china-xian-stats", "name": { - "en": "United States Census Bureau", - "zh": "美国人口普查局" + "en": "Xi'an Bureau of Statistics", + "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" + "data_url": "http://tjj.xa.gov.cn/", + "has_api": false, + "file_path": "china/economy/provincial/china-xian-stats.json", + "geographic_scope": "subnational" }, { - "id": "australia-abs", + "id": "china-xj-stats", "name": { - "en": "Australian Bureau of Statistics", - "zh": "澳大利亚统计局" + "en": "Xinjiang 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" + "data_url": "https://tjj.xinjiang.gov.cn/tjj/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-xj-stats.json", + "geographic_scope": "subnational" }, { - "id": "brazil-ibge", + "id": "china-xz-stats", "name": { - "en": "Brazilian Institute of Geography and Statistics", - "zh": "巴西地理统计局" + "en": "Xizang (Tibet) Bureau of 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" - } - ], - "derivatives": [ + "data_url": "https://tjj.xizang.gov.cn/xxgk/tjxx/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-xz-stats.json", + "geographic_scope": "subnational" + }, { - "id": "hkex", + "id": "china-yn-stats", "name": { - "en": "Hong Kong Exchanges and Clearing Limited (HKEX)", - "zh": "香港交易及结算所有限公司(港交所)", - "native": "香港交易及结算所有限公司" + "en": "Yunnan Bureau of Statistics", + "zh": "云南省统计局" }, - "authority_level": "commercial", - "data_url": "https://www.hkexnews.hk", - "has_api": true, - "file_path": "china/finance/securities/hkex.json", - "geographic_scope": "regional" - } - ], - "development": [ + "authority_level": "government", + "data_url": "http://stats.yn.gov.cn", + "has_api": false, + "file_path": "china/economy/provincial/china-yn-stats.json", + "geographic_scope": "subnational" + }, { - "id": "ggdc-databases", + "id": "china-zhengzhou-stats", "name": { - "en": "Groningen Growth and Development Centre (GGDC) Databases", - "zh": "格罗宁根增长与发展中心数据库" + "en": "Zhengzhou Bureau of Statistics", + "zh": "郑州市统计局" }, - "authority_level": "research", - "data_url": "https://www.rug.nl/ggdc/", + "authority_level": "government", + "data_url": "https://tjj.zhengzhou.gov.cn/tjsj/index.jhtml", "has_api": false, - "file_path": "academic/economics/ggdc-databases.json", - "geographic_scope": "global" + "file_path": "china/economy/provincial/china-zhengzhou-stats.json", + "geographic_scope": "subnational" }, { - "id": "penn-world-table", + "id": "china-zj-stats", "name": { - "en": "Penn World Table", - "zh": "宾州世界表" + "en": "Zhejiang Bureau of Statistics", + "zh": "浙江省统计局" }, - "authority_level": "research", - "data_url": "https://www.rug.nl/ggdc/productivity/pwt/", + "authority_level": "government", + "data_url": "https://tjj.zj.gov.cn/col/col1525563/index.html", "has_api": false, - "file_path": "academic/economics/penn-world-table.json", - "geographic_scope": "global" + "file_path": "china/economy/provincial/china-zj-stats.json", + "geographic_scope": "subnational" }, { - "id": "china-ndrc", + "id": "china-hk-censtatd", "name": { - "en": "National Development and Reform Commission", - "zh": "国家发展和改革委员会", - "native": "国家发展和改革委员会" + "en": "Hong Kong Census and Statistics Department", + "zh": "香港政府统计处" }, "authority_level": "government", - "data_url": "https://www.ndrc.gov.cn/fgsj/", + "data_url": "https://www.censtatd.gov.hk/", "has_api": false, - "file_path": "china/economy/macro/ndrc.json", - "geographic_scope": "national" + "file_path": "china/economy/special_admin_regions/china-hk-censtatd.json", + "geographic_scope": "subnational" }, { - "id": "adb-data", + "id": "china-cccme", "name": { - "en": "Asian Development Bank Data Library", - "zh": "亚洲开发银行数据库", - "native": "ADB Data Library" + "en": "China Chamber of Commerce for Import and Export of Machinery and Electronic Products", + "zh": "中国机电产品进出口商会" }, - "authority_level": "international", - "data_url": "https://data.adb.org", - "has_api": true, - "file_path": "international/development/adb-data.json", - "geographic_scope": "regional" + "authority_level": "other", + "data_url": "https://www.cccme.org.cn/shop/cccme-stat/index.aspx", + "has_api": false, + "file_path": "china/economy/trade/china-cccme.json", + "geographic_scope": "national" }, { - "id": "afdb-statistics", + "id": "china-ccpit", "name": { - "en": "African Development Bank Statistics", - "zh": "非洲开发银行统计数据" + "en": "China Council for the Promotion of International Trade", + "zh": "中国国际贸易促进委员会" }, - "authority_level": "international", - "data_url": "https://dataportal.opendataforafrica.org", - "has_api": true, - "file_path": "international/development/afdb-statistics.json", - "geographic_scope": "regional" + "authority_level": "government", + "data_url": "https://www.ccpit.org/", + "has_api": false, + "file_path": "china/economy/trade/china-ccpit.json", + "geographic_scope": "national" }, { - "id": "adb-data-library", + "id": "china-cflp", "name": { - "en": "ADB Data Library", - "zh": "亚洲开发银行数据库" + "en": "China Federation of Logistics and Purchasing", + "zh": "中国物流与采购联合会" }, - "authority_level": "international", - "data_url": "https://data.adb.org", - "has_api": true, - "file_path": "international/economics/adb-data-library.json", - "geographic_scope": "regional" + "authority_level": "other", + "data_url": "https://www.chinawuliu.com.cn/lhhzq/", + "has_api": false, + "file_path": "china/economy/trade/china-cflp.json", + "geographic_scope": "national" }, { - "id": "adb-vietnam", + "id": "china-cfsmc", "name": { - "en": "Asian Development Bank - Vietnam Country Data", - "zh": "亚洲开发银行越南国别数据" + "en": "All-China Federation of Supply and Marketing Cooperatives", + "zh": "中华全国供销合作总社" }, - "authority_level": "international", - "data_url": "https://www.adb.org/countries/viet-nam/data", + "authority_level": "government", + "data_url": "https://www.chinacoop.gov.cn/", "has_api": false, - "file_path": "international/economics/adb-vietnam.json", + "file_path": "china/economy/trade/china-cfsmc.json", "geographic_scope": "national" }, { - "id": "ebrd", + "id": "china-chinca", "name": { - "en": "European Bank for Reconstruction and Development", - "zh": "欧洲复兴开发银行" + "en": "China International Contractors Association", + "zh": "中国对外承包工程商会" }, - "authority_level": "international", - "data_url": "https://www.ebrd.com", + "authority_level": "other", + "data_url": "https://www.chinca.org/CICA/info/20-1/index.html", "has_api": false, - "file_path": "international/finance/ebrd.json", - "geographic_scope": "regional" + "file_path": "china/economy/trade/china-chinca.json", + "geographic_scope": "national" }, { - "id": "paris-club", + "id": "china-gacc", "name": { - "en": "Paris Club", - "zh": "巴黎俱乐部" + "en": "General Administration of Customs of China", + "zh": "中华人民共和国海关总署", + "native": "中华人民共和国海关总署" }, - "authority_level": "international", - "data_url": "https://www.clubdeparis.org", + "authority_level": "government", + "data_url": "https://www.customs.gov.cn/customs/302249/zfxxgk/2799825/302274/302277/index.html", "has_api": false, - "file_path": "international/finance/paris-club.json", - "geographic_scope": "regional" + "file_path": "china/economy/trade/china-gacc.json", + "geographic_scope": "national" }, { - "id": "unctad", + "id": "china-sinosure", "name": { - "en": "UNCTAD - United Nations Conference on Trade and Development", - "zh": "联合国贸易和发展会议" + "en": "China Export & Credit Insurance Corporation", + "zh": "中国出口信用保险公司" }, - "authority_level": "international", - "data_url": "https://unctadstat.unctad.org", - "has_api": true, - "file_path": "international/trade/unctad.json", - "geographic_scope": "global" - } - ], - "digital-economy": [ + "authority_level": "government", + "data_url": "https://www.sinosure.com.cn/gywm/gsjj/xxpl/index.shtml", + "has_api": false, + "file_path": "china/economy/trade/china-sinosure.json", + "geographic_scope": "national" + }, { - "id": "china-caict", + "id": "china-customs", "name": { - "en": "China Academy of Information and Communications Technology", - "zh": "中国信息通信研究院" + "en": "General Administration of Customs of China", + "zh": "中华人民共和国海关总署", + "native": "中华人民共和国海关总署" }, - "authority_level": "research", - "data_url": "http://www.caict.ac.cn/kxyj/qwfb/", + "authority_level": "government", + "data_url": "http://www.customs.gov.cn", "has_api": false, - "file_path": "china/research/china-caict.json", + "file_path": "china/economy/trade/customs.json", "geographic_scope": "national" - } - ], - "digital_economy": [ + }, { - "id": "china-national-data-bureau", + "id": "china-mofcom", "name": { - "en": "National Data Administration of China", - "zh": "国家数据局" + "en": "Ministry of Commerce of China", + "zh": "中华人民共和国商务部", + "native": "中华人民共和国商务部" }, "authority_level": "government", - "data_url": "https://sjdj.nda.gov.cn/", + "data_url": "https://data.mofcom.gov.cn", "has_api": false, - "file_path": "china/technology/digital_economy/china-national-data-bureau.json", + "file_path": "china/economy/trade/mofcom.json", "geographic_scope": "national" - } - ], - "digital_infrastructure": [ + }, { - "id": "china-national-data-bureau", + "id": "china-boc", "name": { - "en": "National Data Administration of China", - "zh": "国家数据局" + "en": "Bank of China (BOC)", + "zh": "中国银行" }, - "authority_level": "government", - "data_url": "https://sjdj.nda.gov.cn/", + "authority_level": "commercial", + "data_url": "https://www.boc.cn/fimarkets/", "has_api": false, - "file_path": "china/technology/digital_economy/china-national-data-bureau.json", + "file_path": "china/finance/banking/china-boc.json", "geographic_scope": "national" - } - ], - "disaster_management": [ + }, { - "id": "copernicus-open-access-hub", + "id": "china-cba", "name": { - "en": "Copernicus Open Access Hub", - "zh": "哥白尼开放访问中心" + "en": "China Banking Association", + "zh": "中国银行业协会" }, - "authority_level": "international", - "data_url": "https://dataspace.copernicus.eu/", - "has_api": true, - "file_path": "academic/environment/copernicus-open-access-hub.json", - "geographic_scope": "global" - } - ], - "disease burden": [ + "authority_level": "market", + "data_url": "https://www.china-cba.net/Index/lists/catid/268.html", + "has_api": false, + "file_path": "china/finance/banking/china-cba.json", + "geographic_scope": "national" + }, { - "id": "ghdx", + "id": "china-pbccrc", "name": { - "en": "Global Health Data Exchange (GHDx)", - "zh": "全球健康数据交换平台" + "en": "People's Bank of China Credit Reference Center", + "zh": "中国人民银行征信中心" }, - "authority_level": "research", - "data_url": "https://ghdx.healthdata.org/", - "has_api": true, - "file_path": "academic/health/ghdx.json", - "geographic_scope": "global" - } - ], - "disease surveillance": [ - { - "id": "africa-cdc", + "authority_level": "government", + "data_url": "https://www.pbccrc.org.cn", + "has_api": false, + "file_path": "china/finance/banking/china-pbccrc.json", + "geographic_scope": "national" + }, + { + "id": "china-pbc", "name": { - "en": "Africa CDC Health Data", - "zh": "非洲疾控中心健康数据" + "en": "People's Bank of China", + "zh": "中国人民银行", + "native": "中国人民银行" }, - "authority_level": "international", - "data_url": "https://africacdc.org", + "authority_level": "government", + "data_url": "https://www.pbc.gov.cn/diaochatongjisi/116219/index.html", "has_api": false, - "file_path": "international/health/africa-cdc.json", - "geographic_scope": "regional" - } - ], - "earth-observation": [ + "file_path": "china/finance/banking/pbc.json", + "geographic_scope": "national" + }, { - "id": "usgs-earthexplorer", + "id": "china-capco", "name": { - "en": "USGS EarthExplorer", - "zh": "美国地质调查局地球探索者" + "en": "China Association for Public Companies (CAPCO)", + "zh": "中国上市公司协会" }, - "authority_level": "government", - "data_url": "https://earthexplorer.usgs.gov/", - "has_api": true, - "file_path": "countries/north-america/usa/usgs-earthexplorer.json", - "geographic_scope": "global" - } - ], - "earth-science": [ + "authority_level": "market", + "data_url": "https://www.capco.org.cn", + "has_api": false, + "file_path": "china/finance/capital-markets/china-capco.json", + "geographic_scope": "national" + }, { - "id": "nasa-earthdata", + "id": "china-cfa", "name": { - "en": "NASA Earthdata", - "zh": "NASA地球数据" + "en": "China Futures Association", + "zh": "中国期货业协会" }, - "authority_level": "government", - "data_url": "https://www.earthdata.nasa.gov", - "has_api": true, - "file_path": "international/earth-science/nasa-earthdata.json", - "geographic_scope": "global" - } - ], - "economic_indicators": [ + "authority_level": "market", + "data_url": "https://www.cfachina.org/servicesupport/researchandpublishin/statisticalsdata/", + "has_api": false, + "file_path": "china/finance/capital-markets/china-cfa.json", + "geographic_scope": "national" + }, { - "id": "canada-boc", + "id": "china-chinabond", "name": { - "en": "Bank of Canada", - "zh": "加拿大银行", - "native": "Banque du Canada" + "en": "China Bond Information Network", + "zh": "中国债券信息网" }, - "authority_level": "government", - "data_url": "https://www.bankofcanada.ca/rates/", - "has_api": true, - "file_path": "countries/north-america/canada/canada-boc.json", + "authority_level": "market", + "data_url": "https://yield.chinabond.com.cn/cbweb-pbc-web/pbc/historyQuery", + "has_api": false, + "file_path": "china/finance/capital-markets/china-chinabond.json", "geographic_scope": "national" - } - ], - "economics": [ + }, { - "id": "ggdc-databases", + "id": "china-czce", "name": { - "en": "Groningen Growth and Development Centre (GGDC) Databases", - "zh": "格罗宁根增长与发展中心数据库" + "en": "Zhengzhou Commodity Exchange", + "zh": "郑州商品交易所" }, - "authority_level": "research", - "data_url": "https://www.rug.nl/ggdc/", + "authority_level": "market", + "data_url": "https://www.czce.com.cn/cn/exchange/daily_data/index.htm", "has_api": false, - "file_path": "academic/economics/ggdc-databases.json", - "geographic_scope": "global" + "file_path": "china/finance/capital-markets/china-czce.json", + "geographic_scope": "national" }, { - "id": "nber-data", + "id": "china-dce", "name": { - "en": "NBER Data Library", - "zh": "国家经济研究局数据库", - "native": "NBER Data Library" + "en": "Dalian Commodity Exchange", + "zh": "大连商品交易所" }, - "authority_level": "research", - "data_url": "https://www.nber.org", + "authority_level": "market", + "data_url": "https://www.dce.com.cn/publicweb/quotesdata/dayQuotesCh.html", "has_api": false, - "file_path": "academic/economics/nber.json", - "geographic_scope": "global" + "file_path": "china/finance/capital-markets/china-dce.json", + "geographic_scope": "national" }, { - "id": "penn-world-table", + "id": "china-shfe", "name": { - "en": "Penn World Table", - "zh": "宾州世界表" + "en": "Shanghai Futures Exchange", + "zh": "上海期货交易所" }, - "authority_level": "research", - "data_url": "https://www.rug.nl/ggdc/productivity/pwt/", + "authority_level": "market", + "data_url": "https://www.shfe.com.cn/reports/tradedata/dailyandweeklydata/", "has_api": false, - "file_path": "academic/economics/penn-world-table.json", - "geographic_scope": "global" + "file_path": "china/finance/capital-markets/china-shfe.json", + "geographic_scope": "national" }, { - "id": "world-inequality-database", + "id": "china-iac", "name": { - "en": "World Inequality Database (WID.world)", - "zh": "世界不平等数据库" + "en": "Insurance Association of China", + "zh": "中国保险业协会" }, - "authority_level": "research", - "data_url": "https://wid.world/", - "has_api": true, - "file_path": "academic/economics/world-inequality-database.json", - "geographic_scope": "global" + "authority_level": "market", + "data_url": "https://www.iachina.cn/col/col4479/", + "has_api": false, + "file_path": "china/finance/china-iac.json", + "geographic_scope": "national" }, { - "id": "china-ndrc-computing", + "id": "china-iamac", "name": { - "en": "NDRC East-to-West Computing Resources Project", - "zh": "国家发展改革委东数西算工程" + "en": "China Association of Banking and Insurance Asset Management", + "zh": "中国银行保险资产管理业协会" }, - "authority_level": "government", - "data_url": "https://www.ndrc.gov.cn/xxgk/zcfb/tz/202312/t20231229_1363000.html", + "authority_level": "other", + "data_url": "https://www.iamac.org.cn", "has_api": false, - "file_path": "china/economy/macro/china-ndrc-computing.json", + "file_path": "china/finance/china-iamac.json", "geographic_scope": "national" }, { - "id": "china-ndrc", + "id": "china-nifd", "name": { - "en": "National Development and Reform Commission", - "zh": "国家发展和改革委员会", - "native": "国家发展和改革委员会" + "en": "National Institution for Finance and Development", + "zh": "国家金融与发展实验室" }, - "authority_level": "government", - "data_url": "https://www.ndrc.gov.cn/fgsj/", + "authority_level": "research", + "data_url": "http://www.nifd.cn", "has_api": false, - "file_path": "china/economy/macro/ndrc.json", + "file_path": "china/finance/china-nifd.json", "geographic_scope": "national" }, { - "id": "china-customs", + "id": "china-xinhua-finance", "name": { - "en": "General Administration of Customs of China", - "zh": "中华人民共和国海关总署", - "native": "中华人民共和国海关总署" + "en": "Xinhua Finance - China Financial Information Network", + "zh": "新华财经 - 中国金融信息网" }, - "authority_level": "government", - "data_url": "http://www.customs.gov.cn", + "authority_level": "market", + "data_url": "https://www.cnfin.com/", "has_api": false, - "file_path": "china/economy/trade/customs.json", + "file_path": "china/finance/china-xinhua-finance.json", "geographic_scope": "national" }, { - "id": "china-mofcom", + "id": "china-mof", "name": { - "en": "Ministry of Commerce of China", - "zh": "中华人民共和国商务部", - "native": "中华人民共和国商务部" + "en": "Ministry of Finance of China", + "zh": "中华人民共和国财政部" }, "authority_level": "government", - "data_url": "https://data.mofcom.gov.cn", + "data_url": "https://www.mof.gov.cn/gkml/", "has_api": false, - "file_path": "china/economy/trade/mofcom.json", + "file_path": "china/finance/fiscal/china-mof.json", "geographic_scope": "national" }, { - "id": "china-pbc", + "id": "china-nssf", "name": { - "en": "People's Bank of China", - "zh": "中国人民银行", - "native": "中国人民银行" + "en": "National Social Security Fund Council of China", + "zh": "全国社会保障基金理事会" }, "authority_level": "government", - "data_url": "http://www.pbc.gov.cn/diaochatongjisi/116219/index.html", + "data_url": "http://www.ssf.gov.cn/", "has_api": false, - "file_path": "china/finance/banking/pbc.json", + "file_path": "china/finance/fiscal/china-nssf.json", "geographic_scope": "national" }, { - "id": "ceic-china-urbanization", + "id": "china-cfets", "name": { - "en": "CEIC Data - China Urbanization Rate", - "zh": "CEIC数据库 - 中国城镇化率" + "en": "China Foreign Exchange Trade System", + "zh": "中国外汇交易中心" }, - "authority_level": "commercial", - "data_url": "https://www.ceicdata.com/zh-hans/china/population-urbanization-rate", - "has_api": true, - "file_path": "china/national/ceic-china-urbanization.json", + "authority_level": "government", + "data_url": "https://www.chinamoney.com.cn/chinese/bkccpr/", + "has_api": false, + "file_path": "china/finance/forex/china-cfets.json", "geographic_scope": "national" }, { - "id": "china-nbs", + "id": "china-safe", "name": { - "en": "National Bureau of Statistics of China", - "zh": "国家统计局", - "native": "国家统计局" + "en": "State Administration of Foreign Exchange of China", + "zh": "国家外汇管理局", + "native": "国家外汇管理局" }, "authority_level": "government", - "data_url": "https://www.stats.gov.cn/sj/", - "has_api": true, - "file_path": "china/national/nbs.json", + "data_url": "https://www.safe.gov.cn/safe/tjsj1/index.html", + "has_api": false, + "file_path": "china/finance/forex/china-safe.json", "geographic_scope": "national" }, { - "id": "china-mnr-minerals", + "id": "china-chinatax", "name": { - "en": "Ministry of Natural Resources - Mineral Resources Data", - "zh": "自然资源部矿产资源数据" + "en": "State Taxation Administration of China", + "zh": "国家税务总局" }, "authority_level": "government", - "data_url": "https://www.mnr.gov.cn/sj/sjfw/kc_19263/", + "data_url": "https://www.chinatax.gov.cn/chinatax/n810219/", "has_api": false, - "file_path": "china/resources/mineral/china-mnr-minerals.json", + "file_path": "china/finance/taxation/china-chinatax.json", "geographic_scope": "national" }, { - "id": "canada-statcan", + "id": "china-ccgp", "name": { - "en": "Statistics Canada", - "zh": "加拿大统计局", - "native": "Statistique Canada" + "en": "China Government Procurement Network", + "zh": "中国政府采购网" }, "authority_level": "government", - "data_url": "https://www.statcan.gc.ca/en/start", - "has_api": true, - "file_path": "countries/north-america/canada/statcan.json", + "data_url": "https://www.ccgp.gov.cn/cggg/index.htm", + "has_api": false, + "file_path": "china/governance/china-ccgp.json", "geographic_scope": "national" }, { - "id": "usa-census-bureau", + "id": "china-cidca", "name": { - "en": "United States Census Bureau", - "zh": "美国人口普查局" + "en": "China International Development Cooperation Agency", + "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" + "data_url": "http://www.cidca.gov.cn/ywgz.htm", + "has_api": false, + "file_path": "china/governance/china-cidca.json", + "geographic_scope": "global" }, { - "id": "usa-eia", + "id": "china-cnao", "name": { - "en": "U.S. Energy Information Administration", - "zh": "美国能源信息署" + "en": "National Audit Office of China", + "zh": "中华人民共和国审计署" }, "authority_level": "government", - "data_url": "https://www.eia.gov", - "has_api": true, - "file_path": "countries/north-america/usa/eia.json", + "data_url": "https://www.audit.gov.cn", + "has_api": false, + "file_path": "china/governance/china-cnao.json", "geographic_scope": "national" }, { - "id": "australia-abs", + "id": "china-cppcc", "name": { - "en": "Australian Bureau of Statistics", - "zh": "澳大利亚统计局" + "en": "Chinese People's Political Consultative Conference", + "zh": "中国人民政治协商会议" }, "authority_level": "government", - "data_url": "https://www.abs.gov.au", - "has_api": true, - "file_path": "countries/oceania/australia/abs.json", + "data_url": "http://www.cppcc.gov.cn", + "has_api": false, + "file_path": "china/governance/china-cppcc.json", "geographic_scope": "national" }, { - "id": "brazil-ibge", + "id": "china-ggzy", "name": { - "en": "Brazilian Institute of Geography and Statistics", - "zh": "巴西地理统计局" + "en": "China National Public Resources Trading Platform", + "zh": "全国公共资源交易平台" }, "authority_level": "government", - "data_url": "https://www.ibge.gov.br/en/indicators", - "has_api": true, - "file_path": "countries/south-america/brazil-ibge.json", + "data_url": "https://www.ggzy.gov.cn/", + "has_api": false, + "file_path": "china/governance/china-ggzy.json", "geographic_scope": "national" }, { - "id": "adb-data", + "id": "china-neac", "name": { - "en": "Asian Development Bank Data Library", - "zh": "亚洲开发银行数据库", - "native": "ADB Data Library" + "en": "National Ethnic Affairs Commission of China", + "zh": "国家民族事务委员会" }, - "authority_level": "international", - "data_url": "https://data.adb.org", - "has_api": true, - "file_path": "international/development/adb-data.json", - "geographic_scope": "regional" + "authority_level": "government", + "data_url": "https://www.neac.gov.cn/seac/xxgk/tjsj/", + "has_api": false, + "file_path": "china/governance/china-neac.json", + "geographic_scope": "national" }, { - "id": "afdb-statistics", + "id": "china-stma", "name": { - "en": "African Development Bank Statistics", - "zh": "非洲开发银行统计数据" + "en": "State Tobacco Monopoly Administration of China", + "zh": "国家烟草专卖局" }, - "authority_level": "international", - "data_url": "https://dataportal.opendataforafrica.org", - "has_api": true, - "file_path": "international/development/afdb-statistics.json", - "geographic_scope": "regional" + "authority_level": "government", + "data_url": "https://www.tobacco.gov.cn/html/42/index.html", + "has_api": false, + "file_path": "china/governance/china-stma.json", + "geographic_scope": "national" }, { - "id": "adb-data-library", + "id": "china-film-admin", "name": { - "en": "ADB Data Library", - "zh": "亚洲开发银行数据库" + "en": "National Film Administration of China", + "zh": "国家电影局" }, - "authority_level": "international", - "data_url": "https://data.adb.org", - "has_api": true, - "file_path": "international/economics/adb-data-library.json", - "geographic_scope": "regional" + "authority_level": "government", + "data_url": "https://www.chinafilm.gov.cn", + "has_api": false, + "file_path": "china/governance/culture/china-film-admin.json", + "geographic_scope": "national" }, { - "id": "adb-vietnam", + "id": "china-gas", "name": { - "en": "Asian Development Bank - Vietnam Country Data", - "zh": "亚洲开发银行越南国别数据" + "en": "General Administration of Sport of China", + "zh": "国家体育总局" }, - "authority_level": "international", - "data_url": "https://www.adb.org/countries/viet-nam/data", + "authority_level": "government", + "data_url": "https://www.sport.gov.cn/n315/n330/index.html", "has_api": false, - "file_path": "international/economics/adb-vietnam.json", + "file_path": "china/governance/sports/china-gas.json", "geographic_scope": "national" }, { - "id": "ceic-global-database", + "id": "china-avic", "name": { - "en": "CEIC Global Database", - "zh": "环亚经济数据库" + "en": "Aviation Industry Corporation of China (AVIC)", + "zh": "中国航空工业集团有限公司" }, - "authority_level": "commercial", - "data_url": "https://www.ceicdata.com/en/products/global-economic-database", - "has_api": true, - "file_path": "international/economics/ceic-global-database.json", - "geographic_scope": "global" + "authority_level": "government", + "data_url": "https://www.avic.com", + "has_api": false, + "file_path": "china/industry/aerospace/china-avic.json", + "geographic_scope": "national" }, { - "id": "ceic-vietnam", + "id": "china-miit-eidc", "name": { - "en": "CEIC Vietnam Economic Database", - "zh": "环亚经济数据库 - 越南经济数据专题" + "en": "MIIT Equipment Industry Development Center", + "zh": "工业和信息化部装备工业发展中心" }, - "authority_level": "commercial", - "data_url": "https://www.ceicdata.com/en/country/vietnam", - "has_api": true, - "file_path": "international/economics/ceic-vietnam.json", + "authority_level": "government", + "data_url": "https://www.miit-eidc.org.cn/", + "has_api": false, + "file_path": "china/industry/china-miit-eidc.json", "geographic_scope": "national" }, { - "id": "imf-data", + "id": "china-crg", "name": { - "en": "IMF Data", - "zh": "国际货币基金组织数据", - "native": "IMF Data" - }, - "authority_level": "international", - "data_url": "https://data.imf.org", - "has_api": true, - "file_path": "international/economics/imf.json", - "geographic_scope": "global" - }, - { - "id": "oecd-statistics", - "name": { - "en": "OECD Statistics", - "zh": "经合组织统计数据", - "native": "OECD Statistics" + "en": "China State Railway Group", + "zh": "中国国家铁路集团有限公司" }, - "authority_level": "international", - "data_url": "https://stats.oecd.org", - "has_api": true, - "file_path": "international/economics/oecd.json", - "geographic_scope": "regional" + "authority_level": "government", + "data_url": "http://www.china-railway.com.cn/", + "has_api": false, + "file_path": "china/infrastructure/china-crg.json", + "geographic_scope": "national" }, { - "id": "worldbank-open-data", + "id": "china-crta", "name": { - "en": "World Bank Open Data", - "zh": "世界银行开放数据", - "native": "World Bank Open Data" + "en": "China Road Transport Association", + "zh": "中国道路运输协会" }, - "authority_level": "international", - "data_url": "https://data.worldbank.org", - "has_api": true, - "file_path": "international/economics/worldbank.json", - "geographic_scope": "global" + "authority_level": "other", + "data_url": "https://www.crta.org.cn/news.html?id=42", + "has_api": false, + "file_path": "china/infrastructure/china-crta.json", + "geographic_scope": "national" }, { - "id": "iea-energy-data", + "id": "china-nra", "name": { - "en": "IEA Energy Data", - "zh": "国际能源署能源数据", - "native": "IEA Energy Data" + "en": "National Railway Administration of China", + "zh": "国家铁路局" }, - "authority_level": "international", - "data_url": "https://www.iea.org/data-and-statistics", - "has_api": true, - "file_path": "international/energy/iea.json", - "geographic_scope": "global" + "authority_level": "government", + "data_url": "https://www.nra.gov.cn/xxgk/gkml/", + "has_api": false, + "file_path": "china/infrastructure/china-nra.json", + "geographic_scope": "national" }, { - "id": "ebrd", + "id": "china-post-group", "name": { - "en": "European Bank for Reconstruction and Development", - "zh": "欧洲复兴开发银行" + "en": "China Post Group Corporation", + "zh": "中国邮政集团有限公司" }, - "authority_level": "international", - "data_url": "https://www.ebrd.com", + "authority_level": "government", + "data_url": "https://www.chinapost.com.cn/", "has_api": false, - "file_path": "international/finance/ebrd.json", - "geographic_scope": "regional" + "file_path": "china/infrastructure/china-post-group.json", + "geographic_scope": "national" }, { - "id": "paris-club", + "id": "china-spb", "name": { - "en": "Paris Club", - "zh": "巴黎俱乐部" + "en": "State Post Bureau of China", + "zh": "国家邮政局" }, - "authority_level": "international", - "data_url": "https://www.clubdeparis.org", + "authority_level": "government", + "data_url": "https://www.spb.gov.cn/gjyzj/c100009/c100014/xxgk_index.shtml", "has_api": false, - "file_path": "international/finance/paris-club.json", - "geographic_scope": "regional" + "file_path": "china/infrastructure/china-spb.json", + "geographic_scope": "national" }, { - "id": "bea-international-trade", + "id": "ceic-china-urbanization", "name": { - "en": "BEA International Trade in Goods and Services", - "zh": "美国经济分析局国际贸易数据" + "en": "CEIC Data - China Urbanization Rate", + "zh": "CEIC数据库 - 中国城镇化率" }, - "authority_level": "government", - "data_url": "https://apps.bea.gov/iTable/index_ita.cfm", + "authority_level": "commercial", + "data_url": "https://www.ceicdata.com/zh-hans/china/population-urbanization-rate", "has_api": true, - "file_path": "international/trade/bea-international-trade.json", + "file_path": "china/national/ceic-china-urbanization.json", "geographic_scope": "national" }, { - "id": "un-comtrade", + "id": "china-cta", "name": { - "en": "UN Comtrade - United Nations International Trade Statistics Database", - "zh": "联合国国际贸易统计数据库" + "en": "China Tourism Academy", + "zh": "中国旅游研究院" }, - "authority_level": "international", - "data_url": "https://comtradeplus.un.org", - "has_api": true, - "file_path": "international/trade/comtrade.json", - "geographic_scope": "global" + "authority_level": "research", + "data_url": "https://www.ctaweb.org.cn/index.php?m=home&c=Lists&a=index&tid=21", + "has_api": false, + "file_path": "china/national/china-cta.json", + "geographic_scope": "national" }, { - "id": "unctad", + "id": "china-nbs", "name": { - "en": "UNCTAD - United Nations Conference on Trade and Development", - "zh": "联合国贸易和发展会议" + "en": "National Bureau of Statistics of China", + "zh": "国家统计局", + "native": "国家统计局" }, - "authority_level": "international", - "data_url": "https://unctadstat.unctad.org", + "authority_level": "government", + "data_url": "https://www.stats.gov.cn/sj/", "has_api": true, - "file_path": "international/trade/unctad.json", - "geographic_scope": "global" + "file_path": "china/national/nbs.json", + "geographic_scope": "national" }, { - "id": "wto-statistics", + "id": "china-cass", "name": { - "en": "WTO Statistics Database", - "zh": "世界贸易组织统计数据库", - "native": "WTO Statistics Database" + "en": "Chinese Academy of Social Sciences", + "zh": "中国社会科学院" }, - "authority_level": "international", - "data_url": "https://stats.wto.org", - "has_api": true, - "file_path": "international/trade/wto.json", - "geographic_scope": "global" - } - ], - "education": [ + "authority_level": "research", + "data_url": "http://www.cass.ac.cn/list/zw_sscp.html", + "has_api": false, + "file_path": "china/research/china-cass.json", + "geographic_scope": "national" + }, { - "id": "cscse", + "id": "china-casted", "name": { - "en": "Chinese Service Center for Scholarly Exchange", - "zh": "教育部留学服务中心" + "en": "China Academy of Science and Technology for Development", + "zh": "中国科学技术发展战略研究院" }, - "authority_level": "government", - "data_url": "https://zwfw.cscse.edu.cn", + "authority_level": "research", + "data_url": "http://www.casted.org.cn/channel/", "has_api": false, - "file_path": "china/education/cscse.json", + "file_path": "china/research/china-casted.json", "geographic_scope": "national" }, { - "id": "cdgdc", + "id": "china-cciee", "name": { - "en": "China Academic Degrees & Graduate Education Development Center", - "zh": "教育部学位与研究生教育发展中心" + "en": "China Center for International Economic Exchanges", + "zh": "中国国际经济交流中心" }, - "authority_level": "government", - "data_url": "https://www.chinadegrees.cn/", + "authority_level": "research", + "data_url": "https://www.cciee.org.cn/ktcglistall.aspx?clmId=650", "has_api": false, - "file_path": "china/education/higher_education/cdgdc.json", + "file_path": "china/research/china-cciee.json", "geographic_scope": "national" }, { - "id": "china-gaokao-chsi", + "id": "china-cdrf", "name": { - "en": "China Postgraduate Admissions Information Network", - "zh": "中国研究生招生信息网" + "en": "China Development Research Foundation (CDRF)", + "zh": "中国发展研究基金会" }, - "authority_level": "government", - "data_url": "https://yz.chsi.com.cn/sch/", + "authority_level": "research", + "data_url": "https://www.cdrf.org.cn", "has_api": false, - "file_path": "china/education/higher_education/china-gaokao-chsi.json", + "file_path": "china/research/china-cdrf.json", "geographic_scope": "national" }, { - "id": "china-moe-higher-education", + "id": "china-cf40", "name": { - "en": "Ministry of Education of China - Higher Education Statistics", - "zh": "中华人民共和国教育部高等教育统计" + "en": "China Finance 40 Forum (CF40)", + "zh": "中国金融四十人论坛" }, - "authority_level": "government", - "data_url": "http://www.moe.gov.cn/jyb_sjzl/sjzl_fztjgb/", + "authority_level": "research", + "data_url": "https://www.cf40.com/research", "has_api": false, - "file_path": "china/education/higher_education/china-moe-higher-education.json", + "file_path": "china/research/china-cf40.json", "geographic_scope": "national" }, { - "id": "moe-china", + "id": "china-cfps", "name": { - "en": "Ministry of Education of the People's Republic of China", - "zh": "中华人民共和国教育部" + "en": "China Family Panel Studies (CFPS)", + "zh": "中国家庭追踪调查(CFPS)" }, - "authority_level": "government", - "data_url": "http://www.moe.gov.cn/jyb_xxgk/xxgk/neirong/tongji/", + "authority_level": "research", + "data_url": "https://opendata.pku.edu.cn/dataverse/CFPS", "has_api": false, - "file_path": "china/education/moe-china.json", + "file_path": "china/research/china-cfps.json", "geographic_scope": "national" }, { - "id": "moe-gaokao", + "id": "china-cgss", "name": { - "en": "Sunshine Gaokao Platform", - "zh": "阳光高考信息平台" + "en": "Chinese General Social Survey (CGSS)", + "zh": "中国综合社会调查(CGSS)" }, - "authority_level": "government", - "data_url": "https://gaokao.chsi.com.cn/", + "authority_level": "research", + "data_url": "http://cgss.ruc.edu.cn/", "has_api": false, - "file_path": "china/education/moe-gaokao.json", + "file_path": "china/research/china-cgss.json", "geographic_scope": "national" }, { - "id": "cnki-population-census", + "id": "china-chfs", "name": { - "en": "CNKI China Population Census Database", - "zh": "中国人口普查数据库" + "en": "China Household Finance Survey (CHFS)", + "zh": "中国家庭金融调查(CHFS)" }, - "authority_level": "commercial", - "data_url": "https://data.cnki.net/npcd", + "authority_level": "research", + "data_url": "https://chfs.swufe.edu.cn", "has_api": false, - "file_path": "china/national/cnki-population-census.json", + "file_path": "china/research/china-chfs.json", "geographic_scope": "national" }, { - "id": "canada-statcan", + "id": "china-ciecc", "name": { - "en": "Statistics Canada", - "zh": "加拿大统计局", - "native": "Statistique Canada" + "en": "China International Engineering Consulting Corporation", + "zh": "中国国际工程咨询有限公司" }, "authority_level": "government", - "data_url": "https://www.statcan.gc.ca/en/start", - "has_api": true, - "file_path": "countries/north-america/canada/statcan.json", + "data_url": "https://www.ciecc.com.cn", + "has_api": false, + "file_path": "china/research/china-ciecc.json", "geographic_scope": "national" }, { - "id": "mexico-coneval", + "id": "china-cste", "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 Society for Technology Economics", + "zh": "中国技术经济学会" }, - "authority_level": "government", - "data_url": "https://www.coneval.org.mx", + "authority_level": "research", + "data_url": "https://www.cste.org.cn", "has_api": false, - "file_path": "countries/north-america/mexico/coneval.json", + "file_path": "china/research/china-cste.json", "geographic_scope": "national" }, { - "id": "usa-census-bureau", + "id": "china-cufe-iigf", "name": { - "en": "United States Census Bureau", - "zh": "美国人口普查局" + "en": "International Institute of Green Finance (IIGF), Central University of Finance and Economics", + "zh": "中央财经大学绿色金融国际研究院" }, - "authority_level": "government", - "data_url": "https://www.census.gov", - "has_api": true, - "file_path": "countries/north-america/usa/census-bureau.json", + "authority_level": "research", + "data_url": "https://iigf.cufe.edu.cn/yjcg/yjbg.htm", + "has_api": false, + "file_path": "china/research/china-cufe-iigf.json", "geographic_scope": "national" }, { - "id": "australia-abs", + "id": "china-drc", "name": { - "en": "Australian Bureau of Statistics", - "zh": "澳大利亚统计局" + "en": "Development Research Center of the State Council of China", + "zh": "国务院发展研究中心" }, "authority_level": "government", - "data_url": "https://www.abs.gov.au", - "has_api": true, - "file_path": "countries/oceania/australia/abs.json", + "data_url": "https://www.drc.gov.cn/yjcg.htm", + "has_api": false, + "file_path": "china/research/china-drc.json", "geographic_scope": "national" }, { - "id": "afdb-statistics", + "id": "china-pku-opendata", "name": { - "en": "African Development Bank Statistics", - "zh": "非洲开发银行统计数据" + "en": "Peking University Open Research Data Platform", + "zh": "北京大学开放研究数据平台" }, - "authority_level": "international", - "data_url": "https://dataportal.opendataforafrica.org", - "has_api": true, - "file_path": "international/development/afdb-statistics.json", - "geographic_scope": "regional" + "authority_level": "research", + "data_url": "https://opendata.pku.edu.cn", + "has_api": false, + "file_path": "china/research/china-pku-opendata.json", + "geographic_scope": "national" }, { - "id": "oecd-statistics", + "id": "china-sass", "name": { - "en": "OECD Statistics", - "zh": "经合组织统计数据", - "native": "OECD Statistics" + "en": "Shanghai Academy of Social Sciences", + "zh": "上海社会科学院" }, - "authority_level": "international", - "data_url": "https://stats.oecd.org", - "has_api": true, - "file_path": "international/economics/oecd.json", - "geographic_scope": "regional" + "authority_level": "research", + "data_url": "https://www.sass.org.cn", + "has_api": false, + "file_path": "china/research/china-sass.json", + "geographic_scope": "national" }, { - "id": "worldbank-open-data", + "id": "china-chnenergy", "name": { - "en": "World Bank Open Data", - "zh": "世界银行开放数据", - "native": "World Bank Open Data" + "en": "China Energy Investment Corporation (CHN Energy)", + "zh": "国家能源投资集团有限责任公司" }, - "authority_level": "international", - "data_url": "https://data.worldbank.org", - "has_api": true, - "file_path": "international/economics/worldbank.json", - "geographic_scope": "global" + "authority_level": "government", + "data_url": "https://www.chnenergy.com.cn", + "has_api": false, + "file_path": "china/resources/china-chnenergy.json", + "geographic_scope": "national" }, { - "id": "iea-education-studies", + "id": "china-ctg", "name": { - "en": "IEA Education Studies Data", - "zh": "国际教育成就评价协会教育研究数据" + "en": "China Three Gorges Corporation (CTG)", + "zh": "中国长江三峡集团有限公司" }, - "authority_level": "international", - "data_url": "https://www.iea.nl/data-tools/repository", + "authority_level": "government", + "data_url": "https://www.ctg.com.cn", "has_api": false, - "file_path": "international/education/iea-education-studies.json", - "geographic_scope": "global" - } - ], - "education-policy": [ + "file_path": "china/resources/china-ctg.json", + "geographic_scope": "national" + }, { - "id": "moe-china", + "id": "china-cace", "name": { - "en": "Ministry of Education of the People's Republic of China", - "zh": "中华人民共和国教育部" + "en": "China Association of Circular Economy", + "zh": "中国循环经济协会" }, - "authority_level": "government", - "data_url": "http://www.moe.gov.cn/jyb_xxgk/xxgk/neirong/tongji/", + "authority_level": "other", + "data_url": "https://www.chinacace.org/patents/cycle_economy_report/", "has_api": false, - "file_path": "china/education/moe-china.json", + "file_path": "china/resources/environment/china-cace.json", "geographic_scope": "national" - } - ], - "education-statistics": [ + }, { - "id": "moe-china", + "id": "china-caep", "name": { - "en": "Ministry of Education of the People's Republic of China", - "zh": "中华人民共和国教育部" + "en": "Chinese Academy of Environmental Planning", + "zh": "生态环境部环境规划院" }, - "authority_level": "government", - "data_url": "http://www.moe.gov.cn/jyb_xxgk/xxgk/neirong/tongji/", + "authority_level": "research", + "data_url": "http://www.caep.org.cn", "has_api": false, - "file_path": "china/education/moe-china.json", + "file_path": "china/resources/environment/china-caep.json", "geographic_scope": "national" - } - ], - "electricity": [ + }, { - "id": "usa-eia", + "id": "china-ceads", "name": { - "en": "U.S. Energy Information Administration", - "zh": "美国能源信息署" + "en": "Carbon Emission Accounts and Datasets for China (CEADs)", + "zh": "中国碳排放核算数据库(CEADs)" }, - "authority_level": "government", - "data_url": "https://www.eia.gov", - "has_api": true, - "file_path": "countries/north-america/usa/eia.json", + "authority_level": "research", + "data_url": "https://ceads.net.cn/data/", + "has_api": false, + "file_path": "china/resources/environment/china-ceads.json", "geographic_scope": "national" - } - ], - "electronics": [ + }, { - "id": "china-miit", + "id": "china-ncsc", "name": { - "en": "Ministry of Industry and Information Technology of the People's Republic of China", - "zh": "中华人民共和国工业和信息化部" + "en": "National Center for Climate Change Strategy and International Cooperation", + "zh": "国家应对气候变化战略研究和国际合作中心" }, - "authority_level": "government", - "data_url": "https://www.miit.gov.cn/gxsj/index.html", + "authority_level": "research", + "data_url": "http://www.ncsc.org.cn", "has_api": false, - "file_path": "china/technology/telecommunications/china-miit.json", + "file_path": "china/resources/environment/china-ncsc.json", "geographic_scope": "national" }, { - "id": "china-lcd-association", + "id": "china-chinalco", "name": { - "en": "China Optoelectronic Display Association - Liquid Crystal Division (CODA)", - "zh": "中国光学光电子行业协会液晶分会" + "en": "Aluminum Corporation of China (Chinalco)", + "zh": "中国铝业集团有限公司" }, - "authority_level": "market", - "data_url": "http://www.coda.org.cn/#/details/more?type=list-info&id=61b1c9ec105e35101858fc49&bannerId=61b30eaa105e353264b3f083", + "authority_level": "commercial", + "data_url": "https://www.chinalco.com.cn", "has_api": false, - "file_path": "sectors/C-manufacturing/electronics/china-lcd-association.json", + "file_path": "china/resources/mineral/china-chinalco.json", "geographic_scope": "national" }, { - "id": "china-optical-association", + "id": "china-cnia", "name": { - "en": "China Optics and Optoelectronics Manufacturers Association", - "zh": "中国光学光电子行业协会" + "en": "China Nonferrous Metals Industry Association", + "zh": "中国有色金属工业协会" }, - "authority_level": "market", - "data_url": "https://www.coema.org.cn/research/sum", + "authority_level": "other", + "data_url": "https://www.chinania.org.cn/html/hangyetongji/chanyeshuju/", "has_api": false, - "file_path": "sectors/C-manufacturing/electronics/china-optical-association.json", + "file_path": "china/resources/mineral/china-cnia.json", "geographic_scope": "national" - } - ], - "electronics-manufacturing": [ + }, { - "id": "china-semiconductor-association", + "id": "china-mnr-minerals", "name": { - "en": "China Semiconductor Industry Association", - "zh": "中国半导体行业协会" + "en": "Ministry of Natural Resources - Mineral Resources Data", + "zh": "自然资源部矿产资源数据" }, - "authority_level": "market", - "data_url": "https://web.csia.net.cn/hyyhfx", + "authority_level": "government", + "data_url": "https://www.mnr.gov.cn/sj/sjfw/kc_19263/", "has_api": false, - "file_path": "sectors/C-manufacturing/electronics/china-semiconductor-association.json", + "file_path": "china/resources/mineral/china-mnr-minerals.json", "geographic_scope": "national" - } - ], - "emergency_care": [ + }, { - "id": "canada-cihi", + "id": "china-caai", "name": { - "en": "Canadian Institute for Health Information", - "zh": "加拿大健康信息研究所", - "native": "Institut canadien d'information sur la santé" + "en": "Chinese Association for Artificial Intelligence", + "zh": "中国人工智能学会" }, - "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", + "authority_level": "research", + "data_url": "https://www.caai.cn/index.php?s=/home/article/lists/category/baokan.html", + "has_api": false, + "file_path": "china/technology/china-caai.json", "geographic_scope": "national" - } - ], - "employment": [ + }, { - "id": "cnki-population-census", + "id": "china-caam", "name": { - "en": "CNKI China Population Census Database", - "zh": "中国人口普查数据库" + "en": "China Association of Automobile Manufacturers", + "zh": "中国汽车工业协会" }, - "authority_level": "commercial", - "data_url": "https://data.cnki.net/npcd", + "authority_level": "other", + "data_url": "http://www.caam.org.cn/chn/4/cate_39/index.html", "has_api": false, - "file_path": "china/national/cnki-population-census.json", + "file_path": "china/technology/industry_associations/china-caam.json", "geographic_scope": "national" }, { - "id": "usa-census-bureau", + "id": "china-cec", "name": { - "en": "United States Census Bureau", - "zh": "美国人口普查局" + "en": "China Electricity Council", + "zh": "中国电力企业联合会" }, - "authority_level": "government", - "data_url": "https://www.census.gov", - "has_api": true, - "file_path": "countries/north-america/usa/census-bureau.json", + "authority_level": "other", + "data_url": "https://www.cec.org.cn/detail/index.html?3-302929", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cec.json", "geographic_scope": "national" }, { - "id": "australia-abs", + "id": "china-cecc", "name": { - "en": "Australian Bureau of Statistics", - "zh": "澳大利亚统计局" + "en": "China Electronics Chamber of Commerce", + "zh": "中国电子商会" }, - "authority_level": "government", - "data_url": "https://www.abs.gov.au", - "has_api": true, - "file_path": "countries/oceania/australia/abs.json", + "authority_level": "other", + "data_url": "http://www.cecc.org.cn/hangye/", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cecc.json", "geographic_scope": "national" - } - ], - "energy": [ + }, { - "id": "china-ndrc-computing", + "id": "china-cisa", "name": { - "en": "NDRC East-to-West Computing Resources Project", - "zh": "国家发展改革委东数西算工程" + "en": "China Iron and Steel Association", + "zh": "中国钢铁工业协会" }, - "authority_level": "government", - "data_url": "https://www.ndrc.gov.cn/xxgk/zcfb/tz/202312/t20231229_1363000.html", + "authority_level": "other", + "data_url": "https://www.chinaisa.org.cn/gxportal/xfgl/portal/index.html", "has_api": false, - "file_path": "china/economy/macro/china-ndrc-computing.json", + "file_path": "china/technology/industry_associations/china-cisa.json", "geographic_scope": "national" }, { - "id": "usa-eia", + "id": "china-cntac", "name": { - "en": "U.S. Energy Information Administration", - "zh": "美国能源信息署" + "en": "China National Textile and Apparel Council", + "zh": "中国纺织工业联合会" }, - "authority_level": "government", - "data_url": "https://www.eia.gov", - "has_api": true, - "file_path": "countries/north-america/usa/eia.json", + "authority_level": "other", + "data_url": "https://www.cntac.org.cn/jinghua", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cntac.json", "geographic_scope": "national" }, { - "id": "afdb-statistics", + "id": "china-cpcif", "name": { - "en": "African Development Bank Statistics", - "zh": "非洲开发银行统计数据" + "en": "China Petroleum and Chemical Industry Federation", + "zh": "中国石油和化学工业联合会" }, - "authority_level": "international", - "data_url": "https://dataportal.opendataforafrica.org", - "has_api": true, - "file_path": "international/development/afdb-statistics.json", - "geographic_scope": "regional" + "authority_level": "other", + "data_url": "http://www.cpcif.org.cn/list/stats", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cpcif.json", + "geographic_scope": "national" }, { - "id": "iaea-energy-data", + "id": "china-isc", "name": { - "en": "IAEA Energy Data", - "zh": "国际原子能机构能源数据" + "en": "Internet Society of China", + "zh": "中国互联网协会" }, - "authority_level": "international", - "data_url": "https://data.iaea.org/", - "has_api": true, - "file_path": "international/energy/iaea-energy-data.json", - "geographic_scope": "global" + "authority_level": "other", + "data_url": "https://www.isc.org.cn/yanjiu/index.html", + "has_api": false, + "file_path": "china/technology/industry_associations/china-isc.json", + "geographic_scope": "national" }, { - "id": "iea-energy-data", + "id": "china-cac", "name": { - "en": "IEA Energy Data", - "zh": "国际能源署能源数据", - "native": "IEA Energy Data" + "en": "Cyberspace Administration of China", + "zh": "国家互联网信息办公室" }, - "authority_level": "international", - "data_url": "https://www.iea.org/data-and-statistics", - "has_api": true, - "file_path": "international/energy/iea.json", - "geographic_scope": "global" + "authority_level": "government", + "data_url": "https://www.cac.gov.cn/wxzw/sjzl/A093708index_1.htm", + "has_api": false, + "file_path": "china/technology/internet/china-cac.json", + "geographic_scope": "national" }, { - "id": "china-charging-alliance", + "id": "china-cnis", "name": { - "en": "China Electric Vehicle Charging Infrastructure Promotion Alliance", - "zh": "中国电动汽车充电基础设施促进联盟" + "en": "China National Institute of Standardization", + "zh": "中国标准化研究院" }, - "authority_level": "market", - "data_url": "https://evcipa.com/dataCenter/dataList", + "authority_level": "government", + "data_url": "https://www.cnis.ac.cn/kycg/", "has_api": false, - "file_path": "sectors/C-manufacturing/automotive/china-charging-alliance.json", + "file_path": "china/technology/standards/china-cnis.json", "geographic_scope": "national" - } - ], - "environment": [ + }, { - "id": "copernicus-open-access-hub", + "id": "china-csa", "name": { - "en": "Copernicus Open Access Hub", - "zh": "哥白尼开放访问中心" + "en": "China Association for Standardization", + "zh": "中国标准化协会" }, - "authority_level": "international", - "data_url": "https://dataspace.copernicus.eu/", - "has_api": true, - "file_path": "academic/environment/copernicus-open-access-hub.json", - "geographic_scope": "global" + "authority_level": "other", + "data_url": "https://www.china-cas.org", + "has_api": false, + "file_path": "china/technology/standards/china-csa.json", + "geographic_scope": "national" }, { - "id": "china-mnr-minerals", + "id": "egypt-capmas", "name": { - "en": "Ministry of Natural Resources - Mineral Resources Data", - "zh": "自然资源部矿产资源数据" + "en": "Central Agency for Public Mobilization and Statistics (CAPMAS)", + "zh": "埃及中央公共动员与统计局" }, "authority_level": "government", - "data_url": "https://www.mnr.gov.cn/sj/sjfw/kc_19263/", + "data_url": "https://www.capmas.gov.eg/Pages/Publications.aspx", "has_api": false, - "file_path": "china/resources/mineral/china-mnr-minerals.json", + "file_path": "countries/africa/egypt/egypt-capmas.json", "geographic_scope": "national" }, { - "id": "canada-statcan", + "id": "ghana-gss", "name": { - "en": "Statistics Canada", - "zh": "加拿大统计局", - "native": "Statistique Canada" + "en": "Ghana Statistical Service", + "zh": "加纳统计局" }, "authority_level": "government", - "data_url": "https://www.statcan.gc.ca/en/start", - "has_api": true, - "file_path": "countries/north-america/canada/statcan.json", + "data_url": "https://statsghana.gov.gh/data-statistics/economic-statistics", + "has_api": false, + "file_path": "countries/africa/ghana/ghana-gss.json", "geographic_scope": "national" }, { - "id": "usa-eia", + "id": "kenya-knbs", "name": { - "en": "U.S. Energy Information Administration", - "zh": "美国能源信息署" + "en": "Kenya National Bureau of Statistics", + "zh": "肯尼亚国家统计局" }, "authority_level": "government", - "data_url": "https://www.eia.gov", - "has_api": true, - "file_path": "countries/north-america/usa/eia.json", + "data_url": "https://www.knbs.or.ke/publications/", + "has_api": false, + "file_path": "countries/africa/kenya/kenya-knbs.json", "geographic_scope": "national" }, { - "id": "australia-abs", + "id": "nigeria-nbs", "name": { - "en": "Australian Bureau of Statistics", - "zh": "澳大利亚统计局" + "en": "National Bureau of Statistics Nigeria (NBS)", + "zh": "尼日利亚国家统计局" }, "authority_level": "government", - "data_url": "https://www.abs.gov.au", - "has_api": true, - "file_path": "countries/oceania/australia/abs.json", + "data_url": "https://www.nigerianstat.gov.ng/elibrary", + "has_api": false, + "file_path": "countries/africa/nigeria/nigeria-nbs.json", "geographic_scope": "national" }, { - "id": "brazil-ibge", + "id": "south-africa-statssa", "name": { - "en": "Brazilian Institute of Geography and Statistics", - "zh": "巴西地理统计局" + "en": "Statistics South Africa (Stats SA)", + "zh": "南非统计局" }, "authority_level": "government", - "data_url": "https://www.ibge.gov.br/en/indicators", - "has_api": true, - "file_path": "countries/south-america/brazil-ibge.json", + "data_url": "https://www.statssa.gov.za/?page_id=1854", + "has_api": false, + "file_path": "countries/africa/south-africa/south-africa-statssa.json", "geographic_scope": "national" }, { - "id": "nasa-earthdata", + "id": "stats-sa", "name": { - "en": "NASA Earthdata", - "zh": "NASA地球数据" + "en": "Statistics South Africa (Stats SA)", + "zh": "南非统计局", + "native": "Statistics South Africa (Stats SA)" }, "authority_level": "government", - "data_url": "https://www.earthdata.nasa.gov", - "has_api": true, - "file_path": "international/earth-science/nasa-earthdata.json", - "geographic_scope": "global" + "data_url": "https://www.statssa.gov.za/?page_id=1521", + "has_api": false, + "file_path": "countries/africa/south-africa/stats-sa.json", + "geographic_scope": "national" }, { - "id": "oecd-statistics", + "id": "brunei-deps", "name": { - "en": "OECD Statistics", - "zh": "经合组织统计数据", - "native": "OECD Statistics" + "en": "Department of Economic Planning and Statistics, Brunei (DEPS)", + "zh": "文莱经济规划与统计局" }, - "authority_level": "international", - "data_url": "https://stats.oecd.org", - "has_api": true, - "file_path": "international/economics/oecd.json", - "geographic_scope": "regional" + "authority_level": "government", + "data_url": "https://deps.mofe.gov.bn/edata-library/", + "has_api": false, + "file_path": "countries/asia/brunei/brunei-deps.json", + "geographic_scope": "national" }, { - "id": "worldbank-open-data", + "id": "cambodia-nis", "name": { - "en": "World Bank Open Data", - "zh": "世界银行开放数据", - "native": "World Bank Open Data" + "en": "National Institute of Statistics of Cambodia (NIS)", + "zh": "柬埔寨国家统计局" }, - "authority_level": "international", - "data_url": "https://data.worldbank.org", - "has_api": true, - "file_path": "international/economics/worldbank.json", - "geographic_scope": "global" + "authority_level": "government", + "data_url": "https://camstat.nis.gov.kh/", + "has_api": false, + "file_path": "countries/asia/cambodia/cambodia-nis.json", + "geographic_scope": "national" }, { - "id": "iaea-energy-data", + "id": "hkma", "name": { - "en": "IAEA Energy Data", - "zh": "国际原子能机构能源数据" + "en": "Hong Kong Monetary Authority", + "zh": "香港金融管理局" }, - "authority_level": "international", - "data_url": "https://data.iaea.org/", + "authority_level": "government", + "data_url": "https://www.hkma.gov.hk/eng/data-publications-and-research/data-and-statistics/", "has_api": true, - "file_path": "international/energy/iaea-energy-data.json", - "geographic_scope": "global" + "file_path": "countries/asia/hkma.json", + "geographic_scope": "national" }, { - "id": "iea-energy-data", + "id": "india-mospi", "name": { - "en": "IEA Energy Data", - "zh": "国际能源署能源数据", - "native": "IEA Energy Data" + "en": "Ministry of Statistics and Programme Implementation (MoSPI)", + "zh": "印度统计与计划实施部", + "native": "सांख्यिकी और कार्यक्रम कार्यान्वयन मंत्रालय" }, - "authority_level": "international", - "data_url": "https://www.iea.org/data-and-statistics", - "has_api": true, - "file_path": "international/energy/iea.json", - "geographic_scope": "global" - } - ], - "environmental-monitoring": [ + "authority_level": "government", + "data_url": "https://mospi.gov.in/data", + "has_api": false, + "file_path": "countries/asia/india/india-mospi.json", + "geographic_scope": "national" + }, { - "id": "usgs-earthexplorer", + "id": "india-rbi", "name": { - "en": "USGS EarthExplorer", - "zh": "美国地质调查局地球探索者" + "en": "Reserve Bank of India", + "zh": "印度储备银行", + "native": "भारतीय रिज़र्व बैंक" }, "authority_level": "government", - "data_url": "https://earthexplorer.usgs.gov/", + "data_url": "https://www.rbi.org.in/Scripts/Statistics.aspx", "has_api": true, - "file_path": "countries/north-america/usa/usgs-earthexplorer.json", - "geographic_scope": "global" - } - ], - "environmental_science": [ + "file_path": "countries/asia/india/india-rbi.json", + "geographic_scope": "national" + }, { - "id": "noaa-cdo", + "id": "indonesia-bps", "name": { - "en": "NOAA Climate Data Online (CDO)", - "zh": "NOAA气候数据在线系统" + "en": "Statistics Indonesia (BPS)", + "zh": "印度尼西亚中央统计局", + "native": "Badan Pusat Statistik" }, "authority_level": "government", - "data_url": "https://www.ncei.noaa.gov/cdo-web/", + "data_url": "https://www.bps.go.id/en/statistics-table", "has_api": true, - "file_path": "countries/north-america/usa/noaa-cdo.json", - "geographic_scope": "global" - } - ], - "epidemiology": [ + "file_path": "countries/asia/indonesia/indonesia-bps.json", + "geographic_scope": "national" + }, { - "id": "uk-biobank", + "id": "japan-esri", "name": { - "en": "UK Biobank", - "zh": "英国生物样本库" + "en": "Economic and Social Research Institute, Cabinet Office of Japan", + "zh": "日本内阁府经济社会综合研究所" }, - "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.esri.cao.go.jp/en/sna/menu.html", + "has_api": false, + "file_path": "countries/asia/japan/japan-esri.json", "geographic_scope": "national" }, { - "id": "ghdx", + "id": "japan-estat", "name": { - "en": "Global Health Data Exchange (GHDx)", - "zh": "全球健康数据交换平台" + "en": "Japan e-Stat (Portal Site of Official Statistics)", + "zh": "日本统计局 e-Stat(政府统计综合窗口)", + "native": "政府統計の総合窓口 e-Stat" }, - "authority_level": "research", - "data_url": "https://ghdx.healthdata.org/", + "authority_level": "government", + "data_url": "https://www.e-stat.go.jp/en/stat-search", "has_api": true, - "file_path": "academic/health/ghdx.json", - "geographic_scope": "global" + "file_path": "countries/asia/japan/japan-estat.json", + "geographic_scope": "national" }, { - "id": "africa-cdc", + "id": "japan-jetro", "name": { - "en": "Africa CDC Health Data", - "zh": "非洲疾控中心健康数据" + "en": "Japan External Trade Organization", + "zh": "日本贸易振兴机构", + "native": "日本貿易振興機構" }, - "authority_level": "international", - "data_url": "https://africacdc.org", + "authority_level": "government", + "data_url": "https://www.jetro.go.jp/en/reports/statistics.html", "has_api": false, - "file_path": "international/health/africa-cdc.json", - "geographic_scope": "regional" - } - ], - "evolutionary biology": [ + "file_path": "countries/asia/japan/japan-jetro.json", + "geographic_scope": "national" + }, { - "id": "1000-genomes", + "id": "japan-meti", "name": { - "en": "1000 Genomes Project", - "zh": "千人基因组计划" + "en": "Ministry of Economy, Trade and Industry (Japan)", + "zh": "日本经济产业省", + "native": "経済産業省" }, - "authority_level": "research", - "data_url": "https://www.internationalgenome.org/", + "authority_level": "government", + "data_url": "https://www.meti.go.jp/english/statistics/index.html", "has_api": false, - "file_path": "academic/biology/1000-genomes.json", - "geographic_scope": "global" - } - ], - "exchange_rates": [ + "file_path": "countries/asia/japan/japan-meti.json", + "geographic_scope": "national" + }, { - "id": "korea-bok", + "id": "kostat-cpi", "name": { - "en": "Bank of Korea", - "zh": "韩国银行", - "native": "한국은행" + "en": "Statistics Korea (KOSTAT) - Consumer Price Index", + "zh": "韩国统计局 - 消费者物价指数", + "ko": "통계청 - 소비자물가지수" }, "authority_level": "government", - "data_url": "https://www.bok.or.kr/eng/main/main.do", + "data_url": "https://kosis.kr/eng/", "has_api": true, - "file_path": "countries/asia/korea/korea-bok.json", + "file_path": "countries/asia/kostat-cpi.json", "geographic_scope": "national" }, { - "id": "canada-boc", + "id": "kostat", "name": { - "en": "Bank of Canada", - "zh": "加拿大银行", - "native": "Banque du Canada" + "en": "Statistics Korea (KOSTAT)", + "zh": "韩国统计厅" }, "authority_level": "government", - "data_url": "https://www.bankofcanada.ca/rates/", + "data_url": "https://kosis.kr/eng/", "has_api": true, - "file_path": "countries/north-america/canada/canada-boc.json", + "file_path": "countries/asia/kostat.json", "geographic_scope": "national" }, { - "id": "mx-banxico", + "id": "laos-lsb", "name": { - "en": "Bank of Mexico Economic Information System", - "zh": "墨西哥银行经济信息系统", - "native": "Sistema de Información Económica - Banco de México" + "en": "Lao Statistics Bureau (LSB)", + "zh": "老挝统计局" }, "authority_level": "government", - "data_url": "https://www.banxico.org.mx", + "data_url": "https://laosis.lsb.gov.la/", + "has_api": false, + "file_path": "countries/asia/laos/laos-lsb.json", + "geographic_scope": "national" + }, + { + "id": "malaysia-dosm", + "name": { + "en": "Department of Statistics Malaysia (DOSM)", + "zh": "马来西亚统计局" + }, + "authority_level": "government", + "data_url": "https://open.dosm.gov.my/", "has_api": true, - "file_path": "countries/north-america/mexico/banxico.json", + "file_path": "countries/asia/malaysia/malaysia-dosm.json", "geographic_scope": "national" - } - ], - "exports": [ + }, { - "id": "brazil-cecafe", + "id": "myanmar-cso", "name": { - "en": "Brazilian Coffee Exporters Council", - "zh": "巴西咖啡出口商协会" + "en": "Central Statistical Organization (Myanmar)", + "zh": "缅甸中央统计局" }, - "authority_level": "market", - "data_url": "https://www.cecafe.com.br/publicacoes/relatorio-de-exportacoes/", + "authority_level": "government", + "data_url": "https://www.csostat.gov.mm", "has_api": false, - "file_path": "countries/south-america/brazil-cecafe.json", + "file_path": "countries/asia/myanmar/myanmar-cso.json", "geographic_scope": "national" - } - ], - "finance": [ + }, { - "id": "nber-data", + "id": "philippines-psa", "name": { - "en": "NBER Data Library", - "zh": "国家经济研究局数据库", - "native": "NBER Data Library" + "en": "Philippine Statistics Authority", + "zh": "菲律宾统计局" }, - "authority_level": "research", - "data_url": "https://www.nber.org", + "authority_level": "government", + "data_url": "https://openstat.psa.gov.ph", "has_api": false, - "file_path": "academic/economics/nber.json", - "geographic_scope": "global" + "file_path": "countries/asia/philippines/psa.json", + "geographic_scope": "national" }, { - "id": "china-nfra", + "id": "saudi-gastat", "name": { - "en": "National Financial Regulatory Administration", - "zh": "国家金融监督管理总局", - "native": "国家金融监督管理总局" + "en": "General Authority for Statistics (GASTAT)", + "zh": "沙特阿拉伯统计总局" }, "authority_level": "government", - "data_url": "https://www.nfra.gov.cn/cn/view/pages/tongjishuju/tongjishuju.html", + "data_url": "https://www.stats.gov.sa/statistics", "has_api": false, - "file_path": "china/finance/banking/nfra.json", + "file_path": "countries/asia/saudi-arabia/saudi-gastat.json", "geographic_scope": "national" }, { - "id": "china-pbc", + "id": "singapore-singstat", "name": { - "en": "People's Bank of China", - "zh": "中国人民银行", - "native": "中国人民银行" + "en": "Singapore Department of Statistics (SingStat)", + "zh": "新加坡统计局", + "native": "Department of Statistics Singapore" + }, + "authority_level": "government", + "data_url": "https://tablebuilder.singstat.gov.sg", + "has_api": true, + "file_path": "countries/asia/singapore/singapore-singstat.json", + "geographic_scope": "national" + }, + { + "id": "korea-kostat", + "name": { + "en": "Statistics Korea (KOSTAT)", + "zh": "韩国统计厅" + }, + "authority_level": "government", + "data_url": "https://kosis.kr/eng/", + "has_api": true, + "file_path": "countries/asia/south-korea/korea-kostat.json", + "geographic_scope": "national" + }, + { + "id": "taiwan-dgbas", + "name": { + "en": "Directorate-General of Budget, Accounting and Statistics (DGBAS)", + "zh": "台湾主计总处" }, "authority_level": "government", - "data_url": "http://www.pbc.gov.cn/diaochatongjisi/116219/index.html", + "data_url": "https://eng.stat.gov.tw/", "has_api": false, - "file_path": "china/finance/banking/pbc.json", + "file_path": "countries/asia/taiwan/taiwan-dgbas.json", "geographic_scope": "national" }, { - "id": "china-csrc", + "id": "vietnam-gso", "name": { - "en": "China Securities Regulatory Commission", - "zh": "中国证券监督管理委员会", - "native": "中国证券监督管理委员会" + "en": "General Statistics Office of Vietnam", + "zh": "越南统计总局" }, "authority_level": "government", - "data_url": "https://www.csrc.gov.cn/csrc/c100103/common_list.shtml", + "data_url": "https://www.nso.gov.vn/en/statistical-data/", "has_api": false, - "file_path": "china/finance/securities/csrc.json", + "file_path": "countries/asia/vietnam/gso.json", "geographic_scope": "national" }, { - "id": "hkex", + "id": "mpi-fdi", "name": { - "en": "Hong Kong Exchanges and Clearing Limited (HKEX)", - "zh": "香港交易及结算所有限公司(港交所)", - "native": "香港交易及结算所有限公司" + "en": "Ministry of Planning and Investment - FDI Statistics", + "zh": "越南计划投资部 - 外国直接投资统计", + "vi": "Bộ Kế hoạch và Đầu tư - Thống kê FDI" }, - "authority_level": "commercial", - "data_url": "https://www.hkexnews.hk", - "has_api": true, - "file_path": "china/finance/securities/hkex.json", - "geographic_scope": "regional" + "authority_level": "government", + "data_url": "https://www.mpi.gov.vn/en/Pages/Report-on-Foreign-Direct-Investment-1740.aspx", + "has_api": false, + "file_path": "countries/asia/vietnam/mpi-fdi.json", + "geographic_scope": "national" }, { - "id": "adb-data", + "id": "austria-statistik", "name": { - "en": "Asian Development Bank Data Library", - "zh": "亚洲开发银行数据库", - "native": "ADB Data Library" + "en": "Statistics Austria", + "zh": "奥地利统计局", + "native": "Statistik Austria" }, - "authority_level": "international", - "data_url": "https://data.adb.org", + "authority_level": "government", + "data_url": "https://www.statistik.at/statistiken", "has_api": true, - "file_path": "international/development/adb-data.json", - "geographic_scope": "regional" + "file_path": "countries/europe/at/austria-statistik.json", + "geographic_scope": "national" }, { - "id": "afdb-statistics", + "id": "bank-of-england-statistics", "name": { - "en": "African Development Bank Statistics", - "zh": "非洲开发银行统计数据" + "en": "Bank of England Statistical Database", + "zh": "英格兰银行统计数据库" }, - "authority_level": "international", - "data_url": "https://dataportal.opendataforafrica.org", + "authority_level": "government", + "data_url": "https://www.bankofengland.co.uk/boeapps/database/", "has_api": true, - "file_path": "international/development/afdb-statistics.json", - "geographic_scope": "regional" + "file_path": "countries/europe/bank-of-england-statistics.json", + "geographic_scope": "national" }, { - "id": "adb-data-library", + "id": "belgium-statbel", "name": { - "en": "ADB Data Library", - "zh": "亚洲开发银行数据库" + "en": "Statbel - Belgian Statistical Office", + "zh": "比利时统计局" }, - "authority_level": "international", - "data_url": "https://data.adb.org", - "has_api": true, - "file_path": "international/economics/adb-data-library.json", - "geographic_scope": "regional" + "authority_level": "government", + "data_url": "https://statbel.fgov.be/en/open-data", + "has_api": false, + "file_path": "countries/europe/belgium/belgium-statbel.json", + "geographic_scope": "national" }, { - "id": "adb-vietnam", + "id": "bulgaria-nsi", "name": { - "en": "Asian Development Bank - Vietnam Country Data", - "zh": "亚洲开发银行越南国别数据" + "en": "National Statistical Institute of Bulgaria (NSI)", + "zh": "保加利亚国家统计局" }, - "authority_level": "international", - "data_url": "https://www.adb.org/countries/viet-nam/data", + "authority_level": "government", + "data_url": "https://www.nsi.bg/en/content/2666/statisticsdatabases", "has_api": false, - "file_path": "international/economics/adb-vietnam.json", + "file_path": "countries/europe/bulgaria/bulgaria-nsi.json", "geographic_scope": "national" }, { - "id": "ceic-global-database", + "id": "croatia-dzs", "name": { - "en": "CEIC Global Database", - "zh": "环亚经济数据库" + "en": "Croatian Bureau of Statistics (DZS)", + "zh": "克罗地亚统计局" }, - "authority_level": "commercial", - "data_url": "https://www.ceicdata.com/en/products/global-economic-database", - "has_api": true, - "file_path": "international/economics/ceic-global-database.json", - "geographic_scope": "global" + "authority_level": "government", + "data_url": "https://dzs.gov.hr/en/data-and-statistics", + "has_api": false, + "file_path": "countries/europe/croatia/croatia-dzs.json", + "geographic_scope": "national" }, { - "id": "ceic-vietnam", + "id": "czechia-czso", "name": { - "en": "CEIC Vietnam Economic Database", - "zh": "环亚经济数据库 - 越南经济数据专题" + "en": "Czech Statistical Office (CZSO)", + "zh": "捷克统计局" }, - "authority_level": "commercial", - "data_url": "https://www.ceicdata.com/en/country/vietnam", + "authority_level": "government", + "data_url": "https://vdb.czso.cz", "has_api": true, - "file_path": "international/economics/ceic-vietnam.json", + "file_path": "countries/europe/czechia/czechia-czso.json", "geographic_scope": "national" }, { - "id": "imf-data", + "id": "denmark-dst", "name": { - "en": "IMF Data", - "zh": "国际货币基金组织数据", - "native": "IMF Data" + "en": "Statistics Denmark", + "zh": "丹麦统计局", + "native": "Danmarks Statistik" }, - "authority_level": "international", - "data_url": "https://data.imf.org", + "authority_level": "government", + "data_url": "https://www.dst.dk/en/Statistik", "has_api": true, - "file_path": "international/economics/imf.json", - "geographic_scope": "global" + "file_path": "countries/europe/dk/denmark-dst.json", + "geographic_scope": "national" }, { - "id": "ebrd", + "id": "finland-stat", "name": { - "en": "European Bank for Reconstruction and Development", - "zh": "欧洲复兴开发银行" + "en": "Statistics Finland", + "zh": "芬兰统计局", + "native": "Tilastokeskus" }, - "authority_level": "international", - "data_url": "https://www.ebrd.com", - "has_api": false, - "file_path": "international/finance/ebrd.json", - "geographic_scope": "regional" + "authority_level": "government", + "data_url": "https://pxdata.stat.fi/PxWeb/pxweb/en/StatFin/", + "has_api": true, + "file_path": "countries/europe/finland/finland-stat.json", + "geographic_scope": "national" }, { - "id": "paris-club", + "id": "france-insee", "name": { - "en": "Paris Club", - "zh": "巴黎俱乐部" + "en": "INSEE - National Institute of Statistics and Economic Studies", + "zh": "法国国家统计与经济研究所", + "native": "Institut national de la statistique et des études économiques" }, - "authority_level": "international", - "data_url": "https://www.clubdeparis.org", - "has_api": false, - "file_path": "international/finance/paris-club.json", - "geographic_scope": "regional" + "authority_level": "government", + "data_url": "https://www.insee.fr/en/statistiques", + "has_api": true, + "file_path": "countries/europe/fr/france-insee.json", + "geographic_scope": "national" }, { - "id": "icc-trade-register", + "id": "germany-destatis", "name": { - "en": "ICC Trade Register", - "zh": "国际商会贸易统计" + "en": "Federal Statistical Office of Germany (Destatis)", + "zh": "德国联邦统计局", + "native": "Statistisches Bundesamt (Destatis)" }, - "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", - "geographic_scope": "global" - } - ], - "financial-stability": [ + "authority_level": "government", + "data_url": "https://www.destatis.de/EN/Themes/_node.html", + "has_api": true, + "file_path": "countries/europe/germany/germany-destatis.json", + "geographic_scope": "national" + }, { - "id": "iais", + "id": "greece-elstat", "name": { - "en": "IAIS - International Association of Insurance Supervisors", - "zh": "国际保险监督官协会" + "en": "Hellenic Statistical Authority (ELSTAT)", + "zh": "希腊统计局", + "native": "Ελληνική Στατιστική Αρχή (ΕΛΣΤΑΤ)" }, - "authority_level": "international", - "data_url": "https://www.iais.org/activities-topics/financial-stability/gimar/", + "authority_level": "government", + "data_url": "https://www.statistics.gr/en/statistics", "has_api": false, - "file_path": "international/finance/iais.json", - "geographic_scope": "global" - } - ], - "financial_markets": [ + "file_path": "countries/europe/greece/greece-elstat.json", + "geographic_scope": "national" + }, { - "id": "canada-boc", + "id": "hungary-ksh", "name": { - "en": "Bank of Canada", - "zh": "加拿大银行", - "native": "Banque du Canada" + "en": "Hungarian Central Statistical Office", + "zh": "匈牙利中央统计局" }, "authority_level": "government", - "data_url": "https://www.bankofcanada.ca/rates/", + "data_url": "https://www.ksh.hu/engstadat", "has_api": true, - "file_path": "countries/north-america/canada/canada-boc.json", + "file_path": "countries/europe/hungary/hungary-ksh.json", "geographic_scope": "national" }, { - "id": "mx-banxico", + "id": "ireland-cso", "name": { - "en": "Bank of Mexico Economic Information System", - "zh": "墨西哥银行经济信息系统", - "native": "Sistema de Información Económica - Banco de México" + "en": "Central Statistics Office (CSO)", + "zh": "爱尔兰中央统计局" }, "authority_level": "government", - "data_url": "https://www.banxico.org.mx", + "data_url": "https://data.cso.ie", "has_api": true, - "file_path": "countries/north-america/mexico/banxico.json", + "file_path": "countries/europe/ireland/ireland-cso.json", "geographic_scope": "national" - } - ], - "financial_statistics": [ + }, { - "id": "korea-bok", + "id": "italy-istat", "name": { - "en": "Bank of Korea", - "zh": "韩国银行", - "native": "한국은행" + "en": "Italian National Institute of Statistics", + "zh": "意大利国家统计局" }, "authority_level": "government", - "data_url": "https://www.bok.or.kr/eng/main/main.do", + "data_url": "https://esploradati.istat.it/databrowser/", "has_api": true, - "file_path": "countries/asia/korea/korea-bok.json", + "file_path": "countries/europe/italy/italy-istat.json", "geographic_scope": "national" - } - ], - "flow_of_funds": [ + }, { - "id": "korea-bok", + "id": "netherlands-cbs", "name": { - "en": "Bank of Korea", - "zh": "韩国银行", - "native": "한국은행" + "en": "Statistics Netherlands (CBS)", + "zh": "荷兰统计局" }, "authority_level": "government", - "data_url": "https://www.bok.or.kr/eng/main/main.do", + "data_url": "https://opendata.cbs.nl/statline/", "has_api": true, - "file_path": "countries/asia/korea/korea-bok.json", + "file_path": "countries/europe/netherlands/netherlands-cbs.json", "geographic_scope": "national" - } - ], - "food-security": [ + }, { - "id": "mexico-coneval", + "id": "norway-ssb", "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": "Statistics Norway (SSB)", + "zh": "挪威统计局", + "native": "Statistisk sentralbyrå (SSB)" }, "authority_level": "government", - "data_url": "https://www.coneval.org.mx", - "has_api": false, - "file_path": "countries/north-america/mexico/coneval.json", + "data_url": "https://www.ssb.no/en/statbank", + "has_api": true, + "file_path": "countries/europe/norway/norway-ssb.json", "geographic_scope": "national" - } - ], - "food-supply": [ + }, { - "id": "brazil-conab", + "id": "poland-gus", "name": { - "en": "National Supply Company (CONAB)", - "zh": "巴西国家商品供应公司" + "en": "Statistics Poland (GUS)", + "zh": "波兰中央统计局", + "native": "Główny Urząd Statystyczny" }, "authority_level": "government", - "data_url": "https://www.gov.br/conab/pt-br/atuacao/informacoes-agropecuarias/safras/safra-de-cafe", - "has_api": false, - "file_path": "countries/south-america/brazil-conab.json", + "data_url": "https://bdl.stat.gov.pl/BDL/start", + "has_api": true, + "file_path": "countries/europe/poland/poland-gus.json", "geographic_scope": "national" - } - ], - "genetics": [ - { - "id": "1000-genomes", - "name": { - "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", + "id": "portugal-ine", "name": { - "en": "UK Biobank", - "zh": "英国生物样本库" + "en": "Statistics Portugal (INE)", + "zh": "葡萄牙国家统计局" }, - "authority_level": "research", - "data_url": "https://www.ukbiobank.ac.uk/", + "authority_level": "government", + "data_url": "https://www.ine.pt/xportal/xmain?xpid=INE&xpgid=ine_base_dados", "has_api": true, - "file_path": "academic/biology/uk-biobank.json", + "file_path": "countries/europe/portugal/portugal-ine.json", "geographic_scope": "national" - } - ], - "genomics": [ + }, { - "id": "1000-genomes", + "id": "romania-bnr", "name": { - "en": "1000 Genomes Project", - "zh": "千人基因组计划" + "en": "National Bank of Romania (BNR)", + "zh": "罗马尼亚国家银行" }, - "authority_level": "research", - "data_url": "https://www.internationalgenome.org/", - "has_api": false, - "file_path": "academic/biology/1000-genomes.json", - "geographic_scope": "global" + "authority_level": "government", + "data_url": "https://www.bnr.ro/Statistics-702.aspx", + "has_api": true, + "file_path": "countries/europe/romania/romania-bnr.json", + "geographic_scope": "national" }, { - "id": "uk-biobank", + "id": "romania-ins", "name": { - "en": "UK Biobank", - "zh": "英国生物样本库" + "en": "National Institute of Statistics (Romania)", + "zh": "罗马尼亚国家统计局" }, - "authority_level": "research", - "data_url": "https://www.ukbiobank.ac.uk/", + "authority_level": "government", + "data_url": "https://insse.ro/cms/en/statistici-2", "has_api": true, - "file_path": "academic/biology/uk-biobank.json", + "file_path": "countries/europe/romania/romania-ins.json", "geographic_scope": "national" }, { - "id": "tcga", + "id": "russia-rosstat", "name": { - "en": "The Cancer Genome Atlas (TCGA)", - "zh": "癌症基因组图谱" + "en": "Federal State Statistics Service (Rosstat)", + "zh": "俄罗斯联邦统计局", + "native": "Федеральная служба государственной статистики (Росстат)" }, "authority_level": "government", - "data_url": "https://portal.gdc.cancer.gov/", + "data_url": "https://rosstat.gov.ru/statistics", "has_api": true, - "file_path": "academic/health/tcga.json", + "file_path": "countries/europe/russia/russia-rosstat.json", "geographic_scope": "national" - } - ], - "geography": [ + }, { - "id": "usa-census-bureau", + "id": "slovakia-susr", "name": { - "en": "United States Census Bureau", - "zh": "美国人口普查局" + "en": "Statistical Office of the Slovak Republic (SUSR)", + "zh": "斯洛伐克共和国统计局" }, "authority_level": "government", - "data_url": "https://www.census.gov", - "has_api": true, - "file_path": "countries/north-america/usa/census-bureau.json", + "data_url": "https://datacube.statistics.sk", + "has_api": false, + "file_path": "countries/europe/slovakia/slovakia-susr.json", "geographic_scope": "national" }, { - "id": "brazil-ibge", + "id": "slovenia-surs", "name": { - "en": "Brazilian Institute of Geography and Statistics", - "zh": "巴西地理统计局" + "en": "Statistical Office of the Republic of Slovenia (SURS)", + "zh": "斯洛文尼亚共和国统计局" }, "authority_level": "government", - "data_url": "https://www.ibge.gov.br/en/indicators", + "data_url": "https://www.stat.si/StatWeb/en", "has_api": true, - "file_path": "countries/south-america/brazil-ibge.json", + "file_path": "countries/europe/slovenia/slovenia-surs.json", "geographic_scope": "national" - } - ], - "geospatial": [ + }, { - "id": "usgs-earthexplorer", + "id": "spain-ine", "name": { - "en": "USGS EarthExplorer", - "zh": "美国地质调查局地球探索者" + "en": "National Statistics Institute of Spain", + "zh": "西班牙国家统计局" }, "authority_level": "government", - "data_url": "https://earthexplorer.usgs.gov/", + "data_url": "https://www.ine.es/dyngs/INEbase/listaoperaciones.htm", "has_api": true, - "file_path": "countries/north-america/usa/usgs-earthexplorer.json", - "geographic_scope": "global" - } - ], - "governance": [ + "file_path": "countries/europe/spain/spain-ine.json", + "geographic_scope": "national" + }, { - "id": "afdb-statistics", + "id": "sweden-scb", "name": { - "en": "African Development Bank Statistics", - "zh": "非洲开发银行统计数据" + "en": "Statistics Sweden (SCB)", + "zh": "瑞典统计局" }, - "authority_level": "international", - "data_url": "https://dataportal.opendataforafrica.org", + "authority_level": "government", + "data_url": "https://www.statistikdatabasen.scb.se", "has_api": true, - "file_path": "international/development/afdb-statistics.json", - "geographic_scope": "regional" - } - ], - "government": [ + "file_path": "countries/europe/sweden/sweden-scb.json", + "geographic_scope": "national" + }, { - "id": "usa-census-bureau", + "id": "switzerland-fso", "name": { - "en": "United States Census Bureau", - "zh": "美国人口普查局" + "en": "Swiss Federal Statistical Office (FSO)", + "zh": "瑞士联邦统计局", + "native": "Bundesamt für Statistik (BFS)" }, "authority_level": "government", - "data_url": "https://www.census.gov", + "data_url": "https://www.bfs.admin.ch/bfs/en/home/statistics.html", "has_api": true, - "file_path": "countries/north-america/usa/census-bureau.json", + "file_path": "countries/europe/switzerland/switzerland-fso.json", "geographic_scope": "national" - } - ], - "government-finance": [ + }, { - "id": "australia-abs", + "id": "turkey-tuik", "name": { - "en": "Australian Bureau of Statistics", - "zh": "澳大利亚统计局" + "en": "Turkish Statistical Institute (TurkStat)", + "zh": "土耳其统计局", + "native": "Türkiye İstatistik Kurumu (TÜİK)" }, "authority_level": "government", - "data_url": "https://www.abs.gov.au", + "data_url": "https://data.tuik.gov.tr", "has_api": true, - "file_path": "countries/oceania/australia/abs.json", + "file_path": "countries/europe/turkey/turkey-tuik.json", "geographic_scope": "national" - } - ], - "graduate-education": [ + }, { - "id": "cdgdc", + "id": "uk-ons-cpi-rpi", "name": { - "en": "China Academic Degrees & Graduate Education Development Center", - "zh": "教育部学位与研究生教育发展中心" + "en": "UK Office for National Statistics - Consumer Price Index and Retail Prices Index", + "zh": "英国国家统计局 - 消费者价格指数和零售价格指数" }, "authority_level": "government", - "data_url": "https://www.chinadegrees.cn/", + "data_url": "https://www.ons.gov.uk/economy/inflationandpriceindices", "has_api": false, - "file_path": "china/education/higher_education/cdgdc.json", + "file_path": "countries/europe/uk-ons-cpi-rpi.json", "geographic_scope": "national" - } - ], - "health": [ + }, { - "id": "uk-biobank", + "id": "canada-statcan", "name": { - "en": "UK Biobank", - "zh": "英国生物样本库" + "en": "Statistics Canada", + "zh": "加拿大统计局", + "native": "Statistique Canada" }, - "authority_level": "research", - "data_url": "https://www.ukbiobank.ac.uk/", + "authority_level": "government", + "data_url": "https://www.statcan.gc.ca/en/start", "has_api": true, - "file_path": "academic/biology/uk-biobank.json", + "file_path": "countries/north-america/canada/statcan.json", "geographic_scope": "national" }, { - "id": "nber-data", + "id": "mexico-inegi", "name": { - "en": "NBER Data Library", - "zh": "国家经济研究局数据库", - "native": "NBER Data Library" + "en": "National Institute of Statistics and Geography (INEGI)", + "zh": "墨西哥国家统计和地理研究所", + "native": "Instituto Nacional de Estadística y Geografía (INEGI)" }, - "authority_level": "research", - "data_url": "https://www.nber.org", - "has_api": false, - "file_path": "academic/economics/nber.json", - "geographic_scope": "global" + "authority_level": "government", + "data_url": "https://www.inegi.org.mx/datos/", + "has_api": true, + "file_path": "countries/north-america/mexico/mexico-inegi.json", + "geographic_scope": "national" }, { - "id": "clinicaltrials-gov", + "id": "usa-eia", "name": { - "en": "ClinicalTrials.gov", - "zh": "临床试验注册数据库" + "en": "U.S. Energy Information Administration", + "zh": "美国能源信息署" }, "authority_level": "government", - "data_url": "https://clinicaltrials.gov/", + "data_url": "https://www.eia.gov", "has_api": true, - "file_path": "academic/health/clinicaltrials-gov.json", - "geographic_scope": "global" + "file_path": "countries/north-america/usa/eia.json", + "geographic_scope": "national" }, { - "id": "dhs", + "id": "us-bea", "name": { - "en": "Demographic and Health Surveys (DHS) Program", - "zh": "人口与健康调查项目" + "en": "Bureau of Economic Analysis", + "zh": "经济分析局" }, - "authority_level": "international", - "data_url": "https://dhsprogram.com/", + "authority_level": "government", + "data_url": "https://www.bea.gov/data", "has_api": true, - "file_path": "academic/health/dhs.json", - "geographic_scope": "regional" + "file_path": "countries/north-america/usa/us-bea.json", + "geographic_scope": "national" }, { - "id": "ghdx", + "id": "us-census", "name": { - "en": "Global Health Data Exchange (GHDx)", - "zh": "全球健康数据交换平台" + "en": "U.S. Census Bureau", + "zh": "美国人口普查局" }, - "authority_level": "research", - "data_url": "https://ghdx.healthdata.org/", + "authority_level": "government", + "data_url": "https://data.census.gov", "has_api": true, - "file_path": "academic/health/ghdx.json", - "geographic_scope": "global" + "file_path": "countries/north-america/usa/us-census.json", + "geographic_scope": "national" }, { - "id": "pubmed", + "id": "us-federalreserve", "name": { - "en": "PubMed", - "zh": "PubMed生物医学文献数据库" + "en": "Federal Reserve Board", + "zh": "美联储理事会" }, "authority_level": "government", - "data_url": "https://pubmed.ncbi.nlm.nih.gov/", - "has_api": true, - "file_path": "academic/health/pubmed.json", - "geographic_scope": "global" + "data_url": "https://www.federalreserve.gov/data.htm", + "has_api": false, + "file_path": "countries/north-america/usa/us-federalreserve.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": "mexico-coneval", + "id": "nz-stats", "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": "Statistics New Zealand (Stats NZ)", + "zh": "新西兰统计局" }, "authority_level": "government", - "data_url": "https://www.coneval.org.mx", + "data_url": "https://infoshare.stats.govt.nz", "has_api": false, - "file_path": "countries/north-america/mexico/coneval.json", + "file_path": "countries/oceania/new-zealand/nz-stats.json", "geographic_scope": "national" }, { - "id": "usa-census-bureau", + "id": "argentina-indec", "name": { - "en": "United States Census Bureau", - "zh": "美国人口普查局" + "en": "National Institute of Statistics and Censuses (INDEC)", + "zh": "阿根廷国家统计与普查局" }, "authority_level": "government", - "data_url": "https://www.census.gov", + "data_url": "https://www.indec.gob.ar/indec/web/Nivel3-Tema-3-35", "has_api": true, - "file_path": "countries/north-america/usa/census-bureau.json", + "file_path": "countries/south-america/argentina/argentina-indec.json", "geographic_scope": "national" }, { - "id": "australia-abs", + "id": "brazil-mdic-secex", "name": { - "en": "Australian Bureau of Statistics", - "zh": "澳大利亚统计局" + "en": "Brazil Ministry of Development, Industry, Commerce and Services - Foreign Trade Secretariat", + "zh": "巴西发展、工业、商业和服务部外贸秘书处" }, "authority_level": "government", - "data_url": "https://www.abs.gov.au", + "data_url": "https://comexstat.mdic.gov.br/en/home", "has_api": true, - "file_path": "countries/oceania/australia/abs.json", + "file_path": "countries/south-america/brazil/brazil-mdic-secex.json", "geographic_scope": "national" }, { - "id": "afdb-statistics", + "id": "brazil-ibge", "name": { - "en": "African Development Bank Statistics", - "zh": "非洲开发银行统计数据" + "en": "Brazilian Institute of Geography and Statistics", + "zh": "巴西地理统计局" }, - "authority_level": "international", - "data_url": "https://dataportal.opendataforafrica.org", + "authority_level": "government", + "data_url": "https://www.ibge.gov.br/en/indicators", "has_api": true, - "file_path": "international/development/afdb-statistics.json", - "geographic_scope": "regional" + "file_path": "countries/south-america/brazil-ibge.json", + "geographic_scope": "national" }, { - "id": "oecd-statistics", + "id": "chile-ine", "name": { - "en": "OECD Statistics", - "zh": "经合组织统计数据", - "native": "OECD Statistics" + "en": "National Statistics Institute of Chile (INE)", + "zh": "智利国家统计局" }, - "authority_level": "international", - "data_url": "https://stats.oecd.org", - "has_api": true, - "file_path": "international/economics/oecd.json", - "geographic_scope": "regional" + "authority_level": "government", + "data_url": "https://www.ine.gob.cl/estadisticas", + "has_api": false, + "file_path": "countries/south-america/chile/chile-ine.json", + "geographic_scope": "national" }, { - "id": "worldbank-open-data", + "id": "colombia-dane", "name": { - "en": "World Bank Open Data", - "zh": "世界银行开放数据", - "native": "World Bank Open Data" + "en": "National Administrative Department of Statistics (DANE)", + "zh": "哥伦比亚国家统计局", + "native": "Departamento Administrativo Nacional de Estadística (DANE)" }, - "authority_level": "international", - "data_url": "https://data.worldbank.org", + "authority_level": "government", + "data_url": "https://www.dane.gov.co/index.php/estadisticas-por-tema", "has_api": true, - "file_path": "international/economics/worldbank.json", - "geographic_scope": "global" - } - ], - "health financing": [ + "file_path": "countries/south-america/colombia/colombia-dane.json", + "geographic_scope": "national" + }, { - "id": "ghdx", + "id": "peru-inei", "name": { - "en": "Global Health Data Exchange (GHDx)", - "zh": "全球健康数据交换平台" + "en": "National Institute of Statistics and Informatics of Peru (INEI)", + "zh": "秘鲁国家统计和信息学研究所" }, - "authority_level": "research", - "data_url": "https://ghdx.healthdata.org/", - "has_api": true, - "file_path": "academic/health/ghdx.json", - "geographic_scope": "global" - } - ], - "health security": [ + "authority_level": "government", + "data_url": "https://www.inei.gob.pe/estadisticas/", + "has_api": false, + "file_path": "countries/south-america/peru/peru-inei.json", + "geographic_scope": "national" + }, { - "id": "africa-cdc", + "id": "adb-data-library", "name": { - "en": "Africa CDC Health Data", - "zh": "非洲疾控中心健康数据" + "en": "Asian Development Bank Data Library", + "zh": "亚洲开发银行数据库" }, "authority_level": "international", - "data_url": "https://africacdc.org", - "has_api": false, - "file_path": "international/health/africa-cdc.json", + "data_url": "https://data.adb.org", + "has_api": true, + "file_path": "international/development/adb-data-library.json", "geographic_scope": "regional" - } - ], - "health systems": [ + }, { - "id": "ghdx", + "id": "adb-data", "name": { - "en": "Global Health Data Exchange (GHDx)", - "zh": "全球健康数据交换平台" + "en": "Asian Development Bank Data Library", + "zh": "亚洲开发银行数据库", + "native": "ADB Data Library" }, - "authority_level": "research", - "data_url": "https://ghdx.healthdata.org/", + "authority_level": "international", + "data_url": "https://data.adb.org", "has_api": true, - "file_path": "academic/health/ghdx.json", - "geographic_scope": "global" - } - ], - "health_care": [ + "file_path": "international/development/adb-data.json", + "geographic_scope": "regional" + }, { - "id": "canada-cihi", + "id": "adb-key-indicators", "name": { - "en": "Canadian Institute for Health Information", - "zh": "加拿大健康信息研究所", - "native": "Institut canadien d'information sur la santé" + "en": "Asian Development Bank Key Indicators", + "zh": "亚洲开发银行关键指标" }, - "authority_level": "government", - "data_url": "https://www.cihi.ca/en/access-data-and-reports", + "authority_level": "international", + "data_url": "https://kidb.adb.org", "has_api": true, - "file_path": "countries/north-america/canada/canada-cihi.json", - "geographic_scope": "national" - } - ], - "health_spending": [ + "file_path": "international/development/adb-key-indicators.json", + "geographic_scope": "regional" + }, { - "id": "canada-cihi", + "id": "afdb-statistics", "name": { - "en": "Canadian Institute for Health Information", - "zh": "加拿大健康信息研究所", - "native": "Institut canadien d'information sur la santé" + "en": "African Development Bank Statistics", + "zh": "非洲开发银行统计数据" }, - "authority_level": "government", - "data_url": "https://www.cihi.ca/en/access-data-and-reports", + "authority_level": "international", + "data_url": "https://dataportal.opendataforafrica.org", "has_api": true, - "file_path": "countries/north-america/canada/canada-cihi.json", - "geographic_scope": "national" - } - ], - "health_system_performance": [ + "file_path": "international/development/afdb-statistics.json", + "geographic_scope": "regional" + }, { - "id": "canada-cihi", + "id": "aiddata", "name": { - "en": "Canadian Institute for Health Information", - "zh": "加拿大健康信息研究所", - "native": "Institut canadien d'information sur la santé" + "en": "AidData - Global Development Finance", + "zh": "AidData全球发展援助数据库" }, - "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" - } - ], - "health_workforce": [ + "authority_level": "research", + "data_url": "https://www.aiddata.org/datasets", + "has_api": false, + "file_path": "international/development/aiddata.json", + "geographic_scope": "global" + }, { - "id": "canada-cihi", + "id": "undp-hdr", "name": { - "en": "Canadian Institute for Health Information", - "zh": "加拿大健康信息研究所", - "native": "Institut canadien d'information sur la santé" + "en": "UNDP Human Development Reports", + "zh": "联合国开发计划署人类发展报告" }, - "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" - } - ], - "higher-education": [ + "authority_level": "international", + "data_url": "https://hdr.undp.org/data-center", + "has_api": false, + "file_path": "international/development/undp-hdr.json", + "geographic_scope": "global" + }, { - "id": "china-gaokao-chsi", + "id": "adb-ado", "name": { - "en": "China Postgraduate Admissions Information Network", - "zh": "中国研究生招生信息网" + "en": "Asian Development Outlook", + "zh": "亚洲发展展望" }, - "authority_level": "government", - "data_url": "https://yz.chsi.com.cn/sch/", + "authority_level": "international", + "data_url": "https://www.adb.org/publications/series/asian-development-outlook", "has_api": false, - "file_path": "china/education/higher_education/china-gaokao-chsi.json", - "geographic_scope": "national" + "file_path": "international/economics/adb-ado.json", + "geographic_scope": "regional" }, { - "id": "moe-china", + "id": "adb-vietnam-data", "name": { - "en": "Ministry of Education of the People's Republic of China", - "zh": "中华人民共和国教育部" + "en": "Asian Development Bank - Vietnam Country Data", + "zh": "亚洲开发银行越南国别数据" }, - "authority_level": "government", - "data_url": "http://www.moe.gov.cn/jyb_xxgk/xxgk/neirong/tongji/", + "authority_level": "international", + "data_url": "https://www.adb.org/countries/viet-nam/data", "has_api": false, - "file_path": "china/education/moe-china.json", + "file_path": "international/economics/adb-vietnam-data.json", "geographic_scope": "national" }, { - "id": "moe-gaokao", + "id": "adb-vietnam", "name": { - "en": "Sunshine Gaokao Platform", - "zh": "阳光高考信息平台" + "en": "Asian Development Bank - Vietnam Country Data", + "zh": "亚洲开发银行越南国别数据" }, - "authority_level": "government", - "data_url": "https://gaokao.chsi.com.cn/", + "authority_level": "international", + "data_url": "https://www.adb.org/countries/viet-nam/data", "has_api": false, - "file_path": "china/education/moe-gaokao.json", + "file_path": "international/economics/adb-vietnam.json", "geographic_scope": "national" - } - ], - "higher_education": [ + }, { - "id": "china-moe-higher-education", + "id": "adb", "name": { - "en": "Ministry of Education of China - Higher Education Statistics", - "zh": "中华人民共和国教育部高等教育统计" + "en": "Asian Development Bank Data", + "zh": "亚洲开发银行数据" }, - "authority_level": "government", - "data_url": "http://www.moe.gov.cn/jyb_sjzl/sjzl_fztjgb/", + "authority_level": "international", + "data_url": "https://www.adb.org/what-we-do/data", "has_api": false, - "file_path": "china/education/higher_education/china-moe-higher-education.json", - "geographic_scope": "national" - } - ], - "hospital_services": [ + "file_path": "international/economics/adb.json", + "geographic_scope": "regional" + }, { - "id": "canada-cihi", + "id": "asean-stats", "name": { - "en": "Canadian Institute for Health Information", - "zh": "加拿大健康信息研究所", - "native": "Institut canadien d'information sur la santé" + "en": "ASEAN Statistics", + "zh": "东盟统计局", + "native": "ASEANstats" }, - "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" - } - ], - "housing": [ + "authority_level": "international", + "data_url": "https://data.aseanstats.org", + "has_api": false, + "file_path": "international/economics/asean-stats.json", + "geographic_scope": "regional" + }, { - "id": "cnki-population-census", + "id": "ceic-global-database", "name": { - "en": "CNKI China Population Census Database", - "zh": "中国人口普查数据库" + "en": "CEIC Global Database", + "zh": "环亚经济数据库" }, "authority_level": "commercial", - "data_url": "https://data.cnki.net/npcd", - "has_api": false, - "file_path": "china/national/cnki-population-census.json", - "geographic_scope": "national" + "data_url": "https://www.ceicdata.com/en/products/global-economic-database", + "has_api": true, + "file_path": "international/economics/ceic-global-database.json", + "geographic_scope": "global" }, { - "id": "canada-statcan", + "id": "ceic-vietnam", "name": { - "en": "Statistics Canada", - "zh": "加拿大统计局", - "native": "Statistique Canada" + "en": "CEIC Vietnam Economic Database", + "zh": "环亚经济数据库 - 越南经济数据专题" }, - "authority_level": "government", - "data_url": "https://www.statcan.gc.ca/en/start", + "authority_level": "commercial", + "data_url": "https://www.ceicdata.com/en/country/vietnam", "has_api": true, - "file_path": "countries/north-america/canada/statcan.json", + "file_path": "international/economics/ceic-vietnam.json", "geographic_scope": "national" }, { - "id": "mexico-coneval", + "id": "eurostat", "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": "Eurostat - Statistical Office of the European Union", + "zh": "欧盟统计局", + "native": "Eurostat" }, - "authority_level": "government", - "data_url": "https://www.coneval.org.mx", - "has_api": false, - "file_path": "countries/north-america/mexico/coneval.json", - "geographic_scope": "national" + "authority_level": "international", + "data_url": "https://ec.europa.eu/eurostat/databrowser/explore/all/all_themes", + "has_api": true, + "file_path": "international/economics/eurostat.json", + "geographic_scope": "regional" }, { - "id": "usa-census-bureau", + "id": "imf-data", "name": { - "en": "United States Census Bureau", - "zh": "美国人口普查局" + "en": "IMF Data", + "zh": "国际货币基金组织数据", + "native": "IMF Data" }, - "authority_level": "government", - "data_url": "https://www.census.gov", + "authority_level": "international", + "data_url": "https://data.imf.org", "has_api": true, - "file_path": "countries/north-america/usa/census-bureau.json", - "geographic_scope": "national" + "file_path": "international/economics/imf.json", + "geographic_scope": "global" }, { - "id": "australia-abs", + "id": "oecd-statistics", "name": { - "en": "Australian Bureau of Statistics", - "zh": "澳大利亚统计局" + "en": "OECD Statistics", + "zh": "经合组织统计数据", + "native": "OECD Statistics" }, - "authority_level": "government", - "data_url": "https://www.abs.gov.au", + "authority_level": "international", + "data_url": "https://stats.oecd.org", "has_api": true, - "file_path": "countries/oceania/australia/abs.json", - "geographic_scope": "national" - } - ], - "human genetic variation": [ + "file_path": "international/economics/oecd.json", + "geographic_scope": "regional" + }, { - "id": "1000-genomes", + "id": "unsd-national-accounts", "name": { - "en": "1000 Genomes Project", - "zh": "千人基因组计划" + "en": "UN National Accounts Database", + "zh": "联合国统计司国民账户数据库" }, - "authority_level": "research", - "data_url": "https://www.internationalgenome.org/", - "has_api": false, - "file_path": "academic/biology/1000-genomes.json", + "authority_level": "international", + "data_url": "https://unstats.un.org/unsd/snaama", + "has_api": true, + "file_path": "international/economics/unsd-national-accounts.json", "geographic_scope": "global" - } - ], - "hydrology": [ + }, { - "id": "bureau-of-meteorology", + "id": "worldbank-open-data", "name": { - "en": "Bureau of Meteorology", - "zh": "澳大利亚气象局" + "en": "World Bank Open Data", + "zh": "世界银行开放数据", + "native": "World Bank Open Data" }, - "authority_level": "government", - "data_url": "https://www.bom.gov.au", + "authority_level": "international", + "data_url": "https://data.worldbank.org", "has_api": true, - "file_path": "countries/oceania/australia/bureau-of-meteorology.json", - "geographic_scope": "national" - } - ], - "income": [ + "file_path": "international/economics/worldbank.json", + "geographic_scope": "global" + }, { - "id": "mexico-coneval", + "id": "iea-energy-data", "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": "IEA Energy Data", + "zh": "国际能源署能源数据", + "native": "IEA Energy Data" }, - "authority_level": "government", - "data_url": "https://www.coneval.org.mx", - "has_api": false, - "file_path": "countries/north-america/mexico/coneval.json", - "geographic_scope": "national" + "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": "usa-census-bureau", + "id": "irena", "name": { - "en": "United States Census Bureau", - "zh": "美国人口普查局" + "en": "IRENA - International Renewable Energy Agency", + "zh": "国际可再生能源署" }, - "authority_level": "government", - "data_url": "https://www.census.gov", + "authority_level": "international", + "data_url": "https://www.irena.org/Data", "has_api": true, - "file_path": "countries/north-america/usa/census-bureau.json", - "geographic_scope": "national" - } - ], - "industrial-automation": [ + "file_path": "international/energy/irena.json", + "geographic_scope": "global" + }, { - "id": "china-instrument-society", + "id": "opec-statistics", "name": { - "en": "China Instrument and Control Society", - "zh": "中国仪器仪表学会" + "en": "OPEC Statistics", + "zh": "石油输出国组织统计数据" }, - "authority_level": "research", - "data_url": "https://www.cis.org.cn/post/index/162", + "authority_level": "international", + "data_url": "https://asb.opec.org", "has_api": false, - "file_path": "sectors/M-professional-scientific/china-instrument-society.json", - "geographic_scope": "national" - } - ], - "industrial-equipment": [ + "file_path": "international/energy/opec-statistics.json", + "geographic_scope": "global" + }, { - "id": "china-machine-tool-association", + "id": "ebrd", "name": { - "en": "China Machine Tool & Tool Builders' Association", - "zh": "中国机床工具工业协会" + "en": "European Bank for Reconstruction and Development", + "zh": "欧洲复兴开发银行" }, - "authority_level": "market", - "data_url": "https://www.cmtba.org.cn/web/11/list.html", + "authority_level": "international", + "data_url": "https://www.ebrd.com", "has_api": false, - "file_path": "sectors/C-manufacturing/machinery/china-machine-tool-association.json", - "geographic_scope": "national" - } - ], - "industry": [ - { - "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": "china/national/nbs.json", - "geographic_scope": "national" + "file_path": "international/finance/ebrd.json", + "geographic_scope": "regional" }, { - "id": "china-miit-rare-earth", + "id": "paris-club", "name": { - "en": "MIIT Rare Earth Office - Rare Earth Industry Regulation and Production Quotas", - "zh": "工业和信息化部稀土办公室 - 稀土行业规范与生产配额" + "en": "Paris Club", + "zh": "巴黎俱乐部" }, - "authority_level": "government", - "data_url": "https://www.miit.gov.cn/jgsj/ycls/xt/index.html", + "authority_level": "international", + "data_url": "https://www.clubdeparis.org", "has_api": false, - "file_path": "china/resources/mineral/china-miit-rare-earth.json", - "geographic_scope": "national" + "file_path": "international/finance/paris-club.json", + "geographic_scope": "regional" }, { - "id": "china-miit", + "id": "ilo-statistics", "name": { - "en": "Ministry of Industry and Information Technology of the People's Republic of China", - "zh": "中华人民共和国工业和信息化部" + "en": "International Labour Organization Statistics (ILOSTAT)", + "zh": "国际劳工组织统计数据库" }, - "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" + "authority_level": "international", + "data_url": "https://ilostat.ilo.org/data/", + "has_api": true, + "file_path": "international/labor/ilo-statistics.json", + "geographic_scope": "global" }, { - "id": "brazil-ibge", + "id": "bea-international-trade", "name": { - "en": "Brazilian Institute of Geography and Statistics", - "zh": "巴西地理统计局" + "en": "BEA Interactive Data - International Trade", + "zh": "美国经济分析局国际贸易互动数据" }, "authority_level": "government", - "data_url": "https://www.ibge.gov.br/en/indicators", + "data_url": "https://apps.bea.gov/iTable/index_ita.cfm", "has_api": true, - "file_path": "countries/south-america/brazil-ibge.json", + "file_path": "international/trade/bea-international-trade.json", "geographic_scope": "national" }, { - "id": "ceic-global-database", + "id": "un-comtrade", "name": { - "en": "CEIC Global Database", - "zh": "环亚经济数据库" + "en": "UN Comtrade - United Nations International Trade Statistics Database", + "zh": "联合国国际贸易统计数据库" }, - "authority_level": "commercial", - "data_url": "https://www.ceicdata.com/en/products/global-economic-database", + "authority_level": "international", + "data_url": "https://comtradeplus.un.org", "has_api": true, - "file_path": "international/economics/ceic-global-database.json", + "file_path": "international/trade/comtrade.json", "geographic_scope": "global" }, { - "id": "ceic-vietnam", + "id": "unctad-trade-transport", "name": { - "en": "CEIC Vietnam Economic Database", - "zh": "环亚经济数据库 - 越南经济数据专题" + "en": "UNCTAD Trade-and-Transport Dataset", + "zh": "联合国贸发会议贸易与运输数据集" }, - "authority_level": "commercial", - "data_url": "https://www.ceicdata.com/en/country/vietnam", + "authority_level": "international", + "data_url": "https://unctadstat.unctad.org/EN/TransportCost.html", "has_api": true, - "file_path": "international/economics/ceic-vietnam.json", - "geographic_scope": "national" + "file_path": "international/trade/unctad-trade-transport.json", + "geographic_scope": "global" }, { - "id": "china-software-association", + "id": "unctad", "name": { - "en": "China Software Industry Association", - "zh": "中国软件行业协会" + "en": "UNCTAD - United Nations Conference on Trade and Development", + "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" - } - ], - "inequality": [ + "authority_level": "international", + "data_url": "https://unctadstat.unctad.org", + "has_api": true, + "file_path": "international/trade/unctad.json", + "geographic_scope": "global" + }, { - "id": "world-inequality-database", + "id": "wto-statistics", "name": { - "en": "World Inequality Database (WID.world)", - "zh": "世界不平等数据库" + "en": "WTO Statistics Database", + "zh": "世界贸易组织统计数据库", + "native": "WTO Statistics Database" }, - "authority_level": "research", - "data_url": "https://wid.world/", + "authority_level": "international", + "data_url": "https://stats.wto.org", "has_api": true, - "file_path": "academic/economics/world-inequality-database.json", + "file_path": "international/trade/wto.json", "geographic_scope": "global" }, { - "id": "mexico-coneval", + "id": "japan-customs", "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": "Japan Customs Trade Statistics", + "zh": "日本财务省贸易统计", + "native": "貿易統計" }, "authority_level": "government", - "data_url": "https://www.coneval.org.mx", - "has_api": false, - "file_path": "countries/north-america/mexico/coneval.json", + "data_url": "https://www.customs.go.jp/toukei/info/index_e.htm", + "has_api": true, + "file_path": "japan/trade/japan-customs.json", "geographic_scope": "national" - } - ], - "inflation": [ + }, { - "id": "canada-boc", + "id": "asean-centre-for-energy", "name": { - "en": "Bank of Canada", - "zh": "加拿大银行", - "native": "Banque du Canada" - }, - "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": "mx-banxico", - "name": { - "en": "Bank of Mexico Economic Information System", - "zh": "墨西哥银行经济信息系统", - "native": "Sistema de Información Económica - Banco de México" - }, - "authority_level": "government", - "data_url": "https://www.banxico.org.mx", - "has_api": true, - "file_path": "countries/north-america/mexico/banxico.json", - "geographic_scope": "national" - } - ], - "information-technology": [ - { - "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" - } - ], - "infrastructure": [ - { - "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": "afdb-statistics", - "name": { - "en": "African Development Bank Statistics", - "zh": "非洲开发银行统计数据" + "en": "ASEAN Centre for Energy", + "zh": "东盟能源中心" }, "authority_level": "international", - "data_url": "https://dataportal.opendataforafrica.org", - "has_api": true, - "file_path": "international/development/afdb-statistics.json", + "data_url": "https://aseanenergy.org/publications/", + "has_api": false, + "file_path": "regional/asean-centre-for-energy.json", "geographic_scope": "regional" }, { - "id": "china-charging-alliance", + "id": "aws-open-data-registry", "name": { - "en": "China Electric Vehicle Charging Infrastructure Promotion Alliance", - "zh": "中国电动汽车充电基础设施促进联盟" + "en": "Registry of Open Data on AWS", + "zh": "AWS开放数据注册表" }, - "authority_level": "market", - "data_url": "https://evcipa.com/dataCenter/dataList", + "authority_level": "commercial", + "data_url": "https://registry.opendata.aws/", "has_api": false, - "file_path": "sectors/C-manufacturing/automotive/china-charging-alliance.json", - "geographic_scope": "national" - } - ], - "innovation": [ + "file_path": "sectors/computer_science_ai/aws-open-data-registry.json", + "geographic_scope": "global" + }, { - "id": "china-cnipa-patents", + "id": "singapore-dos", "name": { - "en": "China National Intellectual Property Administration - Patent Statistics", - "zh": "国家知识产权局专利统计" + "en": "Department of Statistics Singapore", + "zh": "新加坡统计局" }, "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", + "data_url": "https://tablebuilder.singstat.gov.sg", + "has_api": true, + "file_path": "singapore/national/singapore-dos.json", "geographic_scope": "national" }, { - "id": "china-most-rnd", + "id": "thailand-nso", "name": { - "en": "National Key R&D Program of China - Industrial Software and 16 Key Special Projects", - "zh": "国家重点研发计划 - 工业软件专项及16个重点专项" + "en": "National Statistical Office of Thailand", + "zh": "泰国国家统计局", + "native": "สำนักงานสถิติแห่งชาติ" }, "authority_level": "government", - "data_url": "https://service.most.gov.cn/", + "data_url": "https://www.nso.go.th/nsoweb/officialStatistics", "has_api": false, - "file_path": "china/technology/sci_resources/china-most-rnd.json", + "file_path": "thailand/national/thailand-nso.json", "geographic_scope": "national" }, { - "id": "australia-abs", + "id": "us-fred", "name": { - "en": "Australian Bureau of Statistics", - "zh": "澳大利亚统计局" + "en": "FRED - Federal Reserve Economic Data", + "zh": "美联储经济数据库" }, "authority_level": "government", - "data_url": "https://www.abs.gov.au", + "data_url": "https://fred.stlouisfed.org", "has_api": true, - "file_path": "countries/oceania/australia/abs.json", + "file_path": "us/economics/us-fred.json", "geographic_scope": "national" }, { - "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, - "file_path": "international/intellectual-property/wipo.json", - "geographic_scope": "global" - } - ], - "instrumentation": [ - { - "id": "china-instrument-society", + "id": "sec-edgar", "name": { - "en": "China Instrument and Control Society", - "zh": "中国仪器仪表学会" + "en": "SEC EDGAR", + "zh": "美国证券交易委员会EDGAR系统" }, - "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", + "authority_level": "government", + "data_url": "https://www.sec.gov/cgi-bin/browse-edgar?action=getcompany", + "has_api": true, + "file_path": "usa/finance/sec-edgar.json", "geographic_scope": "national" } ], - "insurance": [ + "economy": [ { - "id": "china-nfra", + "id": "china-caq", "name": { - "en": "National Financial Regulatory Administration", - "zh": "国家金融监督管理总局", - "native": "国家金融监督管理总局" + "en": "China Association for Quality", + "zh": "中国质量协会" }, - "authority_level": "government", - "data_url": "https://www.nfra.gov.cn/cn/view/pages/tongjishuju/tongjishuju.html", + "authority_level": "other", + "data_url": "https://www.caq.org.cn/html/zltj", "has_api": false, - "file_path": "china/finance/banking/nfra.json", + "file_path": "china/economy/industry_associations/china-caq.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": [ - { - "id": "china-semiconductor-association", + "id": "china-gsxt", "name": { - "en": "China Semiconductor Industry Association", - "zh": "中国半导体行业协会" + "en": "National Enterprise Credit Information Publicity System", + "zh": "国家企业信用信息公示系统" }, - "authority_level": "market", - "data_url": "https://web.csia.net.cn/hyyhfx", + "authority_level": "government", + "data_url": "https://www.gsxt.gov.cn", "has_api": false, - "file_path": "sectors/C-manufacturing/electronics/china-semiconductor-association.json", + "file_path": "china/economy/market/china-gsxt.json", "geographic_scope": "national" } ], - "intellectual property": [ - { - "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, - "file_path": "international/intellectual-property/wipo.json", - "geographic_scope": "global" - } - ], - "intellectual_property": [ + "ecosystems": [ { - "id": "china-cnipa-patents", + "id": "us-data-gov", "name": { - "en": "China National Intellectual Property Administration - Patent Statistics", - "zh": "国家知识产权局专利统计" + "en": "Data.gov", + "zh": "美国政府开放数据平台" }, "authority_level": "government", - "data_url": "https://www.cnipa.gov.cn/col/col61/index.html", + "data_url": "https://catalog.data.gov/dataset", "has_api": false, - "file_path": "china/technology/intellectual_property/china-cnipa-patents.json", + "file_path": "countries/north-america/usa/us-data-gov.json", "geographic_scope": "national" } ], - "interest_rates": [ + "education": [ { - "id": "korea-bok", + "id": "owid", "name": { - "en": "Bank of Korea", - "zh": "韩国银行", - "native": "한국은행" + "en": "Our World in Data", + "zh": "用数据看世界" }, - "authority_level": "government", - "data_url": "https://www.bok.or.kr/eng/main/main.do", + "authority_level": "research", + "data_url": "https://github.com/owid/owid-datasets", "has_api": true, - "file_path": "countries/asia/korea/korea-bok.json", - "geographic_scope": "national" + "file_path": "academic/multidisciplinary/owid.json", + "geographic_scope": "global" }, { - "id": "canada-boc", + "id": "china-shenzhen-open-data", "name": { - "en": "Bank of Canada", - "zh": "加拿大银行", - "native": "Banque du Canada" + "en": "Shenzhen Open Data Platform", + "zh": "深圳市政府数据开放平台" }, "authority_level": "government", - "data_url": "https://www.bankofcanada.ca/rates/", + "data_url": "https://opendata.sz.gov.cn/data/dataSet/toDataList", "has_api": true, - "file_path": "countries/north-america/canada/canada-boc.json", - "geographic_scope": "national" - } - ], - "international": [ + "file_path": "china/economy/provincial/china-shenzhen-open-data.json", + "geographic_scope": "subnational" + }, { - "id": "bea-international-trade", + "id": "china-csdp", "name": { - "en": "BEA International Trade in Goods and Services", - "zh": "美国经济分析局国际贸易数据" + "en": "China School Development Planning Center", + "zh": "教育部学校规划建设发展中心" }, "authority_level": "government", - "data_url": "https://apps.bea.gov/iTable/index_ita.cfm", - "has_api": true, - "file_path": "international/trade/bea-international-trade.json", + "data_url": "https://www.csdp.edu.cn", + "has_api": false, + "file_path": "china/education/china-csdp.json", "geographic_scope": "national" - } - ], - "international-assessment": [ + }, { - "id": "iea-education-studies", + "id": "china-nlc", "name": { - "en": "IEA Education Studies Data", - "zh": "国际教育成就评价协会教育研究数据" + "en": "National Library of China", + "zh": "中国国家图书馆" }, - "authority_level": "international", - "data_url": "https://www.iea.nl/data-tools/repository", + "authority_level": "government", + "data_url": "https://www.nlc.cn/pcab/", "has_api": false, - "file_path": "international/education/iea-education-studies.json", - "geographic_scope": "global" - } - ], - "international-exchange": [ + "file_path": "china/education/china-nlc.json", + "geographic_scope": "national" + }, { "id": "cscse", "name": { @@ -12244,2082 +11566,27657 @@ "has_api": false, "file_path": "china/education/cscse.json", "geographic_scope": "national" - } - ], - "international_commerce": [ + }, { - "id": "china-customs", + "id": "cdgdc", "name": { - "en": "General Administration of Customs of China", - "zh": "中华人民共和国海关总署", - "native": "中华人民共和国海关总署" + "en": "China Academic Degrees & Graduate Education Development Center", + "zh": "教育部学位与研究生教育发展中心" }, "authority_level": "government", - "data_url": "http://www.customs.gov.cn", + "data_url": "https://www.chinadegrees.cn/", "has_api": false, - "file_path": "china/economy/trade/customs.json", + "file_path": "china/education/higher_education/cdgdc.json", "geographic_scope": "national" - } - ], - "investment": [ + }, { - "id": "china-ndrc", + "id": "china-gaokao-chsi", "name": { - "en": "National Development and Reform Commission", - "zh": "国家发展和改革委员会", - "native": "国家发展和改革委员会" + "en": "China Postgraduate Admissions Information Network", + "zh": "中国研究生招生信息网" }, "authority_level": "government", - "data_url": "https://www.ndrc.gov.cn/fgsj/", + "data_url": "https://yz.chsi.com.cn/sch/", "has_api": false, - "file_path": "china/economy/macro/ndrc.json", + "file_path": "china/education/higher_education/china-gaokao-chsi.json", "geographic_scope": "national" }, { - "id": "china-mofcom", + "id": "china-moe-higher-education", "name": { - "en": "Ministry of Commerce of China", - "zh": "中华人民共和国商务部", - "native": "中华人民共和国商务部" + "en": "Ministry of Education of China - Higher Education Statistics", + "zh": "中华人民共和国教育部高等教育统计" }, "authority_level": "government", - "data_url": "https://data.mofcom.gov.cn", + "data_url": "https://www.moe.gov.cn/jyb_sjzl/sjzl_fztjgb/", "has_api": false, - "file_path": "china/economy/trade/mofcom.json", + "file_path": "china/education/higher_education/china-moe-higher-education.json", "geographic_scope": "national" }, { - "id": "unctad", + "id": "moe-china", "name": { - "en": "UNCTAD - United Nations Conference on Trade and Development", - "zh": "联合国贸易和发展会议" - }, - "authority_level": "international", - "data_url": "https://unctadstat.unctad.org", - "has_api": true, - "file_path": "international/trade/unctad.json", - "geographic_scope": "global" - } - ], - "justice": [ - { - "id": "canada-statcan", - "name": { - "en": "Statistics Canada", - "zh": "加拿大统计局", - "native": "Statistique Canada" + "en": "Ministry of Education of the People's Republic of China", + "zh": "中华人民共和国教育部" }, "authority_level": "government", - "data_url": "https://www.statcan.gc.ca/en/start", - "has_api": true, - "file_path": "countries/north-america/canada/statcan.json", + "data_url": "https://www.moe.gov.cn/jyb_xxgk/xxgk/neirong/tongji/", + "has_api": false, + "file_path": "china/education/moe-china.json", "geographic_scope": "national" - } - ], - "labor": [ + }, { - "id": "nber-data", + "id": "moe-gaokao", "name": { - "en": "NBER Data Library", - "zh": "国家经济研究局数据库", - "native": "NBER Data Library" + "en": "Sunshine Gaokao Platform", + "zh": "阳光高考信息平台" }, - "authority_level": "research", - "data_url": "https://www.nber.org", + "authority_level": "government", + "data_url": "https://gaokao.chsi.com.cn/", "has_api": false, - "file_path": "academic/economics/nber.json", - "geographic_scope": "global" + "file_path": "china/education/moe-gaokao.json", + "geographic_scope": "national" }, { - "id": "brazil-ibge", + "id": "china-ncha", "name": { - "en": "Brazilian Institute of Geography and Statistics", - "zh": "巴西地理统计局" + "en": "National Cultural Heritage Administration of China", + "zh": "国家文物局" }, "authority_level": "government", - "data_url": "https://www.ibge.gov.br/en/indicators", - "has_api": true, - "file_path": "countries/south-america/brazil-ibge.json", + "data_url": "http://www.ncha.gov.cn/col/col2276/index.html", + "has_api": false, + "file_path": "china/governance/china-ncha.json", "geographic_scope": "national" }, { - "id": "ceic-global-database", + "id": "cnki-population-census", "name": { - "en": "CEIC Global Database", - "zh": "环亚经济数据库" + "en": "CNKI China Population Census Database", + "zh": "中国人口普查数据库" }, "authority_level": "commercial", - "data_url": "https://www.ceicdata.com/en/products/global-economic-database", - "has_api": true, - "file_path": "international/economics/ceic-global-database.json", - "geographic_scope": "global" + "data_url": "https://data.cnki.net/npcd", + "has_api": false, + "file_path": "china/national/cnki-population-census.json", + "geographic_scope": "national" }, { - "id": "ceic-vietnam", + "id": "china-cast", "name": { - "en": "CEIC Vietnam Economic Database", - "zh": "环亚经济数据库 - 越南经济数据专题" + "en": "China Association for Science and Technology", + "zh": "中国科学技术协会" }, - "authority_level": "commercial", - "data_url": "https://www.ceicdata.com/en/country/vietnam", - "has_api": true, - "file_path": "international/economics/ceic-vietnam.json", + "authority_level": "other", + "data_url": "https://www.cast.org.cn/xw/", + "has_api": false, + "file_path": "china/research/china-cast.json", "geographic_scope": "national" - } - ], - "labor_market": [ + }, { - "id": "mx-banxico", + "id": "china-cdrf", "name": { - "en": "Bank of Mexico Economic Information System", - "zh": "墨西哥银行经济信息系统", - "native": "Sistema de Información Económica - Banco de México" + "en": "China Development Research Foundation (CDRF)", + "zh": "中国发展研究基金会" }, - "authority_level": "government", - "data_url": "https://www.banxico.org.mx", - "has_api": true, - "file_path": "countries/north-america/mexico/banxico.json", + "authority_level": "research", + "data_url": "https://www.cdrf.org.cn", + "has_api": false, + "file_path": "china/research/china-cdrf.json", "geographic_scope": "national" - } - ], - "laboratory systems": [ + }, { - "id": "africa-cdc", + "id": "china-cfps", "name": { - "en": "Africa CDC Health Data", - "zh": "非洲疾控中心健康数据" + "en": "China Family Panel Studies (CFPS)", + "zh": "中国家庭追踪调查(CFPS)" }, - "authority_level": "international", - "data_url": "https://africacdc.org", + "authority_level": "research", + "data_url": "https://opendata.pku.edu.cn/dataverse/CFPS", "has_api": false, - "file_path": "international/health/africa-cdc.json", - "geographic_scope": "regional" - } - ], - "labour": [ + "file_path": "china/research/china-cfps.json", + "geographic_scope": "national" + }, { - "id": "canada-statcan", + "id": "china-cgss", "name": { - "en": "Statistics Canada", - "zh": "加拿大统计局", - "native": "Statistique Canada" + "en": "Chinese General Social Survey (CGSS)", + "zh": "中国综合社会调查(CGSS)" }, - "authority_level": "government", - "data_url": "https://www.statcan.gc.ca/en/start", - "has_api": true, - "file_path": "countries/north-america/canada/statcan.json", + "authority_level": "research", + "data_url": "http://cgss.ruc.edu.cn/", + "has_api": false, + "file_path": "china/research/china-cgss.json", "geographic_scope": "national" - } - ], - "land": [ + }, { - "id": "copernicus-open-access-hub", + "id": "china-istic", "name": { - "en": "Copernicus Open Access Hub", - "zh": "哥白尼开放访问中心" + "en": "Institute of Scientific and Technical Information of China", + "zh": "中国科学技术信息研究所" }, - "authority_level": "international", - "data_url": "https://dataspace.copernicus.eu/", - "has_api": true, - "file_path": "academic/environment/copernicus-open-access-hub.json", - "geographic_scope": "global" - } - ], - "land-cover": [ + "authority_level": "research", + "data_url": "https://www.istic.ac.cn/", + "has_api": false, + "file_path": "china/research/china-istic.json", + "geographic_scope": "national" + }, { - "id": "usgs-earthexplorer", + "id": "china-nsfc", "name": { - "en": "USGS EarthExplorer", - "zh": "美国地质调查局地球探索者" + "en": "National Natural Science Foundation of China", + "zh": "国家自然科学基金委员会" }, "authority_level": "government", - "data_url": "https://earthexplorer.usgs.gov/", - "has_api": true, - "file_path": "countries/north-america/usa/usgs-earthexplorer.json", - "geographic_scope": "global" - } - ], - "land-surface": [ + "data_url": "https://www.nsfc.gov.cn/p1/2961/2964/3655/cg.html", + "has_api": false, + "file_path": "china/research/china-nsfc.json", + "geographic_scope": "national" + }, { - "id": "nasa-earthdata", + "id": "china-nstl", "name": { - "en": "NASA Earthdata", - "zh": "NASA地球数据" + "en": "National Science and Technology Library of China", + "zh": "国家科技图书文献中心" }, "authority_level": "government", - "data_url": "https://www.earthdata.nasa.gov", - "has_api": true, - "file_path": "international/earth-science/nasa-earthdata.json", - "geographic_scope": "global" - } - ], - "life_sciences": [ + "data_url": "https://www.nstl.gov.cn/search.html", + "has_api": false, + "file_path": "china/research/china-nstl.json", + "geographic_scope": "national" + }, { - "id": "pubmed", + "id": "china-wanfang", "name": { - "en": "PubMed", - "zh": "PubMed生物医学文献数据库" + "en": "Wanfang Data", + "zh": "万方数据" }, - "authority_level": "government", - "data_url": "https://pubmed.ncbi.nlm.nih.gov/", - "has_api": true, - "file_path": "academic/health/pubmed.json", - "geographic_scope": "global" - } - ], - "lifestyle": [ + "authority_level": "commercial", + "data_url": "https://www.wanfangdata.com.cn/", + "has_api": false, + "file_path": "china/research/china-wanfang.json", + "geographic_scope": "national" + }, { - "id": "uk-biobank", + "id": "china-ccf", "name": { - "en": "UK Biobank", - "zh": "英国生物样本库" + "en": "China Computer Federation", + "zh": "中国计算机学会" }, "authority_level": "research", - "data_url": "https://www.ukbiobank.ac.uk/", - "has_api": true, - "file_path": "academic/biology/uk-biobank.json", + "data_url": "https://www.ccf.org.cn/Academic_Evaluation/By_category/", + "has_api": false, + "file_path": "china/technology/china-ccf.json", "geographic_scope": "national" - } - ], - "machinery": [ + }, { - "id": "china-machine-tool-association", + "id": "stats-sa", "name": { - "en": "China Machine Tool & Tool Builders' Association", - "zh": "中国机床工具工业协会" + "en": "Statistics South Africa (Stats SA)", + "zh": "南非统计局", + "native": "Statistics South Africa (Stats SA)" }, - "authority_level": "market", - "data_url": "https://www.cmtba.org.cn/web/11/list.html", + "authority_level": "government", + "data_url": "https://www.statssa.gov.za/?page_id=1521", "has_api": false, - "file_path": "sectors/C-manufacturing/machinery/china-machine-tool-association.json", + "file_path": "countries/africa/south-africa/stats-sa.json", "geographic_scope": "national" - } - ], - "manufacturing": [ + }, { - "id": "china-most-rnd", + "id": "india-mospi", "name": { - "en": "National Key R&D Program of China - Industrial Software and 16 Key Special Projects", - "zh": "国家重点研发计划 - 工业软件专项及16个重点专项" + "en": "Ministry of Statistics and Programme Implementation (MoSPI)", + "zh": "印度统计与计划实施部", + "native": "सांख्यिकी और कार्यक्रम कार्यान्वयन मंत्रालय" }, "authority_level": "government", - "data_url": "https://service.most.gov.cn/", + "data_url": "https://mospi.gov.in/data", "has_api": false, - "file_path": "china/technology/sci_resources/china-most-rnd.json", + "file_path": "countries/asia/india/india-mospi.json", "geographic_scope": "national" }, { - "id": "china-sac-standards", + "id": "japan-estat", "name": { - "en": "Standardization Administration of China (SAC)", - "zh": "国家标准化管理委员会" + "en": "Japan e-Stat (Portal Site of Official Statistics)", + "zh": "日本统计局 e-Stat(政府统计综合窗口)", + "native": "政府統計の総合窓口 e-Stat" }, "authority_level": "government", - "data_url": "https://std.samr.gov.cn/", - "has_api": false, - "file_path": "china/technology/standards/china-sac-standards.json", + "data_url": "https://www.e-stat.go.jp/en/stat-search", + "has_api": true, + "file_path": "countries/asia/japan/japan-estat.json", "geographic_scope": "national" }, { - "id": "china-miit", + "id": "philippines-psa", "name": { - "en": "Ministry of Industry and Information Technology of the People's Republic of China", - "zh": "中华人民共和国工业和信息化部" + "en": "Philippine Statistics Authority", + "zh": "菲律宾统计局" }, "authority_level": "government", - "data_url": "https://www.miit.gov.cn/gxsj/index.html", + "data_url": "https://openstat.psa.gov.ph", "has_api": false, - "file_path": "china/technology/telecommunications/china-miit.json", + "file_path": "countries/asia/philippines/psa.json", "geographic_scope": "national" }, { - "id": "china-lcd-association", + "id": "vietnam-gso", "name": { - "en": "China Optoelectronic Display Association - Liquid Crystal Division (CODA)", - "zh": "中国光学光电子行业协会液晶分会" + "en": "General Statistics Office of Vietnam", + "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://www.nso.gov.vn/en/statistical-data/", "has_api": false, - "file_path": "sectors/C-manufacturing/electronics/china-lcd-association.json", + "file_path": "countries/asia/vietnam/gso.json", "geographic_scope": "national" }, { - "id": "china-optical-association", + "id": "germany-destatis", "name": { - "en": "China Optics and Optoelectronics Manufacturers Association", - "zh": "中国光学光电子行业协会" + "en": "Federal Statistical Office of Germany (Destatis)", + "zh": "德国联邦统计局", + "native": "Statistisches Bundesamt (Destatis)" }, - "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", + "authority_level": "government", + "data_url": "https://www.destatis.de/EN/Themes/_node.html", + "has_api": true, + "file_path": "countries/europe/germany/germany-destatis.json", "geographic_scope": "national" }, { - "id": "china-machine-tool-association", + "id": "hungary-ksh", "name": { - "en": "China Machine Tool & Tool Builders' Association", - "zh": "中国机床工具工业协会" + "en": "Hungarian Central Statistical Office", + "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", + "authority_level": "government", + "data_url": "https://www.ksh.hu/engstadat", + "has_api": true, + "file_path": "countries/europe/hungary/hungary-ksh.json", "geographic_scope": "national" - } - ], - "market-research": [ + }, { - "id": "china-lcd-association", + "id": "norway-ssb", "name": { - "en": "China Optoelectronic Display Association - Liquid Crystal Division (CODA)", - "zh": "中国光学光电子行业协会液晶分会" + "en": "Statistics Norway (SSB)", + "zh": "挪威统计局", + "native": "Statistisk sentralbyrå (SSB)" }, - "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", + "authority_level": "government", + "data_url": "https://www.ssb.no/en/statbank", + "has_api": true, + "file_path": "countries/europe/norway/norway-ssb.json", "geographic_scope": "national" - } - ], - "markets": [ + }, { - "id": "usa-eia", + "id": "sweden-scb", "name": { - "en": "U.S. Energy Information Administration", - "zh": "美国能源信息署" + "en": "Statistics Sweden (SCB)", + "zh": "瑞典统计局" }, "authority_level": "government", - "data_url": "https://www.eia.gov", + "data_url": "https://www.statistikdatabasen.scb.se", "has_api": true, - "file_path": "countries/north-america/usa/eia.json", + "file_path": "countries/europe/sweden/sweden-scb.json", "geographic_scope": "national" - } - ], - "measurement-control": [ + }, { - "id": "china-instrument-society", + "id": "switzerland-fso", "name": { - "en": "China Instrument and Control Society", - "zh": "中国仪器仪表学会" + "en": "Swiss Federal Statistical Office (FSO)", + "zh": "瑞士联邦统计局", + "native": "Bundesamt für Statistik (BFS)" }, - "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", + "authority_level": "government", + "data_url": "https://www.bfs.admin.ch/bfs/en/home/statistics.html", + "has_api": true, + "file_path": "countries/europe/switzerland/switzerland-fso.json", + "geographic_scope": "national" + }, + { + "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", + "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", + "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" + }, + { + "id": "us-census", + "name": { + "en": "U.S. Census Bureau", + "zh": "美国人口普查局" + }, + "authority_level": "government", + "data_url": "https://data.census.gov", + "has_api": true, + "file_path": "countries/north-america/usa/us-census.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": "usaid-ddl", + "name": { + "en": "USAID Development Data Library", + "zh": "美国国际开发署发展数据库" + }, + "authority_level": "government", + "data_url": "https://data.usaid.gov", + "has_api": true, + "file_path": "countries/north-america/usa/usaid-ddl.json", + "geographic_scope": "global" + }, + { + "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": "nz-stats", + "name": { + "en": "Statistics New Zealand (Stats NZ)", + "zh": "新西兰统计局" + }, + "authority_level": "government", + "data_url": "https://infoshare.stats.govt.nz", + "has_api": false, + "file_path": "countries/oceania/new-zealand/nz-stats.json", + "geographic_scope": "national" + }, + { + "id": "adb-data-library", + "name": { + "en": "Asian Development Bank Data Library", + "zh": "亚洲开发银行数据库" + }, + "authority_level": "international", + "data_url": "https://data.adb.org", + "has_api": true, + "file_path": "international/development/adb-data-library.json", + "geographic_scope": "regional" + }, + { + "id": "afdb-statistics", + "name": { + "en": "African Development Bank Statistics", + "zh": "非洲开发银行统计数据" + }, + "authority_level": "international", + "data_url": "https://dataportal.opendataforafrica.org", + "has_api": true, + "file_path": "international/development/afdb-statistics.json", + "geographic_scope": "regional" + }, + { + "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": "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, + "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", + "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" + }, + { + "id": "undp-hdr", + "name": { + "en": "UNDP Human Development Reports", + "zh": "联合国开发计划署人类发展报告" + }, + "authority_level": "international", + "data_url": "https://hdr.undp.org/data-center", + "has_api": false, + "file_path": "international/development/undp-hdr.json", + "geographic_scope": "global" + }, + { + "id": "adb", + "name": { + "en": "Asian Development Bank Data", + "zh": "亚洲开发银行数据" + }, + "authority_level": "international", + "data_url": "https://www.adb.org/what-we-do/data", + "has_api": false, + "file_path": "international/economics/adb.json", + "geographic_scope": "regional" + }, + { + "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", + "name": { + "en": "World Bank Open Data", + "zh": "世界银行开放数据", + "native": "World Bank Open Data" + }, + "authority_level": "international", + "data_url": "https://data.worldbank.org", + "has_api": true, + "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" + }, + { + "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, + "file_path": "international/education/oecd-pisa.json", + "geographic_scope": "global" + }, + { + "id": "unesco-uis", + "name": { + "en": "UNESCO Institute for Statistics", + "zh": "联合国教科文组织统计研究所" + }, + "authority_level": "international", + "data_url": "https://data.uis.unesco.org/", + "has_api": false, + "file_path": "international/education/unesco-uis.json", + "geographic_scope": "global" + }, + { + "id": "unicef", + "name": { + "en": "UNICEF Data", + "zh": "联合国儿童基金会数据" + }, + "authority_level": "international", + "data_url": "https://data.unicef.org/resources/resource-type/datasets/", + "has_api": true, + "file_path": "international/humanitarian/unicef.json", + "geographic_scope": "global" + } + ], + "education-and-health": [ + { + "id": "gso-vietnam", + "name": { + "en": "General Statistics Office of Vietnam", + "zh": "越南国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.gso.gov.vn/en/data-and-statistics/", + "has_api": false, + "file_path": "countries/asia/vietnam/gso-vietnam.json", "geographic_scope": "national" } ], - "medical imaging": [ + "education-assessment": [ { - "id": "uk-biobank", + "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, + "file_path": "sectors/P-education/arwu.json", + "geographic_scope": "global" + }, + { + "id": "qs-world-university-rankings", + "name": { + "en": "QS World University Rankings", + "zh": "QS世界大学排名" + }, + "authority_level": "market", + "data_url": "https://www.topuniversities.com/world-university-rankings", + "has_api": false, + "file_path": "sectors/P-education/qs-world-university-rankings.json", + "geographic_scope": "global" + } + ], + "education-policy": [ + { + "id": "moe-china", + "name": { + "en": "Ministry of Education of the People's Republic of China", + "zh": "中华人民共和国教育部" + }, + "authority_level": "government", + "data_url": "https://www.moe.gov.cn/jyb_xxgk/xxgk/neirong/tongji/", + "has_api": false, + "file_path": "china/education/moe-china.json", + "geographic_scope": "national" + } + ], + "education-quality": [ + { + "id": "qs-world-university-rankings", + "name": { + "en": "QS World University Rankings", + "zh": "QS世界大学排名" + }, + "authority_level": "market", + "data_url": "https://www.topuniversities.com/world-university-rankings", + "has_api": false, + "file_path": "sectors/P-education/qs-world-university-rankings.json", + "geographic_scope": "global" + } + ], + "education-statistics": [ + { + "id": "moe-china", + "name": { + "en": "Ministry of Education of the People's Republic of China", + "zh": "中华人民共和国教育部" + }, + "authority_level": "government", + "data_url": "https://www.moe.gov.cn/jyb_xxgk/xxgk/neirong/tongji/", + "has_api": false, + "file_path": "china/education/moe-china.json", + "geographic_scope": "national" + }, + { + "id": "qs-world-university-rankings", + "name": { + "en": "QS World University Rankings", + "zh": "QS世界大学排名" + }, + "authority_level": "market", + "data_url": "https://www.topuniversities.com/world-university-rankings", + "has_api": false, + "file_path": "sectors/P-education/qs-world-university-rankings.json", + "geographic_scope": "global" + } + ], + "elections-and-electoral-systems": [ + { + "id": "afrobarometer", + "name": { + "en": "Afrobarometer", + "zh": "非洲晴雨表" + }, + "authority_level": "research", + "data_url": "https://www.afrobarometer.org/data/", + "has_api": false, + "file_path": "academic/social/afrobarometer.json", + "geographic_scope": "regional" + } + ], + "electoral-studies": [ + { + "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", + "geographic_scope": "regional" + } + ], + "electricity": [ + { + "id": "china-huaneng", + "name": { + "en": "China Huaneng Group", + "zh": "中国华能集团有限公司" + }, + "authority_level": "commercial", + "data_url": "https://www.chng.com.cn", + "has_api": false, + "file_path": "china/resources/china-huaneng.json", + "geographic_scope": "national" + }, + { + "id": "china-csg", + "name": { + "en": "China Southern Power Grid", + "zh": "中国南方电网有限责任公司" + }, + "authority_level": "government", + "data_url": "https://www.csg.cn", + "has_api": false, + "file_path": "china/resources/energy/china-csg.json", + "geographic_scope": "subnational" + }, + { + "id": "usa-eia", + "name": { + "en": "U.S. Energy Information Administration", + "zh": "美国能源信息署" + }, + "authority_level": "government", + "data_url": "https://www.eia.gov", + "has_api": true, + "file_path": "countries/north-america/usa/eia.json", + "geographic_scope": "national" + } + ], + "electricity-and-magnetism": [ + { + "id": "bipm-kcdb", + "name": { + "en": "BIPM Key Comparison Database (KCDB)", + "zh": "国际度量衡局关键比对数据库", + "native": "Bureau International des Poids et Mesures (BIPM)" + }, + "authority_level": "international", + "data_url": "https://www.bipm.org/kcdb", + "has_api": true, + "file_path": "international/standards-metrology/bipm-kcdb.json", + "geographic_scope": "global" + } + ], + "electricity-transmission": [ + { + "id": "canada-cer", + "name": { + "en": "Canada Energy Regulator", + "zh": "加拿大能源监管局", + "native": "Régie de l'énergie du Canada" + }, + "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" + } + ], + "electronic-materials": [ + { + "id": "china-cemia", + "name": { + "en": "China Electronic Materials Industry Association", + "zh": "中国电子材料行业协会" + }, + "authority_level": "other", + "data_url": "http://www.cemia.org.cn", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cemia.json", + "geographic_scope": "national" + } + ], + "electronics": [ + { + "id": "china-miit", + "name": { + "en": "Ministry of Industry and Information Technology of the People's Republic of China", + "zh": "中华人民共和国工业和信息化部" + }, + "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": "china-lcd-association", + "name": { + "en": "China Optoelectronic Display Association - Liquid Crystal Division (CODA)", + "zh": "中国光学光电子行业协会液晶分会" + }, + "authority_level": "market", + "data_url": "https://www.coda.org.cn", + "has_api": false, + "file_path": "sectors/C-manufacturing/electronics/china-lcd-association.json", + "geographic_scope": "national" + }, + { + "id": "china-optical-association", + "name": { + "en": "China Optics and Optoelectronics Manufacturers Association", + "zh": "中国光学光电子行业协会" + }, + "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": "semi", + "name": { + "en": "SEMI - Semiconductor Equipment and Materials International", + "zh": "SEMI国际半导体产业协会" + }, + "authority_level": "research", + "data_url": "https://semi.org/en/products-services/market-data", + "has_api": false, + "file_path": "sectors/C-manufacturing/electronics/semi.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" + } + ], + "electronics-manufacturing": [ + { + "id": "china-semiconductor-association", + "name": { + "en": "China Semiconductor Industry Association", + "zh": "中国半导体行业协会" + }, + "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" + } + ], + "emergency-care": [ + { + "id": "canada-cihi", + "name": { + "en": "Canadian Institute for Health Information", + "zh": "加拿大健康信息研究所", + "native": "Institut canadien d'information sur la santé" + }, + "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" + } + ], + "emergency-management": [ + { + "id": "china-cfpa", + "name": { + "en": "China Fire Protection Association", + "zh": "中国消防协会" + }, + "authority_level": "other", + "data_url": "http://www.cfpa.cn", + "has_api": false, + "file_path": "china/governance/china-cfpa.json", + "geographic_scope": "national" + }, + { + "id": "intl-copernicus-cdse", + "name": { + "en": "Copernicus Data Space Ecosystem", + "zh": "哥白尼数据空间生态系统" + }, + "authority_level": "international", + "data_url": "https://dataspace.copernicus.eu", + "has_api": true, + "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": "china-acftu", + "name": { + "en": "All-China Federation of Trade Unions", + "zh": "中华全国总工会" + }, + "authority_level": "government", + "data_url": "https://www.acftu.org", + "has_api": false, + "file_path": "china/economy/labor/china-acftu.json", + "geographic_scope": "national" + }, + { + "id": "china-mohrss", + "name": { + "en": "Ministry of Human Resources and Social Security of China - Employment and Social Security Statistics", + "zh": "人力资源和社会保障部统计数据" + }, + "authority_level": "government", + "data_url": "https://www.mohrss.gov.cn/SYrlzyhshbzb/zwgk/szrs/", + "has_api": false, + "file_path": "china/economy/labor/china-mohrss.json", + "geographic_scope": "national" + }, + { + "id": "china-shenzhen-hrss", + "name": { + "en": "Shenzhen Municipal Human Resources and Social Security Bureau", + "zh": "深圳市人力资源和社会保障局" + }, + "authority_level": "government", + "data_url": "https://hrss.sz.gov.cn/xxgk/index.html", + "has_api": false, + "file_path": "china/economy/labor/china-shenzhen-hrss.json", + "geographic_scope": "subnational" + }, + { + "id": "cnki-population-census", + "name": { + "en": "CNKI China Population Census Database", + "zh": "中国人口普查数据库" + }, + "authority_level": "commercial", + "data_url": "https://data.cnki.net/npcd", + "has_api": false, + "file_path": "china/national/cnki-population-census.json", + "geographic_scope": "national" + }, + { + "id": "stats-sa", + "name": { + "en": "Statistics South Africa (Stats SA)", + "zh": "南非统计局", + "native": "Statistics South Africa (Stats SA)" + }, + "authority_level": "government", + "data_url": "https://www.statssa.gov.za/?page_id=1521", + "has_api": false, + "file_path": "countries/africa/south-africa/stats-sa.json", + "geographic_scope": "national" + }, + { + "id": "india-mospi", + "name": { + "en": "Ministry of Statistics and Programme Implementation (MoSPI)", + "zh": "印度统计与计划实施部", + "native": "सांख्यिकी और कार्यक्रम कार्यान्वयन मंत्रालय" + }, + "authority_level": "government", + "data_url": "https://mospi.gov.in/data", + "has_api": false, + "file_path": "countries/asia/india/india-mospi.json", + "geographic_scope": "national" + }, + { + "id": "indonesia-bps", + "name": { + "en": "Statistics Indonesia (BPS)", + "zh": "印度尼西亚中央统计局", + "native": "Badan Pusat Statistik" + }, + "authority_level": "government", + "data_url": "https://www.bps.go.id/en/statistics-table", + "has_api": true, + "file_path": "countries/asia/indonesia/indonesia-bps.json", + "geographic_scope": "national" + }, + { + "id": "kostat", + "name": { + "en": "Statistics Korea (KOSTAT)", + "zh": "韩国统计厅" + }, + "authority_level": "government", + "data_url": "https://kosis.kr/eng/", + "has_api": true, + "file_path": "countries/asia/kostat.json", + "geographic_scope": "national" + }, + { + "id": "philippines-psa", + "name": { + "en": "Philippine Statistics Authority", + "zh": "菲律宾统计局" + }, + "authority_level": "government", + "data_url": "https://openstat.psa.gov.ph", + "has_api": false, + "file_path": "countries/asia/philippines/psa.json", + "geographic_scope": "national" + }, + { + "id": "saudi-gastat", + "name": { + "en": "General Authority for Statistics (GASTAT)", + "zh": "沙特阿拉伯统计总局" + }, + "authority_level": "government", + "data_url": "https://www.stats.gov.sa/statistics", + "has_api": false, + "file_path": "countries/asia/saudi-arabia/saudi-gastat.json", + "geographic_scope": "national" + }, + { + "id": "singapore-singstat", + "name": { + "en": "Singapore Department of Statistics (SingStat)", + "zh": "新加坡统计局", + "native": "Department of Statistics Singapore" + }, + "authority_level": "government", + "data_url": "https://tablebuilder.singstat.gov.sg", + "has_api": true, + "file_path": "countries/asia/singapore/singapore-singstat.json", + "geographic_scope": "national" + }, + { + "id": "vietnam-gso", + "name": { + "en": "General Statistics Office of Vietnam", + "zh": "越南统计总局" + }, + "authority_level": "government", + "data_url": "https://www.nso.gov.vn/en/statistical-data/", + "has_api": false, + "file_path": "countries/asia/vietnam/gso.json", + "geographic_scope": "national" + }, + { + "id": "austria-statistik", + "name": { + "en": "Statistics Austria", + "zh": "奥地利统计局", + "native": "Statistik Austria" + }, + "authority_level": "government", + "data_url": "https://www.statistik.at/statistiken", + "has_api": true, + "file_path": "countries/europe/at/austria-statistik.json", + "geographic_scope": "national" + }, + { + "id": "belgium-statbel", + "name": { + "en": "Statbel - Belgian Statistical Office", + "zh": "比利时统计局" + }, + "authority_level": "government", + "data_url": "https://statbel.fgov.be/en/open-data", + "has_api": false, + "file_path": "countries/europe/belgium/belgium-statbel.json", + "geographic_scope": "national" + }, + { + "id": "bulgaria-nsi", + "name": { + "en": "National Statistical Institute of Bulgaria (NSI)", + "zh": "保加利亚国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.nsi.bg/en/content/2666/statisticsdatabases", + "has_api": false, + "file_path": "countries/europe/bulgaria/bulgaria-nsi.json", + "geographic_scope": "national" + }, + { + "id": "croatia-dzs", + "name": { + "en": "Croatian Bureau of Statistics (DZS)", + "zh": "克罗地亚统计局" + }, + "authority_level": "government", + "data_url": "https://dzs.gov.hr/en/data-and-statistics", + "has_api": false, + "file_path": "countries/europe/croatia/croatia-dzs.json", + "geographic_scope": "national" + }, + { + "id": "czechia-czso", + "name": { + "en": "Czech Statistical Office (CZSO)", + "zh": "捷克统计局" + }, + "authority_level": "government", + "data_url": "https://vdb.czso.cz", + "has_api": true, + "file_path": "countries/europe/czechia/czechia-czso.json", + "geographic_scope": "national" + }, + { + "id": "denmark-dst", + "name": { + "en": "Statistics Denmark", + "zh": "丹麦统计局", + "native": "Danmarks Statistik" + }, + "authority_level": "government", + "data_url": "https://www.dst.dk/en/Statistik", + "has_api": true, + "file_path": "countries/europe/dk/denmark-dst.json", + "geographic_scope": "national" + }, + { + "id": "france-insee", + "name": { + "en": "INSEE - National Institute of Statistics and Economic Studies", + "zh": "法国国家统计与经济研究所", + "native": "Institut national de la statistique et des études économiques" + }, + "authority_level": "government", + "data_url": "https://www.insee.fr/en/statistiques", + "has_api": true, + "file_path": "countries/europe/fr/france-insee.json", + "geographic_scope": "national" + }, + { + "id": "germany-destatis", + "name": { + "en": "Federal Statistical Office of Germany (Destatis)", + "zh": "德国联邦统计局", + "native": "Statistisches Bundesamt (Destatis)" + }, + "authority_level": "government", + "data_url": "https://www.destatis.de/EN/Themes/_node.html", + "has_api": true, + "file_path": "countries/europe/germany/germany-destatis.json", + "geographic_scope": "national" + }, + { + "id": "greece-elstat", + "name": { + "en": "Hellenic Statistical Authority (ELSTAT)", + "zh": "希腊统计局", + "native": "Ελληνική Στατιστική Αρχή (ΕΛΣΤΑΤ)" + }, + "authority_level": "government", + "data_url": "https://www.statistics.gr/en/statistics", + "has_api": false, + "file_path": "countries/europe/greece/greece-elstat.json", + "geographic_scope": "national" + }, + { + "id": "hungary-ksh", + "name": { + "en": "Hungarian Central Statistical Office", + "zh": "匈牙利中央统计局" + }, + "authority_level": "government", + "data_url": "https://www.ksh.hu/engstadat", + "has_api": true, + "file_path": "countries/europe/hungary/hungary-ksh.json", + "geographic_scope": "national" + }, + { + "id": "ireland-cso", + "name": { + "en": "Central Statistics Office (CSO)", + "zh": "爱尔兰中央统计局" + }, + "authority_level": "government", + "data_url": "https://data.cso.ie", + "has_api": true, + "file_path": "countries/europe/ireland/ireland-cso.json", + "geographic_scope": "national" + }, + { + "id": "italy-istat", + "name": { + "en": "Italian National Institute of Statistics", + "zh": "意大利国家统计局" + }, + "authority_level": "government", + "data_url": "https://esploradati.istat.it/databrowser/", + "has_api": true, + "file_path": "countries/europe/italy/italy-istat.json", + "geographic_scope": "national" + }, + { + "id": "netherlands-cbs", + "name": { + "en": "Statistics Netherlands (CBS)", + "zh": "荷兰统计局" + }, + "authority_level": "government", + "data_url": "https://opendata.cbs.nl/statline/", + "has_api": true, + "file_path": "countries/europe/netherlands/netherlands-cbs.json", + "geographic_scope": "national" + }, + { + "id": "portugal-ine", + "name": { + "en": "Statistics Portugal (INE)", + "zh": "葡萄牙国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.ine.pt/xportal/xmain?xpid=INE&xpgid=ine_base_dados", + "has_api": true, + "file_path": "countries/europe/portugal/portugal-ine.json", + "geographic_scope": "national" + }, + { + "id": "romania-ins", + "name": { + "en": "National Institute of Statistics (Romania)", + "zh": "罗马尼亚国家统计局" + }, + "authority_level": "government", + "data_url": "https://insse.ro/cms/en/statistici-2", + "has_api": true, + "file_path": "countries/europe/romania/romania-ins.json", + "geographic_scope": "national" + }, + { + "id": "russia-rosstat", + "name": { + "en": "Federal State Statistics Service (Rosstat)", + "zh": "俄罗斯联邦统计局", + "native": "Федеральная служба государственной статистики (Росстат)" + }, + "authority_level": "government", + "data_url": "https://rosstat.gov.ru/statistics", + "has_api": true, + "file_path": "countries/europe/russia/russia-rosstat.json", + "geographic_scope": "national" + }, + { + "id": "slovakia-susr", + "name": { + "en": "Statistical Office of the Slovak Republic (SUSR)", + "zh": "斯洛伐克共和国统计局" + }, + "authority_level": "government", + "data_url": "https://datacube.statistics.sk", + "has_api": false, + "file_path": "countries/europe/slovakia/slovakia-susr.json", + "geographic_scope": "national" + }, + { + "id": "slovenia-surs", + "name": { + "en": "Statistical Office of the Republic of Slovenia (SURS)", + "zh": "斯洛文尼亚共和国统计局" + }, + "authority_level": "government", + "data_url": "https://www.stat.si/StatWeb/en", + "has_api": true, + "file_path": "countries/europe/slovenia/slovenia-surs.json", + "geographic_scope": "national" + }, + { + "id": "spain-ine", + "name": { + "en": "National Statistics Institute of Spain", + "zh": "西班牙国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.ine.es/dyngs/INEbase/listaoperaciones.htm", + "has_api": true, + "file_path": "countries/europe/spain/spain-ine.json", + "geographic_scope": "national" + }, + { + "id": "sweden-scb", + "name": { + "en": "Statistics Sweden (SCB)", + "zh": "瑞典统计局" + }, + "authority_level": "government", + "data_url": "https://www.statistikdatabasen.scb.se", + "has_api": true, + "file_path": "countries/europe/sweden/sweden-scb.json", + "geographic_scope": "national" + }, + { + "id": "turkey-tuik", + "name": { + "en": "Turkish Statistical Institute (TurkStat)", + "zh": "土耳其统计局", + "native": "Türkiye İstatistik Kurumu (TÜİK)" + }, + "authority_level": "government", + "data_url": "https://data.tuik.gov.tr", + "has_api": true, + "file_path": "countries/europe/turkey/turkey-tuik.json", + "geographic_scope": "national" + }, + { + "id": "mexico-inegi", + "name": { + "en": "National Institute of Statistics and Geography (INEGI)", + "zh": "墨西哥国家统计和地理研究所", + "native": "Instituto Nacional de Estadística y Geografía (INEGI)" + }, + "authority_level": "government", + "data_url": "https://www.inegi.org.mx/datos/", + "has_api": true, + "file_path": "countries/north-america/mexico/mexico-inegi.json", + "geographic_scope": "national" + }, + { + "id": "us-bls", + "name": { + "en": "Bureau of Labor Statistics", + "zh": "劳工统计局" + }, + "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": "us-census", + "name": { + "en": "U.S. Census Bureau", + "zh": "美国人口普查局" + }, + "authority_level": "government", + "data_url": "https://data.census.gov", + "has_api": true, + "file_path": "countries/north-america/usa/us-census.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": "nz-stats", + "name": { + "en": "Statistics New Zealand (Stats NZ)", + "zh": "新西兰统计局" + }, + "authority_level": "government", + "data_url": "https://infoshare.stats.govt.nz", + "has_api": false, + "file_path": "countries/oceania/new-zealand/nz-stats.json", + "geographic_scope": "national" + }, + { + "id": "argentina-indec", + "name": { + "en": "National Institute of Statistics and Censuses (INDEC)", + "zh": "阿根廷国家统计与普查局" + }, + "authority_level": "government", + "data_url": "https://www.indec.gob.ar/indec/web/Nivel3-Tema-3-35", + "has_api": true, + "file_path": "countries/south-america/argentina/argentina-indec.json", + "geographic_scope": "national" + }, + { + "id": "chile-ine", + "name": { + "en": "National Statistics Institute of Chile (INE)", + "zh": "智利国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.ine.gob.cl/estadisticas", + "has_api": false, + "file_path": "countries/south-america/chile/chile-ine.json", + "geographic_scope": "national" + }, + { + "id": "colombia-dane", + "name": { + "en": "National Administrative Department of Statistics (DANE)", + "zh": "哥伦比亚国家统计局", + "native": "Departamento Administrativo Nacional de Estadística (DANE)" + }, + "authority_level": "government", + "data_url": "https://www.dane.gov.co/index.php/estadisticas-por-tema", + "has_api": true, + "file_path": "countries/south-america/colombia/colombia-dane.json", + "geographic_scope": "national" + }, + { + "id": "peru-inei", + "name": { + "en": "National Institute of Statistics and Informatics of Peru (INEI)", + "zh": "秘鲁国家统计和信息学研究所" + }, + "authority_level": "government", + "data_url": "https://www.inei.gob.pe/estadisticas/", + "has_api": false, + "file_path": "countries/south-america/peru/peru-inei.json", + "geographic_scope": "national" + }, + { + "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" + } + ], + "endangered-species": [ + { + "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" + } + ], + "energy": [ + { + "id": "owid", + "name": { + "en": "Our World in Data", + "zh": "用数据看世界" + }, + "authority_level": "research", + "data_url": "https://github.com/owid/owid-datasets", + "has_api": true, + "file_path": "academic/multidisciplinary/owid.json", + "geographic_scope": "global" + }, + { + "id": "china-nea", + "name": { + "en": "National Energy Administration of China", + "zh": "国家能源局" + }, + "authority_level": "government", + "data_url": "https://www.nea.gov.cn/sjzz/", + "has_api": false, + "file_path": "china/china-nea.json", + "geographic_scope": "national" + }, + { + "id": "china-cnea", + "name": { + "en": "China Nuclear Energy Association", + "zh": "中国核能行业协会" + }, + "authority_level": "other", + "data_url": "https://www.china-nea.cn/", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cnea.json", + "geographic_scope": "national" + }, + { + "id": "china-gas-association", + "name": { + "en": "China Gas Association", + "zh": "中国燃气协会" + }, + "authority_level": "other", + "data_url": "https://www.chinagas.org.cn", + "has_api": false, + "file_path": "china/economy/industry_associations/china-gas-association.json", + "geographic_scope": "national" + }, + { + "id": "china-cei", + "name": { + "en": "China Economic Information Service", + "zh": "中国经济信息社" + }, + "authority_level": "commercial", + "data_url": "https://www.cei.cn/category/", + "has_api": false, + "file_path": "china/economy/macro/china-cei.json", + "geographic_scope": "national" + }, + { + "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-gs-stats", + "name": { + "en": "Gansu Bureau of Statistics", + "zh": "甘肃省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.gansu.gov.cn/tjj/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-gs-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-nm-stats", + "name": { + "en": "Inner Mongolia Bureau of Statistics", + "zh": "内蒙古自治区统计局" + }, + "authority_level": "government", + "data_url": "http://tj.nmg.gov.cn", + "has_api": false, + "file_path": "china/economy/provincial/china-nm-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-nx-stats", + "name": { + "en": "Ningxia Bureau of Statistics", + "zh": "宁夏回族自治区统计局" + }, + "authority_level": "government", + "data_url": "https://tj.nx.gov.cn/tjsj_htr/jdsj_htr/", + "has_api": false, + "file_path": "china/economy/provincial/china-nx-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-qh-stats", + "name": { + "en": "Qinghai Bureau of Statistics", + "zh": "青海省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.qinghai.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-qh-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-sn-stats", + "name": { + "en": "Shaanxi Bureau of Statistics", + "zh": "陕西省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.shaanxi.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-sn-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-sx-stats", + "name": { + "en": "Shanxi Bureau of Statistics", + "zh": "山西省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.shanxi.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-sx-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-xj-stats", + "name": { + "en": "Xinjiang Bureau of Statistics", + "zh": "新疆维吾尔自治区统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.xinjiang.gov.cn/tjj/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-xj-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-nnsa", + "name": { + "en": "National Nuclear Safety Administration", + "zh": "国家核安全局" + }, + "authority_level": "government", + "data_url": "http://nnsa.mee.gov.cn", + "has_api": false, + "file_path": "china/governance/china-nnsa.json", + "geographic_scope": "national" + }, + { + "id": "china-ceeia", + "name": { + "en": "China Electrical Equipment Industry Association", + "zh": "中国电器工业协会" + }, + "authority_level": "commercial", + "data_url": "https://www.ceeia.com", + "has_api": false, + "file_path": "china/industry/china-ceeia.json", + "geographic_scope": "national" + }, + { + "id": "china-giec", + "name": { + "en": "Guangzhou Institute of Energy Conversion, Chinese Academy of Sciences", + "zh": "中国科学院广州能源研究所" + }, + "authority_level": "research", + "data_url": "http://www.giec.ac.cn", + "has_api": false, + "file_path": "china/research/china-giec.json", + "geographic_scope": "national" + }, + { + "id": "china-caea", + "name": { + "en": "China National Nuclear Safety Administration", + "zh": "国家原子能机构" + }, + "authority_level": "government", + "data_url": "https://www.caea.gov.cn", + "has_api": false, + "file_path": "china/resources/china-caea.json", + "geographic_scope": "national" + }, + { + "id": "china-chnenergy", + "name": { + "en": "China Energy Investment Corporation (CHN Energy)", + "zh": "国家能源投资集团有限责任公司" + }, + "authority_level": "government", + "data_url": "https://www.chnenergy.com.cn", + "has_api": false, + "file_path": "china/resources/china-chnenergy.json", + "geographic_scope": "national" + }, + { + "id": "china-cnooc", + "name": { + "en": "China National Offshore Oil Corporation", + "zh": "中国海洋石油集团有限公司" + }, + "authority_level": "government", + "data_url": "https://www.cnooc.com.cn", + "has_api": false, + "file_path": "china/resources/china-cnooc.json", + "geographic_scope": "national" + }, + { + "id": "china-cnpc", + "name": { + "en": "China National Petroleum Corporation", + "zh": "中国石油天然气集团有限公司" + }, + "authority_level": "government", + "data_url": "https://www.cnpc.com.cn/cnpc/nybg/common_index.shtml", + "has_api": false, + "file_path": "china/resources/china-cnpc.json", + "geographic_scope": "national" + }, + { + "id": "china-ctg", + "name": { + "en": "China Three Gorges Corporation (CTG)", + "zh": "中国长江三峡集团有限公司" + }, + "authority_level": "government", + "data_url": "https://www.ctg.com.cn", + "has_api": false, + "file_path": "china/resources/china-ctg.json", + "geographic_scope": "national" + }, + { + "id": "china-huaneng", + "name": { + "en": "China Huaneng Group", + "zh": "中国华能集团有限公司" + }, + "authority_level": "commercial", + "data_url": "https://www.chng.com.cn", + "has_api": false, + "file_path": "china/resources/china-huaneng.json", + "geographic_scope": "national" + }, + { + "id": "china-sinopec", + "name": { + "en": "China Petrochemical Corporation (Sinopec Group)", + "zh": "中国石油化工集团有限公司" + }, + "authority_level": "government", + "data_url": "http://www.sinopecgroup.com/group/xhtml/shzr/", + "has_api": false, + "file_path": "china/resources/china-sinopec.json", + "geographic_scope": "national" + }, + { + "id": "china-chinacoal", + "name": { + "en": "China National Coal Group Corporation", + "zh": "中国中煤能源集团有限公司" + }, + "authority_level": "government", + "data_url": "https://www.chinacoal.com", + "has_api": false, + "file_path": "china/resources/energy/china-chinacoal.json", + "geographic_scope": "national" + }, + { + "id": "china-csg", + "name": { + "en": "China Southern Power Grid", + "zh": "中国南方电网有限责任公司" + }, + "authority_level": "government", + "data_url": "https://www.csg.cn", + "has_api": false, + "file_path": "china/resources/energy/china-csg.json", + "geographic_scope": "subnational" + }, + { + "id": "china-cace", + "name": { + "en": "China Association of Circular Economy", + "zh": "中国循环经济协会" + }, + "authority_level": "other", + "data_url": "https://www.chinacace.org/patents/cycle_economy_report/", + "has_api": false, + "file_path": "china/resources/environment/china-cace.json", + "geographic_scope": "national" + }, + { + "id": "china-ceads", + "name": { + "en": "Carbon Emission Accounts and Datasets for China (CEADs)", + "zh": "中国碳排放核算数据库(CEADs)" + }, + "authority_level": "research", + "data_url": "https://ceads.net.cn/data/", + "has_api": false, + "file_path": "china/resources/environment/china-ceads.json", + "geographic_scope": "national" + }, + { + "id": "china-cnesa", + "name": { + "en": "China Energy Storage Alliance", + "zh": "中关村储能产业技术联盟" + }, + "authority_level": "other", + "data_url": "https://www.cnesa.org", + "has_api": false, + "file_path": "china/resources/environment/china-cnesa.json", + "geographic_scope": "national" + }, + { + "id": "china-ncsc", + "name": { + "en": "National Center for Climate Change Strategy and International Cooperation", + "zh": "国家应对气候变化战略研究和国际合作中心" + }, + "authority_level": "research", + "data_url": "http://www.ncsc.org.cn", + "has_api": false, + "file_path": "china/resources/environment/china-ncsc.json", + "geographic_scope": "national" + }, + { + "id": "china-nmsa", + "name": { + "en": "National Mine Safety Administration of China", + "zh": "国家矿山安全监察局" + }, + "authority_level": "government", + "data_url": "https://www.chinamine-safety.gov.cn/zfxxgk/", + "has_api": false, + "file_path": "china/resources/mineral/china-nmsa.json", + "geographic_scope": "national" + }, + { + "id": "china-sae", + "name": { + "en": "Society of Automotive Engineers of China", + "zh": "中国汽车工程学会" + }, + "authority_level": "research", + "data_url": "https://www.sae-china.org/newsdata/reportdata/", + "has_api": false, + "file_path": "china/technology/industry-associations/china-sae.json", + "geographic_scope": "national" + }, + { + "id": "china-cec", + "name": { + "en": "China Electricity Council", + "zh": "中国电力企业联合会" + }, + "authority_level": "other", + "data_url": "https://www.cec.org.cn/detail/index.html?3-302929", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cec.json", + "geographic_scope": "national" + }, + { + "id": "china-ces", + "name": { + "en": "China Electrotechnical Society", + "zh": "中国电工技术学会" + }, + "authority_level": "research", + "data_url": "https://www.ces.org.cn", + "has_api": false, + "file_path": "china/technology/industry_associations/china-ces.json", + "geographic_scope": "national" + }, + { + "id": "china-cpcif", + "name": { + "en": "China Petroleum and Chemical Industry Federation", + "zh": "中国石油和化学工业联合会" + }, + "authority_level": "other", + "data_url": "http://www.cpcif.org.cn/list/stats", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cpcif.json", + "geographic_scope": "national" + }, + { + "id": "china-cpia", + "name": { + "en": "China Photovoltaic Industry Association", + "zh": "中国光伏行业协会" + }, + "authority_level": "other", + "data_url": "https://www.chinapv.org.cn/StaticPage/association_page1.html", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cpia.json", + "geographic_scope": "national" + }, + { + "id": "china-csee", + "name": { + "en": "Chinese Society for Electrical Engineering", + "zh": "中国电机工程学会" + }, + "authority_level": "research", + "data_url": "https://www.csee.org.cn/", + "has_api": false, + "file_path": "china/technology/industry_associations/china-csee.json", + "geographic_scope": "national" + }, + { + "id": "china-cwea", + "name": { + "en": "Chinese Wind Energy Association", + "zh": "中国可再生能源学会风能专业委员会" + }, + "authority_level": "other", + "data_url": "http://www.cwea.org.cn/news_lastest.html", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cwea.json", + "geographic_scope": "national" + }, + { + "id": "japan-meti", + "name": { + "en": "Ministry of Economy, Trade and Industry (Japan)", + "zh": "日本经济产业省", + "native": "経済産業省" + }, + "authority_level": "government", + "data_url": "https://www.meti.go.jp/english/statistics/index.html", + "has_api": false, + "file_path": "countries/asia/japan/japan-meti.json", + "geographic_scope": "national" + }, + { + "id": "saudi-gastat", + "name": { + "en": "General Authority for Statistics (GASTAT)", + "zh": "沙特阿拉伯统计总局" + }, + "authority_level": "government", + "data_url": "https://www.stats.gov.sa/statistics", + "has_api": false, + "file_path": "countries/asia/saudi-arabia/saudi-gastat.json", + "geographic_scope": "national" + }, + { + "id": "netherlands-cbs", + "name": { + "en": "Statistics Netherlands (CBS)", + "zh": "荷兰统计局" + }, + "authority_level": "government", + "data_url": "https://opendata.cbs.nl/statline/", + "has_api": true, + "file_path": "countries/europe/netherlands/netherlands-cbs.json", + "geographic_scope": "national" + }, + { + "id": "sweden-scb", + "name": { + "en": "Statistics Sweden (SCB)", + "zh": "瑞典统计局" + }, + "authority_level": "government", + "data_url": "https://www.statistikdatabasen.scb.se", + "has_api": true, + "file_path": "countries/europe/sweden/sweden-scb.json", + "geographic_scope": "national" + }, + { + "id": "usa-eia", + "name": { + "en": "U.S. Energy Information Administration", + "zh": "美国能源信息署" + }, + "authority_level": "government", + "data_url": "https://www.eia.gov", + "has_api": true, + "file_path": "countries/north-america/usa/eia.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": "ember-climate", + "name": { + "en": "Ember Global Electricity Data", + "zh": "Ember全球电力数据平台" + }, + "authority_level": "research", + "data_url": "https://ember-climate.org/data/", + "has_api": true, + "file_path": "international/climate/ember-climate.json", + "geographic_scope": "global" + }, + { + "id": "global-carbon-project", + "name": { + "en": "Global Carbon Project", + "zh": "全球碳项目" + }, + "authority_level": "research", + "data_url": "https://www.globalcarbonproject.org/carbonbudget/", + "has_api": false, + "file_path": "international/climate/global-carbon-project.json", + "geographic_scope": "global" + }, + { + "id": "unfccc", + "name": { + "en": "UNFCCC - United Nations Framework Convention on Climate Change", + "zh": "联合国气候变化框架公约" + }, + "authority_level": "international", + "data_url": "https://di.unfccc.int", + "has_api": true, + "file_path": "international/climate/unfccc.json", + "geographic_scope": "global" + }, + { + "id": "adb-data-library", + "name": { + "en": "Asian Development Bank Data Library", + "zh": "亚洲开发银行数据库" + }, + "authority_level": "international", + "data_url": "https://data.adb.org", + "has_api": true, + "file_path": "international/development/adb-data-library.json", + "geographic_scope": "regional" + }, + { + "id": "adb-key-indicators", + "name": { + "en": "Asian Development Bank Key Indicators", + "zh": "亚洲开发银行关键指标" + }, + "authority_level": "international", + "data_url": "https://kidb.adb.org", + "has_api": true, + "file_path": "international/development/adb-key-indicators.json", + "geographic_scope": "regional" + }, + { + "id": "afdb-statistics", + "name": { + "en": "African Development Bank Statistics", + "zh": "非洲开发银行统计数据" + }, + "authority_level": "international", + "data_url": "https://dataportal.opendataforafrica.org", + "has_api": true, + "file_path": "international/development/afdb-statistics.json", + "geographic_scope": "regional" + }, + { + "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": "adb", + "name": { + "en": "Asian Development Bank Data", + "zh": "亚洲开发银行数据" + }, + "authority_level": "international", + "data_url": "https://www.adb.org/what-we-do/data", + "has_api": false, + "file_path": "international/economics/adb.json", + "geographic_scope": "regional" + }, + { + "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": "irena", + "name": { + "en": "IRENA - International Renewable Energy Agency", + "zh": "国际可再生能源署" + }, + "authority_level": "international", + "data_url": "https://www.irena.org/Data", + "has_api": true, + "file_path": "international/energy/irena.json", + "geographic_scope": "global" + }, + { + "id": "jodi", + "name": { + "en": "JODI - Joint Organisations Data Initiative", + "zh": "联合组织数据倡议" + }, + "authority_level": "international", + "data_url": "https://www.jodidata.org/oil/database/data-downloads.aspx", + "has_api": false, + "file_path": "international/energy/jodi.json", + "geographic_scope": "global" + }, + { + "id": "opec-statistics", + "name": { + "en": "OPEC Statistics", + "zh": "石油输出国组织统计数据" + }, + "authority_level": "international", + "data_url": "https://asb.opec.org", + "has_api": false, + "file_path": "international/energy/opec-statistics.json", + "geographic_scope": "global" + }, + { + "id": "eea-climate", + "name": { + "en": "European Environment Agency", + "zh": "欧洲环境署" + }, + "authority_level": "international", + "data_url": "https://www.eea.europa.eu/en/datahub", + "has_api": true, + "file_path": "international/environment/eea-climate.json", + "geographic_scope": "regional" + }, + { + "id": "unctad-infrastructure-statistics", + "name": { + "en": "UNCTAD Infrastructure Statistics Database", + "zh": "联合国贸发会议基础设施统计数据库" + }, + "authority_level": "international", + "data_url": "https://unctadstat.unctad.org/datacentre", + "has_api": true, + "file_path": "international/infrastructure/unctad-infrastructure-statistics.json", + "geographic_scope": "global" + }, + { + "id": "asean-centre-for-energy", + "name": { + "en": "ASEAN Centre for Energy", + "zh": "东盟能源中心" + }, + "authority_level": "international", + "data_url": "https://aseanenergy.org/publications/", + "has_api": false, + "file_path": "regional/asean-centre-for-energy.json", + "geographic_scope": "regional" + }, + { + "id": "entso-e", + "name": { + "en": "ENTSO-E Transparency Platform", + "zh": "欧洲输电系统运营商联盟透明平台" + }, + "authority_level": "international", + "data_url": "https://transparency.entsoe.eu", + "has_api": true, + "file_path": "regional/europe/entso-e.json", + "geographic_scope": "regional" + }, + { + "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", + "geographic_scope": "national" + }, + { + "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, + "file_path": "sectors/D-energy/bp-statistical-review.json", + "geographic_scope": "global" + } + ], + "energy-consumption": [ + { + "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, + "file_path": "sectors/D-energy/bp-statistical-review.json", + "geographic_scope": "global" + } + ], + "energy-economics": [ + { + "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, + "file_path": "sectors/D-energy/bp-statistical-review.json", + "geographic_scope": "global" + } + ], + "energy-efficiency": [ + { + "id": "eu-construction", + "name": { + "en": "European Commission - Construction and Buildings", + "zh": "欧盟委员会 - 建筑与建设", + "native": "European Commission - Construction and Buildings" + }, + "authority_level": "international", + "data_url": "https://ec.europa.eu/growth/sectors/construction_en", + "has_api": false, + "file_path": "international/construction/eu-construction.json", + "geographic_scope": "regional" + } + ], + "energy-infrastructure": [ + { + "id": "canada-cer", + "name": { + "en": "Canada Energy Regulator", + "zh": "加拿大能源监管局", + "native": "Régie de l'énergie du Canada" + }, + "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" + } + ], + "energy-markets": [ + { + "id": "canada-cer", + "name": { + "en": "Canada Energy Regulator", + "zh": "加拿大能源监管局", + "native": "Régie de l'énergie du Canada" + }, + "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" + } + ], + "energy-production": [ + { + "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, + "file_path": "sectors/D-energy/bp-statistical-review.json", + "geographic_scope": "global" + } + ], + "energy-safety": [ + { + "id": "canada-cer", + "name": { + "en": "Canada Energy Regulator", + "zh": "加拿大能源监管局", + "native": "Régie de l'énergie du Canada" + }, + "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" + } + ], + "energy-statistics": [ + { + "id": "cdiac", + "name": { + "en": "Carbon Dioxide Information Analysis Center", + "zh": "碳信息分析中心" + }, + "authority_level": "research", + "data_url": "https://data.ess-dive.lbl.gov/portals/CDIAC", + "has_api": true, + "file_path": "international/environment/cdiac.json", + "geographic_scope": "global" + }, + { + "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, + "file_path": "sectors/D-energy/bp-statistical-review.json", + "geographic_scope": "global" + } + ], + "energy-trade": [ + { + "id": "canada-cer", + "name": { + "en": "Canada Energy Regulator", + "zh": "加拿大能源监管局", + "native": "Régie de l'énergie du Canada" + }, + "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": "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, + "file_path": "sectors/D-energy/bp-statistical-review.json", + "geographic_scope": "global" + } + ], + "energy-transition": [ + { + "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, + "file_path": "international/development/caf.json", + "geographic_scope": "regional" + }, + { + "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, + "file_path": "sectors/D-energy/bp-statistical-review.json", + "geographic_scope": "global" + } + ], + "engineering": [ + { + "id": "ieee-xplore", + "name": { + "en": "IEEE Xplore Digital Library", + "zh": "IEEE Xplore数字图书馆" + }, + "authority_level": "research", + "data_url": "https://ieeexplore.ieee.org", + "has_api": true, + "file_path": "academic/ieee-xplore.json", + "geographic_scope": "global" + }, + { + "id": "china-construction-standards", + "name": { + "en": "China Engineering Construction Standardization Association", + "zh": "中国工程建设标准化协会", + "native": "中国工程建设标准化协会" + }, + "authority_level": "government", + "data_url": "https://www.cecs.org.cn/biaozhun/", + "has_api": false, + "file_path": "china/construction/china-construction-standards.json", + "geographic_scope": "national" + }, + { + "id": "china-cabr", + "name": { + "en": "China Academy of Building Research", + "zh": "中国建筑科学研究院有限公司" + }, + "authority_level": "research", + "data_url": "https://www.cabr.cn", + "has_api": false, + "file_path": "china/research/china-cabr.json", + "geographic_scope": "national" + }, + { + "id": "china-iwhr", + "name": { + "en": "China Institute of Water Resources and Hydropower Research", + "zh": "中国水利水电科学研究院" + }, + "authority_level": "research", + "data_url": "http://www.iwhr.com/", + "has_api": false, + "file_path": "china/resources/water/china-iwhr.json", + "geographic_scope": "national" + }, + { + "id": "china-cmes", + "name": { + "en": "Chinese Mechanical Engineering Society", + "zh": "中国机械工程学会" + }, + "authority_level": "research", + "data_url": "https://www.cmes.org", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cmes.json", + "geographic_scope": "national" + }, + { + "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" + } + ], + "environment": [ + { + "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", + "geographic_scope": "global" + }, + { + "id": "owid", + "name": { + "en": "Our World in Data", + "zh": "用数据看世界" + }, + "authority_level": "research", + "data_url": "https://github.com/owid/owid-datasets", + "has_api": true, + "file_path": "academic/multidisciplinary/owid.json", + "geographic_scope": "global" + }, + { + "id": "china-catas", + "name": { + "en": "Chinese Academy of Tropical Agricultural Sciences", + "zh": "中国热带农业科学院" + }, + "authority_level": "research", + "data_url": "https://www.catas.cn", + "has_api": false, + "file_path": "china/economy/agriculture/china-catas.json", + "geographic_scope": "national" + }, + { + "id": "china-natesc", + "name": { + "en": "National Agro-Tech Extension and Service Center", + "zh": "全国农业技术推广服务中心" + }, + "authority_level": "government", + "data_url": "https://www.natesc.org.cn", + "has_api": false, + "file_path": "china/economy/agriculture/china-natesc.json", + "geographic_scope": "national" + }, + { + "id": "china-bof", + "name": { + "en": "Bureau of Fisheries, Ministry of Agriculture and Rural Affairs", + "zh": "农业农村部渔业渔政管理局" + }, + "authority_level": "government", + "data_url": "https://yyj.moa.gov.cn", + "has_api": false, + "file_path": "china/economy/agriculture/fishery/china-bof.json", + "geographic_scope": "national" + }, + { + "id": "china-cbmf", + "name": { + "en": "China Building Materials Federation", + "zh": "中国建筑材料联合会" + }, + "authority_level": "other", + "data_url": "https://www.cbmf.org/yxjc/", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cbmf.json", + "geographic_scope": "national" + }, + { + "id": "china-qh-stats", + "name": { + "en": "Qinghai Bureau of Statistics", + "zh": "青海省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.qinghai.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-qh-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-mem", + "name": { + "en": "Ministry of Emergency Management of China", + "zh": "中华人民共和国应急管理部" + }, + "authority_level": "government", + "data_url": "https://www.mem.gov.cn/gk/tjsj/", + "has_api": false, + "file_path": "china/governance/china-mem.json", + "geographic_scope": "national" + }, + { + "id": "china-nnsa", + "name": { + "en": "National Nuclear Safety Administration", + "zh": "国家核安全局" + }, + "authority_level": "government", + "data_url": "http://nnsa.mee.gov.cn", + "has_api": false, + "file_path": "china/governance/china-nnsa.json", + "geographic_scope": "national" + }, + { + "id": "china-cma", + "name": { + "en": "China Meteorological Administration", + "zh": "中国气象局" + }, + "authority_level": "government", + "data_url": "https://data.cma.cn", + "has_api": false, + "file_path": "china/national/meteorology/china-cma.json", + "geographic_scope": "national" + }, + { + "id": "china-ncc", + "name": { + "en": "National Climate Center of China (NCC-CMA)", + "zh": "国家气候中心" + }, + "authority_level": "government", + "data_url": "https://cmdp.ncc-cma.net", + "has_api": false, + "file_path": "china/national/meteorology/china-ncc.json", + "geographic_scope": "national" + }, + { + "id": "china-nmc", + "name": { + "en": "National Meteorological Centre of China", + "zh": "中央气象台" + }, + "authority_level": "government", + "data_url": "https://www.nmc.cn/publish/observations.html", + "has_api": false, + "file_path": "china/national/meteorology/china-nmc.json", + "geographic_scope": "national" + }, + { + "id": "china-nmic", + "name": { + "en": "National Meteorological Information Center", + "zh": "国家气象信息中心" + }, + "authority_level": "government", + "data_url": "https://data.cma.cn/data/index.html", + "has_api": false, + "file_path": "china/national/meteorology/china-nmic.json", + "geographic_scope": "national" + }, + { + "id": "china-cabr", + "name": { + "en": "China Academy of Building Research", + "zh": "中国建筑科学研究院有限公司" + }, + "authority_level": "research", + "data_url": "https://www.cabr.cn", + "has_api": false, + "file_path": "china/research/china-cabr.json", + "geographic_scope": "national" + }, + { + "id": "china-cas", + "name": { + "en": "Chinese Academy of Sciences - Science Data Bank", + "zh": "中国科学院科学数据库" + }, + "authority_level": "research", + "data_url": "https://www.scidb.cn/", + "has_api": false, + "file_path": "china/research/china-cas.json", + "geographic_scope": "national" + }, + { + "id": "china-cufe-iigf", + "name": { + "en": "International Institute of Green Finance (IIGF), Central University of Finance and Economics", + "zh": "中央财经大学绿色金融国际研究院" + }, + "authority_level": "research", + "data_url": "https://iigf.cufe.edu.cn/yjcg/yjbg.htm", + "has_api": false, + "file_path": "china/research/china-cufe-iigf.json", + "geographic_scope": "national" + }, + { + "id": "china-drc", + "name": { + "en": "Development Research Center of the State Council of China", + "zh": "国务院发展研究中心" + }, + "authority_level": "government", + "data_url": "https://www.drc.gov.cn/yjcg.htm", + "has_api": false, + "file_path": "china/research/china-drc.json", + "geographic_scope": "national" + }, + { + "id": "china-giec", + "name": { + "en": "Guangzhou Institute of Energy Conversion, Chinese Academy of Sciences", + "zh": "中国科学院广州能源研究所" + }, + "authority_level": "research", + "data_url": "http://www.giec.ac.cn", + "has_api": false, + "file_path": "china/research/china-giec.json", + "geographic_scope": "national" + }, + { + "id": "china-gscloud", + "name": { + "en": "Geospatial Data Cloud - Computer Network Information Center, CAS", + "zh": "地理空间数据云(中国科学院计算机网络信息中心)" + }, + "authority_level": "research", + "data_url": "https://www.gscloud.cn/search", + "has_api": false, + "file_path": "china/research/china-gscloud.json", + "geographic_scope": "global" + }, + { + "id": "china-iap", + "name": { + "en": "Institute of Atmospheric Physics, Chinese Academy of Sciences", + "zh": "中国科学院大气物理研究所" + }, + "authority_level": "research", + "data_url": "https://www.iap.ac.cn", + "has_api": false, + "file_path": "china/research/china-iap.json", + "geographic_scope": "national" + }, + { + "id": "china-ibcas", + "name": { + "en": "Institute of Botany, Chinese Academy of Sciences", + "zh": "中国科学院植物研究所" + }, + "authority_level": "research", + "data_url": "https://www.ibcas.ac.cn", + "has_api": false, + "file_path": "china/research/china-ibcas.json", + "geographic_scope": "national" + }, + { + "id": "china-igsnrr", + "name": { + "en": "Institute of Geographic Sciences and Natural Resources Research, Chinese Academy of Sciences", + "zh": "中国科学院地理科学与资源研究所" + }, + "authority_level": "research", + "data_url": "http://www.igsnrr.ac.cn", + "has_api": false, + "file_path": "china/research/china-igsnrr.json", + "geographic_scope": "national" + }, + { + "id": "china-ioz", + "name": { + "en": "Institute of Zoology, Chinese Academy of Sciences", + "zh": "中国科学院动物研究所" + }, + "authority_level": "research", + "data_url": "http://www.ioz.ac.cn", + "has_api": false, + "file_path": "china/research/china-ioz.json", + "geographic_scope": "national" + }, + { + "id": "china-pku-opendata", + "name": { + "en": "Peking University Open Research Data Platform", + "zh": "北京大学开放研究数据平台" + }, + "authority_level": "research", + "data_url": "https://opendata.pku.edu.cn", + "has_api": false, + "file_path": "china/research/china-pku-opendata.json", + "geographic_scope": "national" + }, + { + "id": "china-plant-csdb", + "name": { + "en": "China Plant Thematic Database (CAS Science Database)", + "zh": "中国植物主题数据库" + }, + "authority_level": "research", + "data_url": "https://www.plant.csdb.cn", + "has_api": false, + "file_path": "china/research/china-plant-csdb.json", + "geographic_scope": "national" + }, + { + "id": "china-polar-service", + "name": { + "en": "China Polar Operations Service Platform (CHINARE Data)", + "zh": "中国极地业务服务平台" + }, + "authority_level": "government", + "data_url": "https://www.chinare.org.cn/", + "has_api": false, + "file_path": "china/research/china-polar-service.json", + "geographic_scope": "global" + }, + { + "id": "china-pric", + "name": { + "en": "Polar Research Institute of China", + "zh": "中国极地研究中心" + }, + "authority_level": "research", + "data_url": "https://www.pric.org.cn/", + "has_api": false, + "file_path": "china/research/china-pric.json", + "geographic_scope": "global" + }, + { + "id": "china-resdc", + "name": { + "en": "Resource and Environment Science and Data Center, Chinese Academy of Sciences", + "zh": "中国科学院资源环境科学与数据中心" + }, + "authority_level": "research", + "data_url": "https://www.resdc.cn", + "has_api": false, + "file_path": "china/research/china-resdc.json", + "geographic_scope": "national" + }, + { + "id": "china-scidb", + "name": { + "en": "Science Data Bank (ScienceDB)", + "zh": "中国科学数据银行" + }, + "authority_level": "research", + "data_url": "https://www.scidb.cn/list?type=all", + "has_api": false, + "file_path": "china/research/china-scidb.json", + "geographic_scope": "global" + }, + { + "id": "china-caea", + "name": { + "en": "China National Nuclear Safety Administration", + "zh": "国家原子能机构" + }, + "authority_level": "government", + "data_url": "https://www.caea.gov.cn", + "has_api": false, + "file_path": "china/resources/china-caea.json", + "geographic_scope": "national" + }, + { + "id": "china-chnenergy", + "name": { + "en": "China Energy Investment Corporation (CHN Energy)", + "zh": "国家能源投资集团有限责任公司" + }, + "authority_level": "government", + "data_url": "https://www.chnenergy.com.cn", + "has_api": false, + "file_path": "china/resources/china-chnenergy.json", + "geographic_scope": "national" + }, + { + "id": "china-ctg", + "name": { + "en": "China Three Gorges Corporation (CTG)", + "zh": "中国长江三峡集团有限公司" + }, + "authority_level": "government", + "data_url": "https://www.ctg.com.cn", + "has_api": false, + "file_path": "china/resources/china-ctg.json", + "geographic_scope": "national" + }, + { + "id": "china-cace", + "name": { + "en": "China Association of Circular Economy", + "zh": "中国循环经济协会" + }, + "authority_level": "other", + "data_url": "https://www.chinacace.org/patents/cycle_economy_report/", + "has_api": false, + "file_path": "china/resources/environment/china-cace.json", + "geographic_scope": "national" + }, + { + "id": "china-caep", + "name": { + "en": "Chinese Academy of Environmental Planning", + "zh": "生态环境部环境规划院" + }, + "authority_level": "research", + "data_url": "http://www.caep.org.cn", + "has_api": false, + "file_path": "china/resources/environment/china-caep.json", + "geographic_scope": "national" + }, + { + "id": "china-ceads", + "name": { + "en": "Carbon Emission Accounts and Datasets for China (CEADs)", + "zh": "中国碳排放核算数据库(CEADs)" + }, + "authority_level": "research", + "data_url": "https://ceads.net.cn/data/", + "has_api": false, + "file_path": "china/resources/environment/china-ceads.json", + "geographic_scope": "national" + }, + { + "id": "china-cern", + "name": { + "en": "Chinese Ecosystem Research Network (CERN)", + "zh": "中国生态系统研究网络" + }, + "authority_level": "research", + "data_url": "https://cern.ac.cn/0index/index.asp", + "has_api": false, + "file_path": "china/resources/environment/china-cern.json", + "geographic_scope": "national" + }, + { + "id": "china-cigem", + "name": { + "en": "China Institute of Geo-Environment Monitoring", + "zh": "中国地质环境监测院" + }, + "authority_level": "government", + "data_url": "http://www.cigem.cgs.gov.cn/", + "has_api": false, + "file_path": "china/resources/environment/china-cigem.json", + "geographic_scope": "national" + }, + { + "id": "china-cnemc", + "name": { + "en": "China National Environmental Monitoring Centre", + "zh": "中国环境监测总站" + }, + "authority_level": "government", + "data_url": "https://www.cnemc.cn/sssj/", + "has_api": false, + "file_path": "china/resources/environment/china-cnemc.json", + "geographic_scope": "national" + }, + { + "id": "china-cnesa", + "name": { + "en": "China Energy Storage Alliance", + "zh": "中关村储能产业技术联盟" + }, + "authority_level": "other", + "data_url": "https://www.cnesa.org", + "has_api": false, + "file_path": "china/resources/environment/china-cnesa.json", + "geographic_scope": "national" + }, + { + "id": "china-craes", + "name": { + "en": "Chinese Research Academy of Environmental Sciences", + "zh": "中国环境科学研究院" + }, + "authority_level": "research", + "data_url": "https://www.craes.cn", + "has_api": false, + "file_path": "china/resources/environment/china-craes.json", + "geographic_scope": "national" + }, + { + "id": "china-crra", + "name": { + "en": "China Association of Circular Economy", + "zh": "中国再生资源回收利用协会" + }, + "authority_level": "other", + "data_url": "https://www.crra.org.cn", + "has_api": false, + "file_path": "china/resources/environment/china-crra.json", + "geographic_scope": "national" + }, + { + "id": "china-ipe", + "name": { + "en": "Institute of Public & Environmental Affairs", + "zh": "公众环境研究中心" + }, + "authority_level": "research", + "data_url": "https://www.ipe.org.cn/AirMap_fxy/AirMap.html", + "has_api": false, + "file_path": "china/resources/environment/china-ipe.json", + "geographic_scope": "national" + }, + { + "id": "china-mee", + "name": { + "en": "Ministry of Ecology and Environment of China - Environmental Data", + "zh": "生态环境部环境数据" + }, + "authority_level": "government", + "data_url": "https://www.mee.gov.cn/hjzl/", + "has_api": false, + "file_path": "china/resources/environment/china-mee.json", + "geographic_scope": "national" + }, + { + "id": "china-ncsc", + "name": { + "en": "National Center for Climate Change Strategy and International Cooperation", + "zh": "国家应对气候变化战略研究和国际合作中心" + }, + "authority_level": "research", + "data_url": "http://www.ncsc.org.cn", + "has_api": false, + "file_path": "china/resources/environment/china-ncsc.json", + "geographic_scope": "national" + }, + { + "id": "china-ndrcc", + "name": { + "en": "National Disaster Reduction Center of China", + "zh": "国家减灾中心" + }, + "authority_level": "government", + "data_url": "https://www.ndrcc.org.cn/", + "has_api": false, + "file_path": "china/resources/environment/china-ndrcc.json", + "geographic_scope": "national" + }, + { + "id": "china-nesdc", + "name": { + "en": "National Ecosystem Science Data Center", + "zh": "国家生态科学数据中心" + }, + "authority_level": "research", + "data_url": "https://www.nesdc.org.cn", + "has_api": false, + "file_path": "china/resources/environment/china-nesdc.json", + "geographic_scope": "national" + }, + { + "id": "china-nies", + "name": { + "en": "Nanjing Institute of Environmental Sciences, MEE", + "zh": "生态环境部南京环境科学研究所" + }, + "authority_level": "research", + "data_url": "https://www.nies.org", + "has_api": false, + "file_path": "china/resources/environment/china-nies.json", + "geographic_scope": "national" + }, + { + "id": "china-nfga", + "name": { + "en": "National Forestry and Grassland Administration of China", + "zh": "国家林业和草原局" + }, + "authority_level": "government", + "data_url": "https://www.forestry.gov.cn/gjlcj/5462/index.html", + "has_api": false, + "file_path": "china/resources/forestry/china-nfga.json", + "geographic_scope": "national" + }, + { + "id": "china-cgas", + "name": { + "en": "China Geological Survey", + "zh": "中国地质调查局" + }, + "authority_level": "government", + "data_url": "https://www.cgs.gov.cn/", + "has_api": false, + "file_path": "china/resources/mineral/china-cgas.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", + "geographic_scope": "national" + }, + { + "id": "china-nmdis", + "name": { + "en": "National Marine Data and Information Service", + "zh": "国家海洋信息中心" + }, + "authority_level": "government", + "data_url": "https://mds.nmdis.org.cn/", + "has_api": false, + "file_path": "china/resources/ocean/china-nmdis.json", + "geographic_scope": "national" + }, + { + "id": "china-nsoas", + "name": { + "en": "National Satellite Ocean Application Service", + "zh": "国家卫星海洋应用中心" + }, + "authority_level": "government", + "data_url": "http://www.nsoas.org.cn", + "has_api": false, + "file_path": "china/resources/ocean/china-nsoas.json", + "geographic_scope": "national" + }, + { + "id": "china-cea", + "name": { + "en": "China Earthquake Administration", + "zh": "中国地震局" + }, + "authority_level": "government", + "data_url": "https://www.cea.gov.cn/cea/dzpd/dzzt/index.html", + "has_api": false, + "file_path": "china/resources/seismology/china-cea.json", + "geographic_scope": "national" + }, + { + "id": "china-cenc", + "name": { + "en": "China Earthquake Networks Center", + "zh": "中国地震台网中心" + }, + "authority_level": "government", + "data_url": "https://www.cenc.ac.cn/", + "has_api": false, + "file_path": "china/resources/seismology/china-cenc.json", + "geographic_scope": "national" + }, + { + "id": "china-ches", + "name": { + "en": "China Hydraulic Engineering Society", + "zh": "中国水利学会" + }, + "authority_level": "research", + "data_url": "http://www.ches.org.cn", + "has_api": false, + "file_path": "china/resources/water/china-ches.json", + "geographic_scope": "national" + }, + { + "id": "china-chinawater", + "name": { + "en": "China Water Resources Portal", + "zh": "中国水利网" + }, + "authority_level": "government", + "data_url": "https://www.chinawater.com.cn", + "has_api": false, + "file_path": "china/resources/water/china-chinawater.json", + "geographic_scope": "national" + }, + { + "id": "china-crsri", + "name": { + "en": "Changjiang River Scientific Research Institute", + "zh": "长江科学院" + }, + "authority_level": "research", + "data_url": "http://www.crsri.cn", + "has_api": false, + "file_path": "china/resources/water/china-crsri.json", + "geographic_scope": "national" + }, + { + "id": "china-hrc", + "name": { + "en": "Huai River Water Resources Commission", + "zh": "水利部淮河水利委员会" + }, + "authority_level": "government", + "data_url": "http://www.hrc.gov.cn", + "has_api": false, + "file_path": "china/resources/water/china-hrc.json", + "geographic_scope": "subnational" + }, + { + "id": "china-hwcc", + "name": { + "en": "Hai River Water Resources Commission", + "zh": "水利部海河水利委员会" + }, + "authority_level": "government", + "data_url": "http://www.hwcc.gov.cn", + "has_api": false, + "file_path": "china/resources/water/china-hwcc.json", + "geographic_scope": "subnational" + }, + { + "id": "china-iwhr", + "name": { + "en": "China Institute of Water Resources and Hydropower Research", + "zh": "中国水利水电科学研究院" + }, + "authority_level": "research", + "data_url": "http://www.iwhr.com/", + "has_api": false, + "file_path": "china/resources/water/china-iwhr.json", + "geographic_scope": "national" + }, + { + "id": "china-mwr", + "name": { + "en": "Ministry of Water Resources of China - Water Resources Statistics", + "zh": "中华人民共和国水利部水资源统计" + }, + "authority_level": "government", + "data_url": "http://www.mwr.gov.cn/sj/", + "has_api": false, + "file_path": "china/resources/water/china-mwr.json", + "geographic_scope": "national" + }, + { + "id": "china-slwr", + "name": { + "en": "Songliao River Water Resources Commission", + "zh": "水利部松辽水利委员会" + }, + "authority_level": "government", + "data_url": "http://www.slwr.gov.cn/gbjb.jhtml", + "has_api": false, + "file_path": "china/resources/water/china-slwr.json", + "geographic_scope": "subnational" + }, + { + "id": "china-yrcc", + "name": { + "en": "Yellow River Conservancy Commission", + "zh": "水利部黄河水利委员会" + }, + "authority_level": "government", + "data_url": "http://www.yrcc.gov.cn", + "has_api": false, + "file_path": "china/resources/water/china-yrcc.json", + "geographic_scope": "subnational" + }, + { + "id": "china-cnsa", + "name": { + "en": "China National Space Administration", + "zh": "国家航天局" + }, + "authority_level": "government", + "data_url": "https://www.cnsa.gov.cn/n6758823/index.html", + "has_api": false, + "file_path": "china/technology/china-cnsa.json", + "geographic_scope": "national" + }, + { + "id": "china-cec", + "name": { + "en": "China Electricity Council", + "zh": "中国电力企业联合会" + }, + "authority_level": "other", + "data_url": "https://www.cec.org.cn/detail/index.html?3-302929", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cec.json", + "geographic_scope": "national" + }, + { + "id": "china-cisa", + "name": { + "en": "China Iron and Steel Association", + "zh": "中国钢铁工业协会" + }, + "authority_level": "other", + "data_url": "https://www.chinaisa.org.cn/gxportal/xfgl/portal/index.html", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cisa.json", + "geographic_scope": "national" + }, + { + "id": "japan-jma", + "name": { + "en": "Japan Meteorological Agency", + "zh": "日本气象厅" + }, + "authority_level": "government", + "data_url": "https://www.data.jma.go.jp/risk/obsdl/index.php", + "has_api": false, + "file_path": "countries/asia/japan/japan-jma.json", + "geographic_scope": "national" + }, + { + "id": "kostat", + "name": { + "en": "Statistics Korea (KOSTAT)", + "zh": "韩国统计厅" + }, + "authority_level": "government", + "data_url": "https://kosis.kr/eng/", + "has_api": true, + "file_path": "countries/asia/kostat.json", + "geographic_scope": "national" + }, + { + "id": "philippines-psa", + "name": { + "en": "Philippine Statistics Authority", + "zh": "菲律宾统计局" + }, + "authority_level": "government", + "data_url": "https://openstat.psa.gov.ph", + "has_api": false, + "file_path": "countries/asia/philippines/psa.json", + "geographic_scope": "national" + }, + { + "id": "vietnam-gso", + "name": { + "en": "General Statistics Office of Vietnam", + "zh": "越南统计总局" + }, + "authority_level": "government", + "data_url": "https://www.nso.gov.vn/en/statistical-data/", + "has_api": false, + "file_path": "countries/asia/vietnam/gso.json", + "geographic_scope": "national" + }, + { + "id": "bulgaria-nsi", + "name": { + "en": "National Statistical Institute of Bulgaria (NSI)", + "zh": "保加利亚国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.nsi.bg/en/content/2666/statisticsdatabases", + "has_api": false, + "file_path": "countries/europe/bulgaria/bulgaria-nsi.json", + "geographic_scope": "national" + }, + { + "id": "croatia-dzs", + "name": { + "en": "Croatian Bureau of Statistics (DZS)", + "zh": "克罗地亚统计局" + }, + "authority_level": "government", + "data_url": "https://dzs.gov.hr/en/data-and-statistics", + "has_api": false, + "file_path": "countries/europe/croatia/croatia-dzs.json", + "geographic_scope": "national" + }, + { + "id": "czechia-czso", + "name": { + "en": "Czech Statistical Office (CZSO)", + "zh": "捷克统计局" + }, + "authority_level": "government", + "data_url": "https://vdb.czso.cz", + "has_api": true, + "file_path": "countries/europe/czechia/czechia-czso.json", + "geographic_scope": "national" + }, + { + "id": "finland-stat", + "name": { + "en": "Statistics Finland", + "zh": "芬兰统计局", + "native": "Tilastokeskus" + }, + "authority_level": "government", + "data_url": "https://pxdata.stat.fi/PxWeb/pxweb/en/StatFin/", + "has_api": true, + "file_path": "countries/europe/finland/finland-stat.json", + "geographic_scope": "national" + }, + { + "id": "germany-destatis", + "name": { + "en": "Federal Statistical Office of Germany (Destatis)", + "zh": "德国联邦统计局", + "native": "Statistisches Bundesamt (Destatis)" + }, + "authority_level": "government", + "data_url": "https://www.destatis.de/EN/Themes/_node.html", + "has_api": true, + "file_path": "countries/europe/germany/germany-destatis.json", + "geographic_scope": "national" + }, + { + "id": "greece-elstat", + "name": { + "en": "Hellenic Statistical Authority (ELSTAT)", + "zh": "希腊统计局", + "native": "Ελληνική Στατιστική Αρχή (ΕΛΣΤΑΤ)" + }, + "authority_level": "government", + "data_url": "https://www.statistics.gr/en/statistics", + "has_api": false, + "file_path": "countries/europe/greece/greece-elstat.json", + "geographic_scope": "national" + }, + { + "id": "netherlands-cbs", + "name": { + "en": "Statistics Netherlands (CBS)", + "zh": "荷兰统计局" + }, + "authority_level": "government", + "data_url": "https://opendata.cbs.nl/statline/", + "has_api": true, + "file_path": "countries/europe/netherlands/netherlands-cbs.json", + "geographic_scope": "national" + }, + { + "id": "norway-ssb", + "name": { + "en": "Statistics Norway (SSB)", + "zh": "挪威统计局", + "native": "Statistisk sentralbyrå (SSB)" + }, + "authority_level": "government", + "data_url": "https://www.ssb.no/en/statbank", + "has_api": true, + "file_path": "countries/europe/norway/norway-ssb.json", + "geographic_scope": "national" + }, + { + "id": "poland-gus", + "name": { + "en": "Statistics Poland (GUS)", + "zh": "波兰中央统计局", + "native": "Główny Urząd Statystyczny" + }, + "authority_level": "government", + "data_url": "https://bdl.stat.gov.pl/BDL/start", + "has_api": true, + "file_path": "countries/europe/poland/poland-gus.json", + "geographic_scope": "national" + }, + { + "id": "russia-rosstat", + "name": { + "en": "Federal State Statistics Service (Rosstat)", + "zh": "俄罗斯联邦统计局", + "native": "Федеральная служба государственной статистики (Росстат)" + }, + "authority_level": "government", + "data_url": "https://rosstat.gov.ru/statistics", + "has_api": true, + "file_path": "countries/europe/russia/russia-rosstat.json", + "geographic_scope": "national" + }, + { + "id": "slovakia-susr", + "name": { + "en": "Statistical Office of the Slovak Republic (SUSR)", + "zh": "斯洛伐克共和国统计局" + }, + "authority_level": "government", + "data_url": "https://datacube.statistics.sk", + "has_api": false, + "file_path": "countries/europe/slovakia/slovakia-susr.json", + "geographic_scope": "national" + }, + { + "id": "slovenia-surs", + "name": { + "en": "Statistical Office of the Republic of Slovenia (SURS)", + "zh": "斯洛文尼亚共和国统计局" + }, + "authority_level": "government", + "data_url": "https://www.stat.si/StatWeb/en", + "has_api": true, + "file_path": "countries/europe/slovenia/slovenia-surs.json", + "geographic_scope": "national" + }, + { + "id": "sweden-scb", + "name": { + "en": "Statistics Sweden (SCB)", + "zh": "瑞典统计局" + }, + "authority_level": "government", + "data_url": "https://www.statistikdatabasen.scb.se", + "has_api": true, + "file_path": "countries/europe/sweden/sweden-scb.json", + "geographic_scope": "national" + }, + { + "id": "switzerland-fso", + "name": { + "en": "Swiss Federal Statistical Office (FSO)", + "zh": "瑞士联邦统计局", + "native": "Bundesamt für Statistik (BFS)" + }, + "authority_level": "government", + "data_url": "https://www.bfs.admin.ch/bfs/en/home/statistics.html", + "has_api": true, + "file_path": "countries/europe/switzerland/switzerland-fso.json", + "geographic_scope": "national" + }, + { + "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", + "geographic_scope": "national" + }, + { + "id": "uk-met-office", + "name": { + "en": "UK Met Office", + "zh": "英国气象局" + }, + "authority_level": "government", + "data_url": "https://www.metoffice.gov.uk/research/climate/maps-and-data", + "has_api": true, + "file_path": "countries/europe/uk/uk-met-office.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-inegi", + "name": { + "en": "National Institute of Statistics and Geography (INEGI)", + "zh": "墨西哥国家统计和地理研究所", + "native": "Instituto Nacional de Estadística y Geografía (INEGI)" + }, + "authority_level": "government", + "data_url": "https://www.inegi.org.mx/datos/", + "has_api": true, + "file_path": "countries/north-america/mexico/mexico-inegi.json", + "geographic_scope": "national" + }, + { + "id": "usa-eia", + "name": { + "en": "U.S. Energy Information Administration", + "zh": "美国能源信息署" + }, + "authority_level": "government", + "data_url": "https://www.eia.gov", + "has_api": true, + "file_path": "countries/north-america/usa/eia.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": "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": "nz-stats", + "name": { + "en": "Statistics New Zealand (Stats NZ)", + "zh": "新西兰统计局" + }, + "authority_level": "government", + "data_url": "https://infoshare.stats.govt.nz", + "has_api": false, + "file_path": "countries/oceania/new-zealand/nz-stats.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": "chile-ine", + "name": { + "en": "National Statistics Institute of Chile (INE)", + "zh": "智利国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.ine.gob.cl/estadisticas", + "has_api": false, + "file_path": "countries/south-america/chile/chile-ine.json", + "geographic_scope": "national" + }, + { + "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": "cdp", + "name": { + "en": "CDP - Carbon Disclosure Project", + "zh": "碳信息披露项目" + }, + "authority_level": "research", + "data_url": "https://www.cdp.net/en/data", + "has_api": false, + "file_path": "international/climate/cdp.json", + "geographic_scope": "global" + }, + { + "id": "ecmwf", + "name": { + "en": "European Centre for Medium-Range Weather Forecasts", + "zh": "欧洲中期天气预报中心" + }, + "authority_level": "international", + "data_url": "https://cds.climate.copernicus.eu", + "has_api": true, + "file_path": "international/climate/ecmwf.json", + "geographic_scope": "global" + }, + { + "id": "ember-climate", + "name": { + "en": "Ember Global Electricity Data", + "zh": "Ember全球电力数据平台" + }, + "authority_level": "research", + "data_url": "https://ember-climate.org/data/", + "has_api": true, + "file_path": "international/climate/ember-climate.json", + "geographic_scope": "global" + }, + { + "id": "global-carbon-project", + "name": { + "en": "Global Carbon Project", + "zh": "全球碳项目" + }, + "authority_level": "research", + "data_url": "https://www.globalcarbonproject.org/carbonbudget/", + "has_api": false, + "file_path": "international/climate/global-carbon-project.json", + "geographic_scope": "global" + }, + { + "id": "ipcc", + "name": { + "en": "IPCC Data Distribution Centre", + "zh": "政府间气候变化专门委员会数据分发中心" + }, + "authority_level": "international", + "data_url": "https://www.ipcc-data.org/observ/index.html", + "has_api": false, + "file_path": "international/climate/ipcc.json", + "geographic_scope": "global" + }, + { + "id": "unfccc", + "name": { + "en": "UNFCCC - United Nations Framework Convention on Climate Change", + "zh": "联合国气候变化框架公约" + }, + "authority_level": "international", + "data_url": "https://di.unfccc.int", + "has_api": true, + "file_path": "international/climate/unfccc.json", + "geographic_scope": "global" + }, + { + "id": "adb-data-library", + "name": { + "en": "Asian Development Bank Data Library", + "zh": "亚洲开发银行数据库" + }, + "authority_level": "international", + "data_url": "https://data.adb.org", + "has_api": true, + "file_path": "international/development/adb-data-library.json", + "geographic_scope": "regional" + }, + { + "id": "adb-key-indicators", + "name": { + "en": "Asian Development Bank Key Indicators", + "zh": "亚洲开发银行关键指标" + }, + "authority_level": "international", + "data_url": "https://kidb.adb.org", + "has_api": true, + "file_path": "international/development/adb-key-indicators.json", + "geographic_scope": "regional" + }, + { + "id": "nasa-earthdata", + "name": { + "en": "NASA Earthdata", + "zh": "NASA地球数据" + }, + "authority_level": "government", + "data_url": "https://www.earthdata.nasa.gov", + "has_api": true, + "file_path": "international/earth-science/nasa-earthdata.json", + "geographic_scope": "global" + }, + { + "id": "adb", + "name": { + "en": "Asian Development Bank Data", + "zh": "亚洲开发银行数据" + }, + "authority_level": "international", + "data_url": "https://www.adb.org/what-we-do/data", + "has_api": false, + "file_path": "international/economics/adb.json", + "geographic_scope": "regional" + }, + { + "id": "eurostat", + "name": { + "en": "Eurostat - Statistical Office of the European Union", + "zh": "欧盟统计局", + "native": "Eurostat" + }, + "authority_level": "international", + "data_url": "https://ec.europa.eu/eurostat/databrowser/explore/all/all_themes", + "has_api": true, + "file_path": "international/economics/eurostat.json", + "geographic_scope": "regional" + }, + { + "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", + "name": { + "en": "World Bank Open Data", + "zh": "世界银行开放数据", + "native": "World Bank Open Data" + }, + "authority_level": "international", + "data_url": "https://data.worldbank.org", + "has_api": true, + "file_path": "international/economics/worldbank.json", + "geographic_scope": "global" + }, + { + "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": "irena", + "name": { + "en": "IRENA - International Renewable Energy Agency", + "zh": "国际可再生能源署" + }, + "authority_level": "international", + "data_url": "https://www.irena.org/Data", + "has_api": true, + "file_path": "international/energy/irena.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" + }, + { + "id": "cdiac", + "name": { + "en": "Carbon Dioxide Information Analysis Center", + "zh": "碳信息分析中心" + }, + "authority_level": "research", + "data_url": "https://data.ess-dive.lbl.gov/portals/CDIAC", + "has_api": true, + "file_path": "international/environment/cdiac.json", + "geographic_scope": "global" + }, + { + "id": "eea-climate", + "name": { + "en": "European Environment Agency", + "zh": "欧洲环境署" + }, + "authority_level": "international", + "data_url": "https://www.eea.europa.eu/en/datahub", + "has_api": true, + "file_path": "international/environment/eea-climate.json", + "geographic_scope": "regional" + }, + { + "id": "isric-world-soil", + "name": { + "en": "ISRIC World Soil Information", + "zh": "ISRIC世界土壤信息中心" + }, + "authority_level": "research", + "data_url": "https://www.isric.org/explore", + "has_api": true, + "file_path": "international/environment/isric-world-soil.json", + "geographic_scope": "global" + }, + { + "id": "itf-transport", + "name": { + "en": "ITF Transport Statistics", + "zh": "国际交通论坛交通统计" + }, + "authority_level": "international", + "data_url": "https://www.itf-oecd.org/transport-statistics", + "has_api": true, + "file_path": "international/transportation/itf-transport.json", + "geographic_scope": "global" + }, + { + "id": "asean-centre-for-energy", + "name": { + "en": "ASEAN Centre for Energy", + "zh": "东盟能源中心" + }, + "authority_level": "international", + "data_url": "https://aseanenergy.org/publications/", + "has_api": false, + "file_path": "regional/asean-centre-for-energy.json", + "geographic_scope": "regional" + } + ], + "environmental-health": [ + { + "id": "us-cdc", + "name": { + "en": "Centers for Disease Control and Prevention", + "zh": "美国疾病控制与预防中心" + }, + "authority_level": "government", + "data_url": "https://wonder.cdc.gov/", + "has_api": true, + "file_path": "countries/north-america/usa/us-cdc.json", + "geographic_scope": "national" + } + ], + "environmental-issues": [ + { + "id": "afrobarometer", + "name": { + "en": "Afrobarometer", + "zh": "非洲晴雨表" + }, + "authority_level": "research", + "data_url": "https://www.afrobarometer.org/data/", + "has_api": false, + "file_path": "academic/social/afrobarometer.json", + "geographic_scope": "regional" + } + ], + "environmental-law": [ + { + "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-monitoring": [ + { + "id": "aafc", + "name": { + "en": "Agriculture and Agri-Food Canada", + "zh": "加拿大农业与农业食品部", + "native": "Agriculture et Agroalimentaire Canada" + }, + "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": "usgs-earthexplorer", + "name": { + "en": "USGS EarthExplorer", + "zh": "美国地质调查局地球探索者" + }, + "authority_level": "government", + "data_url": "https://earthexplorer.usgs.gov/", + "has_api": true, + "file_path": "countries/north-america/usa/usgs-earthexplorer.json", + "geographic_scope": "global" + } + ], + "environmental-protection": [ + { + "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" + } + ], + "environmental-science": [ + { + "id": "china-ngeos", + "name": { + "en": "National Earth System Science Data Center", + "zh": "国家地球系统科学数据中心" + }, + "authority_level": "research", + "data_url": "https://www.geodata.cn/data/", + "has_api": false, + "file_path": "china/research/china-ngeos.json", + "geographic_scope": "national" + }, + { + "id": "china-ngcc", + "name": { + "en": "National Geomatics Center of China", + "zh": "国家基础地理信息中心" + }, + "authority_level": "government", + "data_url": "https://www.ngcc.cn/dlxxzy/gjjcdlxxsjk/", + "has_api": false, + "file_path": "china/resources/china-ngcc.json", + "geographic_scope": "national" + }, + { + "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, + "file_path": "countries/north-america/usa/noaa-cdo.json", + "geographic_scope": "global" + } + ], + "environmental-sciences": [ + { + "id": "ena", + "name": { + "en": "European Nucleotide Archive", + "zh": "欧洲核苷酸档案库" + }, + "authority_level": "international", + "data_url": "https://www.ebi.ac.uk/ena/browser/", + "has_api": true, + "file_path": "academic/biology/ena.json", + "geographic_scope": "global" + } + ], + "environmental-statistics": [ + { + "id": "gso-vietnam", + "name": { + "en": "General Statistics Office of Vietnam", + "zh": "越南国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.gso.gov.vn/en/data-and-statistics/", + "has_api": false, + "file_path": "countries/asia/vietnam/gso-vietnam.json", + "geographic_scope": "national" + } + ], + "environmental-sustainability": [ + { + "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, + "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" + } + ], + "epidemiology": [ + { + "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": "ghdx", + "name": { + "en": "Global Health Data Exchange (GHDx)", + "zh": "全球健康数据交换平台" + }, + "authority_level": "research", + "data_url": "https://ghdx.healthdata.org/", + "has_api": true, + "file_path": "academic/health/ghdx.json", + "geographic_scope": "global" + }, + { + "id": "china-cdc", + "name": { + "en": "Chinese Center for Disease Control and Prevention", + "zh": "中国疾病预防控制中心" + }, + "authority_level": "government", + "data_url": "https://www.chinacdc.cn/gzdt/", + "has_api": false, + "file_path": "china/health/china-cdc.json", + "geographic_scope": "national" + }, + { + "id": "china-nhc", + "name": { + "en": "National Health Commission of China", + "zh": "国家卫生健康委员会", + "native": "国家卫生健康委员会" + }, + "authority_level": "government", + "data_url": "https://www.nhc.gov.cn/mohwsbwstjxxzx/s7967/new_list.shtml", + "has_api": false, + "file_path": "china/health/china-nhc.json", + "geographic_scope": "national" + }, + { + "id": "china-nphsd", + "name": { + "en": "National Population and Health Science Data Center", + "zh": "国家人口与健康科学数据中心" + }, + "authority_level": "research", + "data_url": "https://www.phsciencedata.cn", + "has_api": false, + "file_path": "china/health/china-nphsd.json", + "geographic_scope": "national" + }, + { + "id": "us-cdc", + "name": { + "en": "Centers for Disease Control and Prevention", + "zh": "美国疾病控制与预防中心" + }, + "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": "africa-cdc", + "name": { + "en": "Africa CDC Health Data", + "zh": "非洲疾控中心健康数据" + }, + "authority_level": "international", + "data_url": "https://africacdc.org", + "has_api": false, + "file_path": "international/health/africa-cdc.json", + "geographic_scope": "regional" + }, + { + "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, + "file_path": "international/health/ecdc-surveillance.json", + "geographic_scope": "regional" + } + ], + "equipment-manufacturing": [ + { + "id": "china-additive-manufacturing-alliance", + "name": { + "en": "China Additive Manufacturing Alliance", + "zh": "中国增材制造产业联盟" + }, + "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", + "geographic_scope": "national" + } + ], + "equities": [ + { + "id": "bloomberg-terminal", + "name": { + "en": "Bloomberg Terminal (Public Data)", + "zh": "彭博终端(部分公开数据)" + }, + "authority_level": "commercial", + "data_url": "https://www.bloomberg.com/markets", + "has_api": true, + "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json", + "geographic_scope": "global" + }, + { + "id": "crsp", + "name": { + "en": "CRSP - Center for Research in Security Prices", + "zh": "证券价格研究中心" + }, + "authority_level": "research", + "data_url": "https://www.crsp.org/", + "has_api": true, + "file_path": "sectors/K-finance-insurance/crsp.json", + "geographic_scope": "national" + }, + { + "id": "refinitiv-lseg", + "name": { + "en": "LSEG Data & Analytics (Refinitiv)", + "zh": "伦敦证交所数据分析(路孚特)" + }, + "authority_level": "commercial", + "data_url": "https://www.lseg.com/en/data-analytics/products/workspace", + "has_api": true, + "file_path": "sectors/K-finance-insurance/refinitiv-lseg.json", + "geographic_scope": "global" + } + ], + "equity-markets": [ + { + "id": "bloomberg-ipo-database", + "name": { + "en": "Bloomberg IPO Database", + "zh": "彭博IPO数据库" + }, + "authority_level": "commercial", + "data_url": "https://www.bloomberg.com/professional/products/bloomberg-terminal/", + "has_api": true, + "file_path": "sectors/K-finance-insurance/bloomberg-ipo-database.json", + "geographic_scope": "global" + } + ], + "equity-offerings": [ + { + "id": "bloomberg-terminal-ipo", + "name": { + "en": "Bloomberg Terminal - IPO Module", + "zh": "彭博终端 - IPO模块" + }, + "authority_level": "commercial", + "data_url": "https://www.bloomberg.com/professional/products/bloomberg-terminal/", + "has_api": true, + "file_path": "sectors/K-finance-insurance/bloomberg-terminal-ipo.json", + "geographic_scope": "global" + } + ], + "esg": [ + { + "id": "china-csi-index", + "name": { + "en": "China Securities Index Co., Ltd.", + "zh": "中证指数有限公司" + }, + "authority_level": "market", + "data_url": "https://www.csindex.com.cn/#/indices/family/list", + "has_api": false, + "file_path": "china/finance/china-csi-index.json", + "geographic_scope": "national" + }, + { + "id": "japan-gpif", + "name": { + "en": "Government Pension Investment Fund", + "zh": "日本政府养老投资基金" + }, + "authority_level": "government", + "data_url": "https://www.gpif.go.jp/en/performance/", + "has_api": false, + "file_path": "countries/asia/japan/japan-gpif.json", + "geographic_scope": "national" + } + ], + "esg-data": [ + { + "id": "global-reporting-initiative", + "name": { + "en": "GRI - Global Reporting Initiative", + "zh": "全球报告倡议组织" + }, + "authority_level": "international", + "data_url": "https://www.globalreporting.org/standards/", + "has_api": false, + "file_path": "international/standards-metrology/global-reporting-initiative.json", + "geographic_scope": "global" + }, + { + "id": "sasb-standards", + "name": { + "en": "SASB Standards (IFRS Foundation)", + "zh": "SASB可持续发展会计准则(IFRS基金会)" + }, + "authority_level": "international", + "data_url": "https://sasb.ifrs.org/standards/", + "has_api": false, + "file_path": "international/standards-metrology/sasb-standards.json", + "geographic_scope": "global" + }, + { + "id": "bloomberg-terminal", + "name": { + "en": "Bloomberg Terminal (Public Data)", + "zh": "彭博终端(部分公开数据)" + }, + "authority_level": "commercial", + "data_url": "https://www.bloomberg.com/markets", + "has_api": true, + "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json", + "geographic_scope": "global" + }, + { + "id": "refinitiv-lseg", + "name": { + "en": "LSEG Data & Analytics (Refinitiv)", + "zh": "伦敦证交所数据分析(路孚特)" + }, + "authority_level": "commercial", + "data_url": "https://www.lseg.com/en/data-analytics/products/workspace", + "has_api": true, + "file_path": "sectors/K-finance-insurance/refinitiv-lseg.json", + "geographic_scope": "global" + } + ], + "evolution": [ + { + "id": "paleobiodb", + "name": { + "en": "Paleobiology Database (PBDB)", + "zh": "古生物学数据库" + }, + "authority_level": "research", + "data_url": "https://paleobiodb.org/navigator/", + "has_api": true, + "file_path": "international/paleontology/paleobiodb.json", + "geographic_scope": "global" + } + ], + "evolutionary-biology": [ + { + "id": "1000-genomes", + "name": { + "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" + } + ], + "exchange-rates": [ + { + "id": "india-rbi", + "name": { + "en": "Reserve Bank of India", + "zh": "印度储备银行", + "native": "भारतीय रिज़र्व बैंक" + }, + "authority_level": "government", + "data_url": "https://www.rbi.org.in/Scripts/Statistics.aspx", + "has_api": true, + "file_path": "countries/asia/india/india-rbi.json", + "geographic_scope": "national" + }, + { + "id": "korea-bok", + "name": { + "en": "Bank of Korea", + "zh": "韩国银行", + "native": "한국은행" + }, + "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", + "geographic_scope": "national" + }, + { + "id": "uk-boe", + "name": { + "en": "Bank of England Statistical Interactive Database", + "zh": "英格兰银行统计数据库" + }, + "authority_level": "government", + "data_url": "https://www.bankofengland.co.uk/boeapps/database/", + "has_api": false, + "file_path": "countries/europe/uk/bank-of-england.json", + "geographic_scope": "national" + }, + { + "id": "canada-boc", + "name": { + "en": "Bank of Canada", + "zh": "加拿大银行", + "native": "Banque du Canada" + }, + "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": "mx-banxico", + "name": { + "en": "Bank of Mexico Economic Information System", + "zh": "墨西哥银行经济信息系统", + "native": "Sistema de Información Económica - Banco de México" + }, + "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": "brazil-bcb", + "name": { + "en": "Central Bank of Brazil", + "zh": "巴西中央银行", + "native": "Banco Central do Brasil" + }, + "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": "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, + "file_path": "international/economics/ecb-sdw.json", + "geographic_scope": "regional" + } + ], + "excise-revenue": [ + { + "id": "india-dgcis", + "name": { + "en": "Directorate General of Commercial Intelligence and Statistics", + "zh": "印度商业情报与统计总局" + }, + "authority_level": "government", + "data_url": "https://www.commerce.gov.in/trade-statistics/", + "has_api": false, + "file_path": "countries/asia/india/india-dgcis.json", + "geographic_scope": "national" + } + ], + "experimental-physics": [ + { + "id": "cern-open-data", + "name": { + "en": "CERN Open Data Portal", + "zh": "CERN 开放数据门户" + }, + "authority_level": "research", + "data_url": "https://opendata.cern.ch/", + "has_api": true, + "file_path": "academic/physics/cern-open-data.json", + "geographic_scope": "global" + } + ], + "export-statistics": [ + { + "id": "india-dgcis", + "name": { + "en": "Directorate General of Commercial Intelligence and Statistics", + "zh": "印度商业情报与统计总局" + }, + "authority_level": "government", + "data_url": "https://www.commerce.gov.in/trade-statistics/", + "has_api": false, + "file_path": "countries/asia/india/india-dgcis.json", + "geographic_scope": "national" + } + ], + "exports": [ + { + "id": "brazil-cecafe", + "name": { + "en": "Brazilian Coffee Exporters Council", + "zh": "巴西咖啡出口商协会" + }, + "authority_level": "market", + "data_url": "https://www.cecafe.com.br/publicacoes/relatorio-de-exportacoes/", + "has_api": false, + "file_path": "countries/south-america/brazil-cecafe.json", + "geographic_scope": "national" + } + ], + "external-trade": [ + { + "id": "dosm", + "name": { + "en": "Department of Statistics Malaysia", + "zh": "马来西亚统计局" + }, + "authority_level": "government", + "data_url": "https://open.dosm.gov.my/", + "has_api": true, + "file_path": "countries/asia/dosm.json", + "geographic_scope": "national" + } + ], + "fdi": [ + { + "id": "japan-jetro", + "name": { + "en": "Japan External Trade Organization", + "zh": "日本贸易振兴机构", + "native": "日本貿易振興機構" + }, + "authority_level": "government", + "data_url": "https://www.jetro.go.jp/en/reports/statistics.html", + "has_api": false, + "file_path": "countries/asia/japan/japan-jetro.json", + "geographic_scope": "national" + } + ], + "finance": [ + { + "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": "china-csdc", + "name": { + "en": "China Securities Depository and Clearing Corporation", + "zh": "中国证券登记结算有限公司" + }, + "authority_level": "other", + "data_url": "https://www.chinaclear.cn/zdjs/tjyb/center_tjbg.shtml", + "has_api": false, + "file_path": "china/china-csdc.json", + "geographic_scope": "national" + }, + { + "id": "china-sac", + "name": { + "en": "Securities Association of China", + "zh": "中国证券业协会" + }, + "authority_level": "other", + "data_url": "https://www.sac.net.cn/hysj/", + "has_api": false, + "file_path": "china/china-sac.json", + "geographic_scope": "national" + }, + { + "id": "cninfo", + "name": { + "en": "CNINFO (Shenzhen Stock Exchange Information)", + "zh": "巨潮资讯网" + }, + "authority_level": "government", + "data_url": "https://www.cninfo.com.cn/new/commonUrl?url=disclosure/list/search", + "has_api": true, + "file_path": "china/cninfo.json", + "geographic_scope": "national" + }, + { + "id": "china-cric", + "name": { + "en": "China Real Estate Information Corporation (CRIC)", + "zh": "克而瑞研究中心(CRIC)" + }, + "authority_level": "market", + "data_url": "https://www.cric.com/newhouse/", + "has_api": false, + "file_path": "china/construction/china-cric.json", + "geographic_scope": "national" + }, + { + "id": "china-fangjia", + "name": { + "en": "Fangjia.com - China Housing Price Network", + "zh": "房价网(fangjia.com)" + }, + "authority_level": "market", + "data_url": "https://www.fangjia.com", + "has_api": false, + "file_path": "china/construction/china-fangjia.json", + "geographic_scope": "national" + }, + { + "id": "china-cei", + "name": { + "en": "China Economic Information Service", + "zh": "中国经济信息社" + }, + "authority_level": "commercial", + "data_url": "https://www.cei.cn/category/", + "has_api": false, + "file_path": "china/economy/macro/china-cei.json", + "geographic_scope": "national" + }, + { + "id": "china-shanghai-stats", + "name": { + "en": "Shanghai Municipal Bureau of Statistics", + "zh": "上海市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.sh.gov.cn/sjxx/index.html", + "has_api": false, + "file_path": "china/economy/provincial/china-shanghai-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-hk-censtatd", + "name": { + "en": "Hong Kong Census and Statistics Department", + "zh": "香港政府统计处" + }, + "authority_level": "government", + "data_url": "https://www.censtatd.gov.hk/", + "has_api": false, + "file_path": "china/economy/special_admin_regions/china-hk-censtatd.json", + "geographic_scope": "subnational" + }, + { + "id": "china-ccpit", + "name": { + "en": "China Council for the Promotion of International Trade", + "zh": "中国国际贸易促进委员会" + }, + "authority_level": "government", + "data_url": "https://www.ccpit.org/", + "has_api": false, + "file_path": "china/economy/trade/china-ccpit.json", + "geographic_scope": "national" + }, + { + "id": "china-sinosure", + "name": { + "en": "China Export & Credit Insurance Corporation", + "zh": "中国出口信用保险公司" + }, + "authority_level": "government", + "data_url": "https://www.sinosure.com.cn/gywm/gsjj/xxpl/index.shtml", + "has_api": false, + "file_path": "china/economy/trade/china-sinosure.json", + "geographic_scope": "national" + }, + { + "id": "china-cdb", + "name": { + "en": "China Development Bank", + "zh": "国家开发银行" + }, + "authority_level": "government", + "data_url": "https://www.cdb.com.cn", + "has_api": false, + "file_path": "china/finance/banking/cdb.json", + "geographic_scope": "national" + }, + { + "id": "china-adbc", + "name": { + "en": "Agricultural Development Bank of China", + "zh": "中国农业发展银行" + }, + "authority_level": "government", + "data_url": "https://www.adbc.com.cn/", + "has_api": false, + "file_path": "china/finance/banking/china-adbc.json", + "geographic_scope": "national" + }, + { + "id": "china-boc", + "name": { + "en": "Bank of China (BOC)", + "zh": "中国银行" + }, + "authority_level": "commercial", + "data_url": "https://www.boc.cn/fimarkets/", + "has_api": false, + "file_path": "china/finance/banking/china-boc.json", + "geographic_scope": "national" + }, + { + "id": "china-cba", + "name": { + "en": "China Banking Association", + "zh": "中国银行业协会" + }, + "authority_level": "market", + "data_url": "https://www.china-cba.net/Index/lists/catid/268.html", + "has_api": false, + "file_path": "china/finance/banking/china-cba.json", + "geographic_scope": "national" + }, + { + "id": "china-pbccrc", + "name": { + "en": "People's Bank of China Credit Reference Center", + "zh": "中国人民银行征信中心" + }, + "authority_level": "government", + "data_url": "https://www.pbccrc.org.cn", + "has_api": false, + "file_path": "china/finance/banking/china-pbccrc.json", + "geographic_scope": "national" + }, + { + "id": "china-eximbank", + "name": { + "en": "Export-Import Bank of China", + "zh": "中国进出口银行" + }, + "authority_level": "government", + "data_url": "http://www.eximbank.gov.cn/cn/index/information/annual/index.html", + "has_api": false, + "file_path": "china/finance/banking/eximbank.json", + "geographic_scope": "national" + }, + { + "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": "china-pbc", + "name": { + "en": "People's Bank of China", + "zh": "中国人民银行", + "native": "中国人民银行" + }, + "authority_level": "government", + "data_url": "https://www.pbc.gov.cn/diaochatongjisi/116219/index.html", + "has_api": false, + "file_path": "china/finance/banking/pbc.json", + "geographic_scope": "national" + }, + { + "id": "china-amac", + "name": { + "en": "Asset Management Association of China", + "zh": "中国证券投资基金业协会" + }, + "authority_level": "government", + "data_url": "https://www.amac.org.cn/informationpublicity/", + "has_api": false, + "file_path": "china/finance/capital-markets/china-amac.json", + "geographic_scope": "national" + }, + { + "id": "china-capco", + "name": { + "en": "China Association for Public Companies (CAPCO)", + "zh": "中国上市公司协会" + }, + "authority_level": "market", + "data_url": "https://www.capco.org.cn", + "has_api": false, + "file_path": "china/finance/capital-markets/china-capco.json", + "geographic_scope": "national" + }, + { + "id": "china-cfa", + "name": { + "en": "China Futures Association", + "zh": "中国期货业协会" + }, + "authority_level": "market", + "data_url": "https://www.cfachina.org/servicesupport/researchandpublishin/statisticalsdata/", + "has_api": false, + "file_path": "china/finance/capital-markets/china-cfa.json", + "geographic_scope": "national" + }, + { + "id": "china-cffex", + "name": { + "en": "China Financial Futures Exchange", + "zh": "中国金融期货交易所" + }, + "authority_level": "market", + "data_url": "https://www.cffex.com.cn/sjzx/", + "has_api": false, + "file_path": "china/finance/capital-markets/china-cffex.json", + "geographic_scope": "national" + }, + { + "id": "china-chinabond", + "name": { + "en": "China Bond Information Network", + "zh": "中国债券信息网" + }, + "authority_level": "market", + "data_url": "https://yield.chinabond.com.cn/cbweb-pbc-web/pbc/historyQuery", + "has_api": false, + "file_path": "china/finance/capital-markets/china-chinabond.json", + "geographic_scope": "national" + }, + { + "id": "china-czce", + "name": { + "en": "Zhengzhou Commodity Exchange", + "zh": "郑州商品交易所" + }, + "authority_level": "market", + "data_url": "https://www.czce.com.cn/cn/exchange/daily_data/index.htm", + "has_api": false, + "file_path": "china/finance/capital-markets/china-czce.json", + "geographic_scope": "national" + }, + { + "id": "china-dce", + "name": { + "en": "Dalian Commodity Exchange", + "zh": "大连商品交易所" + }, + "authority_level": "market", + "data_url": "https://www.dce.com.cn/publicweb/quotesdata/dayQuotesCh.html", + "has_api": false, + "file_path": "china/finance/capital-markets/china-dce.json", + "geographic_scope": "national" + }, + { + "id": "china-nafmii", + "name": { + "en": "National Association of Financial Market Institutional Investors", + "zh": "中国银行间市场交易商协会" + }, + "authority_level": "government", + "data_url": "https://www.nafmii.org.cn/", + "has_api": false, + "file_path": "china/finance/capital-markets/china-nafmii.json", + "geographic_scope": "national" + }, + { + "id": "china-shfe", + "name": { + "en": "Shanghai Futures Exchange", + "zh": "上海期货交易所" + }, + "authority_level": "market", + "data_url": "https://www.shfe.com.cn/reports/tradedata/dailyandweeklydata/", + "has_api": false, + "file_path": "china/finance/capital-markets/china-shfe.json", + "geographic_scope": "national" + }, + { + "id": "china-beijing-stock-exchange", + "name": { + "en": "Beijing Stock Exchange", + "zh": "北京证券交易所" + }, + "authority_level": "market", + "data_url": "https://www.bse.cn/market_data.html", + "has_api": false, + "file_path": "china/finance/china-beijing-stock-exchange.json", + "geographic_scope": "national" + }, + { + "id": "china-cicpa", + "name": { + "en": "Chinese Institute of Certified Public Accountants", + "zh": "中国注册会计师协会" + }, + "authority_level": "market", + "data_url": "https://www.cicpa.org.cn/xxcx/", + "has_api": false, + "file_path": "china/finance/china-cicpa.json", + "geographic_scope": "national" + }, + { + "id": "china-csi-index", + "name": { + "en": "China Securities Index Co., Ltd.", + "zh": "中证指数有限公司" + }, + "authority_level": "market", + "data_url": "https://www.csindex.com.cn/#/indices/family/list", + "has_api": false, + "file_path": "china/finance/china-csi-index.json", + "geographic_scope": "national" + }, + { + "id": "china-csrc-futures", + "name": { + "en": "China Futures Association", + "zh": "中国期货业协会" + }, + "authority_level": "other", + "data_url": "https://www.cfachina.org/servicesupport/researchandpublishin/statisticalsdata/", + "has_api": false, + "file_path": "china/finance/china-csrc-futures.json", + "geographic_scope": "national" + }, + { + "id": "china-iac", + "name": { + "en": "Insurance Association of China", + "zh": "中国保险业协会" + }, + "authority_level": "market", + "data_url": "https://www.iachina.cn/col/col4479/", + "has_api": false, + "file_path": "china/finance/china-iac.json", + "geographic_scope": "national" + }, + { + "id": "china-iamac", + "name": { + "en": "China Association of Banking and Insurance Asset Management", + "zh": "中国银行保险资产管理业协会" + }, + "authority_level": "other", + "data_url": "https://www.iamac.org.cn", + "has_api": false, + "file_path": "china/finance/china-iamac.json", + "geographic_scope": "national" + }, + { + "id": "china-nifa", + "name": { + "en": "National Internet Finance Association of China", + "zh": "中国互联网金融协会" + }, + "authority_level": "other", + "data_url": "https://www.nifa.org.cn", + "has_api": false, + "file_path": "china/finance/china-nifa.json", + "geographic_scope": "national" + }, + { + "id": "china-nifd", + "name": { + "en": "National Institution for Finance and Development", + "zh": "国家金融与发展实验室" + }, + "authority_level": "research", + "data_url": "http://www.nifd.cn", + "has_api": false, + "file_path": "china/finance/china-nifd.json", + "geographic_scope": "national" + }, + { + "id": "china-payment-clearing", + "name": { + "en": "Payment & Clearing Association of China", + "zh": "中国支付清算协会" + }, + "authority_level": "other", + "data_url": "https://www.pcac.org.cn/eportal/ui?pageId=477883", + "has_api": false, + "file_path": "china/finance/china-payment-clearing.json", + "geographic_scope": "national" + }, + { + "id": "china-shanghai-clearing-house", + "name": { + "en": "Shanghai Clearing House", + "zh": "上海清算所" + }, + "authority_level": "market", + "data_url": "https://www.shclearing.com.cn/sjtj/", + "has_api": false, + "file_path": "china/finance/china-shanghai-clearing-house.json", + "geographic_scope": "national" + }, + { + "id": "china-shenzhen-jrj", + "name": { + "en": "Shenzhen Local Financial Supervision and Administration Bureau", + "zh": "深圳市地方金融监督管理局" + }, + "authority_level": "government", + "data_url": "https://jr.sz.gov.cn/sjrb/xxgk/index.html", + "has_api": false, + "file_path": "china/finance/china-shenzhen-jrj.json", + "geographic_scope": "subnational" + }, + { + "id": "china-trustee-association", + "name": { + "en": "China Trustee Association", + "zh": "中国信托业协会" + }, + "authority_level": "other", + "data_url": "http://www.xtxh.net/xtyxh/hyyj/tjsj/index.html", + "has_api": false, + "file_path": "china/finance/china-trustee-association.json", + "geographic_scope": "national" + }, + { + "id": "china-xinhua-finance", + "name": { + "en": "Xinhua Finance - China Financial Information Network", + "zh": "新华财经 - 中国金融信息网" + }, + "authority_level": "market", + "data_url": "https://www.cnfin.com/", + "has_api": false, + "file_path": "china/finance/china-xinhua-finance.json", + "geographic_scope": "national" + }, + { + "id": "china-mof", + "name": { + "en": "Ministry of Finance of China", + "zh": "中华人民共和国财政部" + }, + "authority_level": "government", + "data_url": "https://www.mof.gov.cn/gkml/", + "has_api": false, + "file_path": "china/finance/fiscal/china-mof.json", + "geographic_scope": "national" + }, + { + "id": "china-nssf", + "name": { + "en": "National Social Security Fund Council of China", + "zh": "全国社会保障基金理事会" + }, + "authority_level": "government", + "data_url": "http://www.ssf.gov.cn/", + "has_api": false, + "file_path": "china/finance/fiscal/china-nssf.json", + "geographic_scope": "national" + }, + { + "id": "china-cfets", + "name": { + "en": "China Foreign Exchange Trade System", + "zh": "中国外汇交易中心" + }, + "authority_level": "government", + "data_url": "https://www.chinamoney.com.cn/chinese/bkccpr/", + "has_api": false, + "file_path": "china/finance/forex/china-cfets.json", + "geographic_scope": "national" + }, + { + "id": "china-safe", + "name": { + "en": "State Administration of Foreign Exchange of China", + "zh": "国家外汇管理局", + "native": "国家外汇管理局" + }, + "authority_level": "government", + "data_url": "https://www.safe.gov.cn/safe/tjsj1/index.html", + "has_api": false, + "file_path": "china/finance/forex/china-safe.json", + "geographic_scope": "national" + }, + { + "id": "china-neeq", + "name": { + "en": "National Equities Exchange and Quotations (New Third Board)", + "zh": "全国中小企业股份转让系统(新三板)" + }, + "authority_level": "market", + "data_url": "https://www.neeq.com.cn/issuanceList.html", + "has_api": false, + "file_path": "china/finance/securities/china-neeq.json", + "geographic_scope": "national" + }, + { + "id": "china-sse", + "name": { + "en": "Shanghai Stock Exchange", + "zh": "上海证券交易所", + "native": "上海证券交易所" + }, + "authority_level": "market", + "data_url": "https://www.sse.com.cn/market/stockdata/statistic/", + "has_api": false, + "file_path": "china/finance/securities/china-sse.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": "china/finance/securities/csrc.json", + "geographic_scope": "national" + }, + { + "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, + "file_path": "china/finance/securities/hkex.json", + "geographic_scope": "regional" + }, + { + "id": "china-szse", + "name": { + "en": "Shenzhen Stock Exchange", + "zh": "深圳证券交易所", + "native": "深圳证券交易所" + }, + "authority_level": "government", + "data_url": "https://www.szse.cn/market/trend/index.html", + "has_api": true, + "file_path": "china/finance/securities/szse.json", + "geographic_scope": "national" + }, + { + "id": "china-chinatax", + "name": { + "en": "State Taxation Administration of China", + "zh": "国家税务总局" + }, + "authority_level": "government", + "data_url": "https://www.chinatax.gov.cn/chinatax/n810219/", + "has_api": false, + "file_path": "china/finance/taxation/china-chinatax.json", + "geographic_scope": "national" + }, + { + "id": "china-bankruptcy-court", + "name": { + "en": "National Enterprise Bankruptcy and Restructuring Case Information Network", + "zh": "全国企业破产重整案件信息网" + }, + "authority_level": "government", + "data_url": "https://pccz.court.gov.cn/pcajxxw/index/xxwsy", + "has_api": false, + "file_path": "china/governance/china-bankruptcy-court.json", + "geographic_scope": "national" + }, + { + "id": "china-ccgp", + "name": { + "en": "China Government Procurement Network", + "zh": "中国政府采购网" + }, + "authority_level": "government", + "data_url": "https://www.ccgp.gov.cn/cggg/index.htm", + "has_api": false, + "file_path": "china/governance/china-ccgp.json", + "geographic_scope": "national" + }, + { + "id": "china-cnao", + "name": { + "en": "National Audit Office of China", + "zh": "中华人民共和国审计署" + }, + "authority_level": "government", + "data_url": "https://www.audit.gov.cn", + "has_api": false, + "file_path": "china/governance/china-cnao.json", + "geographic_scope": "national" + }, + { + "id": "china-ggzy", + "name": { + "en": "China National Public Resources Trading Platform", + "zh": "全国公共资源交易平台" + }, + "authority_level": "government", + "data_url": "https://www.ggzy.gov.cn/", + "has_api": false, + "file_path": "china/governance/china-ggzy.json", + "geographic_scope": "national" + }, + { + "id": "china-nhsa", + "name": { + "en": "National Healthcare Security Administration of China", + "zh": "国家医疗保障局" + }, + "authority_level": "government", + "data_url": "https://www.nhsa.gov.cn/col/col7/index.html", + "has_api": false, + "file_path": "china/health/china-nhsa.json", + "geographic_scope": "national" + }, + { + "id": "china-post-group", + "name": { + "en": "China Post Group Corporation", + "zh": "中国邮政集团有限公司" + }, + "authority_level": "government", + "data_url": "https://www.chinapost.com.cn/", + "has_api": false, + "file_path": "china/infrastructure/china-post-group.json", + "geographic_scope": "national" + }, + { + "id": "china-cciee", + "name": { + "en": "China Center for International Economic Exchanges", + "zh": "中国国际经济交流中心" + }, + "authority_level": "research", + "data_url": "https://www.cciee.org.cn/ktcglistall.aspx?clmId=650", + "has_api": false, + "file_path": "china/research/china-cciee.json", + "geographic_scope": "national" + }, + { + "id": "china-cf40", + "name": { + "en": "China Finance 40 Forum (CF40)", + "zh": "中国金融四十人论坛" + }, + "authority_level": "research", + "data_url": "https://www.cf40.com/research", + "has_api": false, + "file_path": "china/research/china-cf40.json", + "geographic_scope": "national" + }, + { + "id": "china-chfs", + "name": { + "en": "China Household Finance Survey (CHFS)", + "zh": "中国家庭金融调查(CHFS)" + }, + "authority_level": "research", + "data_url": "https://chfs.swufe.edu.cn", + "has_api": false, + "file_path": "china/research/china-chfs.json", + "geographic_scope": "national" + }, + { + "id": "china-cufe-iigf", + "name": { + "en": "International Institute of Green Finance (IIGF), Central University of Finance and Economics", + "zh": "中央财经大学绿色金融国际研究院" + }, + "authority_level": "research", + "data_url": "https://iigf.cufe.edu.cn/yjcg/yjbg.htm", + "has_api": false, + "file_path": "china/research/china-cufe-iigf.json", + "geographic_scope": "national" + }, + { + "id": "china-sass", + "name": { + "en": "Shanghai Academy of Social Sciences", + "zh": "上海社会科学院" + }, + "authority_level": "research", + "data_url": "https://www.sass.org.cn", + "has_api": false, + "file_path": "china/research/china-sass.json", + "geographic_scope": "national" + }, + { + "id": "hk-sfc", + "name": { + "en": "Securities and Futures Commission of Hong Kong", + "zh": "香港证券及期货事务监察委员会" + }, + "authority_level": "government", + "data_url": "https://www.sfc.hk/en/Regulatory-functions/Products", + "has_api": false, + "file_path": "countries/asia/hk-sfc.json", + "geographic_scope": "national" + }, + { + "id": "hkma", + "name": { + "en": "Hong Kong Monetary Authority", + "zh": "香港金融管理局" + }, + "authority_level": "government", + "data_url": "https://www.hkma.gov.hk/eng/data-publications-and-research/data-and-statistics/", + "has_api": true, + "file_path": "countries/asia/hkma.json", + "geographic_scope": "national" + }, + { + "id": "india-rbi", + "name": { + "en": "Reserve Bank of India", + "zh": "印度储备银行", + "native": "भारतीय रिज़र्व बैंक" + }, + "authority_level": "government", + "data_url": "https://www.rbi.org.in/Scripts/Statistics.aspx", + "has_api": true, + "file_path": "countries/asia/india/india-rbi.json", + "geographic_scope": "national" + }, + { + "id": "japan-fsa", + "name": { + "en": "Japan Financial Services Agency", + "zh": "日本金融厅" + }, + "authority_level": "government", + "data_url": "https://www.fsa.go.jp/en/refer/index.html", + "has_api": false, + "file_path": "countries/asia/japan/japan-fsa.json", + "geographic_scope": "national" + }, + { + "id": "japan-gpif", + "name": { + "en": "Government Pension Investment Fund", + "zh": "日本政府养老投资基金" + }, + "authority_level": "government", + "data_url": "https://www.gpif.go.jp/en/performance/", + "has_api": false, + "file_path": "countries/asia/japan/japan-gpif.json", + "geographic_scope": "national" + }, + { + "id": "japan-mof", + "name": { + "en": "Ministry of Finance Japan", + "zh": "日本财务省" + }, + "authority_level": "government", + "data_url": "https://www.customs.go.jp/toukei/info/index_e.htm", + "has_api": false, + "file_path": "countries/asia/japan/japan-mof.json", + "geographic_scope": "national" + }, + { + "id": "jpx", + "name": { + "en": "Japan Exchange Group", + "zh": "日本交易所集团" + }, + "authority_level": "market", + "data_url": "https://www.jpx.co.jp/english/markets/statistics-equities/index.html", + "has_api": false, + "file_path": "countries/asia/japan/jpx.json", + "geographic_scope": "national" + }, + { + "id": "singapore-singstat", + "name": { + "en": "Singapore Department of Statistics (SingStat)", + "zh": "新加坡统计局", + "native": "Department of Statistics Singapore" + }, + "authority_level": "government", + "data_url": "https://tablebuilder.singstat.gov.sg", + "has_api": true, + "file_path": "countries/asia/singapore/singapore-singstat.json", + "geographic_scope": "national" + }, + { + "id": "mpi-fdi", + "name": { + "en": "Ministry of Planning and Investment - FDI Statistics", + "zh": "越南计划投资部 - 外国直接投资统计", + "vi": "Bộ Kế hoạch và Đầu tư - Thống kê FDI" + }, + "authority_level": "government", + "data_url": "https://www.mpi.gov.vn/en/Pages/Report-on-Foreign-Direct-Investment-1740.aspx", + "has_api": false, + "file_path": "countries/asia/vietnam/mpi-fdi.json", + "geographic_scope": "national" + }, + { + "id": "vietnam-mof", + "name": { + "en": "Ministry of Finance of Vietnam", + "zh": "越南财政部" + }, + "authority_level": "government", + "data_url": "https://www.mof.gov.vn/webcenter/portal/btcen/pages_r/m/statistics", + "has_api": false, + "file_path": "countries/asia/vietnam/vietnam-mof.json", + "geographic_scope": "national" + }, + { + "id": "bank-of-england-statistics", + "name": { + "en": "Bank of England Statistical Database", + "zh": "英格兰银行统计数据库" + }, + "authority_level": "government", + "data_url": "https://www.bankofengland.co.uk/boeapps/database/", + "has_api": true, + "file_path": "countries/europe/bank-of-england-statistics.json", + "geographic_scope": "national" + }, + { + "id": "france-insee", + "name": { + "en": "INSEE - National Institute of Statistics and Economic Studies", + "zh": "法国国家统计与经济研究所", + "native": "Institut national de la statistique et des études économiques" + }, + "authority_level": "government", + "data_url": "https://www.insee.fr/en/statistiques", + "has_api": true, + "file_path": "countries/europe/fr/france-insee.json", + "geographic_scope": "national" + }, + { + "id": "romania-bnr", + "name": { + "en": "National Bank of Romania (BNR)", + "zh": "罗马尼亚国家银行" + }, + "authority_level": "government", + "data_url": "https://www.bnr.ro/Statistics-702.aspx", + "has_api": true, + "file_path": "countries/europe/romania/romania-bnr.json", + "geographic_scope": "national" + }, + { + "id": "romania-bvb", + "name": { + "en": "Bucharest Stock Exchange", + "zh": "布加勒斯特证券交易所" + }, + "authority_level": "market", + "data_url": "https://www.bvb.ro/FinancialInstruments/Markets/Shares", + "has_api": false, + "file_path": "countries/europe/romania/romania-bvb.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": "us-federalreserve", + "name": { + "en": "Federal Reserve Board", + "zh": "美联储理事会" + }, + "authority_level": "government", + "data_url": "https://www.federalreserve.gov/data.htm", + "has_api": false, + "file_path": "countries/north-america/usa/us-federalreserve.json", + "geographic_scope": "national" + }, + { + "id": "us-treasury", + "name": { + "en": "U.S. Department of the Treasury", + "zh": "美国财政部" + }, + "authority_level": "government", + "data_url": "https://fiscaldata.treasury.gov", + "has_api": true, + "file_path": "countries/north-america/usa/us-treasury.json", + "geographic_scope": "national" + }, + { + "id": "asx", + "name": { + "en": "Australian Securities Exchange", + "zh": "澳大利亚证券交易所" + }, + "authority_level": "market", + "data_url": "https://www.asx.com.au/markets", + "has_api": false, + "file_path": "countries/oceania/australia/asx.json", + "geographic_scope": "national" + }, + { + "id": "cdp", + "name": { + "en": "CDP - Carbon Disclosure Project", + "zh": "碳信息披露项目" + }, + "authority_level": "research", + "data_url": "https://www.cdp.net/en/data", + "has_api": false, + "file_path": "international/climate/cdp.json", + "geographic_scope": "global" + }, + { + "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", + "geographic_scope": "regional" + }, + { + "id": "adb-key-indicators", + "name": { + "en": "Asian Development Bank Key Indicators", + "zh": "亚洲开发银行关键指标" + }, + "authority_level": "international", + "data_url": "https://kidb.adb.org", + "has_api": true, + "file_path": "international/development/adb-key-indicators.json", + "geographic_scope": "regional" + }, + { + "id": "afdb-statistics", + "name": { + "en": "African Development Bank Statistics", + "zh": "非洲开发银行统计数据" + }, + "authority_level": "international", + "data_url": "https://dataportal.opendataforafrica.org", + "has_api": true, + "file_path": "international/development/afdb-statistics.json", + "geographic_scope": "regional" + }, + { + "id": "aiddata", + "name": { + "en": "AidData - Global Development Finance", + "zh": "AidData全球发展援助数据库" + }, + "authority_level": "research", + "data_url": "https://www.aiddata.org/datasets", + "has_api": false, + "file_path": "international/development/aiddata.json", + "geographic_scope": "global" + }, + { + "id": "adb-ado", + "name": { + "en": "Asian Development Outlook", + "zh": "亚洲发展展望" + }, + "authority_level": "international", + "data_url": "https://www.adb.org/publications/series/asian-development-outlook", + "has_api": false, + "file_path": "international/economics/adb-ado.json", + "geographic_scope": "regional" + }, + { + "id": "adb-vietnam-data", + "name": { + "en": "Asian Development Bank - Vietnam Country Data", + "zh": "亚洲开发银行越南国别数据" + }, + "authority_level": "international", + "data_url": "https://www.adb.org/countries/viet-nam/data", + "has_api": false, + "file_path": "international/economics/adb-vietnam-data.json", + "geographic_scope": "national" + }, + { + "id": "adb-vietnam", + "name": { + "en": "Asian Development Bank - Vietnam Country Data", + "zh": "亚洲开发银行越南国别数据" + }, + "authority_level": "international", + "data_url": "https://www.adb.org/countries/viet-nam/data", + "has_api": false, + "file_path": "international/economics/adb-vietnam.json", + "geographic_scope": "national" + }, + { + "id": "adb", + "name": { + "en": "Asian Development Bank Data", + "zh": "亚洲开发银行数据" + }, + "authority_level": "international", + "data_url": "https://www.adb.org/what-we-do/data", + "has_api": false, + "file_path": "international/economics/adb.json", + "geographic_scope": "regional" + }, + { + "id": "ceic-global-database", + "name": { + "en": "CEIC Global Database", + "zh": "环亚经济数据库" + }, + "authority_level": "commercial", + "data_url": "https://www.ceicdata.com/en/products/global-economic-database", + "has_api": true, + "file_path": "international/economics/ceic-global-database.json", + "geographic_scope": "global" + }, + { + "id": "ceic-vietnam", + "name": { + "en": "CEIC Vietnam Economic Database", + "zh": "环亚经济数据库 - 越南经济数据专题" + }, + "authority_level": "commercial", + "data_url": "https://www.ceicdata.com/en/country/vietnam", + "has_api": true, + "file_path": "international/economics/ceic-vietnam.json", + "geographic_scope": "national" + }, + { + "id": "imf-data", + "name": { + "en": "IMF Data", + "zh": "国际货币基金组织数据", + "native": "IMF Data" + }, + "authority_level": "international", + "data_url": "https://data.imf.org", + "has_api": true, + "file_path": "international/economics/imf.json", + "geographic_scope": "global" + }, + { + "id": "unsd-national-accounts", + "name": { + "en": "UN National Accounts Database", + "zh": "联合国统计司国民账户数据库" + }, + "authority_level": "international", + "data_url": "https://unstats.un.org/unsd/snaama", + "has_api": true, + "file_path": "international/economics/unsd-national-accounts.json", + "geographic_scope": "global" + }, + { + "id": "bis-cbta", + "name": { + "en": "BIS Central Bank Total Assets", + "zh": "国际清算银行中央银行总资产统计" + }, + "authority_level": "international", + "data_url": "https://data.bis.org/topics/CBTA", + "has_api": true, + "file_path": "international/finance/bis-cbta.json", + "geographic_scope": "global" + }, + { + "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/ebrd.json", + "geographic_scope": "regional" + }, + { + "id": "paris-club", + "name": { + "en": "Paris Club", + "zh": "巴黎俱乐部" + }, + "authority_level": "international", + "data_url": "https://www.clubdeparis.org", + "has_api": false, + "file_path": "international/finance/paris-club.json", + "geographic_scope": "regional" + }, + { + "id": "un-ocha-fts", + "name": { + "en": "UN OCHA Financial Tracking Service", + "zh": "联合国人道主义事务协调厅资金追踪系统" + }, + "authority_level": "international", + "data_url": "https://fts.unocha.org", + "has_api": true, + "file_path": "international/humanitarian/un-ocha-fts.json", + "geographic_scope": "global" + }, + { + "id": "sasb-standards", + "name": { + "en": "SASB Standards (IFRS Foundation)", + "zh": "SASB可持续发展会计准则(IFRS基金会)" + }, + "authority_level": "international", + "data_url": "https://sasb.ifrs.org/standards/", + "has_api": false, + "file_path": "international/standards-metrology/sasb-standards.json", + "geographic_scope": "global" + }, + { + "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, + "file_path": "international/trade/icc-trade-register.json", + "geographic_scope": "global" + }, + { + "id": "akshare", + "name": { + "en": "AkShare", + "zh": "AkShare" + }, + "authority_level": "other", + "data_url": "https://github.com/akfamily/akshare", + "has_api": true, + "file_path": "sectors/K-finance-insurance/akshare.json", + "geographic_scope": "global" + }, + { + "id": "bloomberg-ipo-database", + "name": { + "en": "Bloomberg IPO Database", + "zh": "彭博IPO数据库" + }, + "authority_level": "commercial", + "data_url": "https://www.bloomberg.com/professional/products/bloomberg-terminal/", + "has_api": true, + "file_path": "sectors/K-finance-insurance/bloomberg-ipo-database.json", + "geographic_scope": "global" + }, + { + "id": "hundsun-juyuan", + "name": { + "en": "Hundsun JuYuan Financial Data", + "zh": "恒生聚源金融数据" + }, + "authority_level": "commercial", + "data_url": "https://gildata.hs.net/", + "has_api": true, + "file_path": "sectors/K-finance-insurance/hundsun-juyuan.json", + "geographic_scope": "national" + }, + { + "id": "joinquant", + "name": { + "zh": "聚宽量化交易平台", + "en": "JoinQuant Quantitative Trading Platform" + }, + "authority_level": "commercial", + "data_url": "https://www.joinquant.com/data", + "has_api": true, + "file_path": "sectors/finance_markets/joinquant.json", + "geographic_scope": "national" + }, + { + "id": "us-fred", + "name": { + "en": "FRED - Federal Reserve Economic Data", + "zh": "美联储经济数据库" + }, + "authority_level": "government", + "data_url": "https://fred.stlouisfed.org", + "has_api": true, + "file_path": "us/economics/us-fred.json", + "geographic_scope": "national" + }, + { + "id": "sec-edgar", + "name": { + "en": "SEC EDGAR", + "zh": "美国证券交易委员会EDGAR系统" + }, + "authority_level": "government", + "data_url": "https://www.sec.gov/cgi-bin/browse-edgar?action=getcompany", + "has_api": true, + "file_path": "usa/finance/sec-edgar.json", + "geographic_scope": "national" + } + ], + "financial-data": [ + { + "id": "akshare", + "name": { + "en": "AkShare", + "zh": "AkShare" + }, + "authority_level": "other", + "data_url": "https://github.com/akfamily/akshare", + "has_api": true, + "file_path": "sectors/K-finance-insurance/akshare.json", + "geographic_scope": "global" + }, + { + "id": "refinitiv-lseg", + "name": { + "en": "LSEG Data & Analytics (Refinitiv)", + "zh": "伦敦证交所数据分析(路孚特)" + }, + "authority_level": "commercial", + "data_url": "https://www.lseg.com/en/data-analytics/products/workspace", + "has_api": true, + "file_path": "sectors/K-finance-insurance/refinitiv-lseg.json", + "geographic_scope": "global" + } + ], + "financial-literacy": [ + { + "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, + "file_path": "international/education/oecd-pisa.json", + "geographic_scope": "global" + } + ], + "financial-markets": [ + { + "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", + "geographic_scope": "national" + }, + { + "id": "vietnam-mof", + "name": { + "en": "Ministry of Finance of Vietnam", + "zh": "越南财政部" + }, + "authority_level": "government", + "data_url": "https://www.mof.gov.vn/webcenter/portal/btcen/pages_r/m/statistics", + "has_api": false, + "file_path": "countries/asia/vietnam/vietnam-mof.json", + "geographic_scope": "national" + }, + { + "id": "uk-boe", + "name": { + "en": "Bank of England Statistical Interactive Database", + "zh": "英格兰银行统计数据库" + }, + "authority_level": "government", + "data_url": "https://www.bankofengland.co.uk/boeapps/database/", + "has_api": false, + "file_path": "countries/europe/uk/bank-of-england.json", + "geographic_scope": "national" + }, + { + "id": "canada-boc", + "name": { + "en": "Bank of Canada", + "zh": "加拿大银行", + "native": "Banque du Canada" + }, + "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": "mx-banxico", + "name": { + "en": "Bank of Mexico Economic Information System", + "zh": "墨西哥银行经济信息系统", + "native": "Sistema de Información Económica - Banco de México" + }, + "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": "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, + "file_path": "international/economics/ecb-sdw.json", + "geographic_scope": "regional" + }, + { + "id": "bis-reserves", + "name": { + "en": "BIS Central Bank Reserves Statistics", + "zh": "国际清算银行外汇储备统计" + }, + "authority_level": "international", + "data_url": "https://data.bis.org/topics/CBTA", + "has_api": true, + "file_path": "international/finance/bis-reserves.json", + "geographic_scope": "global" + }, + { + "id": "hundsun-juyuan", + "name": { + "en": "Hundsun JuYuan Financial Data", + "zh": "恒生聚源金融数据" + }, + "authority_level": "commercial", + "data_url": "https://gildata.hs.net/", + "has_api": true, + "file_path": "sectors/K-finance-insurance/hundsun-juyuan.json", + "geographic_scope": "national" + }, + { + "id": "refinitiv-lseg", + "name": { + "en": "LSEG Data & Analytics (Refinitiv)", + "zh": "伦敦证交所数据分析(路孚特)" + }, + "authority_level": "commercial", + "data_url": "https://www.lseg.com/en/data-analytics/products/workspace", + "has_api": true, + "file_path": "sectors/K-finance-insurance/refinitiv-lseg.json", + "geographic_scope": "global" + } + ], + "financial-news": [ + { + "id": "bloomberg-terminal", + "name": { + "en": "Bloomberg Terminal (Public Data)", + "zh": "彭博终端(部分公开数据)" + }, + "authority_level": "commercial", + "data_url": "https://www.bloomberg.com/markets", + "has_api": true, + "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json", + "geographic_scope": "global" + } + ], + "financial-sector": [ + { + "id": "sbv", + "name": { + "en": "State Bank of Vietnam", + "zh": "越南国家银行" + }, + "authority_level": "government", + "data_url": "https://www.sbv.gov.vn/webcenter/portal/en/home/rm/public", + "has_api": false, + "file_path": "countries/asia/vietnam/sbv.json", + "geographic_scope": "national" + }, + { + "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" + } + ], + "financial-stability": [ + { + "id": "sbv", + "name": { + "en": "State Bank of Vietnam", + "zh": "越南国家银行" + }, + "authority_level": "government", + "data_url": "https://www.sbv.gov.vn/webcenter/portal/en/home/rm/public", + "has_api": false, + "file_path": "countries/asia/vietnam/sbv.json", + "geographic_scope": "national" + }, + { + "id": "uk-boe", + "name": { + "en": "Bank of England Statistical Interactive Database", + "zh": "英格兰银行统计数据库" + }, + "authority_level": "government", + "data_url": "https://www.bankofengland.co.uk/boeapps/database/", + "has_api": false, + "file_path": "countries/europe/uk/bank-of-england.json", + "geographic_scope": "national" + }, + { + "id": "us-federalreserve", + "name": { + "en": "Federal Reserve Board", + "zh": "美联储理事会" + }, + "authority_level": "government", + "data_url": "https://www.federalreserve.gov/data.htm", + "has_api": false, + "file_path": "countries/north-america/usa/us-federalreserve.json", + "geographic_scope": "national" + }, + { + "id": "brazil-bcb", + "name": { + "en": "Central Bank of Brazil", + "zh": "巴西中央银行", + "native": "Banco Central do Brasil" + }, + "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": "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, + "file_path": "international/economics/ecb-sdw.json", + "geographic_scope": "regional" + }, + { + "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" + } + ], + "financial-statistics": [ + { + "id": "korea-bok", + "name": { + "en": "Bank of Korea", + "zh": "韩国银行", + "native": "한국은행" + }, + "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", + "geographic_scope": "national" + }, + { + "id": "brazil-bcb", + "name": { + "en": "Central Bank of Brazil", + "zh": "巴西中央银行", + "native": "Banco Central do Brasil" + }, + "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" + } + ], + "financial-technology": [ + { + "id": "cryptocurrency-data", + "name": { + "en": "Cryptocurrency Market Data (CoinMarketCap & CoinGecko)", + "zh": "加密货币市场数据(CoinMarketCap 和 CoinGecko)" + }, + "authority_level": "commercial", + "data_url": "https://coinmarketcap.com", + "has_api": true, + "file_path": "sectors/K-finance-insurance/cryptocurrency-data.json", + "geographic_scope": "global" + } + ], + "fintech": [ + { + "id": "china-nifa", + "name": { + "en": "National Internet Finance Association of China", + "zh": "中国互联网金融协会" + }, + "authority_level": "other", + "data_url": "https://www.nifa.org.cn", + "has_api": false, + "file_path": "china/finance/china-nifa.json", + "geographic_scope": "national" + }, + { + "id": "china-shenzhen-jrj", + "name": { + "en": "Shenzhen Local Financial Supervision and Administration Bureau", + "zh": "深圳市地方金融监督管理局" + }, + "authority_level": "government", + "data_url": "https://jr.sz.gov.cn/sjrb/xxgk/index.html", + "has_api": false, + "file_path": "china/finance/china-shenzhen-jrj.json", + "geographic_scope": "subnational" + } + ], + "fiscal-policy": [ + { + "id": "china-mof", + "name": { + "en": "Ministry of Finance of China", + "zh": "中华人民共和国财政部" + }, + "authority_level": "government", + "data_url": "https://www.mof.gov.cn/gkml/", + "has_api": false, + "file_path": "china/finance/fiscal/china-mof.json", + "geographic_scope": "national" + }, + { + "id": "japan-mof", + "name": { + "en": "Ministry of Finance Japan", + "zh": "日本财务省" + }, + "authority_level": "government", + "data_url": "https://www.customs.go.jp/toukei/info/index_e.htm", + "has_api": false, + "file_path": "countries/asia/japan/japan-mof.json", + "geographic_scope": "national" + }, + { + "id": "vietnam-mof", + "name": { + "en": "Ministry of Finance of Vietnam", + "zh": "越南财政部" + }, + "authority_level": "government", + "data_url": "https://www.mof.gov.vn/webcenter/portal/btcen/pages_r/m/statistics", + "has_api": false, + "file_path": "countries/asia/vietnam/vietnam-mof.json", + "geographic_scope": "national" + }, + { + "id": "us-treasury", + "name": { + "en": "U.S. Department of the Treasury", + "zh": "美国财政部" + }, + "authority_level": "government", + "data_url": "https://fiscaldata.treasury.gov", + "has_api": true, + "file_path": "countries/north-america/usa/us-treasury.json", + "geographic_scope": "national" + }, + { + "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" + } + ], + "fisheries": [ + { + "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" + } + ], + "fixed-income": [ + { + "id": "bloomberg-terminal", + "name": { + "en": "Bloomberg Terminal (Public Data)", + "zh": "彭博终端(部分公开数据)" + }, + "authority_level": "commercial", + "data_url": "https://www.bloomberg.com/markets", + "has_api": true, + "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json", + "geographic_scope": "global" + }, + { + "id": "refinitiv-lseg", + "name": { + "en": "LSEG Data & Analytics (Refinitiv)", + "zh": "伦敦证交所数据分析(路孚特)" + }, + "authority_level": "commercial", + "data_url": "https://www.lseg.com/en/data-analytics/products/workspace", + "has_api": true, + "file_path": "sectors/K-finance-insurance/refinitiv-lseg.json", + "geographic_scope": "global" + } + ], + "flow-of-funds": [ + { + "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", + "geographic_scope": "national" + }, + { + "id": "korea-bok", + "name": { + "en": "Bank of Korea", + "zh": "韩国银行", + "native": "한국은행" + }, + "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", + "geographic_scope": "national" + } + ], + "food-additives": [ + { + "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" + } + ], + "food-and-beverage": [ + { + "id": "ico-coffee", + "name": { + "en": "International Coffee Organization", + "zh": "国际咖啡组织" + }, + "authority_level": "international", + "data_url": "https://www.ico.org/trade_statistics.asp", + "has_api": false, + "file_path": "international/agriculture/ico-coffee.json", + "geographic_scope": "global" + } + ], + "food-and-waterborne-diseases": [ + { + "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, + "file_path": "international/health/ecdc-surveillance.json", + "geographic_scope": "regional" + } + ], + "food-beverage": [ + { + "id": "china-tea-marketing-association", + "name": { + "en": "China Tea Marketing Association", + "zh": "中国茶叶流通协会" + }, + "authority_level": "market", + "data_url": "https://www.ctma.com.cn", + "has_api": false, + "file_path": "china/economy/industry_associations/china-tea-marketing-association.json", + "geographic_scope": "national" + } + ], + "food-hygiene": [ + { + "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" + } + ], + "food-inspection": [ + { + "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" + } + ], + "food-labeling": [ + { + "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" + } + ], + "food-prices": [ + { + "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-quality": [ + { + "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" + } + ], + "food-safety": [ + { + "id": "china-cbea", + "name": { + "en": "China Beverage Association", + "zh": "中国饮料工业协会" + }, + "authority_level": "other", + "data_url": "https://www.chinabeverage.org", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cbea.json", + "geographic_scope": "national" + }, + { + "id": "china-nifdc", + "name": { + "en": "National Institutes for Food and Drug Control", + "zh": "中国食品药品检定研究院" + }, + "authority_level": "government", + "data_url": "https://www.nifdc.org.cn", + "has_api": false, + "file_path": "china/health/china-nifdc.json", + "geographic_scope": "national" + }, + { + "id": "brazil-mapa", + "name": { + "en": "Brazil Ministry of Agriculture and Livestock", + "zh": "巴西农业和畜牧部" + }, + "authority_level": "government", + "data_url": "https://indicadores.agricultura.gov.br/agrostat/index.htm", + "has_api": false, + "file_path": "countries/south-america/brazil/brazil-mapa.json", + "geographic_scope": "national" + }, + { + "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" + } + ], + "food-security": [ + { + "id": "china-agri", + "name": { + "en": "China Agricultural and Rural Information Network", + "zh": "中国农业农村信息网" + }, + "authority_level": "government", + "data_url": "https://www.agri.cn/", + "has_api": false, + "file_path": "china/economy/agriculture/china-agri.json", + "geographic_scope": "national" + }, + { + "id": "china-cfeed", + "name": { + "en": "China Feed Industry Association", + "zh": "中国饲料工业协会" + }, + "authority_level": "other", + "data_url": "https://www.chinafeed.org.cn/hyfx/", + "has_api": false, + "file_path": "china/economy/agriculture/china-cfeed.json", + "geographic_scope": "national" + }, + { + "id": "china-cofco", + "name": { + "en": "COFCO Corporation", + "zh": "中粮集团有限公司" + }, + "authority_level": "government", + "data_url": "https://www.cofco.com", + "has_api": false, + "file_path": "china/economy/agriculture/china-cofco.json", + "geographic_scope": "global" + }, + { + "id": "china-sinograin", + "name": { + "en": "Sinograin - China Grain Reserves Corporation", + "zh": "中国储备粮管理集团有限公司" + }, + "authority_level": "government", + "data_url": "https://www.sinograin.com.cn", + "has_api": false, + "file_path": "china/economy/agriculture/china-sinograin.json", + "geographic_scope": "national" + }, + { + "id": "china-bof", + "name": { + "en": "Bureau of Fisheries, Ministry of Agriculture and Rural Affairs", + "zh": "农业农村部渔业渔政管理局" + }, + "authority_level": "government", + "data_url": "https://yyj.moa.gov.cn", + "has_api": false, + "file_path": "china/economy/agriculture/fishery/china-bof.json", + "geographic_scope": "national" + }, + { + "id": "china-ccs-crop", + "name": { + "en": "Chinese Crop Science Society", + "zh": "中国作物学会" + }, + "authority_level": "research", + "data_url": "https://www.chinacrops.org", + "has_api": false, + "file_path": "china/research/china-ccs-crop.json", + "geographic_scope": "national" + }, + { + "id": "aafc", + "name": { + "en": "Agriculture and Agri-Food Canada", + "zh": "加拿大农业与农业食品部", + "native": "Agriculture et Agroalimentaire Canada" + }, + "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": "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" + }, + { + "id": "usda-fas", + "name": { + "en": "USDA Foreign Agricultural Service", + "zh": "美国农业部对外农业局" + }, + "authority_level": "government", + "data_url": "https://apps.fas.usda.gov/psdonline/app/index.html", + "has_api": true, + "file_path": "countries/north-america/usa/usda-fas.json", + "geographic_scope": "national" + }, + { + "id": "cgiar-research-data", + "name": { + "en": "CGIAR Research Data", + "zh": "国际农业研究磋商组织研究数据" + }, + "authority_level": "international", + "data_url": "https://gardian.cgiar.org/", + "has_api": true, + "file_path": "international/agriculture/cgiar-research-data.json", + "geographic_scope": "global" + }, + { + "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": "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": [ + { + "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" + } + ], + "food-supply": [ + { + "id": "brazil-conab", + "name": { + "en": "National Supply Company (CONAB)", + "zh": "巴西国家商品供应公司" + }, + "authority_level": "government", + "data_url": "https://www.gov.br/conab/pt-br/atuacao/informacoes-agropecuarias/safras/safra-de-cafe", + "has_api": false, + "file_path": "countries/south-america/brazil-conab.json", + "geographic_scope": "national" + } + ], + "foreign-aid": [ + { + "id": "usaid-ddl", + "name": { + "en": "USAID Development Data Library", + "zh": "美国国际开发署发展数据库" + }, + "authority_level": "government", + "data_url": "https://data.usaid.gov", + "has_api": true, + "file_path": "countries/north-america/usa/usaid-ddl.json", + "geographic_scope": "global" + } + ], + "foreign-direct-investment": [ + { + "id": "fia-fdi", + "name": { + "en": "Foreign Investment Agency - FDI Statistics", + "zh": "越南外国投资局 - FDI统计数据" + }, + "authority_level": "government", + "data_url": "https://www.mpi.gov.vn/en/Pages/FDI-1637.aspx", + "has_api": false, + "file_path": "countries/asia/vietnam/fia-fdi.json", + "geographic_scope": "national" + }, + { + "id": "vietnam-fia", + "name": { + "en": "Foreign Investment Agency - Ministry of Planning and Investment", + "zh": "越南计划投资部外国投资局" + }, + "authority_level": "government", + "data_url": "https://www.mpi.gov.vn/en/Pages/FDI-1637.aspx", + "has_api": false, + "file_path": "countries/asia/vietnam/vietnam-fia.json", + "geographic_scope": "national" + }, + { + "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" + } + ], + "foreign-exchange": [ + { + "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", + "geographic_scope": "global" + }, + { + "id": "sbv", + "name": { + "en": "State Bank of Vietnam", + "zh": "越南国家银行" + }, + "authority_level": "government", + "data_url": "https://www.sbv.gov.vn/webcenter/portal/en/home/rm/public", + "has_api": false, + "file_path": "countries/asia/vietnam/sbv.json", + "geographic_scope": "national" + }, + { + "id": "akshare", + "name": { + "en": "AkShare", + "zh": "AkShare" + }, + "authority_level": "other", + "data_url": "https://github.com/akfamily/akshare", + "has_api": true, + "file_path": "sectors/K-finance-insurance/akshare.json", + "geographic_scope": "global" + }, + { + "id": "alpha-vantage", + "name": { + "en": "Alpha Vantage API", + "zh": "Alpha Vantage API" + }, + "authority_level": "commercial", + "data_url": "https://www.alphavantage.co/", + "has_api": true, + "file_path": "sectors/K-finance-insurance/alpha-vantage.json", + "geographic_scope": "global" + }, + { + "id": "refinitiv-lseg", + "name": { + "en": "LSEG Data & Analytics (Refinitiv)", + "zh": "伦敦证交所数据分析(路孚特)" + }, + "authority_level": "commercial", + "data_url": "https://www.lseg.com/en/data-analytics/products/workspace", + "has_api": true, + "file_path": "sectors/K-finance-insurance/refinitiv-lseg.json", + "geographic_scope": "global" + } + ], + "foreign-exchange-reserves": [ + { + "id": "bis-reserves", + "name": { + "en": "BIS Central Bank Reserves Statistics", + "zh": "国际清算银行外汇储备统计" + }, + "authority_level": "international", + "data_url": "https://data.bis.org/topics/CBTA", + "has_api": true, + "file_path": "international/finance/bis-reserves.json", + "geographic_scope": "global" + } + ], + "foreign-trade": [ + { + "id": "china-cantonfair", + "name": { + "en": "China Import and Export Fair (Canton Fair)", + "zh": "中国进出口商品交易会(广交会)" + }, + "authority_level": "government", + "data_url": "https://www.cantonfair.org.cn", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cantonfair.json", + "geographic_scope": "national" + } + ], + "foreign-trade-statistics": [ + { + "id": "india-dgcis", + "name": { + "en": "Directorate General of Commercial Intelligence and Statistics", + "zh": "印度商业情报与统计总局" + }, + "authority_level": "government", + "data_url": "https://www.commerce.gov.in/trade-statistics/", + "has_api": false, + "file_path": "countries/asia/india/india-dgcis.json", + "geographic_scope": "national" + } + ], + "forestry": [ + { + "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": "intl-copernicus-cdse", + "name": { + "en": "Copernicus Data Space Ecosystem", + "zh": "哥白尼数据空间生态系统" + }, + "authority_level": "international", + "data_url": "https://dataspace.copernicus.eu", + "has_api": true, + "file_path": "international/earth-science/copernicus-data-space.json", + "geographic_scope": "global" + } + ], + "fossil-fuels": [ + { + "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, + "file_path": "sectors/D-energy/bp-statistical-review.json", + "geographic_scope": "global" + } + ], + "functional-materials": [ + { + "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" + } + ], + "fund-management": [ + { + "id": "china-amac", + "name": { + "en": "Asset Management Association of China", + "zh": "中国证券投资基金业协会" + }, + "authority_level": "government", + "data_url": "https://www.amac.org.cn/informationpublicity/", + "has_api": false, + "file_path": "china/finance/capital-markets/china-amac.json", + "geographic_scope": "national" + } + ], + "funds": [ + { + "id": "akshare", + "name": { + "en": "AkShare", + "zh": "AkShare" + }, + "authority_level": "other", + "data_url": "https://github.com/akfamily/akshare", + "has_api": true, + "file_path": "sectors/K-finance-insurance/akshare.json", + "geographic_scope": "global" + }, + { + "id": "hundsun-juyuan", + "name": { + "en": "Hundsun JuYuan Financial Data", + "zh": "恒生聚源金融数据" + }, + "authority_level": "commercial", + "data_url": "https://gildata.hs.net/", + "has_api": true, + "file_path": "sectors/K-finance-insurance/hundsun-juyuan.json", + "geographic_scope": "national" + } + ], + "futures": [ + { + "id": "akshare", + "name": { + "en": "AkShare", + "zh": "AkShare" + }, + "authority_level": "other", + "data_url": "https://github.com/akfamily/akshare", + "has_api": true, + "file_path": "sectors/K-finance-insurance/akshare.json", + "geographic_scope": "global" + }, + { + "id": "hundsun-juyuan", + "name": { + "en": "Hundsun JuYuan Financial Data", + "zh": "恒生聚源金融数据" + }, + "authority_level": "commercial", + "data_url": "https://gildata.hs.net/", + "has_api": true, + "file_path": "sectors/K-finance-insurance/hundsun-juyuan.json", + "geographic_scope": "national" + } + ], + "gdp": [ + { + "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" + } + ], + "gender-equality": [ + { + "id": "afrobarometer", + "name": { + "en": "Afrobarometer", + "zh": "非洲晴雨表" + }, + "authority_level": "research", + "data_url": "https://www.afrobarometer.org/data/", + "has_api": false, + "file_path": "academic/social/afrobarometer.json", + "geographic_scope": "regional" + }, + { + "id": "china-acwf", + "name": { + "en": "All-China Women's Federation", + "zh": "中华全国妇女联合会" + }, + "authority_level": "government", + "data_url": "https://www.women.org.cn/", + "has_api": false, + "file_path": "china/national/china-acwf.json", + "geographic_scope": "national" + }, + { + "id": "unfpa-china", + "name": { + "en": "UNFPA China", + "zh": "联合国人口基金驻华代表处" + }, + "authority_level": "international", + "data_url": "https://china.unfpa.org/en/publications", + "has_api": false, + "file_path": "international/demographics/unfpa-china.json", + "geographic_scope": "national" + }, + { + "id": "unfpa-urbanization", + "name": { + "zh": "联合国人口基金 - 城镇化数据", + "en": "UNFPA - Urbanization Data" + }, + "authority_level": "international", + "data_url": "https://www.unfpa.org/urbanization", + "has_api": false, + "file_path": "international/demographics/unfpa-urbanization.json", + "geographic_scope": "global" + }, + { + "id": "adb", + "name": { + "en": "Asian Development Bank Data", + "zh": "亚洲开发银行数据" + }, + "authority_level": "international", + "data_url": "https://www.adb.org/what-we-do/data", + "has_api": false, + "file_path": "international/economics/adb.json", + "geographic_scope": "regional" + } + ], + "genetics": [ + { + "id": "1000-genomes", + "name": { + "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": "us-ncbi-genbank", + "name": { + "en": "GenBank", + "zh": "基因库" + }, + "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": "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" + } + ], + "genetics-and-genomics": [ + { + "id": "cgiar-research-data", + "name": { + "en": "CGIAR Research Data", + "zh": "国际农业研究磋商组织研究数据" + }, + "authority_level": "international", + "data_url": "https://gardian.cgiar.org/", + "has_api": true, + "file_path": "international/agriculture/cgiar-research-data.json", + "geographic_scope": "global" + } + ], + "genomics": [ + { + "id": "1000-genomes", + "name": { + "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": "ena", + "name": { + "en": "European Nucleotide Archive", + "zh": "欧洲核苷酸档案库" + }, + "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": "us-ncbi-genbank", + "name": { + "en": "GenBank", + "zh": "基因库" + }, + "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": "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": "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" + }, + { + "id": "tcga", + "name": { + "en": "The Cancer Genome Atlas (TCGA)", + "zh": "癌症基因组图谱" + }, + "authority_level": "government", + "data_url": "https://portal.gdc.cancer.gov/", + "has_api": true, + "file_path": "academic/health/tcga.json", + "geographic_scope": "national" + }, + { + "id": "aws-open-data-registry", + "name": { + "en": "Registry of Open Data on AWS", + "zh": "AWS开放数据注册表" + }, + "authority_level": "commercial", + "data_url": "https://registry.opendata.aws/", + "has_api": false, + "file_path": "sectors/computer_science_ai/aws-open-data-registry.json", + "geographic_scope": "global" + } + ], + "geographic-information": [ + { + "id": "china-cagis", + "name": { + "en": "China Association for Geographic Information Industry", + "zh": "中国地理信息产业协会" + }, + "authority_level": "research", + "data_url": "https://www.cagis.org.cn", + "has_api": false, + "file_path": "china/technology/industry-associations/china-cagis.json", + "geographic_scope": "national" + } + ], + "geography": [ + { + "id": "china-casm", + "name": { + "en": "Chinese Academy of Surveying and Mapping", + "zh": "中国测绘科学研究院" + }, + "authority_level": "research", + "data_url": "https://www.casm.ac.cn", + "has_api": false, + "file_path": "china/research/china-casm.json", + "geographic_scope": "national" + }, + { + "id": "china-gscloud", + "name": { + "en": "Geospatial Data Cloud - Computer Network Information Center, CAS", + "zh": "地理空间数据云(中国科学院计算机网络信息中心)" + }, + "authority_level": "research", + "data_url": "https://www.gscloud.cn/search", + "has_api": false, + "file_path": "china/research/china-gscloud.json", + "geographic_scope": "global" + }, + { + "id": "china-igsnrr", + "name": { + "en": "Institute of Geographic Sciences and Natural Resources Research, Chinese Academy of Sciences", + "zh": "中国科学院地理科学与资源研究所" + }, + "authority_level": "research", + "data_url": "http://www.igsnrr.ac.cn", + "has_api": false, + "file_path": "china/research/china-igsnrr.json", + "geographic_scope": "national" + }, + { + "id": "china-ngcc", + "name": { + "en": "National Geomatics Center of China", + "zh": "国家基础地理信息中心" + }, + "authority_level": "government", + "data_url": "https://www.ngcc.cn/dlxxzy/gjjcdlxxsjk/", + "has_api": false, + "file_path": "china/resources/china-ngcc.json", + "geographic_scope": "national" + }, + { + "id": "mexico-inegi", + "name": { + "en": "National Institute of Statistics and Geography (INEGI)", + "zh": "墨西哥国家统计和地理研究所", + "native": "Instituto Nacional de Estadística y Geografía (INEGI)" + }, + "authority_level": "government", + "data_url": "https://www.inegi.org.mx/datos/", + "has_api": true, + "file_path": "countries/north-america/mexico/mexico-inegi.json", + "geographic_scope": "national" + }, + { + "id": "us-census", + "name": { + "en": "U.S. Census Bureau", + "zh": "美国人口普查局" + }, + "authority_level": "government", + "data_url": "https://data.census.gov", + "has_api": true, + "file_path": "countries/north-america/usa/us-census.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" + } + ], + "geological-hazards": [ + { + "id": "china-cgs", + "name": { + "en": "China Geological Survey (CGS)", + "zh": "中国地质调查局" + }, + "authority_level": "government", + "data_url": "https://geocloud.cgs.gov.cn", + "has_api": false, + "file_path": "countries/cn/geology/cgs.json", + "geographic_scope": "national" + } + ], + "geology": [ + { + "id": "china-nigpas", + "name": { + "en": "Nanjing Institute of Geology and Palaeontology, Chinese Academy of Sciences", + "zh": "中国科学院南京地质古生物研究所" + }, + "authority_level": "research", + "data_url": "http://www.nigpas.ac.cn", + "has_api": false, + "file_path": "china/research/china-nigpas.json", + "geographic_scope": "national" + }, + { + "id": "china-guangdong-nr", + "name": { + "en": "Guangdong Provincial Department of Natural Resources", + "zh": "广东省自然资源厅" + }, + "authority_level": "government", + "data_url": "https://nr.gd.gov.cn/zwgknew/index.html", + "has_api": false, + "file_path": "china/resources/china-guangdong-nr.json", + "geographic_scope": "subnational" + }, + { + "id": "china-cigem", + "name": { + "en": "China Institute of Geo-Environment Monitoring", + "zh": "中国地质环境监测院" + }, + "authority_level": "government", + "data_url": "http://www.cigem.cgs.gov.cn/", + "has_api": false, + "file_path": "china/resources/environment/china-cigem.json", + "geographic_scope": "national" + }, + { + "id": "china-crsri", + "name": { + "en": "Changjiang River Scientific Research Institute", + "zh": "长江科学院" + }, + "authority_level": "research", + "data_url": "http://www.crsri.cn", + "has_api": false, + "file_path": "china/resources/water/china-crsri.json", + "geographic_scope": "national" + }, + { + "id": "china-cgs", + "name": { + "en": "China Geological Survey (CGS)", + "zh": "中国地质调查局" + }, + "authority_level": "government", + "data_url": "https://geocloud.cgs.gov.cn", + "has_api": false, + "file_path": "countries/cn/geology/cgs.json", + "geographic_scope": "national" + }, + { + "id": "usgs", + "name": { + "en": "U.S. Geological Survey (USGS)", + "zh": "美国地质调查局" + }, + "authority_level": "government", + "data_url": "https://www.usgs.gov/products/data", + "has_api": true, + "file_path": "countries/us/geology/usgs.json", + "geographic_scope": "national" + }, + { + "id": "paleobiodb", + "name": { + "en": "Paleobiology Database (PBDB)", + "zh": "古生物学数据库" + }, + "authority_level": "research", + "data_url": "https://paleobiodb.org/navigator/", + "has_api": true, + "file_path": "international/paleontology/paleobiodb.json", + "geographic_scope": "global" + } + ], + "geoscience": [ + { + "id": "japan-jma", + "name": { + "en": "Japan Meteorological Agency", + "zh": "日本气象厅" + }, + "authority_level": "government", + "data_url": "https://www.data.jma.go.jp/risk/obsdl/index.php", + "has_api": false, + "file_path": "countries/asia/japan/japan-jma.json", + "geographic_scope": "national" + } + ], + "geospatial": [ + { + "id": "china-resdc", + "name": { + "en": "Resource and Environment Science and Data Center, Chinese Academy of Sciences", + "zh": "中国科学院资源环境科学与数据中心" + }, + "authority_level": "research", + "data_url": "https://www.resdc.cn", + "has_api": false, + "file_path": "china/research/china-resdc.json", + "geographic_scope": "national" + }, + { + "id": "usgs-earthexplorer", + "name": { + "en": "USGS EarthExplorer", + "zh": "美国地质调查局地球探索者" + }, + "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": "aws-open-data-registry", + "name": { + "en": "Registry of Open Data on AWS", + "zh": "AWS开放数据注册表" + }, + "authority_level": "commercial", + "data_url": "https://registry.opendata.aws/", + "has_api": false, + "file_path": "sectors/computer_science_ai/aws-open-data-registry.json", + "geographic_scope": "global" + } + ], + "geospatial-data": [ + { + "id": "aafc", + "name": { + "en": "Agriculture and Agri-Food Canada", + "zh": "加拿大农业与农业食品部", + "native": "Agriculture et Agroalimentaire Canada" + }, + "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" + } + ], + "glaciology": [ + { + "id": "china-tpdc", + "name": { + "en": "National Tibetan Plateau Data Center", + "zh": "国家青藏高原科学数据中心" + }, + "authority_level": "research", + "data_url": "https://data.tpdc.ac.cn", + "has_api": false, + "file_path": "china/research/china-tpdc.json", + "geographic_scope": "regional" + } + ], + "global-competence": [ + { + "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, + "file_path": "international/education/oecd-pisa.json", + "geographic_scope": "global" + } + ], + "global-development": [ + { + "id": "owid", + "name": { + "en": "Our World in Data", + "zh": "用数据看世界" + }, + "authority_level": "research", + "data_url": "https://github.com/owid/owid-datasets", + "has_api": true, + "file_path": "academic/multidisciplinary/owid.json", + "geographic_scope": "global" + } + ], + "global-education": [ + { + "id": "qs-world-university-rankings", + "name": { + "en": "QS World University Rankings", + "zh": "QS世界大学排名" + }, + "authority_level": "market", + "data_url": "https://www.topuniversities.com/world-university-rankings", + "has_api": false, + "file_path": "sectors/P-education/qs-world-university-rankings.json", + "geographic_scope": "global" + } + ], + "global-health": [ + { + "id": "gavi", + "name": { + "en": "GAVI, the Vaccine Alliance", + "zh": "全球疫苗免疫联盟" + }, + "authority_level": "international", + "data_url": "https://www.gavi.org/programmes-impact/our-impact/facts-and-figures", + "has_api": false, + "file_path": "international/health/gavi.json", + "geographic_scope": "global" + } + ], + "global-liquidity": [ + { + "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", + "geographic_scope": "global" + } + ], + "governance": [ + { + "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", + "geographic_scope": "regional" + }, + { + "id": "china-urban-planning", + "name": { + "en": "Chinese Society for Urban Studies", + "zh": "中国城市规划学会" + }, + "authority_level": "research", + "data_url": "https://www.planning.org.cn/paper", + "has_api": false, + "file_path": "china/construction/china-urban-planning.json", + "geographic_scope": "national" + }, + { + "id": "china-nfsra", + "name": { + "en": "National Food and Strategic Reserves Administration of China", + "zh": "国家粮食和物资储备局" + }, + "authority_level": "government", + "data_url": "https://lswz.gov.cn/html/xwzx/sjfb/index.html", + "has_api": false, + "file_path": "china/economy/agriculture/china-nfsra.json", + "geographic_scope": "national" + }, + { + "id": "china-acfic", + "name": { + "en": "All-China Federation of Industry and Commerce", + "zh": "中华全国工商业联合会" + }, + "authority_level": "other", + "data_url": "https://www.acfic.org.cn/myjjsj/", + "has_api": false, + "file_path": "china/economy/china-acfic.json", + "geographic_scope": "national" + }, + { + "id": "china-miit-sme", + "name": { + "en": "China Center for Promotion of SME Development (MIIT)", + "zh": "中国中小企业发展促进中心(工业和信息化部中小企业发展促进中心)" + }, + "authority_level": "government", + "data_url": "https://www.chinasme.org.cn/html/mcms/daohang/tongzhigonggao/index.html", + "has_api": false, + "file_path": "china/economy/china-miit-sme.json", + "geographic_scope": "national" + }, + { + "id": "china-caq", + "name": { + "en": "China Association for Quality", + "zh": "中国质量协会" + }, + "authority_level": "other", + "data_url": "https://www.caq.org.cn/html/zltj", + "has_api": false, + "file_path": "china/economy/industry_associations/china-caq.json", + "geographic_scope": "national" + }, + { + "id": "china-sasac", + "name": { + "en": "State-owned Assets Supervision and Administration Commission of the State Council", + "zh": "国务院国有资产监督管理委员会" + }, + "authority_level": "government", + "data_url": "https://www.sasac.gov.cn/n2588030/index.html", + "has_api": false, + "file_path": "china/economy/macro/china-sasac.json", + "geographic_scope": "national" + }, + { + "id": "china-gsxt", + "name": { + "en": "National Enterprise Credit Information Publicity System", + "zh": "国家企业信用信息公示系统" + }, + "authority_level": "government", + "data_url": "https://www.gsxt.gov.cn", + "has_api": false, + "file_path": "china/economy/market/china-gsxt.json", + "geographic_scope": "national" + }, + { + "id": "china-ccpit", + "name": { + "en": "China Council for the Promotion of International Trade", + "zh": "中国国际贸易促进委员会" + }, + "authority_level": "government", + "data_url": "https://www.ccpit.org/", + "has_api": false, + "file_path": "china/economy/trade/china-ccpit.json", + "geographic_scope": "national" + }, + { + "id": "china-capco", + "name": { + "en": "China Association for Public Companies (CAPCO)", + "zh": "中国上市公司协会" + }, + "authority_level": "market", + "data_url": "https://www.capco.org.cn", + "has_api": false, + "file_path": "china/finance/capital-markets/china-capco.json", + "geographic_scope": "national" + }, + { + "id": "china-cicpa", + "name": { + "en": "Chinese Institute of Certified Public Accountants", + "zh": "中国注册会计师协会" + }, + "authority_level": "market", + "data_url": "https://www.cicpa.org.cn/xxcx/", + "has_api": false, + "file_path": "china/finance/china-cicpa.json", + "geographic_scope": "national" + }, + { + "id": "china-chinatax", + "name": { + "en": "State Taxation Administration of China", + "zh": "国家税务总局" + }, + "authority_level": "government", + "data_url": "https://www.chinatax.gov.cn/chinatax/n810219/", + "has_api": false, + "file_path": "china/finance/taxation/china-chinatax.json", + "geographic_scope": "national" + }, + { + "id": "china-acla", + "name": { + "en": "All China Lawyers Association", + "zh": "中华全国律师协会" + }, + "authority_level": "other", + "data_url": "https://www.acla.org.cn/acla/tjxx/", + "has_api": false, + "file_path": "china/governance/china-acla.json", + "geographic_scope": "national" + }, + { + "id": "china-cafiu", + "name": { + "en": "China Association for International Understanding", + "zh": "中国国际交流协会" + }, + "authority_level": "other", + "data_url": "https://www.cafiu.org.cn", + "has_api": false, + "file_path": "china/governance/china-cafiu.json", + "geographic_scope": "national" + }, + { + "id": "china-ccdi", + "name": { + "en": "Central Commission for Discipline Inspection of the Communist Party of China", + "zh": "中央纪律检查委员会" + }, + "authority_level": "government", + "data_url": "https://www.ccdi.gov.cn/xxgk/", + "has_api": false, + "file_path": "china/governance/china-ccdi.json", + "geographic_scope": "national" + }, + { + "id": "china-ccgp", + "name": { + "en": "China Government Procurement Network", + "zh": "中国政府采购网" + }, + "authority_level": "government", + "data_url": "https://www.ccgp.gov.cn/cggg/index.htm", + "has_api": false, + "file_path": "china/governance/china-ccgp.json", + "geographic_scope": "national" + }, + { + "id": "china-cdpf", + "name": { + "en": "China Disabled Persons' Federation", + "zh": "中国残疾人联合会" + }, + "authority_level": "government", + "data_url": "https://www.cdpf.org.cn/zwgk/index.htm", + "has_api": false, + "file_path": "china/governance/china-cdpf.json", + "geographic_scope": "national" + }, + { + "id": "china-cidca", + "name": { + "en": "China International Development Cooperation Agency", + "zh": "国家国际发展合作署" + }, + "authority_level": "government", + "data_url": "http://www.cidca.gov.cn/ywgz.htm", + "has_api": false, + "file_path": "china/governance/china-cidca.json", + "geographic_scope": "global" + }, + { + "id": "china-cnao", + "name": { + "en": "National Audit Office of China", + "zh": "中华人民共和国审计署" + }, + "authority_level": "government", + "data_url": "https://www.audit.gov.cn", + "has_api": false, + "file_path": "china/governance/china-cnao.json", + "geographic_scope": "national" + }, + { + "id": "china-cppcc", + "name": { + "en": "Chinese People's Political Consultative Conference", + "zh": "中国人民政治协商会议" + }, + "authority_level": "government", + "data_url": "http://www.cppcc.gov.cn", + "has_api": false, + "file_path": "china/governance/china-cppcc.json", + "geographic_scope": "national" + }, + { + "id": "china-cqc", + "name": { + "en": "China Quality Certification Centre", + "zh": "中国质量认证中心" + }, + "authority_level": "government", + "data_url": "https://www.cqc.com.cn/", + "has_api": false, + "file_path": "china/governance/china-cqc.json", + "geographic_scope": "national" + }, + { + "id": "china-ggzy", + "name": { + "en": "China National Public Resources Trading Platform", + "zh": "全国公共资源交易平台" + }, + "authority_level": "government", + "data_url": "https://www.ggzy.gov.cn/", + "has_api": false, + "file_path": "china/governance/china-ggzy.json", + "geographic_scope": "national" + }, + { + "id": "china-mem", + "name": { + "en": "Ministry of Emergency Management of China", + "zh": "中华人民共和国应急管理部" + }, + "authority_level": "government", + "data_url": "https://www.mem.gov.cn/gk/tjsj/", + "has_api": false, + "file_path": "china/governance/china-mem.json", + "geographic_scope": "national" + }, + { + "id": "china-mofa", + "name": { + "en": "Ministry of Foreign Affairs of China", + "zh": "中华人民共和国外交部" + }, + "authority_level": "government", + "data_url": "https://www.mfa.gov.cn/web/system/index_17321.shtml", + "has_api": false, + "file_path": "china/governance/china-mofa.json", + "geographic_scope": "national" + }, + { + "id": "china-moj", + "name": { + "en": "Ministry of Justice of China", + "zh": "中华人民共和国司法部" + }, + "authority_level": "government", + "data_url": "https://www.moj.gov.cn/pub/sfbgw/zwgkzl/tjsj/", + "has_api": false, + "file_path": "china/governance/china-moj.json", + "geographic_scope": "national" + }, + { + "id": "china-mva", + "name": { + "en": "Ministry of Veterans Affairs of China", + "zh": "中华人民共和国退役军人事务部" + }, + "authority_level": "government", + "data_url": "https://www.mva.gov.cn/gongkai/", + "has_api": false, + "file_path": "china/governance/china-mva.json", + "geographic_scope": "national" + }, + { + "id": "china-napp", + "name": { + "en": "National Administration of Press and Publication", + "zh": "国家新闻出版署" + }, + "authority_level": "government", + "data_url": "https://www.nppa.gov.cn/xxfb/", + "has_api": false, + "file_path": "china/governance/china-napp.json", + "geographic_scope": "national" + }, + { + "id": "china-ncac", + "name": { + "en": "National Copyright Administration of China", + "zh": "国家版权局" + }, + "authority_level": "government", + "data_url": "https://www.ncac.gov.cn/chinacopyright/channels/634.html", + "has_api": false, + "file_path": "china/governance/china-ncac.json", + "geographic_scope": "national" + }, + { + "id": "china-ncha", + "name": { + "en": "National Cultural Heritage Administration of China", + "zh": "国家文物局" + }, + "authority_level": "government", + "data_url": "http://www.ncha.gov.cn/col/col2276/index.html", + "has_api": false, + "file_path": "china/governance/china-ncha.json", + "geographic_scope": "national" + }, + { + "id": "china-neac", + "name": { + "en": "National Ethnic Affairs Commission of China", + "zh": "国家民族事务委员会" + }, + "authority_level": "government", + "data_url": "https://www.neac.gov.cn/seac/xxgk/tjsj/", + "has_api": false, + "file_path": "china/governance/china-neac.json", + "geographic_scope": "national" + }, + { + "id": "china-nfra-fire", + "name": { + "en": "National Fire and Rescue Administration of China", + "zh": "国家消防救援局" + }, + "authority_level": "government", + "data_url": "https://www.119.gov.cn", + "has_api": false, + "file_path": "china/governance/china-nfra-fire.json", + "geographic_scope": "national" + }, + { + "id": "china-nia", + "name": { + "en": "National Immigration Administration of China", + "zh": "国家移民管理局" + }, + "authority_level": "government", + "data_url": "https://www.nia.gov.cn/n741440/n741547/index.html", + "has_api": false, + "file_path": "china/governance/china-nia.json", + "geographic_scope": "national" + }, + { + "id": "china-nncc", + "name": { + "en": "China National Narcotics Control Commission", + "zh": "中国国家禁毒委员会" + }, + "authority_level": "government", + "data_url": "http://www.nncc626.com", + "has_api": false, + "file_path": "china/governance/china-nncc.json", + "geographic_scope": "national" + }, + { + "id": "china-nnsa", + "name": { + "en": "National Nuclear Safety Administration", + "zh": "国家核安全局" + }, + "authority_level": "government", + "data_url": "http://nnsa.mee.gov.cn", + "has_api": false, + "file_path": "china/governance/china-nnsa.json", + "geographic_scope": "national" + }, + { + "id": "china-npc-law", + "name": { + "en": "National People's Congress Law Database", + "zh": "全国人大法律法规数据库" + }, + "authority_level": "government", + "data_url": "https://flk.npc.gov.cn/", + "has_api": true, + "file_path": "china/governance/china-npc-law.json", + "geographic_scope": "national" + }, + { + "id": "china-nrta", + "name": { + "en": "National Radio and Television Administration of China", + "zh": "国家广播电视总局" + }, + "authority_level": "government", + "data_url": "https://www.nrta.gov.cn/col/col2040/index.html", + "has_api": false, + "file_path": "china/governance/china-nrta.json", + "geographic_scope": "national" + }, + { + "id": "china-pkulaw", + "name": { + "en": "PKU Law (Peking University Law Database)", + "zh": "北大法宝" + }, + "authority_level": "research", + "data_url": "https://www.pkulaw.com/law", + "has_api": false, + "file_path": "china/governance/china-pkulaw.json", + "geographic_scope": "national" + }, + { + "id": "china-saac", + "name": { + "en": "National Archives Administration of China", + "zh": "中华人民共和国国家档案局" + }, + "authority_level": "government", + "data_url": "https://www.saac.gov.cn/daj/fzgz/lmlist.shtml", + "has_api": false, + "file_path": "china/governance/china-saac.json", + "geographic_scope": "national" + }, + { + "id": "china-spc", + "name": { + "en": "Supreme People's Court of China", + "zh": "最高人民法院" + }, + "authority_level": "government", + "data_url": "https://www.court.gov.cn/sfsj.html", + "has_api": false, + "file_path": "china/governance/china-spc.json", + "geographic_scope": "national" + }, + { + "id": "china-spp", + "name": { + "en": "Supreme People's Procuratorate of China", + "zh": "最高人民检察院" + }, + "authority_level": "government", + "data_url": "https://www.spp.gov.cn/spp/jcdt/jcgzdt/index_1.shtml", + "has_api": false, + "file_path": "china/governance/china-spp.json", + "geographic_scope": "national" + }, + { + "id": "china-stma", + "name": { + "en": "State Tobacco Monopoly Administration of China", + "zh": "国家烟草专卖局" + }, + "authority_level": "government", + "data_url": "https://www.tobacco.gov.cn/html/42/index.html", + "has_api": false, + "file_path": "china/governance/china-stma.json", + "geographic_scope": "national" + }, + { + "id": "china-wenshu", + "name": { + "en": "China Judgments Online", + "zh": "中国裁判文书网" + }, + "authority_level": "government", + "data_url": "https://wenshu.court.gov.cn/website/wenshu/181107ANFZ0BXSK4/index.html", + "has_api": false, + "file_path": "china/governance/china-wenshu.json", + "geographic_scope": "national" + }, + { + "id": "china-cnaf", + "name": { + "en": "China National Arts Fund", + "zh": "国家艺术基金" + }, + "authority_level": "government", + "data_url": "https://www.cnaf.cn", + "has_api": false, + "file_path": "china/governance/culture/china-cnaf.json", + "geographic_scope": "national" + }, + { + "id": "china-ndcpa", + "name": { + "en": "National Disease Control and Prevention Administration of China", + "zh": "国家疾病预防控制局" + }, + "authority_level": "government", + "data_url": "https://www.ndcpa.gov.cn/jbkzzx/c100016/second/list.html", + "has_api": false, + "file_path": "china/health/china-ndcpa.json", + "geographic_scope": "national" + }, + { + "id": "china-nmpa", + "name": { + "en": "National Medical Products Administration of China", + "zh": "国家药品监督管理局" + }, + "authority_level": "government", + "data_url": "https://www.nmpa.gov.cn/datasearch/home-index.html", + "has_api": false, + "file_path": "china/health/china-nmpa.json", + "geographic_scope": "national" + }, + { + "id": "china-csei", + "name": { + "en": "China Special Equipment Inspection and Research Institute", + "zh": "中国特种设备检测研究院" + }, + "authority_level": "research", + "data_url": "https://www.csei.org.cn", + "has_api": false, + "file_path": "china/industry/china-csei.json", + "geographic_scope": "national" + }, + { + "id": "china-mca", + "name": { + "en": "Ministry of Civil Affairs of China", + "zh": "中华人民共和国民政部", + "native": "中华人民共和国民政部" + }, + "authority_level": "government", + "data_url": "https://www.mca.gov.cn/n156/n2679/index.html", + "has_api": false, + "file_path": "china/national/china-mca.json", + "geographic_scope": "national" + }, + { + "id": "china-drc", + "name": { + "en": "Development Research Center of the State Council of China", + "zh": "国务院发展研究中心" + }, + "authority_level": "government", + "data_url": "https://www.drc.gov.cn/yjcg.htm", + "has_api": false, + "file_path": "china/research/china-drc.json", + "geographic_scope": "national" + }, + { + "id": "china-caep", + "name": { + "en": "Chinese Academy of Environmental Planning", + "zh": "生态环境部环境规划院" + }, + "authority_level": "research", + "data_url": "http://www.caep.org.cn", + "has_api": false, + "file_path": "china/resources/environment/china-caep.json", + "geographic_scope": "national" + }, + { + "id": "china-ndrcc", + "name": { + "en": "National Disaster Reduction Center of China", + "zh": "国家减灾中心" + }, + "authority_level": "government", + "data_url": "https://www.ndrcc.org.cn/", + "has_api": false, + "file_path": "china/resources/environment/china-ndrcc.json", + "geographic_scope": "national" + }, + { + "id": "china-cea", + "name": { + "en": "China Earthquake Administration", + "zh": "中国地震局" + }, + "authority_level": "government", + "data_url": "https://www.cea.gov.cn/cea/dzpd/dzzt/index.html", + "has_api": false, + "file_path": "china/resources/seismology/china-cea.json", + "geographic_scope": "national" + }, + { + "id": "china-cenc", + "name": { + "en": "China Earthquake Networks Center", + "zh": "中国地震台网中心" + }, + "authority_level": "government", + "data_url": "https://www.cenc.ac.cn/", + "has_api": false, + "file_path": "china/resources/seismology/china-cenc.json", + "geographic_scope": "national" + }, + { + "id": "china-cac", + "name": { + "en": "Cyberspace Administration of China", + "zh": "国家互联网信息办公室" + }, + "authority_level": "government", + "data_url": "https://www.cac.gov.cn/wxzw/sjzl/A093708index_1.htm", + "has_api": false, + "file_path": "china/technology/internet/china-cac.json", + "geographic_scope": "national" + }, + { + "id": "china-nim", + "name": { + "en": "National Institute of Metrology China", + "zh": "中国计量科学研究院" + }, + "authority_level": "government", + "data_url": "https://www.nim.ac.cn/nim_time", + "has_api": false, + "file_path": "china/technology/standards/china-nim.json", + "geographic_scope": "national" + }, + { + "id": "china-openstd", + "name": { + "en": "China National Standards Full Text Public Access System", + "zh": "国家标准全文公开系统" + }, + "authority_level": "government", + "data_url": "https://openstd.samr.gov.cn/", + "has_api": false, + "file_path": "china/technology/standards/china-openstd.json", + "geographic_scope": "national" + }, + { + "id": "afdb-statistics", + "name": { + "en": "African Development Bank Statistics", + "zh": "非洲开发银行统计数据" + }, + "authority_level": "international", + "data_url": "https://dataportal.opendataforafrica.org", + "has_api": true, + "file_path": "international/development/afdb-statistics.json", + "geographic_scope": "regional" + }, + { + "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": "adb", + "name": { + "en": "Asian Development Bank Data", + "zh": "亚洲开发银行数据" + }, + "authority_level": "international", + "data_url": "https://www.adb.org/what-we-do/data", + "has_api": false, + "file_path": "international/economics/adb.json", + "geographic_scope": "regional" + } + ], + "government": [ + { + "id": "china-csdp", + "name": { + "en": "China School Development Planning Center", + "zh": "教育部学校规划建设发展中心" + }, + "authority_level": "government", + "data_url": "https://www.csdp.edu.cn", + "has_api": false, + "file_path": "china/education/china-csdp.json", + "geographic_scope": "national" + }, + { + "id": "china-cncaprc", + "name": { + "en": "China National Committee on Ageing", + "zh": "中国老龄协会" + }, + "authority_level": "government", + "data_url": "https://www.cncaprc.gov.cn", + "has_api": false, + "file_path": "china/national/china-cncaprc.json", + "geographic_scope": "national" + }, + { + "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", + "geographic_scope": "national" + }, + { + "id": "us-census", + "name": { + "en": "U.S. Census Bureau", + "zh": "美国人口普查局" + }, + "authority_level": "government", + "data_url": "https://data.census.gov", + "has_api": true, + "file_path": "countries/north-america/usa/us-census.json", + "geographic_scope": "national" + } + ], + "government-budget": [ + { + "id": "china-mof", + "name": { + "en": "Ministry of Finance of China", + "zh": "中华人民共和国财政部" + }, + "authority_level": "government", + "data_url": "https://www.mof.gov.cn/gkml/", + "has_api": false, + "file_path": "china/finance/fiscal/china-mof.json", + "geographic_scope": "national" + }, + { + "id": "vietnam-mof", + "name": { + "en": "Ministry of Finance of Vietnam", + "zh": "越南财政部" + }, + "authority_level": "government", + "data_url": "https://www.mof.gov.vn/webcenter/portal/btcen/pages_r/m/statistics", + "has_api": false, + "file_path": "countries/asia/vietnam/vietnam-mof.json", + "geographic_scope": "national" + } + ], + "government-debt": [ + { + "id": "us-treasury", + "name": { + "en": "U.S. Department of the Treasury", + "zh": "美国财政部" + }, + "authority_level": "government", + "data_url": "https://fiscaldata.treasury.gov", + "has_api": true, + "file_path": "countries/north-america/usa/us-treasury.json", + "geographic_scope": "national" + } + ], + "government-finance": [ + { + "id": "india-rbi", + "name": { + "en": "Reserve Bank of India", + "zh": "印度储备银行", + "native": "भारतीय रिज़र्व बैंक" + }, + "authority_level": "government", + "data_url": "https://www.rbi.org.in/Scripts/Statistics.aspx", + "has_api": true, + "file_path": "countries/asia/india/india-rbi.json", + "geographic_scope": "national" + }, + { + "id": "philippines-psa", + "name": { + "en": "Philippine Statistics Authority", + "zh": "菲律宾统计局" + }, + "authority_level": "government", + "data_url": "https://openstat.psa.gov.ph", + "has_api": false, + "file_path": "countries/asia/philippines/psa.json", + "geographic_scope": "national" + }, + { + "id": "vietnam-gso", + "name": { + "en": "General Statistics Office of Vietnam", + "zh": "越南统计总局" + }, + "authority_level": "government", + "data_url": "https://www.nso.gov.vn/en/statistical-data/", + "has_api": false, + "file_path": "countries/asia/vietnam/gso.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": "adb-key-indicators", + "name": { + "en": "Asian Development Bank Key Indicators", + "zh": "亚洲开发银行关键指标" + }, + "authority_level": "international", + "data_url": "https://kidb.adb.org", + "has_api": true, + "file_path": "international/development/adb-key-indicators.json", + "geographic_scope": "regional" + }, + { + "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, + "file_path": "international/economics/ecb-sdw.json", + "geographic_scope": "regional" + } + ], + "government-procurement": [ + { + "id": "china-shenzhen-prtc", + "name": { + "en": "Shenzhen Public Resource Trading Center", + "zh": "深圳市公共资源交易中心" + }, + "authority_level": "government", + "data_url": "https://www.szggzy.com/", + "has_api": false, + "file_path": "china/economy/market/china-shenzhen-prtc.json", + "geographic_scope": "subnational" + } + ], + "government-spending": [ + { + "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", + "geographic_scope": "national" + } + ], + "graduate-education": [ + { + "id": "cdgdc", + "name": { + "en": "China Academic Degrees & Graduate Education Development Center", + "zh": "教育部学位与研究生教育发展中心" + }, + "authority_level": "government", + "data_url": "https://www.chinadegrees.cn/", + "has_api": false, + "file_path": "china/education/higher_education/cdgdc.json", + "geographic_scope": "national" + } + ], + "greenhouse-gases": [ + { + "id": "cdiac", + "name": { + "en": "Carbon Dioxide Information Analysis Center", + "zh": "碳信息分析中心" + }, + "authority_level": "research", + "data_url": "https://data.ess-dive.lbl.gov/portals/CDIAC", + "has_api": true, + "file_path": "international/environment/cdiac.json", + "geographic_scope": "global" + } + ], + "hazardous-materials": [ + { + "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" + } + ], + "hazardous-waste": [ + { + "id": "china-nies", + "name": { + "en": "Nanjing Institute of Environmental Sciences, MEE", + "zh": "生态环境部南京环境科学研究所" + }, + "authority_level": "research", + "data_url": "https://www.nies.org", + "has_api": false, + "file_path": "china/resources/environment/china-nies.json", + "geographic_scope": "national" + } + ], + "health": [ + { + "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": "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", + "name": { + "en": "ClinicalTrials.gov", + "zh": "临床试验注册数据库" + }, + "authority_level": "government", + "data_url": "https://clinicaltrials.gov/", + "has_api": true, + "file_path": "academic/health/clinicaltrials-gov.json", + "geographic_scope": "global" + }, + { + "id": "dhs", + "name": { + "en": "Demographic and Health Surveys (DHS) Program", + "zh": "人口与健康调查项目" + }, + "authority_level": "international", + "data_url": "https://dhsprogram.com/", + "has_api": true, + "file_path": "academic/health/dhs.json", + "geographic_scope": "regional" + }, + { + "id": "ghdx", + "name": { + "en": "Global Health Data Exchange (GHDx)", + "zh": "全球健康数据交换平台" + }, + "authority_level": "research", + "data_url": "https://ghdx.healthdata.org/", + "has_api": true, + "file_path": "academic/health/ghdx.json", + "geographic_scope": "global" + }, + { + "id": "pubmed", + "name": { + "en": "PubMed", + "zh": "PubMed生物医学文献数据库" + }, + "authority_level": "government", + "data_url": "https://pubmed.ncbi.nlm.nih.gov/", + "has_api": true, + "file_path": "academic/health/pubmed.json", + "geographic_scope": "global" + }, + { + "id": "owid", + "name": { + "en": "Our World in Data", + "zh": "用数据看世界" + }, + "authority_level": "research", + "data_url": "https://github.com/owid/owid-datasets", + "has_api": true, + "file_path": "academic/multidisciplinary/owid.json", + "geographic_scope": "global" + }, + { + "id": "china-nncc", + "name": { + "en": "China National Narcotics Control Commission", + "zh": "中国国家禁毒委员会" + }, + "authority_level": "government", + "data_url": "http://www.nncc626.com", + "has_api": false, + "file_path": "china/governance/china-nncc.json", + "geographic_scope": "national" + }, + { + "id": "china-cacm", + "name": { + "en": "Chinese Association of Chinese Medicine", + "zh": "中华中医药学会" + }, + "authority_level": "research", + "data_url": "https://www.cacm.org.cn", + "has_api": false, + "file_path": "china/health/china-cacm.json", + "geographic_scope": "national" + }, + { + "id": "china-cacms", + "name": { + "en": "China Academy of Chinese Medical Sciences", + "zh": "中国中医科学院" + }, + "authority_level": "research", + "data_url": "https://www.cacms.ac.cn/index.html", + "has_api": false, + "file_path": "china/health/china-cacms.json", + "geographic_scope": "national" + }, + { + "id": "china-cams", + "name": { + "en": "Chinese Academy of Medical Sciences (CAMS)", + "zh": "中国医学科学院" + }, + "authority_level": "research", + "data_url": "https://www.cams.cn", + "has_api": false, + "file_path": "china/health/china-cams.json", + "geographic_scope": "national" + }, + { + "id": "china-catcm", + "name": { + "en": "China Association of Traditional Chinese Medicine", + "zh": "中国中药协会" + }, + "authority_level": "other", + "data_url": "https://www.catcm.org.cn", + "has_api": false, + "file_path": "china/health/china-catcm.json", + "geographic_scope": "national" + }, + { + "id": "china-cdc", + "name": { + "en": "Chinese Center for Disease Control and Prevention", + "zh": "中国疾病预防控制中心" + }, + "authority_level": "government", + "data_url": "https://www.chinacdc.cn/gzdt/", + "has_api": false, + "file_path": "china/health/china-cdc.json", + "geographic_scope": "national" + }, + { + "id": "china-chinadrugtrials", + "name": { + "en": "China Drug Clinical Trials Registration and Information Disclosure Platform", + "zh": "药物临床试验登记与信息公示平台" + }, + "authority_level": "government", + "data_url": "https://www.chinadrugtrials.org.cn", + "has_api": false, + "file_path": "china/health/china-chinadrugtrials.json", + "geographic_scope": "national" + }, + { + "id": "china-class", + "name": { + "en": "China Longitudinal Aging Social Survey (CLASS)", + "zh": "中国老年社会追踪调查(CLASS)" + }, + "authority_level": "research", + "data_url": "http://class.ruc.edu.cn/", + "has_api": false, + "file_path": "china/health/china-class.json", + "geographic_scope": "national" + }, + { + "id": "china-cpdrc", + "name": { + "en": "China Population and Development Research Center", + "zh": "中国人口与发展研究中心" + }, + "authority_level": "research", + "data_url": "https://www.cpdrc.org.cn/sjzw/", + "has_api": false, + "file_path": "china/health/china-cpdrc.json", + "geographic_scope": "national" + }, + { + "id": "china-cpharma", + "name": { + "en": "Chinese Pharmaceutical Association", + "zh": "中国药学会" + }, + "authority_level": "research", + "data_url": "https://www.cpa.org.cn/?do=class&classid=250", + "has_api": false, + "file_path": "china/health/china-cpharma.json", + "geographic_scope": "national" + }, + { + "id": "china-cpma", + "name": { + "en": "Chinese Preventive Medicine Association", + "zh": "中华预防医学会" + }, + "authority_level": "research", + "data_url": "https://www.cpma.org.cn", + "has_api": false, + "file_path": "china/health/china-cpma.json", + "geographic_scope": "national" + }, + { + "id": "china-hospital-association", + "name": { + "en": "Chinese Hospital Association", + "zh": "中国医院协会" + }, + "authority_level": "other", + "data_url": "https://www.cha.org.cn", + "has_api": false, + "file_path": "china/health/china-hospital-association.json", + "geographic_scope": "national" + }, + { + "id": "china-medical-association", + "name": { + "en": "Chinese Medical Association", + "zh": "中华医学会" + }, + "authority_level": "research", + "data_url": "https://www.cma.org.cn/col/col5601/index.html", + "has_api": false, + "file_path": "china/health/china-medical-association.json", + "geographic_scope": "national" + }, + { + "id": "china-natcm", + "name": { + "en": "National Administration of Traditional Chinese Medicine", + "zh": "国家中医药管理局" + }, + "authority_level": "government", + "data_url": "https://www.natcm.gov.cn/guihuacaiwusi/gongzuodongtai/index.html", + "has_api": false, + "file_path": "china/health/china-natcm.json", + "geographic_scope": "national" + }, + { + "id": "china-ndcpa", + "name": { + "en": "National Disease Control and Prevention Administration of China", + "zh": "国家疾病预防控制局" + }, + "authority_level": "government", + "data_url": "https://www.ndcpa.gov.cn/jbkzzx/c100016/second/list.html", + "has_api": false, + "file_path": "china/health/china-ndcpa.json", + "geographic_scope": "national" + }, + { + "id": "china-nhc", + "name": { + "en": "National Health Commission of China", + "zh": "国家卫生健康委员会", + "native": "国家卫生健康委员会" + }, + "authority_level": "government", + "data_url": "https://www.nhc.gov.cn/mohwsbwstjxxzx/s7967/new_list.shtml", + "has_api": false, + "file_path": "china/health/china-nhc.json", + "geographic_scope": "national" + }, + { + "id": "china-nhsa", + "name": { + "en": "National Healthcare Security Administration of China", + "zh": "国家医疗保障局" + }, + "authority_level": "government", + "data_url": "https://www.nhsa.gov.cn/col/col7/index.html", + "has_api": false, + "file_path": "china/health/china-nhsa.json", + "geographic_scope": "national" + }, + { + "id": "china-nifdc", + "name": { + "en": "National Institutes for Food and Drug Control", + "zh": "中国食品药品检定研究院" + }, + "authority_level": "government", + "data_url": "https://www.nifdc.org.cn", + "has_api": false, + "file_path": "china/health/china-nifdc.json", + "geographic_scope": "national" + }, + { + "id": "china-nphsd", + "name": { + "en": "National Population and Health Science Data Center", + "zh": "国家人口与健康科学数据中心" + }, + "authority_level": "research", + "data_url": "https://www.phsciencedata.cn", + "has_api": false, + "file_path": "china/health/china-nphsd.json", + "geographic_scope": "national" + }, + { + "id": "china-phirda", + "name": { + "en": "China Pharmaceutical Innovation and Research Development Association", + "zh": "中国医药创新促进会" + }, + "authority_level": "other", + "data_url": "https://www.phirda.com", + "has_api": false, + "file_path": "china/health/china-phirda.json", + "geographic_scope": "national" + }, + { + "id": "china-cncaprc", + "name": { + "en": "China National Committee on Ageing", + "zh": "中国老龄协会" + }, + "authority_level": "government", + "data_url": "https://www.cncaprc.gov.cn", + "has_api": false, + "file_path": "china/national/china-cncaprc.json", + "geographic_scope": "national" + }, + { + "id": "china-cfps", + "name": { + "en": "China Family Panel Studies (CFPS)", + "zh": "中国家庭追踪调查(CFPS)" + }, + "authority_level": "research", + "data_url": "https://opendata.pku.edu.cn/dataverse/CFPS", + "has_api": false, + "file_path": "china/research/china-cfps.json", + "geographic_scope": "national" + }, + { + "id": "china-cgss", + "name": { + "en": "Chinese General Social Survey (CGSS)", + "zh": "中国综合社会调查(CGSS)" + }, + "authority_level": "research", + "data_url": "http://cgss.ruc.edu.cn/", + "has_api": false, + "file_path": "china/research/china-cgss.json", + "geographic_scope": "national" + }, + { + "id": "china-cipd", + "name": { + "en": "China Population and Development Research Center", + "zh": "中国人口与发展研究中心" + }, + "authority_level": "research", + "data_url": "https://www.cpirc.org.cn", + "has_api": false, + "file_path": "china/research/china-cipd.json", + "geographic_scope": "national" + }, + { + "id": "china-cncbd", + "name": { + "en": "China National Center for Biotechnology Development", + "zh": "中国生物技术发展中心" + }, + "authority_level": "government", + "data_url": "https://www.cncbd.org.cn", + "has_api": false, + "file_path": "china/research/china-cncbd.json", + "geographic_scope": "national" + }, + { + "id": "china-imcas", + "name": { + "en": "Institute of Microbiology, Chinese Academy of Sciences", + "zh": "中国科学院微生物研究所" + }, + "authority_level": "research", + "data_url": "https://www.im.cas.cn", + "has_api": false, + "file_path": "china/research/china-imcas.json", + "geographic_scope": "national" + }, + { + "id": "china-pku-opendata", + "name": { + "en": "Peking University Open Research Data Platform", + "zh": "北京大学开放研究数据平台" + }, + "authority_level": "research", + "data_url": "https://opendata.pku.edu.cn", + "has_api": false, + "file_path": "china/research/china-pku-opendata.json", + "geographic_scope": "national" + }, + { + "id": "china-scidb", + "name": { + "en": "Science Data Bank (ScienceDB)", + "zh": "中国科学数据银行" + }, + "authority_level": "research", + "data_url": "https://www.scidb.cn/list?type=all", + "has_api": false, + "file_path": "china/research/china-scidb.json", + "geographic_scope": "global" + }, + { + "id": "china-ngdc", + "name": { + "en": "National Genomics Data Center", + "zh": "国家基因组科学数据中心" + }, + "authority_level": "research", + "data_url": "https://ngdc.cncb.ac.cn/gsub/", + "has_api": true, + "file_path": "china/research/ngdc.json", + "geographic_scope": "national" + }, + { + "id": "kenya-knbs", + "name": { + "en": "Kenya National Bureau of Statistics", + "zh": "肯尼亚国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.knbs.or.ke/publications/", + "has_api": false, + "file_path": "countries/africa/kenya/kenya-knbs.json", + "geographic_scope": "national" + }, + { + "id": "stats-sa", + "name": { + "en": "Statistics South Africa (Stats SA)", + "zh": "南非统计局", + "native": "Statistics South Africa (Stats SA)" + }, + "authority_level": "government", + "data_url": "https://www.statssa.gov.za/?page_id=1521", + "has_api": false, + "file_path": "countries/africa/south-africa/stats-sa.json", + "geographic_scope": "national" + }, + { + "id": "india-mospi", + "name": { + "en": "Ministry of Statistics and Programme Implementation (MoSPI)", + "zh": "印度统计与计划实施部", + "native": "सांख्यिकी और कार्यक्रम कार्यान्वयन मंत्रालय" + }, + "authority_level": "government", + "data_url": "https://mospi.gov.in/data", + "has_api": false, + "file_path": "countries/asia/india/india-mospi.json", + "geographic_scope": "national" + }, + { + "id": "japan-estat", + "name": { + "en": "Japan e-Stat (Portal Site of Official Statistics)", + "zh": "日本统计局 e-Stat(政府统计综合窗口)", + "native": "政府統計の総合窓口 e-Stat" + }, + "authority_level": "government", + "data_url": "https://www.e-stat.go.jp/en/stat-search", + "has_api": true, + "file_path": "countries/asia/japan/japan-estat.json", + "geographic_scope": "national" + }, + { + "id": "philippines-psa", + "name": { + "en": "Philippine Statistics Authority", + "zh": "菲律宾统计局" + }, + "authority_level": "government", + "data_url": "https://openstat.psa.gov.ph", + "has_api": false, + "file_path": "countries/asia/philippines/psa.json", + "geographic_scope": "national" + }, + { + "id": "saudi-gastat", + "name": { + "en": "General Authority for Statistics (GASTAT)", + "zh": "沙特阿拉伯统计总局" + }, + "authority_level": "government", + "data_url": "https://www.stats.gov.sa/statistics", + "has_api": false, + "file_path": "countries/asia/saudi-arabia/saudi-gastat.json", + "geographic_scope": "national" + }, + { + "id": "vietnam-gso", + "name": { + "en": "General Statistics Office of Vietnam", + "zh": "越南统计总局" + }, + "authority_level": "government", + "data_url": "https://www.nso.gov.vn/en/statistical-data/", + "has_api": false, + "file_path": "countries/asia/vietnam/gso.json", + "geographic_scope": "national" + }, + { + "id": "germany-destatis", + "name": { + "en": "Federal Statistical Office of Germany (Destatis)", + "zh": "德国联邦统计局", + "native": "Statistisches Bundesamt (Destatis)" + }, + "authority_level": "government", + "data_url": "https://www.destatis.de/EN/Themes/_node.html", + "has_api": true, + "file_path": "countries/europe/germany/germany-destatis.json", + "geographic_scope": "national" + }, + { + "id": "hungary-ksh", + "name": { + "en": "Hungarian Central Statistical Office", + "zh": "匈牙利中央统计局" + }, + "authority_level": "government", + "data_url": "https://www.ksh.hu/engstadat", + "has_api": true, + "file_path": "countries/europe/hungary/hungary-ksh.json", + "geographic_scope": "national" + }, + { + "id": "ireland-cso", + "name": { + "en": "Central Statistics Office (CSO)", + "zh": "爱尔兰中央统计局" + }, + "authority_level": "government", + "data_url": "https://data.cso.ie", + "has_api": true, + "file_path": "countries/europe/ireland/ireland-cso.json", + "geographic_scope": "national" + }, + { + "id": "norway-ssb", + "name": { + "en": "Statistics Norway (SSB)", + "zh": "挪威统计局", + "native": "Statistisk sentralbyrå (SSB)" + }, + "authority_level": "government", + "data_url": "https://www.ssb.no/en/statbank", + "has_api": true, + "file_path": "countries/europe/norway/norway-ssb.json", + "geographic_scope": "national" + }, + { + "id": "switzerland-fso", + "name": { + "en": "Swiss Federal Statistical Office (FSO)", + "zh": "瑞士联邦统计局", + "native": "Bundesamt für Statistik (BFS)" + }, + "authority_level": "government", + "data_url": "https://www.bfs.admin.ch/bfs/en/home/statistics.html", + "has_api": true, + "file_path": "countries/europe/switzerland/switzerland-fso.json", + "geographic_scope": "national" + }, + { + "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", + "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", + "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" + }, + { + "id": "us-census", + "name": { + "en": "U.S. Census Bureau", + "zh": "美国人口普查局" + }, + "authority_level": "government", + "data_url": "https://data.census.gov", + "has_api": true, + "file_path": "countries/north-america/usa/us-census.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": "usaid-ddl", + "name": { + "en": "USAID Development Data Library", + "zh": "美国国际开发署发展数据库" + }, + "authority_level": "government", + "data_url": "https://data.usaid.gov", + "has_api": true, + "file_path": "countries/north-america/usa/usaid-ddl.json", + "geographic_scope": "global" + }, + { + "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": "aus-aihw", + "name": { + "en": "Australian Institute of Health and Welfare", + "zh": "澳大利亚健康与福利研究所" + }, + "authority_level": "government", + "data_url": "https://www.aihw.gov.au/", + "has_api": true, + "file_path": "countries/oceania/australia/aihw.json", + "geographic_scope": "national" + }, + { + "id": "nz-stats", + "name": { + "en": "Statistics New Zealand (Stats NZ)", + "zh": "新西兰统计局" + }, + "authority_level": "government", + "data_url": "https://infoshare.stats.govt.nz", + "has_api": false, + "file_path": "countries/oceania/new-zealand/nz-stats.json", + "geographic_scope": "national" + }, + { + "id": "unfpa-china", + "name": { + "en": "UNFPA China", + "zh": "联合国人口基金驻华代表处" + }, + "authority_level": "international", + "data_url": "https://china.unfpa.org/en/publications", + "has_api": false, + "file_path": "international/demographics/unfpa-china.json", + "geographic_scope": "national" + }, + { + "id": "adb-data-library", + "name": { + "en": "Asian Development Bank Data Library", + "zh": "亚洲开发银行数据库" + }, + "authority_level": "international", + "data_url": "https://data.adb.org", + "has_api": true, + "file_path": "international/development/adb-data-library.json", + "geographic_scope": "regional" + }, + { + "id": "afdb-statistics", + "name": { + "en": "African Development Bank Statistics", + "zh": "非洲开发银行统计数据" + }, + "authority_level": "international", + "data_url": "https://dataportal.opendataforafrica.org", + "has_api": true, + "file_path": "international/development/afdb-statistics.json", + "geographic_scope": "regional" + }, + { + "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": "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, + "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", + "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" + }, + { + "id": "undp-hdr", + "name": { + "en": "UNDP Human Development Reports", + "zh": "联合国开发计划署人类发展报告" + }, + "authority_level": "international", + "data_url": "https://hdr.undp.org/data-center", + "has_api": false, + "file_path": "international/development/undp-hdr.json", + "geographic_scope": "global" + }, + { + "id": "adb", + "name": { + "en": "Asian Development Bank Data", + "zh": "亚洲开发银行数据" + }, + "authority_level": "international", + "data_url": "https://www.adb.org/what-we-do/data", + "has_api": false, + "file_path": "international/economics/adb.json", + "geographic_scope": "regional" + }, + { + "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", + "name": { + "en": "World Bank Open Data", + "zh": "世界银行开放数据", + "native": "World Bank Open Data" + }, + "authority_level": "international", + "data_url": "https://data.worldbank.org", + "has_api": true, + "file_path": "international/economics/worldbank.json", + "geographic_scope": "global" + }, + { + "id": "gavi", + "name": { + "en": "GAVI, the Vaccine Alliance", + "zh": "全球疫苗免疫联盟" + }, + "authority_level": "international", + "data_url": "https://www.gavi.org/programmes-impact/our-impact/facts-and-figures", + "has_api": false, + "file_path": "international/health/gavi.json", + "geographic_scope": "global" + }, + { + "id": "who-gho", + "name": { + "en": "WHO Global Health Observatory", + "zh": "世界卫生组织全球卫生观察站" + }, + "authority_level": "international", + "data_url": "https://www.who.int/data/gho/data/indicators", + "has_api": true, + "file_path": "international/health/who-gho.json", + "geographic_scope": "global" + }, + { + "id": "unicef", + "name": { + "en": "UNICEF Data", + "zh": "联合国儿童基金会数据" + }, + "authority_level": "international", + "data_url": "https://data.unicef.org/resources/resource-type/datasets/", + "has_api": true, + "file_path": "international/humanitarian/unicef.json", + "geographic_scope": "global" + } + ], + "health-and-education": [ + { + "id": "afrobarometer", + "name": { + "en": "Afrobarometer", + "zh": "非洲晴雨表" + }, + "authority_level": "research", + "data_url": "https://www.afrobarometer.org/data/", + "has_api": false, + "file_path": "academic/social/afrobarometer.json", + "geographic_scope": "regional" + } + ], + "health-care": [ + { + "id": "canada-cihi", + "name": { + "en": "Canadian Institute for Health Information", + "zh": "加拿大健康信息研究所", + "native": "Institut canadien d'information sur la santé" + }, + "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" + } + ], + "health-economics": [ + { + "id": "china-nhei", + "name": { + "en": "China National Health Development Research Center", + "zh": "国家卫生健康委卫生发展研究中心" + }, + "authority_level": "research", + "data_url": "https://www.nhei.cn", + "has_api": false, + "file_path": "china/health/china-nhei.json", + "geographic_scope": "national" + } + ], + "health-equity": [ + { + "id": "us-cdc", + "name": { + "en": "Centers for Disease Control and Prevention", + "zh": "美国疾病控制与预防中心" + }, + "authority_level": "government", + "data_url": "https://wonder.cdc.gov/", + "has_api": true, + "file_path": "countries/north-america/usa/us-cdc.json", + "geographic_scope": "national" + } + ], + "health-financing": [ + { + "id": "ghdx", + "name": { + "en": "Global Health Data Exchange (GHDx)", + "zh": "全球健康数据交换平台" + }, + "authority_level": "research", + "data_url": "https://ghdx.healthdata.org/", + "has_api": true, + "file_path": "academic/health/ghdx.json", + "geographic_scope": "global" + }, + { + "id": "china-nhei", + "name": { + "en": "China National Health Development Research Center", + "zh": "国家卫生健康委卫生发展研究中心" + }, + "authority_level": "research", + "data_url": "https://www.nhei.cn", + "has_api": false, + "file_path": "china/health/china-nhei.json", + "geographic_scope": "national" + } + ], + "health-policy": [ + { + "id": "china-nhei", + "name": { + "en": "China National Health Development Research Center", + "zh": "国家卫生健康委卫生发展研究中心" + }, + "authority_level": "research", + "data_url": "https://www.nhei.cn", + "has_api": false, + "file_path": "china/health/china-nhei.json", + "geographic_scope": "national" + } + ], + "health-security": [ + { + "id": "africa-cdc", + "name": { + "en": "Africa CDC Health Data", + "zh": "非洲疾控中心健康数据" + }, + "authority_level": "international", + "data_url": "https://africacdc.org", + "has_api": false, + "file_path": "international/health/africa-cdc.json", + "geographic_scope": "regional" + } + ], + "health-spending": [ + { + "id": "canada-cihi", + "name": { + "en": "Canadian Institute for Health Information", + "zh": "加拿大健康信息研究所", + "native": "Institut canadien d'information sur la santé" + }, + "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" + } + ], + "health-system-performance": [ + { + "id": "canada-cihi", + "name": { + "en": "Canadian Institute for Health Information", + "zh": "加拿大健康信息研究所", + "native": "Institut canadien d'information sur la santé" + }, + "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" + } + ], + "health-systems": [ + { + "id": "ghdx", + "name": { + "en": "Global Health Data Exchange (GHDx)", + "zh": "全球健康数据交换平台" + }, + "authority_level": "research", + "data_url": "https://ghdx.healthdata.org/", + "has_api": true, + "file_path": "academic/health/ghdx.json", + "geographic_scope": "global" + }, + { + "id": "china-nhei", + "name": { + "en": "China National Health Development Research Center", + "zh": "国家卫生健康委卫生发展研究中心" + }, + "authority_level": "research", + "data_url": "https://www.nhei.cn", + "has_api": false, + "file_path": "china/health/china-nhei.json", + "geographic_scope": "national" + } + ], + "health-workforce": [ + { + "id": "canada-cihi", + "name": { + "en": "Canadian Institute for Health Information", + "zh": "加拿大健康信息研究所", + "native": "Institut canadien d'information sur la santé" + }, + "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" + } + ], + "healthcare": [ + { + "id": "ena", + "name": { + "en": "European Nucleotide Archive", + "zh": "欧洲核苷酸档案库" + }, + "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-shenzhen-open-data", + "name": { + "en": "Shenzhen Open Data Platform", + "zh": "深圳市政府数据开放平台" + }, + "authority_level": "government", + "data_url": "https://opendata.sz.gov.cn/data/dataSet/toDataList", + "has_api": true, + "file_path": "china/economy/provincial/china-shenzhen-open-data.json", + "geographic_scope": "subnational" + }, + { + "id": "china-hospital-association", + "name": { + "en": "Chinese Hospital Association", + "zh": "中国医院协会" + }, + "authority_level": "other", + "data_url": "https://www.cha.org.cn", + "has_api": false, + "file_path": "china/health/china-hospital-association.json", + "geographic_scope": "national" + }, + { + "id": "china-nhei", + "name": { + "en": "China National Health Development Research Center", + "zh": "国家卫生健康委卫生发展研究中心" + }, + "authority_level": "research", + "data_url": "https://www.nhei.cn", + "has_api": false, + "file_path": "china/health/china-nhei.json", + "geographic_scope": "national" + } + ], + "healthcare-associated-infections": [ + { + "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, + "file_path": "international/health/ecdc-surveillance.json", + "geographic_scope": "regional" + } + ], + "heritage": [ + { + "id": "china-national-museum", + "name": { + "en": "National Museum of China", + "zh": "中国国家博物馆" + }, + "authority_level": "government", + "data_url": "https://www.chnmuseum.cn/zp/zpml/", + "has_api": false, + "file_path": "china/governance/culture/china-national-museum.json", + "geographic_scope": "national" + } + ], + "high-energy-physics": [ + { + "id": "cern-open-data", + "name": { + "en": "CERN Open Data Portal", + "zh": "CERN 开放数据门户" + }, + "authority_level": "research", + "data_url": "https://opendata.cern.ch/", + "has_api": true, + "file_path": "academic/physics/cern-open-data.json", + "geographic_scope": "global" + } + ], + "higher-education": [ + { + "id": "china-gaokao-chsi", + "name": { + "en": "China Postgraduate Admissions Information Network", + "zh": "中国研究生招生信息网" + }, + "authority_level": "government", + "data_url": "https://yz.chsi.com.cn/sch/", + "has_api": false, + "file_path": "china/education/higher_education/china-gaokao-chsi.json", + "geographic_scope": "national" + }, + { + "id": "china-moe-higher-education", + "name": { + "en": "Ministry of Education of China - Higher Education Statistics", + "zh": "中华人民共和国教育部高等教育统计" + }, + "authority_level": "government", + "data_url": "https://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": "moe-china", + "name": { + "en": "Ministry of Education of the People's Republic of China", + "zh": "中华人民共和国教育部" + }, + "authority_level": "government", + "data_url": "https://www.moe.gov.cn/jyb_xxgk/xxgk/neirong/tongji/", + "has_api": false, + "file_path": "china/education/moe-china.json", + "geographic_scope": "national" + }, + { + "id": "moe-gaokao", + "name": { + "en": "Sunshine Gaokao Platform", + "zh": "阳光高考信息平台" + }, + "authority_level": "government", + "data_url": "https://gaokao.chsi.com.cn/", + "has_api": false, + "file_path": "china/education/moe-gaokao.json", + "geographic_scope": "national" + }, + { + "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, + "file_path": "sectors/P-education/arwu.json", + "geographic_scope": "global" + }, + { + "id": "qs-world-university-rankings", + "name": { + "en": "QS World University Rankings", + "zh": "QS世界大学排名" + }, + "authority_level": "market", + "data_url": "https://www.topuniversities.com/world-university-rankings", + "has_api": false, + "file_path": "sectors/P-education/qs-world-university-rankings.json", + "geographic_scope": "global" + } + ], + "history": [ + { + "id": "china-saac", + "name": { + "en": "National Archives Administration of China", + "zh": "中华人民共和国国家档案局" + }, + "authority_level": "government", + "data_url": "https://www.saac.gov.cn/daj/fzgz/lmlist.shtml", + "has_api": false, + "file_path": "china/governance/china-saac.json", + "geographic_scope": "national" + }, + { + "id": "china-national-museum", + "name": { + "en": "National Museum of China", + "zh": "中国国家博物馆" + }, + "authority_level": "government", + "data_url": "https://www.chnmuseum.cn/zp/zpml/", + "has_api": false, + "file_path": "china/governance/culture/china-national-museum.json", + "geographic_scope": "national" + }, + { + "id": "china-cass", + "name": { + "en": "Chinese Academy of Social Sciences", + "zh": "中国社会科学院" + }, + "authority_level": "research", + "data_url": "http://www.cass.ac.cn/list/zw_sscp.html", + "has_api": false, + "file_path": "china/research/china-cass.json", + "geographic_scope": "national" + } + ], + "homelessness": [ + { + "id": "aus-aihw", + "name": { + "en": "Australian Institute of Health and Welfare", + "zh": "澳大利亚健康与福利研究所" + }, + "authority_level": "government", + "data_url": "https://www.aihw.gov.au/", + "has_api": true, + "file_path": "countries/oceania/australia/aihw.json", + "geographic_scope": "national" + } + ], + "hospital-services": [ + { + "id": "canada-cihi", + "name": { + "en": "Canadian Institute for Health Information", + "zh": "加拿大健康信息研究所", + "native": "Institut canadien d'information sur la santé" + }, + "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" + } + ], + "hospitals": [ + { + "id": "aus-aihw", + "name": { + "en": "Australian Institute of Health and Welfare", + "zh": "澳大利亚健康与福利研究所" + }, + "authority_level": "government", + "data_url": "https://www.aihw.gov.au/", + "has_api": true, + "file_path": "countries/oceania/australia/aihw.json", + "geographic_scope": "national" + } + ], + "household": [ + { + "id": "kostat", + "name": { + "en": "Statistics Korea (KOSTAT)", + "zh": "韩国统计厅" + }, + "authority_level": "government", + "data_url": "https://kosis.kr/eng/", + "has_api": true, + "file_path": "countries/asia/kostat.json", + "geographic_scope": "national" + } + ], + "household-income-and-expenditure": [ + { + "id": "dosm", + "name": { + "en": "Department of Statistics Malaysia", + "zh": "马来西亚统计局" + }, + "authority_level": "government", + "data_url": "https://open.dosm.gov.my/", + "has_api": true, + "file_path": "countries/asia/dosm.json", + "geographic_scope": "national" + } + ], + "housing": [ + { + "id": "china-gd-housing", + "name": { + "en": "Guangdong Provincial Department of Housing and Urban-Rural Development", + "zh": "广东省住房和城乡建设厅" + }, + "authority_level": "government", + "data_url": "https://zfcxjst.gd.gov.cn/xxgk/", + "has_api": false, + "file_path": "china/construction/china-gd-housing.json", + "geographic_scope": "subnational" + }, + { + "id": "china-mohurd", + "name": { + "en": "Ministry of Housing and Urban-Rural Development", + "zh": "住房和城乡建设部", + "native": "住房和城乡建设部" + }, + "authority_level": "government", + "data_url": "https://www.mohurd.gov.cn/gongkai/zhengce/", + "has_api": false, + "file_path": "china/construction/china-mohurd.json", + "geographic_scope": "national" + }, + { + "id": "china-shenzhen-housing", + "name": { + "en": "Shenzhen Municipal Housing and Construction Bureau", + "zh": "深圳市住房和建设局" + }, + "authority_level": "government", + "data_url": "https://zjj.sz.gov.cn/xxgk/", + "has_api": false, + "file_path": "china/construction/china-shenzhen-housing.json", + "geographic_scope": "subnational" + }, + { + "id": "cnki-population-census", + "name": { + "en": "CNKI China Population Census Database", + "zh": "中国人口普查数据库" + }, + "authority_level": "commercial", + "data_url": "https://data.cnki.net/npcd", + "has_api": false, + "file_path": "china/national/cnki-population-census.json", + "geographic_scope": "national" + }, + { + "id": "china-chfs", + "name": { + "en": "China Household Finance Survey (CHFS)", + "zh": "中国家庭金融调查(CHFS)" + }, + "authority_level": "research", + "data_url": "https://chfs.swufe.edu.cn", + "has_api": false, + "file_path": "china/research/china-chfs.json", + "geographic_scope": "national" + }, + { + "id": "stats-sa", + "name": { + "en": "Statistics South Africa (Stats SA)", + "zh": "南非统计局", + "native": "Statistics South Africa (Stats SA)" + }, + "authority_level": "government", + "data_url": "https://www.statssa.gov.za/?page_id=1521", + "has_api": false, + "file_path": "countries/africa/south-africa/stats-sa.json", + "geographic_scope": "national" + }, + { + "id": "saudi-gastat", + "name": { + "en": "General Authority for Statistics (GASTAT)", + "zh": "沙特阿拉伯统计总局" + }, + "authority_level": "government", + "data_url": "https://www.stats.gov.sa/statistics", + "has_api": false, + "file_path": "countries/asia/saudi-arabia/saudi-gastat.json", + "geographic_scope": "national" + }, + { + "id": "france-insee", + "name": { + "en": "INSEE - National Institute of Statistics and Economic Studies", + "zh": "法国国家统计与经济研究所", + "native": "Institut national de la statistique et des études économiques" + }, + "authority_level": "government", + "data_url": "https://www.insee.fr/en/statistiques", + "has_api": true, + "file_path": "countries/europe/fr/france-insee.json", + "geographic_scope": "national" + }, + { + "id": "germany-destatis", + "name": { + "en": "Federal Statistical Office of Germany (Destatis)", + "zh": "德国联邦统计局", + "native": "Statistisches Bundesamt (Destatis)" + }, + "authority_level": "government", + "data_url": "https://www.destatis.de/EN/Themes/_node.html", + "has_api": true, + "file_path": "countries/europe/germany/germany-destatis.json", + "geographic_scope": "national" + }, + { + "id": "ireland-cso", + "name": { + "en": "Central Statistics Office (CSO)", + "zh": "爱尔兰中央统计局" + }, + "authority_level": "government", + "data_url": "https://data.cso.ie", + "has_api": true, + "file_path": "countries/europe/ireland/ireland-cso.json", + "geographic_scope": "national" + }, + { + "id": "netherlands-cbs", + "name": { + "en": "Statistics Netherlands (CBS)", + "zh": "荷兰统计局" + }, + "authority_level": "government", + "data_url": "https://opendata.cbs.nl/statline/", + "has_api": true, + "file_path": "countries/europe/netherlands/netherlands-cbs.json", + "geographic_scope": "national" + }, + { + "id": "portugal-ine", + "name": { + "en": "Statistics Portugal (INE)", + "zh": "葡萄牙国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.ine.pt/xportal/xmain?xpid=INE&xpgid=ine_base_dados", + "has_api": true, + "file_path": "countries/europe/portugal/portugal-ine.json", + "geographic_scope": "national" + }, + { + "id": "russia-rosstat", + "name": { + "en": "Federal State Statistics Service (Rosstat)", + "zh": "俄罗斯联邦统计局", + "native": "Федеральная служба государственной статистики (Росстат)" + }, + "authority_level": "government", + "data_url": "https://rosstat.gov.ru/statistics", + "has_api": true, + "file_path": "countries/europe/russia/russia-rosstat.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", + "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" + }, + { + "id": "mexico-inegi", + "name": { + "en": "National Institute of Statistics and Geography (INEGI)", + "zh": "墨西哥国家统计和地理研究所", + "native": "Instituto Nacional de Estadística y Geografía (INEGI)" + }, + "authority_level": "government", + "data_url": "https://www.inegi.org.mx/datos/", + "has_api": true, + "file_path": "countries/north-america/mexico/mexico-inegi.json", + "geographic_scope": "national" + }, + { + "id": "us-census", + "name": { + "en": "U.S. Census Bureau", + "zh": "美国人口普查局" + }, + "authority_level": "government", + "data_url": "https://data.census.gov", + "has_api": true, + "file_path": "countries/north-america/usa/us-census.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": "aus-aihw", + "name": { + "en": "Australian Institute of Health and Welfare", + "zh": "澳大利亚健康与福利研究所" + }, + "authority_level": "government", + "data_url": "https://www.aihw.gov.au/", + "has_api": true, + "file_path": "countries/oceania/australia/aihw.json", + "geographic_scope": "national" + }, + { + "id": "nz-stats", + "name": { + "en": "Statistics New Zealand (Stats NZ)", + "zh": "新西兰统计局" + }, + "authority_level": "government", + "data_url": "https://infoshare.stats.govt.nz", + "has_api": false, + "file_path": "countries/oceania/new-zealand/nz-stats.json", + "geographic_scope": "national" + }, + { + "id": "us-hud", + "name": { + "en": "U.S. Department of Housing and Urban Development", + "zh": "美国住房和城市发展部", + "native": "U.S. Department of Housing and Urban Development" + }, + "authority_level": "government", + "data_url": "https://www.huduser.gov/portal/datasets/", + "has_api": true, + "file_path": "international/construction/us-hud.json", + "geographic_scope": "national" + } + ], + "human-genetic-variation": [ + { + "id": "1000-genomes", + "name": { + "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" + } + ], + "human-rights": [ + { + "id": "afrobarometer", + "name": { + "en": "Afrobarometer", + "zh": "非洲晴雨表" + }, + "authority_level": "research", + "data_url": "https://www.afrobarometer.org/data/", + "has_api": false, + "file_path": "academic/social/afrobarometer.json", + "geographic_scope": "regional" + } + ], + "humanitarian": [ + { + "id": "un-ocha-fts", + "name": { + "en": "UN OCHA Financial Tracking Service", + "zh": "联合国人道主义事务协调厅资金追踪系统" + }, + "authority_level": "international", + "data_url": "https://fts.unocha.org", + "has_api": true, + "file_path": "international/humanitarian/un-ocha-fts.json", + "geographic_scope": "global" + }, + { + "id": "unhcr", + "name": { + "en": "UNHCR Refugee Data Finder", + "zh": "联合国难民署难民数据查询" + }, + "authority_level": "international", + "data_url": "https://www.unhcr.org/refugee-statistics/", + "has_api": true, + "file_path": "international/humanitarian/unhcr.json", + "geographic_scope": "global" + } + ], + "humanitarian-assistance": [ + { + "id": "usaid-ddl", + "name": { + "en": "USAID Development Data Library", + "zh": "美国国际开发署发展数据库" + }, + "authority_level": "government", + "data_url": "https://data.usaid.gov", + "has_api": true, + "file_path": "countries/north-america/usa/usaid-ddl.json", + "geographic_scope": "global" + } + ], + "hydrogeology": [ + { + "id": "china-cgs", + "name": { + "en": "China Geological Survey (CGS)", + "zh": "中国地质调查局" + }, + "authority_level": "government", + "data_url": "https://geocloud.cgs.gov.cn", + "has_api": false, + "file_path": "countries/cn/geology/cgs.json", + "geographic_scope": "national" + } + ], + "hydrology": [ + { + "id": "china-tpdc", + "name": { + "en": "National Tibetan Plateau Data Center", + "zh": "国家青藏高原科学数据中心" + }, + "authority_level": "research", + "data_url": "https://data.tpdc.ac.cn", + "has_api": false, + "file_path": "china/research/china-tpdc.json", + "geographic_scope": "regional" + }, + { + "id": "china-iwhr", + "name": { + "en": "China Institute of Water Resources and Hydropower Research", + "zh": "中国水利水电科学研究院" + }, + "authority_level": "research", + "data_url": "http://www.iwhr.com/", + "has_api": false, + "file_path": "china/resources/water/china-iwhr.json", + "geographic_scope": "national" + }, + { + "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" + } + ], + "ict": [ + { + "id": "unctad-infrastructure-statistics", + "name": { + "en": "UNCTAD Infrastructure Statistics Database", + "zh": "联合国贸发会议基础设施统计数据库" + }, + "authority_level": "international", + "data_url": "https://unctadstat.unctad.org/datacentre", + "has_api": true, + "file_path": "international/infrastructure/unctad-infrastructure-statistics.json", + "geographic_scope": "global" + } + ], + "image-classification": [ + { + "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, + "file_path": "sectors/J-information-communication/cifar.json", + "geographic_scope": "global" + }, + { + "id": "imagenet", + "name": { + "en": "ImageNet", + "zh": "ImageNet 图像数据库" + }, + "authority_level": "research", + "data_url": "https://www.image-net.org", + "has_api": false, + "file_path": "sectors/J-information-communication/imagenet.json", + "geographic_scope": "global" + } + ], + "imaging": [ + { + "id": "aws-open-data-registry", + "name": { + "en": "Registry of Open Data on AWS", + "zh": "AWS开放数据注册表" + }, + "authority_level": "commercial", + "data_url": "https://registry.opendata.aws/", + "has_api": false, + "file_path": "sectors/computer_science_ai/aws-open-data-registry.json", + "geographic_scope": "global" + } + ], + "immunization": [ + { + "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, + "file_path": "international/health/ecdc-surveillance.json", + "geographic_scope": "regional" + }, + { + "id": "gavi", + "name": { + "en": "GAVI, the Vaccine Alliance", + "zh": "全球疫苗免疫联盟" + }, + "authority_level": "international", + "data_url": "https://www.gavi.org/programmes-impact/our-impact/facts-and-figures", + "has_api": false, + "file_path": "international/health/gavi.json", + "geographic_scope": "global" + } + ], + "import-export": [ + { + "id": "gdvc", + "name": { + "en": "General Department of Vietnam Customs", + "zh": "越南海关总局" + }, + "authority_level": "government", + "data_url": "https://www.customs.gov.vn", + "has_api": false, + "file_path": "countries/asia/vietnam/gdvc.json", + "geographic_scope": "national" + } + ], + "import-statistics": [ + { + "id": "india-dgcis", + "name": { + "en": "Directorate General of Commercial Intelligence and Statistics", + "zh": "印度商业情报与统计总局" + }, + "authority_level": "government", + "data_url": "https://www.commerce.gov.in/trade-statistics/", + "has_api": false, + "file_path": "countries/asia/india/india-dgcis.json", + "geographic_scope": "national" + } + ], + "income": [ + { + "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" + } + ], + "indices": [ + { + "id": "china-csi-index", + "name": { + "en": "China Securities Index Co., Ltd.", + "zh": "中证指数有限公司" + }, + "authority_level": "market", + "data_url": "https://www.csindex.com.cn/#/indices/family/list", + "has_api": false, + "file_path": "china/finance/china-csi-index.json", + "geographic_scope": "national" + }, + { + "id": "akshare", + "name": { + "en": "AkShare", + "zh": "AkShare" + }, + "authority_level": "other", + "data_url": "https://github.com/akfamily/akshare", + "has_api": true, + "file_path": "sectors/K-finance-insurance/akshare.json", + "geographic_scope": "global" + } + ], + "indigenous-health": [ + { + "id": "aus-aihw", + "name": { + "en": "Australian Institute of Health and Welfare", + "zh": "澳大利亚健康与福利研究所" + }, + "authority_level": "government", + "data_url": "https://www.aihw.gov.au/", + "has_api": true, + "file_path": "countries/oceania/australia/aihw.json", + "geographic_scope": "national" + } + ], + "industrial-automation": [ + { + "id": "china-robot-industry-alliance", + "name": { + "en": "Robot Branch of China Machinery Industry Federation", + "zh": "中国机械工业联合会机器人分会" + }, + "authority_level": "market", + "data_url": "https://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": "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" + } + ], + "industrial-economics": [ + { + "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, + "file_path": "sectors/B-mining/rare-earth/china-rare-earth-association.json", + "geographic_scope": "national" + } + ], + "industrial-equipment": [ + { + "id": "china-csei", + "name": { + "en": "China Special Equipment Inspection and Research Institute", + "zh": "中国特种设备检测研究院" + }, + "authority_level": "research", + "data_url": "https://www.csei.org.cn", + "has_api": false, + "file_path": "china/industry/china-csei.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": "sectors/C-manufacturing/machinery/china-machine-tool-association.json", + "geographic_scope": "national" + } + ], + "industrial-statistics": [ + { + "id": "china-additive-manufacturing-alliance", + "name": { + "en": "China Additive Manufacturing Alliance", + "zh": "中国增材制造产业联盟" + }, + "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", + "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-petroleum-chemical-federation", + "name": { + "en": "China Petroleum and Chemical Industry Federation", + "zh": "中国石油和化学工业联合会" + }, + "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" + } + ], + "industry": [ + { + "id": "china-ccia", + "name": { + "en": "China Construction Industry Association", + "zh": "中国建筑业协会" + }, + "authority_level": "other", + "data_url": "http://www.zgjzy.org.cn/newsList/11/1.html", + "has_api": false, + "file_path": "china/construction/china-ccia.json", + "geographic_scope": "national" + }, + { + "id": "china-cfeed", + "name": { + "en": "China Feed Industry Association", + "zh": "中国饲料工业协会" + }, + "authority_level": "other", + "data_url": "https://www.chinafeed.org.cn/hyfx/", + "has_api": false, + "file_path": "china/economy/agriculture/china-cfeed.json", + "geographic_scope": "national" + }, + { + "id": "china-acfic", + "name": { + "en": "All-China Federation of Industry and Commerce", + "zh": "中华全国工商业联合会" + }, + "authority_level": "other", + "data_url": "https://www.acfic.org.cn/myjjsj/", + "has_api": false, + "file_path": "china/economy/china-acfic.json", + "geographic_scope": "national" + }, + { + "id": "china-cada", + "name": { + "en": "China Automobile Dealers Association", + "zh": "中国汽车流通协会" + }, + "authority_level": "other", + "data_url": "http://data.cada.cn/main/overview.do", + "has_api": false, + "file_path": "china/economy/china-cada.json", + "geographic_scope": "national" + }, + { + "id": "china-cansi", + "name": { + "en": "China Association of the National Shipbuilding Industry", + "zh": "中国船舶工业行业协会" + }, + "authority_level": "other", + "data_url": "https://www.cansi.org.cn/cms/document/show/43.html", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cansi.json", + "geographic_scope": "national" + }, + { + "id": "china-cbmf", + "name": { + "en": "China Building Materials Federation", + "zh": "中国建筑材料联合会" + }, + "authority_level": "other", + "data_url": "https://www.cbmf.org/yxjc/", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cbmf.json", + "geographic_scope": "national" + }, + { + "id": "china-ccfa", + "name": { + "en": "China Chemical Fiber Industry Association", + "zh": "中国化学纤维工业协会" + }, + "authority_level": "other", + "data_url": "https://www.ccfa.com.cn/19/index.html", + "has_api": false, + "file_path": "china/economy/industry_associations/china-ccfa.json", + "geographic_scope": "national" + }, + { + "id": "china-cheaa", + "name": { + "en": "China Household Electrical Appliances Association", + "zh": "中国家用电器协会" + }, + "authority_level": "other", + "data_url": "https://www.cheaa.org/channels/116.html", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cheaa.json", + "geographic_scope": "national" + }, + { + "id": "china-cnea", + "name": { + "en": "China Nuclear Energy Association", + "zh": "中国核能行业协会" + }, + "authority_level": "other", + "data_url": "https://www.china-nea.cn/", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cnea.json", + "geographic_scope": "national" + }, + { + "id": "china-cppia", + "name": { + "en": "China Plastics Processing Industry Association", + "zh": "中国塑料加工工业协会" + }, + "authority_level": "market", + "data_url": "http://www.cppia.com.cn", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cppia.json", + "geographic_scope": "national" + }, + { + "id": "china-cria", + "name": { + "en": "China Rubber Industry Association", + "zh": "中国橡胶工业协会" + }, + "authority_level": "other", + "data_url": "https://www.cria.org.cn/c/id/1760910256413655041", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cria.json", + "geographic_scope": "national" + }, + { + "id": "china-furniture-association", + "name": { + "en": "China National Furniture Association", + "zh": "中国家具协会" + }, + "authority_level": "market", + "data_url": "https://www.cnfa.com.cn", + "has_api": false, + "file_path": "china/economy/industry_associations/china-furniture-association.json", + "geographic_scope": "national" + }, + { + "id": "china-gas-association", + "name": { + "en": "China Gas Association", + "zh": "中国燃气协会" + }, + "authority_level": "other", + "data_url": "https://www.chinagas.org.cn", + "has_api": false, + "file_path": "china/economy/industry_associations/china-gas-association.json", + "geographic_scope": "national" + }, + { + "id": "china-light-industry-council", + "name": { + "en": "China National Light Industry Council", + "zh": "中国轻工业联合会" + }, + "authority_level": "market", + "data_url": "http://www.cnlic.org.cn", + "has_api": false, + "file_path": "china/economy/industry_associations/china-light-industry-council.json", + "geographic_scope": "national" + }, + { + "id": "china-tea-marketing-association", + "name": { + "en": "China Tea Marketing Association", + "zh": "中国茶叶流通协会" + }, + "authority_level": "market", + "data_url": "https://www.ctma.com.cn", + "has_api": false, + "file_path": "china/economy/industry_associations/china-tea-marketing-association.json", + "geographic_scope": "national" + }, + { + "id": "china-sasac", + "name": { + "en": "State-owned Assets Supervision and Administration Commission of the State Council", + "zh": "国务院国有资产监督管理委员会" + }, + "authority_level": "government", + "data_url": "https://www.sasac.gov.cn/n2588030/index.html", + "has_api": false, + "file_path": "china/economy/macro/china-sasac.json", + "geographic_scope": "national" + }, + { + "id": "china-cgcc", + "name": { + "en": "China General Chamber of Commerce", + "zh": "中国商业联合会" + }, + "authority_level": "other", + "data_url": "https://www.cgcc.org.cn/hyfz/zglsyfzzs/", + "has_api": false, + "file_path": "china/economy/market/china-cgcc.json", + "geographic_scope": "national" + }, + { + "id": "china-samr", + "name": { + "en": "State Administration for Market Regulation", + "zh": "国家市场监督管理总局", + "native": "国家市场监督管理总局" + }, + "authority_level": "government", + "data_url": "https://www.samr.gov.cn/zw/sj/sjzx/", + "has_api": false, + "file_path": "china/economy/market/china-samr.json", + "geographic_scope": "national" + }, + { + "id": "china-ah-stats", + "name": { + "en": "Anhui Bureau of Statistics", + "zh": "安徽省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.ah.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-ah-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-chengdu-stats", + "name": { + "en": "Chengdu Bureau of Statistics", + "zh": "成都市统计局" + }, + "authority_level": "government", + "data_url": "http://cdstats.chengdu.gov.cn/", + "has_api": false, + "file_path": "china/economy/provincial/china-chengdu-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-fuzhou-stats", + "name": { + "en": "Fuzhou Bureau of Statistics", + "zh": "福州市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.fuzhou.gov.cn", + "has_api": false, + "file_path": "china/economy/provincial/china-fuzhou-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-hb-stats", + "name": { + "en": "Hubei Bureau of Statistics", + "zh": "湖北省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.hubei.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-hb-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-heb-stats", + "name": { + "en": "Hebei Bureau of Statistics", + "zh": "河北省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.hebei.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-heb-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-js-stats", + "name": { + "en": "Jiangsu Bureau of Statistics", + "zh": "江苏省统计局" + }, + "authority_level": "government", + "data_url": "https://tj.jiangsu.gov.cn/col/col85273/index.html", + "has_api": false, + "file_path": "china/economy/provincial/china-js-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-ln-stats", + "name": { + "en": "Liaoning Bureau of Statistics", + "zh": "辽宁省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.ln.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-ln-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-nanchang-stats", + "name": { + "en": "Nanchang Bureau of Statistics", + "zh": "南昌市统计局" + }, + "authority_level": "government", + "data_url": "http://tjj.nc.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-nanchang-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-nanjing-stats", + "name": { + "en": "Nanjing Bureau of Statistics", + "zh": "南京市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.nanjing.gov.cn/", + "has_api": false, + "file_path": "china/economy/provincial/china-nanjing-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-sc-stats", + "name": { + "en": "Sichuan Bureau of Statistics", + "zh": "四川省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.sc.gov.cn/scstjj/c112124/sjcx.shtml", + "has_api": false, + "file_path": "china/economy/provincial/china-sc-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-suzhou-stats", + "name": { + "en": "Suzhou Bureau of Statistics", + "zh": "苏州市统计局" + }, + "authority_level": "government", + "data_url": "http://tjj.suzhou.gov.cn/", + "has_api": false, + "file_path": "china/economy/provincial/china-suzhou-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-sx-stats", + "name": { + "en": "Shanxi Bureau of Statistics", + "zh": "山西省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.shanxi.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-sx-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-wuhan-stats", + "name": { + "en": "Wuhan Bureau of Statistics", + "zh": "武汉市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.wuhan.gov.cn/zfxxgk/", + "has_api": false, + "file_path": "china/economy/provincial/china-wuhan-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-xian-stats", + "name": { + "en": "Xi'an Bureau of Statistics", + "zh": "西安市统计局" + }, + "authority_level": "government", + "data_url": "http://tjj.xa.gov.cn/", + "has_api": false, + "file_path": "china/economy/provincial/china-xian-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-zhengzhou-stats", + "name": { + "en": "Zhengzhou Bureau of Statistics", + "zh": "郑州市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.zhengzhou.gov.cn/tjsj/index.jhtml", + "has_api": false, + "file_path": "china/economy/provincial/china-zhengzhou-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-zj-stats", + "name": { + "en": "Zhejiang Bureau of Statistics", + "zh": "浙江省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.zj.gov.cn/col/col1525563/index.html", + "has_api": false, + "file_path": "china/economy/provincial/china-zj-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-cccme", + "name": { + "en": "China Chamber of Commerce for Import and Export of Machinery and Electronic Products", + "zh": "中国机电产品进出口商会" + }, + "authority_level": "other", + "data_url": "https://www.cccme.org.cn/shop/cccme-stat/index.aspx", + "has_api": false, + "file_path": "china/economy/trade/china-cccme.json", + "geographic_scope": "national" + }, + { + "id": "china-cflp", + "name": { + "en": "China Federation of Logistics and Purchasing", + "zh": "中国物流与采购联合会" + }, + "authority_level": "other", + "data_url": "https://www.chinawuliu.com.cn/lhhzq/", + "has_api": false, + "file_path": "china/economy/trade/china-cflp.json", + "geographic_scope": "national" + }, + { + "id": "china-shfe", + "name": { + "en": "Shanghai Futures Exchange", + "zh": "上海期货交易所" + }, + "authority_level": "market", + "data_url": "https://www.shfe.com.cn/reports/tradedata/dailyandweeklydata/", + "has_api": false, + "file_path": "china/finance/capital-markets/china-shfe.json", + "geographic_scope": "national" + }, + { + "id": "china-cnas", + "name": { + "en": "China National Accreditation Service for Conformity Assessment", + "zh": "中国合格评定国家认可委员会" + }, + "authority_level": "government", + "data_url": "https://www.cnas.org.cn/", + "has_api": false, + "file_path": "china/governance/china-cnas.json", + "geographic_scope": "national" + }, + { + "id": "china-cnca", + "name": { + "en": "China National Accreditation Service for Conformity Assessment", + "zh": "中国国家认证认可监督管理委员会" + }, + "authority_level": "government", + "data_url": "https://www.cnca.gov.cn", + "has_api": false, + "file_path": "china/governance/china-cnca.json", + "geographic_scope": "national" + }, + { + "id": "china-stma", + "name": { + "en": "State Tobacco Monopoly Administration of China", + "zh": "国家烟草专卖局" + }, + "authority_level": "government", + "data_url": "https://www.tobacco.gov.cn/html/42/index.html", + "has_api": false, + "file_path": "china/governance/china-stma.json", + "geographic_scope": "national" + }, + { + "id": "china-hospital-association", + "name": { + "en": "Chinese Hospital Association", + "zh": "中国医院协会" + }, + "authority_level": "other", + "data_url": "https://www.cha.org.cn", + "has_api": false, + "file_path": "china/health/china-hospital-association.json", + "geographic_scope": "national" + }, + { + "id": "china-phirda", + "name": { + "en": "China Pharmaceutical Innovation and Research Development Association", + "zh": "中国医药创新促进会" + }, + "authority_level": "other", + "data_url": "https://www.phirda.com", + "has_api": false, + "file_path": "china/health/china-phirda.json", + "geographic_scope": "national" + }, + { + "id": "china-ceeia", + "name": { + "en": "China Electrical Equipment Industry Association", + "zh": "中国电器工业协会" + }, + "authority_level": "commercial", + "data_url": "https://www.ceeia.com", + "has_api": false, + "file_path": "china/industry/china-ceeia.json", + "geographic_scope": "national" + }, + { + "id": "china-miit-eidc", + "name": { + "en": "MIIT Equipment Industry Development Center", + "zh": "工业和信息化部装备工业发展中心" + }, + "authority_level": "government", + "data_url": "https://www.miit-eidc.org.cn/", + "has_api": false, + "file_path": "china/industry/china-miit-eidc.json", + "geographic_scope": "national" + }, + { + "id": "china-cata", + "name": { + "en": "China Air Transport Association", + "zh": "中国航空运输协会" + }, + "authority_level": "other", + "data_url": "https://www.cata.org.cn/NewsList.aspx?id=11", + "has_api": false, + "file_path": "china/infrastructure/china-cata.json", + "geographic_scope": "national" + }, + { + "id": "china-spb", + "name": { + "en": "State Post Bureau of China", + "zh": "国家邮政局" + }, + "authority_level": "government", + "data_url": "https://www.spb.gov.cn/gjyzj/c100009/c100014/xxgk_index.shtml", + "has_api": false, + "file_path": "china/infrastructure/china-spb.json", + "geographic_scope": "national" + }, + { + "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": "china/national/nbs.json", + "geographic_scope": "national" + }, + { + "id": "china-cisri", + "name": { + "en": "China Iron & Steel Research Institute Group", + "zh": "中国钢研科技集团有限公司" + }, + "authority_level": "research", + "data_url": "https://www.cisri.com.cn", + "has_api": false, + "file_path": "china/research/china-cisri.json", + "geographic_scope": "national" + }, + { + "id": "china-caea", + "name": { + "en": "China National Nuclear Safety Administration", + "zh": "国家原子能机构" + }, + "authority_level": "government", + "data_url": "https://www.caea.gov.cn", + "has_api": false, + "file_path": "china/resources/china-caea.json", + "geographic_scope": "national" + }, + { + "id": "china-cace", + "name": { + "en": "China Association of Circular Economy", + "zh": "中国循环经济协会" + }, + "authority_level": "other", + "data_url": "https://www.chinacace.org/patents/cycle_economy_report/", + "has_api": false, + "file_path": "china/resources/environment/china-cace.json", + "geographic_scope": "national" + }, + { + "id": "china-cnesa", + "name": { + "en": "China Energy Storage Alliance", + "zh": "中关村储能产业技术联盟" + }, + "authority_level": "other", + "data_url": "https://www.cnesa.org", + "has_api": false, + "file_path": "china/resources/environment/china-cnesa.json", + "geographic_scope": "national" + }, + { + "id": "china-crra", + "name": { + "en": "China Association of Circular Economy", + "zh": "中国再生资源回收利用协会" + }, + "authority_level": "other", + "data_url": "https://www.crra.org.cn", + "has_api": false, + "file_path": "china/resources/environment/china-crra.json", + "geographic_scope": "national" + }, + { + "id": "china-chinalco", + "name": { + "en": "Aluminum Corporation of China (Chinalco)", + "zh": "中国铝业集团有限公司" + }, + "authority_level": "commercial", + "data_url": "https://www.chinalco.com.cn", + "has_api": false, + "file_path": "china/resources/mineral/china-chinalco.json", + "geographic_scope": "national" + }, + { + "id": "china-cnia", + "name": { + "en": "China Nonferrous Metals Industry Association", + "zh": "中国有色金属工业协会" + }, + "authority_level": "other", + "data_url": "https://www.chinania.org.cn/html/hangyetongji/chanyeshuju/", + "has_api": false, + "file_path": "china/resources/mineral/china-cnia.json", + "geographic_scope": "national" + }, + { + "id": "china-miit-rare-earth", + "name": { + "en": "MIIT Rare Earth Office - Rare Earth Industry Regulation and Production Quotas", + "zh": "工业和信息化部稀土办公室 - 稀土行业规范与生产配额" + }, + "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": "china-automation-association", + "name": { + "en": "Chinese Association of Automation", + "zh": "中国自动化学会" + }, + "authority_level": "other", + "data_url": "https://www.caa.org.cn/", + "has_api": false, + "file_path": "china/technology/industry_associations/china-automation-association.json", + "geographic_scope": "national" + }, + { + "id": "china-caam", + "name": { + "en": "China Association of Automobile Manufacturers", + "zh": "中国汽车工业协会" + }, + "authority_level": "other", + "data_url": "http://www.caam.org.cn/chn/4/cate_39/index.html", + "has_api": false, + "file_path": "china/technology/industry_associations/china-caam.json", + "geographic_scope": "national" + }, + { + "id": "china-caamm", + "name": { + "en": "China Association of Agricultural Machinery Manufacturers", + "zh": "中国农业机械工业协会" + }, + "authority_level": "other", + "data_url": "http://www.caamm.org.cn/member/qytj.jspx", + "has_api": false, + "file_path": "china/technology/industry_associations/china-caamm.json", + "geographic_scope": "national" + }, + { + "id": "china-cec", + "name": { + "en": "China Electricity Council", + "zh": "中国电力企业联合会" + }, + "authority_level": "other", + "data_url": "https://www.cec.org.cn/detail/index.html?3-302929", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cec.json", + "geographic_scope": "national" + }, + { + "id": "china-cemia", + "name": { + "en": "China Electronic Materials Industry Association", + "zh": "中国电子材料行业协会" + }, + "authority_level": "other", + "data_url": "http://www.cemia.org.cn", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cemia.json", + "geographic_scope": "national" + }, + { + "id": "china-ciesc", + "name": { + "en": "Chemical Industry and Engineering Society of China", + "zh": "中国化工学会" + }, + "authority_level": "research", + "data_url": "https://www.ciesc.cn", + "has_api": false, + "file_path": "china/technology/industry_associations/china-ciesc.json", + "geographic_scope": "national" + }, + { + "id": "china-ciia", + "name": { + "en": "China Information Association", + "zh": "中国信息协会" + }, + "authority_level": "other", + "data_url": "https://www.ciia.org.cn", + "has_api": false, + "file_path": "china/technology/industry_associations/china-ciia.json", + "geographic_scope": "national" + }, + { + "id": "china-cima", + "name": { + "en": "China Instrumentation and Measurement Society", + "zh": "中国仪器仪表行业协会" + }, + "authority_level": "other", + "data_url": "http://www.cima.org.cn", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cima.json", + "geographic_scope": "national" + }, + { + "id": "china-cisa", + "name": { + "en": "China Iron and Steel Association", + "zh": "中国钢铁工业协会" + }, + "authority_level": "other", + "data_url": "https://www.chinaisa.org.cn/gxportal/xfgl/portal/index.html", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cisa.json", + "geographic_scope": "national" + }, + { + "id": "china-cmes", + "name": { + "en": "Chinese Mechanical Engineering Society", + "zh": "中国机械工程学会" + }, + "authority_level": "research", + "data_url": "https://www.cmes.org", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cmes.json", + "geographic_scope": "national" + }, + { + "id": "china-cnfia", + "name": { + "en": "China National Food Industry Association", + "zh": "中国食品工业协会" + }, + "authority_level": "other", + "data_url": "https://www.cnfia.cn/archives/category/hangyetongji", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cnfia.json", + "geographic_scope": "national" + }, + { + "id": "china-cntac", + "name": { + "en": "China National Textile and Apparel Council", + "zh": "中国纺织工业联合会" + }, + "authority_level": "other", + "data_url": "https://www.cntac.org.cn/jinghua", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cntac.json", + "geographic_scope": "national" + }, + { + "id": "china-cpcif", + "name": { + "en": "China Petroleum and Chemical Industry Federation", + "zh": "中国石油和化学工业联合会" + }, + "authority_level": "other", + "data_url": "http://www.cpcif.org.cn/list/stats", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cpcif.json", + "geographic_scope": "national" + }, + { + "id": "china-cpia", + "name": { + "en": "China Photovoltaic Industry Association", + "zh": "中国光伏行业协会" + }, + "authority_level": "other", + "data_url": "https://www.chinapv.org.cn/StaticPage/association_page1.html", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cpia.json", + "geographic_scope": "national" + }, + { + "id": "china-csre", + "name": { + "en": "China Society of Rare Earths", + "zh": "中国稀土学会" + }, + "authority_level": "other", + "data_url": "http://www.cs-re.org.cn/c50", + "has_api": false, + "file_path": "china/technology/industry_associations/china-csre.json", + "geographic_scope": "national" + }, + { + "id": "china-cwea", + "name": { + "en": "Chinese Wind Energy Association", + "zh": "中国可再生能源学会风能专业委员会" + }, + "authority_level": "other", + "data_url": "http://www.cwea.org.cn/news_lastest.html", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cwea.json", + "geographic_scope": "national" + }, + { + "id": "china-cnis", + "name": { + "en": "China National Institute of Standardization", + "zh": "中国标准化研究院" + }, + "authority_level": "government", + "data_url": "https://www.cnis.ac.cn/kycg/", + "has_api": false, + "file_path": "china/technology/standards/china-cnis.json", + "geographic_scope": "national" + }, + { + "id": "china-csa", + "name": { + "en": "China Association for Standardization", + "zh": "中国标准化协会" + }, + "authority_level": "other", + "data_url": "https://www.china-cas.org", + "has_api": false, + "file_path": "china/technology/standards/china-csa.json", + "geographic_scope": "national" + }, + { + "id": "china-openstd", + "name": { + "en": "China National Standards Full Text Public Access System", + "zh": "国家标准全文公开系统" + }, + "authority_level": "government", + "data_url": "https://openstd.samr.gov.cn/", + "has_api": false, + "file_path": "china/technology/standards/china-openstd.json", + "geographic_scope": "national" + }, + { + "id": "china-miit", + "name": { + "en": "Ministry of Industry and Information Technology of the People's Republic of China", + "zh": "中华人民共和国工业和信息化部" + }, + "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": "india-mospi", + "name": { + "en": "Ministry of Statistics and Programme Implementation (MoSPI)", + "zh": "印度统计与计划实施部", + "native": "सांख्यिकी और कार्यक्रम कार्यान्वयन मंत्रालय" + }, + "authority_level": "government", + "data_url": "https://mospi.gov.in/data", + "has_api": false, + "file_path": "countries/asia/india/india-mospi.json", + "geographic_scope": "national" + }, + { + "id": "indonesia-bps", + "name": { + "en": "Statistics Indonesia (BPS)", + "zh": "印度尼西亚中央统计局", + "native": "Badan Pusat Statistik" + }, + "authority_level": "government", + "data_url": "https://www.bps.go.id/en/statistics-table", + "has_api": true, + "file_path": "countries/asia/indonesia/indonesia-bps.json", + "geographic_scope": "national" + }, + { + "id": "japan-meti", + "name": { + "en": "Ministry of Economy, Trade and Industry (Japan)", + "zh": "日本经济产业省", + "native": "経済産業省" + }, + "authority_level": "government", + "data_url": "https://www.meti.go.jp/english/statistics/index.html", + "has_api": false, + "file_path": "countries/asia/japan/japan-meti.json", + "geographic_scope": "national" + }, + { + "id": "kostat", + "name": { + "en": "Statistics Korea (KOSTAT)", + "zh": "韩国统计厅" + }, + "authority_level": "government", + "data_url": "https://kosis.kr/eng/", + "has_api": true, + "file_path": "countries/asia/kostat.json", + "geographic_scope": "national" + }, + { + "id": "saudi-gastat", + "name": { + "en": "General Authority for Statistics (GASTAT)", + "zh": "沙特阿拉伯统计总局" + }, + "authority_level": "government", + "data_url": "https://www.stats.gov.sa/statistics", + "has_api": false, + "file_path": "countries/asia/saudi-arabia/saudi-gastat.json", + "geographic_scope": "national" + }, + { + "id": "vietnam-gso", + "name": { + "en": "General Statistics Office of Vietnam", + "zh": "越南统计总局" + }, + "authority_level": "government", + "data_url": "https://www.nso.gov.vn/en/statistical-data/", + "has_api": false, + "file_path": "countries/asia/vietnam/gso.json", + "geographic_scope": "national" + }, + { + "id": "bulgaria-nsi", + "name": { + "en": "National Statistical Institute of Bulgaria (NSI)", + "zh": "保加利亚国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.nsi.bg/en/content/2666/statisticsdatabases", + "has_api": false, + "file_path": "countries/europe/bulgaria/bulgaria-nsi.json", + "geographic_scope": "national" + }, + { + "id": "france-insee", + "name": { + "en": "INSEE - National Institute of Statistics and Economic Studies", + "zh": "法国国家统计与经济研究所", + "native": "Institut national de la statistique et des études économiques" + }, + "authority_level": "government", + "data_url": "https://www.insee.fr/en/statistiques", + "has_api": true, + "file_path": "countries/europe/fr/france-insee.json", + "geographic_scope": "national" + }, + { + "id": "hungary-ksh", + "name": { + "en": "Hungarian Central Statistical Office", + "zh": "匈牙利中央统计局" + }, + "authority_level": "government", + "data_url": "https://www.ksh.hu/engstadat", + "has_api": true, + "file_path": "countries/europe/hungary/hungary-ksh.json", + "geographic_scope": "national" + }, + { + "id": "romania-ins", + "name": { + "en": "National Institute of Statistics (Romania)", + "zh": "罗马尼亚国家统计局" + }, + "authority_level": "government", + "data_url": "https://insse.ro/cms/en/statistici-2", + "has_api": true, + "file_path": "countries/europe/romania/romania-ins.json", + "geographic_scope": "national" + }, + { + "id": "russia-rosstat", + "name": { + "en": "Federal State Statistics Service (Rosstat)", + "zh": "俄罗斯联邦统计局", + "native": "Федеральная служба государственной статистики (Росстат)" + }, + "authority_level": "government", + "data_url": "https://rosstat.gov.ru/statistics", + "has_api": true, + "file_path": "countries/europe/russia/russia-rosstat.json", + "geographic_scope": "national" + }, + { + "id": "slovenia-surs", + "name": { + "en": "Statistical Office of the Republic of Slovenia (SURS)", + "zh": "斯洛文尼亚共和国统计局" + }, + "authority_level": "government", + "data_url": "https://www.stat.si/StatWeb/en", + "has_api": true, + "file_path": "countries/europe/slovenia/slovenia-surs.json", + "geographic_scope": "national" + }, + { + "id": "brazil-mdic-secex", + "name": { + "en": "Brazil Ministry of Development, Industry, Commerce and Services - Foreign Trade Secretariat", + "zh": "巴西发展、工业、商业和服务部外贸秘书处" + }, + "authority_level": "government", + "data_url": "https://comexstat.mdic.gov.br/en/home", + "has_api": true, + "file_path": "countries/south-america/brazil/brazil-mdic-secex.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": "peru-inei", + "name": { + "en": "National Institute of Statistics and Informatics of Peru (INEI)", + "zh": "秘鲁国家统计和信息学研究所" + }, + "authority_level": "government", + "data_url": "https://www.inei.gob.pe/estadisticas/", + "has_api": false, + "file_path": "countries/south-america/peru/peru-inei.json", + "geographic_scope": "national" + }, + { + "id": "ceic-global-database", + "name": { + "en": "CEIC Global Database", + "zh": "环亚经济数据库" + }, + "authority_level": "commercial", + "data_url": "https://www.ceicdata.com/en/products/global-economic-database", + "has_api": true, + "file_path": "international/economics/ceic-global-database.json", + "geographic_scope": "global" + }, + { + "id": "ceic-vietnam", + "name": { + "en": "CEIC Vietnam Economic Database", + "zh": "环亚经济数据库 - 越南经济数据专题" + }, + "authority_level": "commercial", + "data_url": "https://www.ceicdata.com/en/country/vietnam", + "has_api": true, + "file_path": "international/economics/ceic-vietnam.json", + "geographic_scope": "national" + }, + { + "id": "eurostat", + "name": { + "en": "Eurostat - Statistical Office of the European Union", + "zh": "欧盟统计局", + "native": "Eurostat" + }, + "authority_level": "international", + "data_url": "https://ec.europa.eu/eurostat/databrowser/explore/all/all_themes", + "has_api": true, + "file_path": "international/economics/eurostat.json", + "geographic_scope": "regional" + }, + { + "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" + } + ], + "industry-analysis": [ + { + "id": "china-drcnet", + "name": { + "en": "DRCNET - Development Research Center Network", + "zh": "国研网" + }, + "authority_level": "research", + "data_url": "https://www.drcnet.com.cn", + "has_api": false, + "file_path": "china/economy/macro/china-drcnet.json", + "geographic_scope": "national" + } + ], + "industry-and-construction": [ + { + "id": "gso-vietnam", + "name": { + "en": "General Statistics Office of Vietnam", + "zh": "越南国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.gso.gov.vn/en/data-and-statistics/", + "has_api": false, + "file_path": "countries/asia/vietnam/gso-vietnam.json", + "geographic_scope": "national" + } + ], + "industry-associations": [ + { + "id": "china-cagis", + "name": { + "en": "China Association for Geographic Information Industry", + "zh": "中国地理信息产业协会" + }, + "authority_level": "research", + "data_url": "https://www.cagis.org.cn", + "has_api": false, + "file_path": "china/technology/industry-associations/china-cagis.json", + "geographic_scope": "national" + } + ], + "industry-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", + "geographic_scope": "national" + } + ], + "industry-standards": [ + { + "id": "china-petroleum-chemical-federation", + "name": { + "en": "China Petroleum and Chemical Industry Federation", + "zh": "中国石油和化学工业联合会" + }, + "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" + } + ], + "industry-statistics": [ + { + "id": "us-bls", + "name": { + "en": "Bureau of Labor Statistics", + "zh": "劳工统计局" + }, + "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": "china-robot-industry-alliance", + "name": { + "en": "Robot Branch of China Machinery Industry Federation", + "zh": "中国机械工业联合会机器人分会" + }, + "authority_level": "market", + "data_url": "https://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" + } + ], + "inequality": [ + { + "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", + "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" + } + ], + "infectious-diseases": [ + { + "id": "us-cdc", + "name": { + "en": "Centers for Disease Control and Prevention", + "zh": "美国疾病控制与预防中心" + }, + "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": "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, + "file_path": "international/health/ecdc-surveillance.json", + "geographic_scope": "regional" + } + ], + "inflation": [ + { + "id": "kostat-cpi", + "name": { + "en": "Statistics Korea (KOSTAT) - Consumer Price Index", + "zh": "韩国统计局 - 消费者物价指数", + "ko": "통계청 - 소비자물가지수" + }, + "authority_level": "government", + "data_url": "https://kosis.kr/eng/", + "has_api": true, + "file_path": "countries/asia/kostat-cpi.json", + "geographic_scope": "national" + }, + { + "id": "sbv", + "name": { + "en": "State Bank of Vietnam", + "zh": "越南国家银行" + }, + "authority_level": "government", + "data_url": "https://www.sbv.gov.vn/webcenter/portal/en/home/rm/public", + "has_api": false, + "file_path": "countries/asia/vietnam/sbv.json", + "geographic_scope": "national" + }, + { + "id": "uk-ons-cpi-rpi", + "name": { + "en": "UK Office for National Statistics - Consumer Price Index and Retail Prices Index", + "zh": "英国国家统计局 - 消费者价格指数和零售价格指数" + }, + "authority_level": "government", + "data_url": "https://www.ons.gov.uk/economy/inflationandpriceindices", + "has_api": false, + "file_path": "countries/europe/uk-ons-cpi-rpi.json", + "geographic_scope": "national" + }, + { + "id": "canada-boc", + "name": { + "en": "Bank of Canada", + "zh": "加拿大银行", + "native": "Banque du Canada" + }, + "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": "mx-banxico", + "name": { + "en": "Bank of Mexico Economic Information System", + "zh": "墨西哥银行经济信息系统", + "native": "Sistema de Información Económica - Banco de México" + }, + "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": "us-bls", + "name": { + "en": "Bureau of Labor Statistics", + "zh": "劳工统计局" + }, + "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" + } + ], + "information-retrieval": [ + { + "id": "common-crawl", + "name": { + "en": "Common Crawl", + "zh": "Common Crawl 网络爬取数据" + }, + "authority_level": "research", + "data_url": "https://commoncrawl.org", + "has_api": true, + "file_path": "sectors/J-information-communication/common-crawl.json", + "geographic_scope": "global" + } + ], + "information-technology": [ + { + "id": "china-ciia", + "name": { + "en": "China Information Association", + "zh": "中国信息协会" + }, + "authority_level": "other", + "data_url": "https://www.ciia.org.cn", + "has_api": false, + "file_path": "china/technology/industry_associations/china-ciia.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" + } + ], + "infrastructure": [ + { + "id": "afrobarometer", + "name": { + "en": "Afrobarometer", + "zh": "非洲晴雨表" + }, + "authority_level": "research", + "data_url": "https://www.afrobarometer.org/data/", + "has_api": false, + "file_path": "academic/social/afrobarometer.json", + "geographic_scope": "regional" + }, + { + "id": "china-ccia", + "name": { + "en": "China Construction Industry Association", + "zh": "中国建筑业协会" + }, + "authority_level": "other", + "data_url": "http://www.zgjzy.org.cn/newsList/11/1.html", + "has_api": false, + "file_path": "china/construction/china-ccia.json", + "geographic_scope": "national" + }, + { + "id": "china-cscec", + "name": { + "en": "China State Construction Engineering Corporation", + "zh": "中国建筑集团有限公司" + }, + "authority_level": "commercial", + "data_url": "https://www.cscec.com", + "has_api": false, + "file_path": "china/construction/china-cscec.json", + "geographic_scope": "national" + }, + { + "id": "china-cansi", + "name": { + "en": "China Association of the National Shipbuilding Industry", + "zh": "中国船舶工业行业协会" + }, + "authority_level": "other", + "data_url": "https://www.cansi.org.cn/cms/document/show/43.html", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cansi.json", + "geographic_scope": "national" + }, + { + "id": "china-cbmf", + "name": { + "en": "China Building Materials Federation", + "zh": "中国建筑材料联合会" + }, + "authority_level": "other", + "data_url": "https://www.cbmf.org/yxjc/", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cbmf.json", + "geographic_scope": "national" + }, + { + "id": "china-gas-association", + "name": { + "en": "China Gas Association", + "zh": "中国燃气协会" + }, + "authority_level": "other", + "data_url": "https://www.chinagas.org.cn", + "has_api": false, + "file_path": "china/economy/industry_associations/china-gas-association.json", + "geographic_scope": "national" + }, + { + "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-cq-stats", + "name": { + "en": "Chongqing Bureau of Statistics", + "zh": "重庆市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.cq.gov.cn/zwgk_233040/zfxxgkml/tjxx/", + "has_api": false, + "file_path": "china/economy/provincial/china-cq-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-cflp", + "name": { + "en": "China Federation of Logistics and Purchasing", + "zh": "中国物流与采购联合会" + }, + "authority_level": "other", + "data_url": "https://www.chinawuliu.com.cn/lhhzq/", + "has_api": false, + "file_path": "china/economy/trade/china-cflp.json", + "geographic_scope": "national" + }, + { + "id": "china-chinca", + "name": { + "en": "China International Contractors Association", + "zh": "中国对外承包工程商会" + }, + "authority_level": "other", + "data_url": "https://www.chinca.org/CICA/info/20-1/index.html", + "has_api": false, + "file_path": "china/economy/trade/china-chinca.json", + "geographic_scope": "national" + }, + { + "id": "china-csdp", + "name": { + "en": "China School Development Planning Center", + "zh": "教育部学校规划建设发展中心" + }, + "authority_level": "government", + "data_url": "https://www.csdp.edu.cn", + "has_api": false, + "file_path": "china/education/china-csdp.json", + "geographic_scope": "national" + }, + { + "id": "china-cdb", + "name": { + "en": "China Development Bank", + "zh": "国家开发银行" + }, + "authority_level": "government", + "data_url": "https://www.cdb.com.cn", + "has_api": false, + "file_path": "china/finance/banking/cdb.json", + "geographic_scope": "national" + }, + { + "id": "china-camet", + "name": { + "en": "China Association of Metros (CAMET)", + "zh": "中国城市轨道交通协会" + }, + "authority_level": "other", + "data_url": "https://www.camet.org.cn", + "has_api": false, + "file_path": "china/infrastructure/china-camet.json", + "geographic_scope": "national" + }, + { + "id": "china-crg", + "name": { + "en": "China State Railway Group", + "zh": "中国国家铁路集团有限公司" + }, + "authority_level": "government", + "data_url": "http://www.china-railway.com.cn/", + "has_api": false, + "file_path": "china/infrastructure/china-crg.json", + "geographic_scope": "national" + }, + { + "id": "china-cttic", + "name": { + "en": "China Transport Telecommunications & Information Center", + "zh": "中国交通通信信息中心" + }, + "authority_level": "government", + "data_url": "https://www.cttic.cn", + "has_api": false, + "file_path": "china/infrastructure/china-cttic.json", + "geographic_scope": "national" + }, + { + "id": "china-highway-society", + "name": { + "en": "China Highway and Transportation Society", + "zh": "中国公路学会" + }, + "authority_level": "research", + "data_url": "https://www.chts.cn", + "has_api": false, + "file_path": "china/infrastructure/china-highway-society.json", + "geographic_scope": "national" + }, + { + "id": "china-mot", + "name": { + "en": "Ministry of Transport of China", + "zh": "中华人民共和国交通运输部", + "native": "中华人民共和国交通运输部" + }, + "authority_level": "government", + "data_url": "https://www.mot.gov.cn/shuju/", + "has_api": false, + "file_path": "china/infrastructure/china-mot.json", + "geographic_scope": "national" + }, + { + "id": "china-nra", + "name": { + "en": "National Railway Administration of China", + "zh": "国家铁路局" + }, + "authority_level": "government", + "data_url": "https://www.nra.gov.cn/xxgk/gkml/", + "has_api": false, + "file_path": "china/infrastructure/china-nra.json", + "geographic_scope": "national" + }, + { + "id": "china-ports-association", + "name": { + "en": "China Ports & Harbours Association", + "zh": "中国港口协会" + }, + "authority_level": "other", + "data_url": "http://www.port.org.cn", + "has_api": false, + "file_path": "china/infrastructure/china-ports-association.json", + "geographic_scope": "national" + }, + { + "id": "china-spb", + "name": { + "en": "State Post Bureau of China", + "zh": "国家邮政局" + }, + "authority_level": "government", + "data_url": "https://www.spb.gov.cn/gjyzj/c100009/c100014/xxgk_index.shtml", + "has_api": false, + "file_path": "china/infrastructure/china-spb.json", + "geographic_scope": "national" + }, + { + "id": "china-casm", + "name": { + "en": "Chinese Academy of Surveying and Mapping", + "zh": "中国测绘科学研究院" + }, + "authority_level": "research", + "data_url": "https://www.casm.ac.cn", + "has_api": false, + "file_path": "china/research/china-casm.json", + "geographic_scope": "national" + }, + { + "id": "china-ciecc", + "name": { + "en": "China International Engineering Consulting Corporation", + "zh": "中国国际工程咨询有限公司" + }, + "authority_level": "government", + "data_url": "https://www.ciecc.com.cn", + "has_api": false, + "file_path": "china/research/china-ciecc.json", + "geographic_scope": "national" + }, + { + "id": "china-ngcc", + "name": { + "en": "National Geomatics Center of China", + "zh": "国家基础地理信息中心" + }, + "authority_level": "government", + "data_url": "https://www.ngcc.cn/dlxxzy/gjjcdlxxsjk/", + "has_api": false, + "file_path": "china/resources/china-ngcc.json", + "geographic_scope": "national" + }, + { + "id": "china-csg", + "name": { + "en": "China Southern Power Grid", + "zh": "中国南方电网有限责任公司" + }, + "authority_level": "government", + "data_url": "https://www.csg.cn", + "has_api": false, + "file_path": "china/resources/energy/china-csg.json", + "geographic_scope": "subnational" + }, + { + "id": "china-chinawater", + "name": { + "en": "China Water Resources Portal", + "zh": "中国水利网" + }, + "authority_level": "government", + "data_url": "https://www.chinawater.com.cn", + "has_api": false, + "file_path": "china/resources/water/china-chinawater.json", + "geographic_scope": "national" + }, + { + "id": "china-crsri", + "name": { + "en": "Changjiang River Scientific Research Institute", + "zh": "长江科学院" + }, + "authority_level": "research", + "data_url": "http://www.crsri.cn", + "has_api": false, + "file_path": "china/resources/water/china-crsri.json", + "geographic_scope": "national" + }, + { + "id": "china-hrc", + "name": { + "en": "Huai River Water Resources Commission", + "zh": "水利部淮河水利委员会" + }, + "authority_level": "government", + "data_url": "http://www.hrc.gov.cn", + "has_api": false, + "file_path": "china/resources/water/china-hrc.json", + "geographic_scope": "subnational" + }, + { + "id": "china-hwcc", + "name": { + "en": "Hai River Water Resources Commission", + "zh": "水利部海河水利委员会" + }, + "authority_level": "government", + "data_url": "http://www.hwcc.gov.cn", + "has_api": false, + "file_path": "china/resources/water/china-hwcc.json", + "geographic_scope": "subnational" + }, + { + "id": "china-mwr", + "name": { + "en": "Ministry of Water Resources of China - Water Resources Statistics", + "zh": "中华人民共和国水利部水资源统计" + }, + "authority_level": "government", + "data_url": "http://www.mwr.gov.cn/sj/", + "has_api": false, + "file_path": "china/resources/water/china-mwr.json", + "geographic_scope": "national" + }, + { + "id": "china-slwr", + "name": { + "en": "Songliao River Water Resources Commission", + "zh": "水利部松辽水利委员会" + }, + "authority_level": "government", + "data_url": "http://www.slwr.gov.cn/gbjb.jhtml", + "has_api": false, + "file_path": "china/resources/water/china-slwr.json", + "geographic_scope": "subnational" + }, + { + "id": "china-yrcc", + "name": { + "en": "Yellow River Conservancy Commission", + "zh": "水利部黄河水利委员会" + }, + "authority_level": "government", + "data_url": "http://www.yrcc.gov.cn", + "has_api": false, + "file_path": "china/resources/water/china-yrcc.json", + "geographic_scope": "subnational" + }, + { + "id": "china-beidou", + "name": { + "en": "BeiDou Navigation Satellite System", + "zh": "北斗卫星导航系统" + }, + "authority_level": "government", + "data_url": "http://www.beidou.gov.cn", + "has_api": false, + "file_path": "china/technology/china-beidou.json", + "geographic_scope": "global" + }, + { + "id": "china-tower", + "name": { + "en": "China Tower Corporation", + "zh": "中国铁塔股份有限公司" + }, + "authority_level": "commercial", + "data_url": "https://ir.china-tower.com/sc/ir/reports.php", + "has_api": false, + "file_path": "china/technology/telecommunications/china-tower.json", + "geographic_scope": "national" + }, + { + "id": "adb-data-library", + "name": { + "en": "Asian Development Bank Data Library", + "zh": "亚洲开发银行数据库" + }, + "authority_level": "international", + "data_url": "https://data.adb.org", + "has_api": true, + "file_path": "international/development/adb-data-library.json", + "geographic_scope": "regional" + }, + { + "id": "adb-key-indicators", + "name": { + "en": "Asian Development Bank Key Indicators", + "zh": "亚洲开发银行关键指标" + }, + "authority_level": "international", + "data_url": "https://kidb.adb.org", + "has_api": true, + "file_path": "international/development/adb-key-indicators.json", + "geographic_scope": "regional" + }, + { + "id": "afdb-statistics", + "name": { + "en": "African Development Bank Statistics", + "zh": "非洲开发银行统计数据" + }, + "authority_level": "international", + "data_url": "https://dataportal.opendataforafrica.org", + "has_api": true, + "file_path": "international/development/afdb-statistics.json", + "geographic_scope": "regional" + }, + { + "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": "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, + "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": "adb-vietnam-data", + "name": { + "en": "Asian Development Bank - Vietnam Country Data", + "zh": "亚洲开发银行越南国别数据" + }, + "authority_level": "international", + "data_url": "https://www.adb.org/countries/viet-nam/data", + "has_api": false, + "file_path": "international/economics/adb-vietnam-data.json", + "geographic_scope": "national" + }, + { + "id": "adb", + "name": { + "en": "Asian Development Bank Data", + "zh": "亚洲开发银行数据" + }, + "authority_level": "international", + "data_url": "https://www.adb.org/what-we-do/data", + "has_api": false, + "file_path": "international/economics/adb.json", + "geographic_scope": "regional" + }, + { + "id": "unctad-infrastructure-statistics", + "name": { + "en": "UNCTAD Infrastructure Statistics Database", + "zh": "联合国贸发会议基础设施统计数据库" + }, + "authority_level": "international", + "data_url": "https://unctadstat.unctad.org/datacentre", + "has_api": true, + "file_path": "international/infrastructure/unctad-infrastructure-statistics.json", + "geographic_scope": "global" + }, + { + "id": "itf-transport", + "name": { + "en": "ITF Transport Statistics", + "zh": "国际交通论坛交通统计" + }, + "authority_level": "international", + "data_url": "https://www.itf-oecd.org/transport-statistics", + "has_api": true, + "file_path": "international/transportation/itf-transport.json", + "geographic_scope": "global" + }, + { + "id": "entso-e", + "name": { + "en": "ENTSO-E Transparency Platform", + "zh": "欧洲输电系统运营商联盟透明平台" + }, + "authority_level": "international", + "data_url": "https://transparency.entsoe.eu", + "has_api": true, + "file_path": "regional/europe/entso-e.json", + "geographic_scope": "regional" + }, + { + "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", + "geographic_scope": "national" + } + ], + "inland-trade": [ + { + "id": "india-dgcis", + "name": { + "en": "Directorate General of Commercial Intelligence and Statistics", + "zh": "印度商业情报与统计总局" + }, + "authority_level": "government", + "data_url": "https://www.commerce.gov.in/trade-statistics/", + "has_api": false, + "file_path": "countries/asia/india/india-dgcis.json", + "geographic_scope": "national" + } + ], + "innovation": [ + { + "id": "china-casted", + "name": { + "en": "China Academy of Science and Technology for Development", + "zh": "中国科学技术发展战略研究院" + }, + "authority_level": "research", + "data_url": "http://www.casted.org.cn/channel/", + "has_api": false, + "file_path": "china/research/china-casted.json", + "geographic_scope": "national" + }, + { + "id": "china-shenzhen-stic", + "name": { + "en": "Shenzhen Science, Technology and Innovation Commission", + "zh": "深圳市科技创新局" + }, + "authority_level": "government", + "data_url": "https://stic.sz.gov.cn/xxgk/index.html", + "has_api": false, + "file_path": "china/technology/china-shenzhen-stic.json", + "geographic_scope": "subnational" + }, + { + "id": "china-cnipa-patents", + "name": { + "en": "China National Intellectual Property Administration - Patent Statistics", + "zh": "国家知识产权局专利统计" + }, + "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": "china-most-rnd", + "name": { + "en": "National Key R&D Program of China - Industrial Software and 16 Key Special Projects", + "zh": "国家重点研发计划 - 工业软件专项及16个重点专项" + }, + "authority_level": "government", + "data_url": "https://service.most.gov.cn/", + "has_api": false, + "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": "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, + "file_path": "international/development/caf.json", + "geographic_scope": "regional" + }, + { + "id": "unesco-uis", + "name": { + "en": "UNESCO Institute for Statistics", + "zh": "联合国教科文组织统计研究所" + }, + "authority_level": "international", + "data_url": "https://data.uis.unesco.org/", + "has_api": false, + "file_path": "international/education/unesco-uis.json", + "geographic_scope": "global" + }, + { + "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, + "file_path": "international/intellectual-property/wipo.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" + } + ], + "inorganic-chemistry": [ + { + "id": "intl-chemspider", + "name": { + "en": "ChemSpider", + "zh": "化学蜘蛛数据库" + }, + "authority_level": "international", + "data_url": "https://www.chemspider.com", + "has_api": false, + "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" + } + ], + "instrumentation": [ + { + "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" + } + ], + "insurance": [ + { + "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": "japan-fsa", + "name": { + "en": "Japan Financial Services Agency", + "zh": "日本金融厅" + }, + "authority_level": "government", + "data_url": "https://www.fsa.go.jp/en/refer/index.html", + "has_api": false, + "file_path": "countries/asia/japan/japan-fsa.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" + }, + { + "id": "hundsun-juyuan", + "name": { + "en": "Hundsun JuYuan Financial Data", + "zh": "恒生聚源金融数据" + }, + "authority_level": "commercial", + "data_url": "https://gildata.hs.net/", + "has_api": true, + "file_path": "sectors/K-finance-insurance/hundsun-juyuan.json", + "geographic_scope": "national" + } + ], + "integrated-circuits": [ + { + "id": "china-semiconductor-association", + "name": { + "en": "China Semiconductor Industry Association", + "zh": "中国半导体行业协会" + }, + "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" + } + ], + "intellectual-property": [ + { + "id": "china-ncac", + "name": { + "en": "National Copyright Administration of China", + "zh": "国家版权局" + }, + "authority_level": "government", + "data_url": "https://www.ncac.gov.cn/chinacopyright/channels/634.html", + "has_api": false, + "file_path": "china/governance/china-ncac.json", + "geographic_scope": "national" + }, + { + "id": "china-cnipa-patents", + "name": { + "en": "China National Intellectual Property Administration - Patent Statistics", + "zh": "国家知识产权局专利统计" + }, + "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": "china-ctmo", + "name": { + "en": "China Trademark Office (CNIPA Trademark Bureau)", + "zh": "国家知识产权局商标局" + }, + "authority_level": "government", + "data_url": "https://sbj.cnipa.gov.cn", + "has_api": false, + "file_path": "china/technology/intellectual_property/china-ctmo.json", + "geographic_scope": "national" + }, + { + "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, + "file_path": "international/intellectual-property/wipo.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" + } + ], + "inter-state-trade": [ + { + "id": "india-dgcis", + "name": { + "en": "Directorate General of Commercial Intelligence and Statistics", + "zh": "印度商业情报与统计总局" + }, + "authority_level": "government", + "data_url": "https://www.commerce.gov.in/trade-statistics/", + "has_api": false, + "file_path": "countries/asia/india/india-dgcis.json", + "geographic_scope": "national" + } + ], + "interest-rates": [ + { + "id": "korea-bok", + "name": { + "en": "Bank of Korea", + "zh": "韩国银行", + "native": "한국은행" + }, + "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", + "geographic_scope": "national" + }, + { + "id": "sbv", + "name": { + "en": "State Bank of Vietnam", + "zh": "越南国家银行" + }, + "authority_level": "government", + "data_url": "https://www.sbv.gov.vn/webcenter/portal/en/home/rm/public", + "has_api": false, + "file_path": "countries/asia/vietnam/sbv.json", + "geographic_scope": "national" + }, + { + "id": "uk-boe", + "name": { + "en": "Bank of England Statistical Interactive Database", + "zh": "英格兰银行统计数据库" + }, + "authority_level": "government", + "data_url": "https://www.bankofengland.co.uk/boeapps/database/", + "has_api": false, + "file_path": "countries/europe/uk/bank-of-england.json", + "geographic_scope": "national" + }, + { + "id": "canada-boc", + "name": { + "en": "Bank of Canada", + "zh": "加拿大银行", + "native": "Banque du Canada" + }, + "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": "brazil-bcb", + "name": { + "en": "Central Bank of Brazil", + "zh": "巴西中央银行", + "native": "Banco Central do Brasil" + }, + "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": "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, + "file_path": "international/economics/ecb-sdw.json", + "geographic_scope": "regional" + } + ], + "international": [ + { + "id": "china-mofa", + "name": { + "en": "Ministry of Foreign Affairs of China", + "zh": "中华人民共和国外交部" + }, + "authority_level": "government", + "data_url": "https://www.mfa.gov.cn/web/system/index_17321.shtml", + "has_api": false, + "file_path": "china/governance/china-mofa.json", + "geographic_scope": "national" + }, + { + "id": "bea-international-trade", + "name": { + "en": "BEA Interactive Data - International Trade", + "zh": "美国经济分析局国际贸易互动数据" + }, + "authority_level": "government", + "data_url": "https://apps.bea.gov/iTable/index_ita.cfm", + "has_api": true, + "file_path": "international/trade/bea-international-trade.json", + "geographic_scope": "national" + } + ], + "international-assessment": [ + { + "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" + } + ], + "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", + "geographic_scope": "global" + } + ], + "international-capital-flows": [ + { + "id": "us-treasury", + "name": { + "en": "U.S. Department of the Treasury", + "zh": "美国财政部" + }, + "authority_level": "government", + "data_url": "https://fiscaldata.treasury.gov", + "has_api": true, + "file_path": "countries/north-america/usa/us-treasury.json", + "geographic_scope": "national" + } + ], + "international-commerce": [ + { + "id": "china-customs", + "name": { + "en": "General Administration of Customs of China", + "zh": "中华人民共和国海关总署", + "native": "中华人民共和国海关总署" + }, + "authority_level": "government", + "data_url": "http://www.customs.gov.cn", + "has_api": false, + "file_path": "china/economy/trade/customs.json", + "geographic_scope": "national" + } + ], + "international-cooperation": [ + { + "id": "china-iprcc", + "name": { + "en": "International Poverty Reduction Center in China", + "zh": "中国国际减贫中心" + }, + "authority_level": "research", + "data_url": "https://www.iprcc.org.cn", + "has_api": false, + "file_path": "china/economy/macro/china-iprcc.json", + "geographic_scope": "national" + } + ], + "international-development": [ + { + "id": "usaid-ddl", + "name": { + "en": "USAID Development Data Library", + "zh": "美国国际开发署发展数据库" + }, + "authority_level": "government", + "data_url": "https://data.usaid.gov", + "has_api": true, + "file_path": "countries/north-america/usa/usaid-ddl.json", + "geographic_scope": "global" + } + ], + "international-exchange": [ + { + "id": "cscse", + "name": { + "en": "Chinese Service Center for Scholarly Exchange", + "zh": "教育部留学服务中心" + }, + "authority_level": "government", + "data_url": "https://zwfw.cscse.edu.cn", + "has_api": false, + "file_path": "china/education/cscse.json", + "geographic_scope": "national" + } + ], + "international-finance": [ + { + "id": "bis-reserves", + "name": { + "en": "BIS Central Bank Reserves Statistics", + "zh": "国际清算银行外汇储备统计" + }, + "authority_level": "international", + "data_url": "https://data.bis.org/topics/CBTA", + "has_api": true, + "file_path": "international/finance/bis-reserves.json", + "geographic_scope": "global" + } + ], + "international-investment": [ + { + "id": "fia-fdi", + "name": { + "en": "Foreign Investment Agency - FDI Statistics", + "zh": "越南外国投资局 - FDI统计数据" + }, + "authority_level": "government", + "data_url": "https://www.mpi.gov.vn/en/Pages/FDI-1637.aspx", + "has_api": false, + "file_path": "countries/asia/vietnam/fia-fdi.json", + "geographic_scope": "national" + } + ], + "international-relations": [ + { + "id": "china-cafiu", + "name": { + "en": "China Association for International Understanding", + "zh": "中国国际交流协会" + }, + "authority_level": "other", + "data_url": "https://www.cafiu.org.cn", + "has_api": false, + "file_path": "china/governance/china-cafiu.json", + "geographic_scope": "national" + }, + { + "id": "china-cidca", + "name": { + "en": "China International Development Cooperation Agency", + "zh": "国家国际发展合作署" + }, + "authority_level": "government", + "data_url": "http://www.cidca.gov.cn/ywgz.htm", + "has_api": false, + "file_path": "china/governance/china-cidca.json", + "geographic_scope": "global" + }, + { + "id": "china-sass", + "name": { + "en": "Shanghai Academy of Social Sciences", + "zh": "上海社会科学院" + }, + "authority_level": "research", + "data_url": "https://www.sass.org.cn", + "has_api": false, + "file_path": "china/research/china-sass.json", + "geographic_scope": "national" + } + ], + "international-system-of-units": [ + { + "id": "bipm-kcdb", + "name": { + "en": "BIPM Key Comparison Database (KCDB)", + "zh": "国际度量衡局关键比对数据库", + "native": "Bureau International des Poids et Mesures (BIPM)" + }, + "authority_level": "international", + "data_url": "https://www.bipm.org/kcdb", + "has_api": true, + "file_path": "international/standards-metrology/bipm-kcdb.json", + "geographic_scope": "global" + } + ], + "international-trade": [ + { + "id": "china-boc", + "name": { + "en": "Bank of China (BOC)", + "zh": "中国银行" + }, + "authority_level": "commercial", + "data_url": "https://www.boc.cn/fimarkets/", + "has_api": false, + "file_path": "china/finance/banking/china-boc.json", + "geographic_scope": "national" + }, + { + "id": "india-dgcis", + "name": { + "en": "Directorate General of Commercial Intelligence and Statistics", + "zh": "印度商业情报与统计总局" + }, + "authority_level": "government", + "data_url": "https://www.commerce.gov.in/trade-statistics/", + "has_api": false, + "file_path": "countries/asia/india/india-dgcis.json", + "geographic_scope": "national" + }, + { + "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" + }, + { + "id": "usda-fas", + "name": { + "en": "USDA Foreign Agricultural Service", + "zh": "美国农业部对外农业局" + }, + "authority_level": "government", + "data_url": "https://apps.fas.usda.gov/psdonline/app/index.html", + "has_api": true, + "file_path": "countries/north-america/usa/usda-fas.json", + "geographic_scope": "national" + }, + { + "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" + }, + { + "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" + } + ], + "internet": [ + { + "id": "china-iresearch", + "name": { + "en": "iResearch Consulting Group", + "zh": "艾瑞咨询" + }, + "authority_level": "market", + "data_url": "https://www.iresearch.com.cn/report.shtml", + "has_api": false, + "file_path": "china/economy/market/china-iresearch.json", + "geographic_scope": "national" + } + ], + "investment": [ + { + "id": "china-ndrc", + "name": { + "en": "National Development and Reform Commission", + "zh": "国家发展和改革委员会", + "native": "国家发展和改革委员会" + }, + "authority_level": "government", + "data_url": "https://www.ndrc.gov.cn/fgsj/", + "has_api": false, + "file_path": "china/economy/macro/ndrc.json", + "geographic_scope": "national" + }, + { + "id": "china-mofcom", + "name": { + "en": "Ministry of Commerce of China", + "zh": "中华人民共和国商务部", + "native": "中华人民共和国商务部" + }, + "authority_level": "government", + "data_url": "https://data.mofcom.gov.cn", + "has_api": false, + "file_path": "china/economy/trade/mofcom.json", + "geographic_scope": "national" + }, + { + "id": "china-nssf", + "name": { + "en": "National Social Security Fund Council of China", + "zh": "全国社会保障基金理事会" + }, + "authority_level": "government", + "data_url": "http://www.ssf.gov.cn/", + "has_api": false, + "file_path": "china/finance/fiscal/china-nssf.json", + "geographic_scope": "national" + }, + { + "id": "japan-gpif", + "name": { + "en": "Government Pension Investment Fund", + "zh": "日本政府养老投资基金" + }, + "authority_level": "government", + "data_url": "https://www.gpif.go.jp/en/performance/", + "has_api": false, + "file_path": "countries/asia/japan/japan-gpif.json", + "geographic_scope": "national" + }, + { + "id": "japan-jetro", + "name": { + "en": "Japan External Trade Organization", + "zh": "日本贸易振兴机构", + "native": "日本貿易振興機構" + }, + "authority_level": "government", + "data_url": "https://www.jetro.go.jp/en/reports/statistics.html", + "has_api": false, + "file_path": "countries/asia/japan/japan-jetro.json", + "geographic_scope": "national" + }, + { + "id": "vietnam-gso", + "name": { + "en": "General Statistics Office of Vietnam", + "zh": "越南统计总局" + }, + "authority_level": "government", + "data_url": "https://www.nso.gov.vn/en/statistical-data/", + "has_api": false, + "file_path": "countries/asia/vietnam/gso.json", + "geographic_scope": "national" + }, + { + "id": "mpi-fdi", + "name": { + "en": "Ministry of Planning and Investment - FDI Statistics", + "zh": "越南计划投资部 - 外国直接投资统计", + "vi": "Bộ Kế hoạch và Đầu tư - Thống kê FDI" + }, + "authority_level": "government", + "data_url": "https://www.mpi.gov.vn/en/Pages/Report-on-Foreign-Direct-Investment-1740.aspx", + "has_api": false, + "file_path": "countries/asia/vietnam/mpi-fdi.json", + "geographic_scope": "national" + }, + { + "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": "unctad", + "name": { + "en": "UNCTAD - United Nations Conference on Trade and Development", + "zh": "联合国贸易和发展会议" + }, + "authority_level": "international", + "data_url": "https://unctadstat.unctad.org", + "has_api": true, + "file_path": "international/trade/unctad.json", + "geographic_scope": "global" + } + ], + "investment-analysis": [ + { + "id": "refinitiv-lseg", + "name": { + "en": "LSEG Data & Analytics (Refinitiv)", + "zh": "伦敦证交所数据分析(路孚特)" + }, + "authority_level": "commercial", + "data_url": "https://www.lseg.com/en/data-analytics/products/workspace", + "has_api": true, + "file_path": "sectors/K-finance-insurance/refinitiv-lseg.json", + "geographic_scope": "global" + } + ], + "investment-and-finance": [ + { + "id": "gso-vietnam", + "name": { + "en": "General Statistics Office of Vietnam", + "zh": "越南国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.gso.gov.vn/en/data-and-statistics/", + "has_api": false, + "file_path": "countries/asia/vietnam/gso-vietnam.json", + "geographic_scope": "national" + } + ], + "investment-banking": [ + { + "id": "bloomberg-ipo-database", + "name": { + "en": "Bloomberg IPO Database", + "zh": "彭博IPO数据库" + }, + "authority_level": "commercial", + "data_url": "https://www.bloomberg.com/professional/products/bloomberg-terminal/", + "has_api": true, + "file_path": "sectors/K-finance-insurance/bloomberg-ipo-database.json", + "geographic_scope": "global" + }, + { + "id": "bloomberg-terminal-ipo", + "name": { + "en": "Bloomberg Terminal - IPO Module", + "zh": "彭博终端 - IPO模块" + }, + "authority_level": "commercial", + "data_url": "https://www.bloomberg.com/professional/products/bloomberg-terminal/", + "has_api": true, + "file_path": "sectors/K-finance-insurance/bloomberg-terminal-ipo.json", + "geographic_scope": "global" + } + ], + "investment-policy": [ + { + "id": "vietnam-fia", + "name": { + "en": "Foreign Investment Agency - Ministry of Planning and Investment", + "zh": "越南计划投资部外国投资局" + }, + "authority_level": "government", + "data_url": "https://www.mpi.gov.vn/en/Pages/FDI-1637.aspx", + "has_api": false, + "file_path": "countries/asia/vietnam/vietnam-fia.json", + "geographic_scope": "national" + } + ], + "investment-research": [ + { + "id": "crsp", + "name": { + "en": "CRSP - Center for Research in Security Prices", + "zh": "证券价格研究中心" + }, + "authority_level": "research", + "data_url": "https://www.crsp.org/", + "has_api": true, + "file_path": "sectors/K-finance-insurance/crsp.json", + "geographic_scope": "national" + } + ], + "investment-statistics": [ + { + "id": "fia-fdi", + "name": { + "en": "Foreign Investment Agency - FDI Statistics", + "zh": "越南外国投资局 - FDI统计数据" + }, + "authority_level": "government", + "data_url": "https://www.mpi.gov.vn/en/Pages/FDI-1637.aspx", + "has_api": false, + "file_path": "countries/asia/vietnam/fia-fdi.json", + "geographic_scope": "national" + } + ], + "ionizing-radiation": [ + { + "id": "bipm-kcdb", + "name": { + "en": "BIPM Key Comparison Database (KCDB)", + "zh": "国际度量衡局关键比对数据库", + "native": "Bureau International des Poids et Mesures (BIPM)" + }, + "authority_level": "international", + "data_url": "https://www.bipm.org/kcdb", + "has_api": true, + "file_path": "international/standards-metrology/bipm-kcdb.json", + "geographic_scope": "global" + } + ], + "ipo": [ + { + "id": "bloomberg-ipo-database", + "name": { + "en": "Bloomberg IPO Database", + "zh": "彭博IPO数据库" + }, + "authority_level": "commercial", + "data_url": "https://www.bloomberg.com/professional/products/bloomberg-terminal/", + "has_api": true, + "file_path": "sectors/K-finance-insurance/bloomberg-ipo-database.json", + "geographic_scope": "global" + }, + { + "id": "bloomberg-terminal-ipo", + "name": { + "en": "Bloomberg Terminal - IPO Module", + "zh": "彭博终端 - IPO模块" + }, + "authority_level": "commercial", + "data_url": "https://www.bloomberg.com/professional/products/bloomberg-terminal/", + "has_api": true, + "file_path": "sectors/K-finance-insurance/bloomberg-terminal-ipo.json", + "geographic_scope": "global" + } + ], + "judicial-auction": [ + { + "id": "china-alibaba-auction", + "name": { + "en": "Alibaba Judicial Auction Platform", + "zh": "阿里拍卖·司法" + }, + "authority_level": "commercial", + "data_url": "https://sf.taobao.com", + "has_api": false, + "file_path": "china/economy/china-alibaba-auction.json", + "geographic_scope": "national" + }, + { + "id": "china-gpai", + "name": { + "en": "China Public Auction Network", + "zh": "公拍网" + }, + "authority_level": "commercial", + "data_url": "https://www.gpai.net/sf/", + "has_api": false, + "file_path": "china/economy/china-gpai.json", + "geographic_scope": "national" + }, + { + "id": "china-jd-auction", + "name": { + "en": "JD.com Judicial Auction Platform", + "zh": "京东拍卖·司法" + }, + "authority_level": "commercial", + "data_url": "https://auction.jd.com/sifa.html", + "has_api": false, + "file_path": "china/economy/china-jd-auction.json", + "geographic_scope": "national" + }, + { + "id": "china-court-auction", + "name": { + "en": "People's Court Litigation Assets Network", + "zh": "人民法院诉讼资产网" + }, + "authority_level": "government", + "data_url": "https://www.rmfysszc.gov.cn", + "has_api": false, + "file_path": "china/governance/china-court-auction.json", + "geographic_scope": "national" + } + ], + "judicial-execution": [ + { + "id": "china-court-execution", + "name": { + "en": "China Court Execution Information Disclosure Network", + "zh": "全国法院被执行人信息查询平台" + }, + "authority_level": "government", + "data_url": "https://zxgk.court.gov.cn", + "has_api": false, + "file_path": "china/governance/china-court-execution.json", + "geographic_scope": "national" + } + ], + "justice": [ + { + "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" + } + ], + "labor": [ + { + "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": "china-acftu", + "name": { + "en": "All-China Federation of Trade Unions", + "zh": "中华全国总工会" + }, + "authority_level": "government", + "data_url": "https://www.acftu.org", + "has_api": false, + "file_path": "china/economy/labor/china-acftu.json", + "geographic_scope": "national" + }, + { + "id": "china-shenzhen-hrss", + "name": { + "en": "Shenzhen Municipal Human Resources and Social Security Bureau", + "zh": "深圳市人力资源和社会保障局" + }, + "authority_level": "government", + "data_url": "https://hrss.sz.gov.cn/xxgk/index.html", + "has_api": false, + "file_path": "china/economy/labor/china-shenzhen-hrss.json", + "geographic_scope": "subnational" + }, + { + "id": "kostat", + "name": { + "en": "Statistics Korea (KOSTAT)", + "zh": "韩国统计厅" + }, + "authority_level": "government", + "data_url": "https://kosis.kr/eng/", + "has_api": true, + "file_path": "countries/asia/kostat.json", + "geographic_scope": "national" + }, + { + "id": "finland-stat", + "name": { + "en": "Statistics Finland", + "zh": "芬兰统计局", + "native": "Tilastokeskus" + }, + "authority_level": "government", + "data_url": "https://pxdata.stat.fi/PxWeb/pxweb/en/StatFin/", + "has_api": true, + "file_path": "countries/europe/finland/finland-stat.json", + "geographic_scope": "national" + }, + { + "id": "norway-ssb", + "name": { + "en": "Statistics Norway (SSB)", + "zh": "挪威统计局", + "native": "Statistisk sentralbyrå (SSB)" + }, + "authority_level": "government", + "data_url": "https://www.ssb.no/en/statbank", + "has_api": true, + "file_path": "countries/europe/norway/norway-ssb.json", + "geographic_scope": "national" + }, + { + "id": "poland-gus", + "name": { + "en": "Statistics Poland (GUS)", + "zh": "波兰中央统计局", + "native": "Główny Urząd Statystyczny" + }, + "authority_level": "government", + "data_url": "https://bdl.stat.gov.pl/BDL/start", + "has_api": true, + "file_path": "countries/europe/poland/poland-gus.json", + "geographic_scope": "national" + }, + { + "id": "switzerland-fso", + "name": { + "en": "Swiss Federal Statistical Office (FSO)", + "zh": "瑞士联邦统计局", + "native": "Bundesamt für Statistik (BFS)" + }, + "authority_level": "government", + "data_url": "https://www.bfs.admin.ch/bfs/en/home/statistics.html", + "has_api": true, + "file_path": "countries/europe/switzerland/switzerland-fso.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": "ceic-global-database", + "name": { + "en": "CEIC Global Database", + "zh": "环亚经济数据库" + }, + "authority_level": "commercial", + "data_url": "https://www.ceicdata.com/en/products/global-economic-database", + "has_api": true, + "file_path": "international/economics/ceic-global-database.json", + "geographic_scope": "global" + }, + { + "id": "ceic-vietnam", + "name": { + "en": "CEIC Vietnam Economic Database", + "zh": "环亚经济数据库 - 越南经济数据专题" + }, + "authority_level": "commercial", + "data_url": "https://www.ceicdata.com/en/country/vietnam", + "has_api": true, + "file_path": "international/economics/ceic-vietnam.json", + "geographic_scope": "national" + }, + { + "id": "ilo-statistics", + "name": { + "en": "International Labour Organization Statistics (ILOSTAT)", + "zh": "国际劳工组织统计数据库" + }, + "authority_level": "international", + "data_url": "https://ilostat.ilo.org/data/", + "has_api": true, + "file_path": "international/labor/ilo-statistics.json", + "geographic_scope": "global" + }, + { + "id": "thailand-nso", + "name": { + "en": "National Statistical Office of Thailand", + "zh": "泰国国家统计局", + "native": "สำนักงานสถิติแห่งชาติ" + }, + "authority_level": "government", + "data_url": "https://www.nso.go.th/nsoweb/officialStatistics", + "has_api": false, + "file_path": "thailand/national/thailand-nso.json", + "geographic_scope": "national" + }, + { + "id": "us-fred", + "name": { + "en": "FRED - Federal Reserve Economic Data", + "zh": "美联储经济数据库" + }, + "authority_level": "government", + "data_url": "https://fred.stlouisfed.org", + "has_api": true, + "file_path": "us/economics/us-fred.json", + "geographic_scope": "national" + } + ], + "labor-force": [ + { + "id": "us-bls", + "name": { + "en": "Bureau of Labor Statistics", + "zh": "劳工统计局" + }, + "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" + } + ], + "labor-market": [ + { + "id": "mx-banxico", + "name": { + "en": "Bank of Mexico Economic Information System", + "zh": "墨西哥银行经济信息系统", + "native": "Sistema de Información Económica - Banco de México" + }, + "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": "adb-data-library", + "name": { + "en": "Asian Development Bank Data Library", + "zh": "亚洲开发银行数据库" + }, + "authority_level": "international", + "data_url": "https://data.adb.org", + "has_api": true, + "file_path": "international/development/adb-data-library.json", + "geographic_scope": "regional" + } + ], + "labor-markets": [ + { + "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": "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" + } + ], + "laboratory-systems": [ + { + "id": "africa-cdc", + "name": { + "en": "Africa CDC Health Data", + "zh": "非洲疾控中心健康数据" + }, + "authority_level": "international", + "data_url": "https://africacdc.org", + "has_api": false, + "file_path": "international/health/africa-cdc.json", + "geographic_scope": "regional" + } + ], + "labour": [ + { + "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" + } + ], + "labour-market": [ + { + "id": "dosm", + "name": { + "en": "Department of Statistics Malaysia", + "zh": "马来西亚统计局" + }, + "authority_level": "government", + "data_url": "https://open.dosm.gov.my/", + "has_api": true, + "file_path": "countries/asia/dosm.json", + "geographic_scope": "national" + } + ], + "land": [ + { + "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", + "geographic_scope": "global" + } + ], + "land-cover": [ + { + "id": "usgs-earthexplorer", + "name": { + "en": "USGS EarthExplorer", + "zh": "美国地质调查局地球探索者" + }, + "authority_level": "government", + "data_url": "https://earthexplorer.usgs.gov/", + "has_api": true, + "file_path": "countries/north-america/usa/usgs-earthexplorer.json", + "geographic_scope": "global" + } + ], + "land-monitoring": [ + { + "id": "intl-copernicus-cdse", + "name": { + "en": "Copernicus Data Space Ecosystem", + "zh": "哥白尼数据空间生态系统" + }, + "authority_level": "international", + "data_url": "https://dataspace.copernicus.eu", + "has_api": true, + "file_path": "international/earth-science/copernicus-data-space.json", + "geographic_scope": "global" + } + ], + "land-resources": [ + { + "id": "china-landchina", + "name": { + "en": "China Land Market Network", + "zh": "中国土地市场网" + }, + "authority_level": "government", + "data_url": "https://www.landchina.com/default.aspx?tabid=226", + "has_api": false, + "file_path": "china/resources/china-landchina.json", + "geographic_scope": "national" + } + ], + "land-surface": [ + { + "id": "nasa-earthdata", + "name": { + "en": "NASA Earthdata", + "zh": "NASA地球数据" + }, + "authority_level": "government", + "data_url": "https://www.earthdata.nasa.gov", + "has_api": true, + "file_path": "international/earth-science/nasa-earthdata.json", + "geographic_scope": "global" + } + ], + "land-use": [ + { + "id": "china-caupd", + "name": { + "en": "China Academy of Urban Planning and Design", + "zh": "中国城市规划设计研究院" + }, + "authority_level": "research", + "data_url": "https://www.caupd.com/", + "has_api": false, + "file_path": "china/construction/china-caupd.json", + "geographic_scope": "national" + }, + { + "id": "china-urban-planning", + "name": { + "en": "Chinese Society for Urban Studies", + "zh": "中国城市规划学会" + }, + "authority_level": "research", + "data_url": "https://www.planning.org.cn/paper", + "has_api": false, + "file_path": "china/construction/china-urban-planning.json", + "geographic_scope": "national" + }, + { + "id": "china-guangdong-nr", + "name": { + "en": "Guangdong Provincial Department of Natural Resources", + "zh": "广东省自然资源厅" + }, + "authority_level": "government", + "data_url": "https://nr.gd.gov.cn/zwgknew/index.html", + "has_api": false, + "file_path": "china/resources/china-guangdong-nr.json", + "geographic_scope": "subnational" + }, + { + "id": "china-shenzhen-pnr", + "name": { + "en": "Shenzhen Municipal Planning and Natural Resources Bureau", + "zh": "深圳市规划和自然资源局" + }, + "authority_level": "government", + "data_url": "https://pnr.sz.gov.cn/xxgk/", + "has_api": false, + "file_path": "china/resources/china-shenzhen-pnr.json", + "geographic_scope": "subnational" + }, + { + "id": "aafc", + "name": { + "en": "Agriculture and Agri-Food Canada", + "zh": "加拿大农业与农业食品部", + "native": "Agriculture et Agroalimentaire Canada" + }, + "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": "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" + } + ], + "large-language-models": [ + { + "id": "common-crawl", + "name": { + "en": "Common Crawl", + "zh": "Common Crawl 网络爬取数据" + }, + "authority_level": "research", + "data_url": "https://commoncrawl.org", + "has_api": true, + "file_path": "sectors/J-information-communication/common-crawl.json", + "geographic_scope": "global" + } + ], + "law": [ + { + "id": "china-mofa", + "name": { + "en": "Ministry of Foreign Affairs of China", + "zh": "中华人民共和国外交部" + }, + "authority_level": "government", + "data_url": "https://www.mfa.gov.cn/web/system/index_17321.shtml", + "has_api": false, + "file_path": "china/governance/china-mofa.json", + "geographic_scope": "national" + }, + { + "id": "china-moj", + "name": { + "en": "Ministry of Justice of China", + "zh": "中华人民共和国司法部" + }, + "authority_level": "government", + "data_url": "https://www.moj.gov.cn/pub/sfbgw/zwgkzl/tjsj/", + "has_api": false, + "file_path": "china/governance/china-moj.json", + "geographic_scope": "national" + }, + { + "id": "china-npc-law", + "name": { + "en": "National People's Congress Law Database", + "zh": "全国人大法律法规数据库" + }, + "authority_level": "government", + "data_url": "https://flk.npc.gov.cn/", + "has_api": true, + "file_path": "china/governance/china-npc-law.json", + "geographic_scope": "national" + }, + { + "id": "china-pkulaw", + "name": { + "en": "PKU Law (Peking University Law Database)", + "zh": "北大法宝" + }, + "authority_level": "research", + "data_url": "https://www.pkulaw.com/law", + "has_api": false, + "file_path": "china/governance/china-pkulaw.json", + "geographic_scope": "national" + }, + { + "id": "china-spc", + "name": { + "en": "Supreme People's Court of China", + "zh": "最高人民法院" + }, + "authority_level": "government", + "data_url": "https://www.court.gov.cn/sfsj.html", + "has_api": false, + "file_path": "china/governance/china-spc.json", + "geographic_scope": "national" + }, + { + "id": "china-spp", + "name": { + "en": "Supreme People's Procuratorate of China", + "zh": "最高人民检察院" + }, + "authority_level": "government", + "data_url": "https://www.spp.gov.cn/spp/jcdt/jcgzdt/index_1.shtml", + "has_api": false, + "file_path": "china/governance/china-spp.json", + "geographic_scope": "national" + }, + { + "id": "china-cass", + "name": { + "en": "Chinese Academy of Social Sciences", + "zh": "中国社会科学院" + }, + "authority_level": "research", + "data_url": "http://www.cass.ac.cn/list/zw_sscp.html", + "has_api": false, + "file_path": "china/research/china-cass.json", + "geographic_scope": "national" + }, + { + "id": "china-ctmo", + "name": { + "en": "China Trademark Office (CNIPA Trademark Bureau)", + "zh": "国家知识产权局商标局" + }, + "authority_level": "government", + "data_url": "https://sbj.cnipa.gov.cn", + "has_api": false, + "file_path": "china/technology/intellectual_property/china-ctmo.json", + "geographic_scope": "national" + } + ], + "legal": [ + { + "id": "china-acla", + "name": { + "en": "All China Lawyers Association", + "zh": "中华全国律师协会" + }, + "authority_level": "other", + "data_url": "https://www.acla.org.cn/acla/tjxx/", + "has_api": false, + "file_path": "china/governance/china-acla.json", + "geographic_scope": "national" + }, + { + "id": "china-bankruptcy-court", + "name": { + "en": "National Enterprise Bankruptcy and Restructuring Case Information Network", + "zh": "全国企业破产重整案件信息网" + }, + "authority_level": "government", + "data_url": "https://pccz.court.gov.cn/pcajxxw/index/xxwsy", + "has_api": false, + "file_path": "china/governance/china-bankruptcy-court.json", + "geographic_scope": "national" + }, + { + "id": "china-wenshu", + "name": { + "en": "China Judgments Online", + "zh": "中国裁判文书网" + }, + "authority_level": "government", + "data_url": "https://wenshu.court.gov.cn/website/wenshu/181107ANFZ0BXSK4/index.html", + "has_api": false, + "file_path": "china/governance/china-wenshu.json", + "geographic_scope": "national" + }, + { + "id": "hk-companies-registry", + "name": { + "en": "Hong Kong Companies Registry", + "zh": "香港公司注册处" + }, + "authority_level": "government", + "data_url": "https://www.cr.gov.hk/en/services/obtain-company-info.htm", + "has_api": false, + "file_path": "countries/asia/hk-companies-registry.json", + "geographic_scope": "national" + } + ], + "length": [ + { + "id": "bipm-kcdb", + "name": { + "en": "BIPM Key Comparison Database (KCDB)", + "zh": "国际度量衡局关键比对数据库", + "native": "Bureau International des Poids et Mesures (BIPM)" + }, + "authority_level": "international", + "data_url": "https://www.bipm.org/kcdb", + "has_api": true, + "file_path": "international/standards-metrology/bipm-kcdb.json", + "geographic_scope": "global" + } + ], + "life-science": [ + { + "id": "china-scidb", + "name": { + "en": "Science Data Bank (ScienceDB)", + "zh": "中国科学数据银行" + }, + "authority_level": "research", + "data_url": "https://www.scidb.cn/list?type=all", + "has_api": false, + "file_path": "china/research/china-scidb.json", + "geographic_scope": "global" + } + ], + "life-sciences": [ + { + "id": "pubmed", + "name": { + "en": "PubMed", + "zh": "PubMed生物医学文献数据库" + }, + "authority_level": "government", + "data_url": "https://pubmed.ncbi.nlm.nih.gov/", + "has_api": true, + "file_path": "academic/health/pubmed.json", + "geographic_scope": "global" + }, + { + "id": "aws-open-data-registry", + "name": { + "en": "Registry of Open Data on AWS", + "zh": "AWS开放数据注册表" + }, + "authority_level": "commercial", + "data_url": "https://registry.opendata.aws/", + "has_api": false, + "file_path": "sectors/computer_science_ai/aws-open-data-registry.json", + "geographic_scope": "global" + } + ], + "lifestyle": [ + { + "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" + } + ], + "livestock": [ + { + "id": "brazil-mapa", + "name": { + "en": "Brazil Ministry of Agriculture and Livestock", + "zh": "巴西农业和畜牧部" + }, + "authority_level": "government", + "data_url": "https://indicadores.agricultura.gov.br/agrostat/index.htm", + "has_api": false, + "file_path": "countries/south-america/brazil/brazil-mapa.json", + "geographic_scope": "national" + }, + { + "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" + } + ], + "livestock-systems": [ + { + "id": "cgiar-research-data", + "name": { + "en": "CGIAR Research Data", + "zh": "国际农业研究磋商组织研究数据" + }, + "authority_level": "international", + "data_url": "https://gardian.cgiar.org/", + "has_api": true, + "file_path": "international/agriculture/cgiar-research-data.json", + "geographic_scope": "global" + } + ], + "local-government": [ + { + "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" + } + ], + "logistics": [ + { + "id": "china-crg", + "name": { + "en": "China State Railway Group", + "zh": "中国国家铁路集团有限公司" + }, + "authority_level": "government", + "data_url": "http://www.china-railway.com.cn/", + "has_api": false, + "file_path": "china/infrastructure/china-crg.json", + "geographic_scope": "national" + }, + { + "id": "china-crta", + "name": { + "en": "China Road Transport Association", + "zh": "中国道路运输协会" + }, + "authority_level": "other", + "data_url": "https://www.crta.org.cn/news.html?id=42", + "has_api": false, + "file_path": "china/infrastructure/china-crta.json", + "geographic_scope": "national" + }, + { + "id": "china-cttic", + "name": { + "en": "China Transport Telecommunications & Information Center", + "zh": "中国交通通信信息中心" + }, + "authority_level": "government", + "data_url": "https://www.cttic.cn", + "has_api": false, + "file_path": "china/infrastructure/china-cttic.json", + "geographic_scope": "national" + }, + { + "id": "china-mot", + "name": { + "en": "Ministry of Transport of China", + "zh": "中华人民共和国交通运输部", + "native": "中华人民共和国交通运输部" + }, + "authority_level": "government", + "data_url": "https://www.mot.gov.cn/shuju/", + "has_api": false, + "file_path": "china/infrastructure/china-mot.json", + "geographic_scope": "national" + }, + { + "id": "china-ports-association", + "name": { + "en": "China Ports & Harbours Association", + "zh": "中国港口协会" + }, + "authority_level": "other", + "data_url": "http://www.port.org.cn", + "has_api": false, + "file_path": "china/infrastructure/china-ports-association.json", + "geographic_scope": "national" + }, + { + "id": "china-post-group", + "name": { + "en": "China Post Group Corporation", + "zh": "中国邮政集团有限公司" + }, + "authority_level": "government", + "data_url": "https://www.chinapost.com.cn/", + "has_api": false, + "file_path": "china/infrastructure/china-post-group.json", + "geographic_scope": "national" + }, + { + "id": "unctad-trade-transport", + "name": { + "en": "UNCTAD Trade-and-Transport Dataset", + "zh": "联合国贸发会议贸易与运输数据集" + }, + "authority_level": "international", + "data_url": "https://unctadstat.unctad.org/EN/TransportCost.html", + "has_api": true, + "file_path": "international/trade/unctad-trade-transport.json", + "geographic_scope": "global" + } + ], + "machine-learning": [ + { + "id": "cern-open-data", + "name": { + "en": "CERN Open Data Portal", + "zh": "CERN 开放数据门户" + }, + "authority_level": "research", + "data_url": "https://opendata.cern.ch/", + "has_api": true, + "file_path": "academic/physics/cern-open-data.json", + "geographic_scope": "global" + }, + { + "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", + "geographic_scope": "global" + }, + { + "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, + "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, + "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", + "name": { + "en": "ImageNet", + "zh": "ImageNet 图像数据库" + }, + "authority_level": "research", + "data_url": "https://www.image-net.org", + "has_api": false, + "file_path": "sectors/J-information-communication/imagenet.json", + "geographic_scope": "global" + }, + { + "id": "aws-open-data-registry", + "name": { + "en": "Registry of Open Data on AWS", + "zh": "AWS开放数据注册表" + }, + "authority_level": "commercial", + "data_url": "https://registry.opendata.aws/", + "has_api": false, + "file_path": "sectors/computer_science_ai/aws-open-data-registry.json", + "geographic_scope": "global" + } + ], + "machinery": [ + { + "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", + "geographic_scope": "national" + } + ], + "macroeconomic-statistics": [ + { + "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" + } + ], + "macroeconomics": [ + { + "id": "china-drcnet", + "name": { + "en": "DRCNET - Development Research Center Network", + "zh": "国研网" + }, + "authority_level": "research", + "data_url": "https://www.drcnet.com.cn", + "has_api": false, + "file_path": "china/economy/macro/china-drcnet.json", + "geographic_scope": "national" + }, + { + "id": "akshare", + "name": { + "en": "AkShare", + "zh": "AkShare" + }, + "authority_level": "other", + "data_url": "https://github.com/akfamily/akshare", + "has_api": true, + "file_path": "sectors/K-finance-insurance/akshare.json", + "geographic_scope": "global" + }, + { + "id": "hundsun-juyuan", + "name": { + "en": "Hundsun JuYuan Financial Data", + "zh": "恒生聚源金融数据" + }, + "authority_level": "commercial", + "data_url": "https://gildata.hs.net/", + "has_api": true, + "file_path": "sectors/K-finance-insurance/hundsun-juyuan.json", + "geographic_scope": "national" + } + ], + "manufacturing": [ + { + "id": "china-cppia", + "name": { + "en": "China Plastics Processing Industry Association", + "zh": "中国塑料加工工业协会" + }, + "authority_level": "market", + "data_url": "http://www.cppia.com.cn", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cppia.json", + "geographic_scope": "national" + }, + { + "id": "china-ctic", + "name": { + "en": "China Textile Information Center", + "zh": "中国纺织信息中心" + }, + "authority_level": "other", + "data_url": "https://www.ctic.org.cn", + "has_api": false, + "file_path": "china/economy/industry_associations/china-ctic.json", + "geographic_scope": "national" + }, + { + "id": "china-furniture-association", + "name": { + "en": "China National Furniture Association", + "zh": "中国家具协会" + }, + "authority_level": "market", + "data_url": "https://www.cnfa.com.cn", + "has_api": false, + "file_path": "china/economy/industry_associations/china-furniture-association.json", + "geographic_scope": "national" + }, + { + "id": "china-light-industry-council", + "name": { + "en": "China National Light Industry Council", + "zh": "中国轻工业联合会" + }, + "authority_level": "market", + "data_url": "http://www.cnlic.org.cn", + "has_api": false, + "file_path": "china/economy/industry_associations/china-light-industry-council.json", + "geographic_scope": "national" + }, + { + "id": "china-avic", + "name": { + "en": "Aviation Industry Corporation of China (AVIC)", + "zh": "中国航空工业集团有限公司" + }, + "authority_level": "government", + "data_url": "https://www.avic.com", + "has_api": false, + "file_path": "china/industry/aerospace/china-avic.json", + "geographic_scope": "national" + }, + { + "id": "china-ceeia", + "name": { + "en": "China Electrical Equipment Industry Association", + "zh": "中国电器工业协会" + }, + "authority_level": "commercial", + "data_url": "https://www.ceeia.com", + "has_api": false, + "file_path": "china/industry/china-ceeia.json", + "geographic_scope": "national" + }, + { + "id": "china-csia", + "name": { + "en": "China Semiconductor Industry Association", + "zh": "中国半导体行业协会" + }, + "authority_level": "other", + "data_url": "https://web.csia.net.cn", + "has_api": false, + "file_path": "china/industry/china-csia.json", + "geographic_scope": "national" + }, + { + "id": "china-crrc", + "name": { + "en": "CRRC Corporation Limited", + "zh": "中国中车股份有限公司" + }, + "authority_level": "commercial", + "data_url": "https://www.crrcgc.cc", + "has_api": false, + "file_path": "china/infrastructure/china-crrc.json", + "geographic_scope": "national" + }, + { + "id": "china-catarc", + "name": { + "en": "China Automotive Technology and Research Center", + "zh": "中国汽车技术研究中心" + }, + "authority_level": "research", + "data_url": "https://www.catarc.ac.cn", + "has_api": false, + "file_path": "china/research/china-catarc.json", + "geographic_scope": "national" + }, + { + "id": "china-automation-association", + "name": { + "en": "Chinese Association of Automation", + "zh": "中国自动化学会" + }, + "authority_level": "other", + "data_url": "https://www.caa.org.cn/", + "has_api": false, + "file_path": "china/technology/industry_associations/china-automation-association.json", + "geographic_scope": "national" + }, + { + "id": "china-ces", + "name": { + "en": "China Electrotechnical Society", + "zh": "中国电工技术学会" + }, + "authority_level": "research", + "data_url": "https://www.ces.org.cn", + "has_api": false, + "file_path": "china/technology/industry_associations/china-ces.json", + "geographic_scope": "national" + }, + { + "id": "china-cima", + "name": { + "en": "China Instrumentation and Measurement Society", + "zh": "中国仪器仪表行业协会" + }, + "authority_level": "other", + "data_url": "http://www.cima.org.cn", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cima.json", + "geographic_scope": "national" + }, + { + "id": "china-cmes", + "name": { + "en": "Chinese Mechanical Engineering Society", + "zh": "中国机械工程学会" + }, + "authority_level": "research", + "data_url": "https://www.cmes.org", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cmes.json", + "geographic_scope": "national" + }, + { + "id": "china-csm", + "name": { + "en": "Chinese Society for Metals", + "zh": "中国金属学会" + }, + "authority_level": "research", + "data_url": "https://www.csm.org.cn", + "has_api": false, + "file_path": "china/technology/industry_associations/china-csm.json", + "geographic_scope": "national" + }, + { + "id": "china-most-rnd", + "name": { + "en": "National Key R&D Program of China - Industrial Software and 16 Key Special Projects", + "zh": "国家重点研发计划 - 工业软件专项及16个重点专项" + }, + "authority_level": "government", + "data_url": "https://service.most.gov.cn/", + "has_api": false, + "file_path": "china/technology/sci_resources/china-most-rnd.json", + "geographic_scope": "national" + }, + { + "id": "china-sac-standards", + "name": { + "en": "Standardization Administration of China (SAC)", + "zh": "国家标准化管理委员会" + }, + "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": "china-miit", + "name": { + "en": "Ministry of Industry and Information Technology of the People's Republic of China", + "zh": "中华人民共和国工业和信息化部" + }, + "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": "japan-meti", + "name": { + "en": "Ministry of Economy, Trade and Industry (Japan)", + "zh": "日本经济产业省", + "native": "経済産業省" + }, + "authority_level": "government", + "data_url": "https://www.meti.go.jp/english/statistics/index.html", + "has_api": false, + "file_path": "countries/asia/japan/japan-meti.json", + "geographic_scope": "national" + }, + { + "id": "germany-destatis", + "name": { + "en": "Federal Statistical Office of Germany (Destatis)", + "zh": "德国联邦统计局", + "native": "Statistisches Bundesamt (Destatis)" + }, + "authority_level": "government", + "data_url": "https://www.destatis.de/EN/Themes/_node.html", + "has_api": true, + "file_path": "countries/europe/germany/germany-destatis.json", + "geographic_scope": "national" + }, + { + "id": "us-census", + "name": { + "en": "U.S. Census Bureau", + "zh": "美国人口普查局" + }, + "authority_level": "government", + "data_url": "https://data.census.gov", + "has_api": true, + "file_path": "countries/north-america/usa/us-census.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": "india-meity", + "name": { + "en": "Ministry of Electronics and Information Technology of India", + "zh": "印度电子和信息技术部" + }, + "authority_level": "government", + "data_url": "https://www.meity.gov.in/content/annual-report", + "has_api": false, + "file_path": "india/technology/india-meity.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-lcd-association", + "name": { + "en": "China Optoelectronic Display Association - Liquid Crystal Division (CODA)", + "zh": "中国光学光电子行业协会液晶分会" + }, + "authority_level": "market", + "data_url": "https://www.coda.org.cn", + "has_api": false, + "file_path": "sectors/C-manufacturing/electronics/china-lcd-association.json", + "geographic_scope": "national" + }, + { + "id": "china-optical-association", + "name": { + "en": "China Optics and Optoelectronics Manufacturers Association", + "zh": "中国光学光电子行业协会" + }, + "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": "semi", + "name": { + "en": "SEMI - Semiconductor Equipment and Materials International", + "zh": "SEMI国际半导体产业协会" + }, + "authority_level": "research", + "data_url": "https://semi.org/en/products-services/market-data", + "has_api": false, + "file_path": "sectors/C-manufacturing/electronics/semi.json", + "geographic_scope": "global" + }, + { + "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", + "geographic_scope": "national" + }, + { + "id": "china-robot-industry-alliance", + "name": { + "en": "Robot Branch of China Machinery Industry Federation", + "zh": "中国机械工业联合会机器人分会" + }, + "authority_level": "market", + "data_url": "https://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" + } + ], + "manufacturing-and-industry": [ + { + "id": "dosm", + "name": { + "en": "Department of Statistics Malaysia", + "zh": "马来西亚统计局" + }, + "authority_level": "government", + "data_url": "https://open.dosm.gov.my/", + "has_api": true, + "file_path": "countries/asia/dosm.json", + "geographic_scope": "national" + } + ], + "manufacturing-technology": [ + { + "id": "china-additive-manufacturing-alliance", + "name": { + "en": "China Additive Manufacturing Alliance", + "zh": "中国增材制造产业联盟" + }, + "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", + "geographic_scope": "national" + } + ], + "mapping": [ + { + "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", + "geographic_scope": "national" + } + ], + "marine-geology": [ + { + "id": "china-cgs", + "name": { + "en": "China Geological Survey (CGS)", + "zh": "中国地质调查局" + }, + "authority_level": "government", + "data_url": "https://geocloud.cgs.gov.cn", + "has_api": false, + "file_path": "countries/cn/geology/cgs.json", + "geographic_scope": "national" + } + ], + "maritime": [ + { + "id": "china-cnooc", + "name": { + "en": "China National Offshore Oil Corporation", + "zh": "中国海洋石油集团有限公司" + }, + "authority_level": "government", + "data_url": "https://www.cnooc.com.cn", + "has_api": false, + "file_path": "china/resources/china-cnooc.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" + } + ], + "market-data": [ + { + "id": "refinitiv-lseg", + "name": { + "en": "LSEG Data & Analytics (Refinitiv)", + "zh": "伦敦证交所数据分析(路孚特)" + }, + "authority_level": "commercial", + "data_url": "https://www.lseg.com/en/data-analytics/products/workspace", + "has_api": true, + "file_path": "sectors/K-finance-insurance/refinitiv-lseg.json", + "geographic_scope": "global" + } + ], + "market-indices": [ + { + "id": "crsp", + "name": { + "en": "CRSP - Center for Research in Security Prices", + "zh": "证券价格研究中心" + }, + "authority_level": "research", + "data_url": "https://www.crsp.org/", + "has_api": true, + "file_path": "sectors/K-finance-insurance/crsp.json", + "geographic_scope": "national" + } + ], + "market-information": [ + { + "id": "aafc", + "name": { + "en": "Agriculture and Agri-Food Canada", + "zh": "加拿大农业与农业食品部", + "native": "Agriculture et Agroalimentaire Canada" + }, + "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" + } + ], + "market-research": [ + { + "id": "china-iresearch", + "name": { + "en": "iResearch Consulting Group", + "zh": "艾瑞咨询" + }, + "authority_level": "market", + "data_url": "https://www.iresearch.com.cn/report.shtml", + "has_api": false, + "file_path": "china/economy/market/china-iresearch.json", + "geographic_scope": "national" + }, + { + "id": "japan-jetro", + "name": { + "en": "Japan External Trade Organization", + "zh": "日本贸易振兴机构", + "native": "日本貿易振興機構" + }, + "authority_level": "government", + "data_url": "https://www.jetro.go.jp/en/reports/statistics.html", + "has_api": false, + "file_path": "countries/asia/japan/japan-jetro.json", + "geographic_scope": "national" + }, + { + "id": "china-lcd-association", + "name": { + "en": "China Optoelectronic Display Association - Liquid Crystal Division (CODA)", + "zh": "中国光学光电子行业协会液晶分会" + }, + "authority_level": "market", + "data_url": "https://www.coda.org.cn", + "has_api": false, + "file_path": "sectors/C-manufacturing/electronics/china-lcd-association.json", + "geographic_scope": "national" + } + ], + "market-transparency": [ + { + "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" + } + ], + "markets": [ + { + "id": "china-xinhua-finance", + "name": { + "en": "Xinhua Finance - China Financial Information Network", + "zh": "新华财经 - 中国金融信息网" + }, + "authority_level": "market", + "data_url": "https://www.cnfin.com/", + "has_api": false, + "file_path": "china/finance/china-xinhua-finance.json", + "geographic_scope": "national" + }, + { + "id": "usa-eia", + "name": { + "en": "U.S. Energy Information Administration", + "zh": "美国能源信息署" + }, + "authority_level": "government", + "data_url": "https://www.eia.gov", + "has_api": true, + "file_path": "countries/north-america/usa/eia.json", + "geographic_scope": "national" + } + ], + "mass-and-related-quantities": [ + { + "id": "bipm-kcdb", + "name": { + "en": "BIPM Key Comparison Database (KCDB)", + "zh": "国际度量衡局关键比对数据库", + "native": "Bureau International des Poids et Mesures (BIPM)" + }, + "authority_level": "international", + "data_url": "https://www.bipm.org/kcdb", + "has_api": true, + "file_path": "international/standards-metrology/bipm-kcdb.json", + "geographic_scope": "global" + } + ], + "materials": [ + { + "id": "china-cppia", + "name": { + "en": "China Plastics Processing Industry Association", + "zh": "中国塑料加工工业协会" + }, + "authority_level": "market", + "data_url": "http://www.cppia.com.cn", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cppia.json", + "geographic_scope": "national" + }, + { + "id": "china-cstr", + "name": { + "en": "China Science & Technology Resource Identifier Platform", + "zh": "科技资源标识服务平台" + }, + "authority_level": "government", + "data_url": "https://cstr.cn/resreg", + "has_api": false, + "file_path": "china/research/china-cstr.json", + "geographic_scope": "national" + } + ], + "materials-science": [ + { + "id": "intl-chemspider", + "name": { + "en": "ChemSpider", + "zh": "化学蜘蛛数据库" + }, + "authority_level": "international", + "data_url": "https://www.chemspider.com", + "has_api": false, + "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", + "name": { + "en": "China Additive Manufacturing Alliance", + "zh": "中国增材制造产业联盟" + }, + "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", + "geographic_scope": "national" + }, + { + "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" + }, + { + "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" + } + ], + "mathematical-literacy": [ + { + "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, + "file_path": "international/education/oecd-pisa.json", + "geographic_scope": "global" + } + ], + "measurement-control": [ + { + "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" + } + ], + "measurement-standards": [ + { + "id": "bipm-kcdb", + "name": { + "en": "BIPM Key Comparison Database (KCDB)", + "zh": "国际度量衡局关键比对数据库", + "native": "Bureau International des Poids et Mesures (BIPM)" + }, + "authority_level": "international", + "data_url": "https://www.bipm.org/kcdb", + "has_api": true, + "file_path": "international/standards-metrology/bipm-kcdb.json", + "geographic_scope": "global" + } + ], + "mechanical-engineering": [ + { + "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" + } + ], + "media": [ + { + "id": "china-xinhua-finance", + "name": { + "en": "Xinhua Finance - China Financial Information Network", + "zh": "新华财经 - 中国金融信息网" + }, + "authority_level": "market", + "data_url": "https://www.cnfin.com/", + "has_api": false, + "file_path": "china/finance/china-xinhua-finance.json", + "geographic_scope": "national" + }, + { + "id": "china-napp", + "name": { + "en": "National Administration of Press and Publication", + "zh": "国家新闻出版署" + }, + "authority_level": "government", + "data_url": "https://www.nppa.gov.cn/xxfb/", + "has_api": false, + "file_path": "china/governance/china-napp.json", + "geographic_scope": "national" + }, + { + "id": "china-nrta", + "name": { + "en": "National Radio and Television Administration of China", + "zh": "国家广播电视总局" + }, + "authority_level": "government", + "data_url": "https://www.nrta.gov.cn/col/col2040/index.html", + "has_api": false, + "file_path": "china/governance/china-nrta.json", + "geographic_scope": "national" + }, + { + "id": "china-cflac", + "name": { + "en": "China Federation of Literary and Art Circles", + "zh": "中国文学艺术界联合会" + }, + "authority_level": "other", + "data_url": "https://www.cflac.org.cn", + "has_api": false, + "file_path": "china/governance/culture/china-cflac.json", + "geographic_scope": "national" + }, + { + "id": "china-film-admin", + "name": { + "en": "National Film Administration of China", + "zh": "国家电影局" + }, + "authority_level": "government", + "data_url": "https://www.chinafilm.gov.cn", + "has_api": false, + "file_path": "china/governance/culture/china-film-admin.json", + "geographic_scope": "national" + } + ], + "medical-imaging": [ + { + "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": "canada-cihi", + "name": { + "en": "Canadian Institute for Health Information", + "zh": "加拿大健康信息研究所", + "native": "Institut canadien d'information sur la santé" + }, + "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": "aws-open-data-registry", + "name": { + "en": "Registry of Open Data on AWS", + "zh": "AWS开放数据注册表" + }, + "authority_level": "commercial", + "data_url": "https://registry.opendata.aws/", + "has_api": false, + "file_path": "sectors/computer_science_ai/aws-open-data-registry.json", + "geographic_scope": "global" + } + ], + "medical-technology": [ + { + "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" + } + ], + "medical-trials": [ + { + "id": "clinicaltrials-gov", + "name": { + "en": "ClinicalTrials.gov", + "zh": "临床试验注册数据库" + }, + "authority_level": "government", + "data_url": "https://clinicaltrials.gov/", + "has_api": true, + "file_path": "academic/health/clinicaltrials-gov.json", + "geographic_scope": "global" + } + ], + "medicinal-chemistry": [ + { + "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" + }, + { + "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" + } + ], + "medicine": [ + { + "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" + } + ], + "mental-health": [ + { + "id": "canada-cihi", + "name": { + "en": "Canadian Institute for Health Information", + "zh": "加拿大健康信息研究所", + "native": "Institut canadien d'information sur la santé" + }, + "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": "aus-aihw", + "name": { + "en": "Australian Institute of Health and Welfare", + "zh": "澳大利亚健康与福利研究所" + }, + "authority_level": "government", + "data_url": "https://www.aihw.gov.au/", + "has_api": true, + "file_path": "countries/oceania/australia/aihw.json", + "geographic_scope": "national" + } + ], + "metabolomics": [ + { + "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" + } + ], + "metagenomics": [ + { + "id": "ena", + "name": { + "en": "European Nucleotide Archive", + "zh": "欧洲核苷酸档案库" + }, + "authority_level": "international", + "data_url": "https://www.ebi.ac.uk/ena/browser/", + "has_api": true, + "file_path": "academic/biology/ena.json", + "geographic_scope": "global" + } + ], + "metal-materials": [ + { + "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, + "file_path": "sectors/B-mining/rare-earth/china-rare-earth-association.json", + "geographic_scope": "national" + } + ], + "metal-organic-frameworks": [ + { + "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" + } + ], + "meteorology": [ + { + "id": "china-cma", + "name": { + "en": "China Meteorological Administration", + "zh": "中国气象局" + }, + "authority_level": "government", + "data_url": "https://data.cma.cn", + "has_api": false, + "file_path": "china/national/meteorology/china-cma.json", + "geographic_scope": "national" + }, + { + "id": "china-ncc", + "name": { + "en": "National Climate Center of China (NCC-CMA)", + "zh": "国家气候中心" + }, + "authority_level": "government", + "data_url": "https://cmdp.ncc-cma.net", + "has_api": false, + "file_path": "china/national/meteorology/china-ncc.json", + "geographic_scope": "national" + }, + { + "id": "china-nmc", + "name": { + "en": "National Meteorological Centre of China", + "zh": "中央气象台" + }, + "authority_level": "government", + "data_url": "https://www.nmc.cn/publish/observations.html", + "has_api": false, + "file_path": "china/national/meteorology/china-nmc.json", + "geographic_scope": "national" + }, + { + "id": "china-nmic", + "name": { + "en": "National Meteorological Information Center", + "zh": "国家气象信息中心" + }, + "authority_level": "government", + "data_url": "https://data.cma.cn/data/index.html", + "has_api": false, + "file_path": "china/national/meteorology/china-nmic.json", + "geographic_scope": "national" + }, + { + "id": "china-nsmc", + "name": { + "en": "National Satellite Meteorological Center of China", + "zh": "国家卫星气象中心" + }, + "authority_level": "government", + "data_url": "https://www.nsmc.org.cn/nsmc/cn/satellite/index.html", + "has_api": false, + "file_path": "china/national/meteorology/china-nsmc.json", + "geographic_scope": "global" + }, + { + "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, + "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": "countries/oceania/australia/bureau-of-meteorology.json", + "geographic_scope": "national" + } + ], + "metrology": [ + { + "id": "bipm-kcdb", + "name": { + "en": "BIPM Key Comparison Database (KCDB)", + "zh": "国际度量衡局关键比对数据库", + "native": "Bureau International des Poids et Mesures (BIPM)" + }, + "authority_level": "international", + "data_url": "https://www.bipm.org/kcdb", + "has_api": true, + "file_path": "international/standards-metrology/bipm-kcdb.json", + "geographic_scope": "global" + } + ], + "migration": [ + { + "id": "china-mps", + "name": { + "en": "Ministry of Public Security of China", + "zh": "中华人民共和国公安部" + }, + "authority_level": "government", + "data_url": "https://www.mps.gov.cn/n6557558/index.html", + "has_api": false, + "file_path": "china/national/china-mps.json", + "geographic_scope": "national" + } + ], + "mineral": [ + { + "id": "china-miit-rare-earth", + "name": { + "en": "MIIT Rare Earth Office - Rare Earth Industry Regulation and Production Quotas", + "zh": "工业和信息化部稀土办公室 - 稀土行业规范与生产配额" + }, + "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" + } + ], + "mineral-resources": [ + { + "id": "china-cgs", + "name": { + "en": "China Geological Survey (CGS)", + "zh": "中国地质调查局" + }, + "authority_level": "government", + "data_url": "https://geocloud.cgs.gov.cn", + "has_api": false, + "file_path": "countries/cn/geology/cgs.json", + "geographic_scope": "national" + }, + { + "id": "usgs", + "name": { + "en": "U.S. Geological Survey (USGS)", + "zh": "美国地质调查局" + }, + "authority_level": "government", + "data_url": "https://www.usgs.gov/products/data", + "has_api": true, + "file_path": "countries/us/geology/usgs.json", + "geographic_scope": "national" + } + ], + "mineralogy": [ + { + "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" + } + ], + "minerals": [ + { + "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", + "geographic_scope": "national" + } + ], + "mining": [ + { + "id": "china-chinacoal", + "name": { + "en": "China National Coal Group Corporation", + "zh": "中国中煤能源集团有限公司" + }, + "authority_level": "government", + "data_url": "https://www.chinacoal.com", + "has_api": false, + "file_path": "china/resources/energy/china-chinacoal.json", + "geographic_scope": "national" + }, + { + "id": "china-nmsa", + "name": { + "en": "National Mine Safety Administration of China", + "zh": "国家矿山安全监察局" + }, + "authority_level": "government", + "data_url": "https://www.chinamine-safety.gov.cn/zfxxgk/", + "has_api": false, + "file_path": "china/resources/mineral/china-nmsa.json", + "geographic_scope": "national" + }, + { + "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, + "file_path": "sectors/B-mining/rare-earth/china-rare-earth-association.json", + "geographic_scope": "national" + } + ], + "molecular-biology": [ + { + "id": "alphafold-db", + "name": { + "en": "AlphaFold Protein Structure Database", + "zh": "AlphaFold蛋白质结构数据库" + }, + "authority_level": "international", + "data_url": "https://alphafold.com", + "has_api": true, + "file_path": "academic/biology/alphafold-db.json", + "geographic_scope": "global" + }, + { + "id": "ena", + "name": { + "en": "European Nucleotide Archive", + "zh": "欧洲核苷酸档案库" + }, + "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": "us-ncbi-genbank", + "name": { + "en": "GenBank", + "zh": "基因库" + }, + "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-rcsb-pdb", + "name": { + "en": "Protein Data Bank (PDB)", + "zh": "蛋白质数据银行" + }, + "authority_level": "research", + "data_url": "https://www.rcsb.org", + "has_api": true, + "file_path": "academic/biology/pdb.json", + "geographic_scope": "global" + }, + { + "id": "tcga", + "name": { + "en": "The Cancer Genome Atlas (TCGA)", + "zh": "癌症基因组图谱" + }, + "authority_level": "government", + "data_url": "https://portal.gdc.cancer.gov/", + "has_api": true, + "file_path": "academic/health/tcga.json", + "geographic_scope": "national" + } + ], + "molecular-properties": [ + { + "id": "intl-chemspider", + "name": { + "en": "ChemSpider", + "zh": "化学蜘蛛数据库" + }, + "authority_level": "international", + "data_url": "https://www.chemspider.com", + "has_api": false, + "file_path": "academic/chemistry/chemspider.json", + "geographic_scope": "global" + } + ], + "monetary-policy": [ + { + "id": "china-pbc", + "name": { + "en": "People's Bank of China", + "zh": "中国人民银行", + "native": "中国人民银行" + }, + "authority_level": "government", + "data_url": "https://www.pbc.gov.cn/diaochatongjisi/116219/index.html", + "has_api": false, + "file_path": "china/finance/banking/pbc.json", + "geographic_scope": "national" + }, + { + "id": "hkma", + "name": { + "en": "Hong Kong Monetary Authority", + "zh": "香港金融管理局" + }, + "authority_level": "government", + "data_url": "https://www.hkma.gov.hk/eng/data-publications-and-research/data-and-statistics/", + "has_api": true, + "file_path": "countries/asia/hkma.json", + "geographic_scope": "national" + }, + { + "id": "india-rbi", + "name": { + "en": "Reserve Bank of India", + "zh": "印度储备银行", + "native": "भारतीय रिज़र्व बैंक" + }, + "authority_level": "government", + "data_url": "https://www.rbi.org.in/Scripts/Statistics.aspx", + "has_api": true, + "file_path": "countries/asia/india/india-rbi.json", + "geographic_scope": "national" + }, + { + "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", + "geographic_scope": "national" + }, + { + "id": "korea-bok", + "name": { + "en": "Bank of Korea", + "zh": "韩国银行", + "native": "한국은행" + }, + "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", + "geographic_scope": "national" + }, + { + "id": "sbv", + "name": { + "en": "State Bank of Vietnam", + "zh": "越南国家银行" + }, + "authority_level": "government", + "data_url": "https://www.sbv.gov.vn/webcenter/portal/en/home/rm/public", + "has_api": false, + "file_path": "countries/asia/vietnam/sbv.json", + "geographic_scope": "national" + }, + { + "id": "bank-of-england-statistics", + "name": { + "en": "Bank of England Statistical Database", + "zh": "英格兰银行统计数据库" + }, + "authority_level": "government", + "data_url": "https://www.bankofengland.co.uk/boeapps/database/", + "has_api": true, + "file_path": "countries/europe/bank-of-england-statistics.json", + "geographic_scope": "national" + }, + { + "id": "romania-bnr", + "name": { + "en": "National Bank of Romania (BNR)", + "zh": "罗马尼亚国家银行" + }, + "authority_level": "government", + "data_url": "https://www.bnr.ro/Statistics-702.aspx", + "has_api": true, + "file_path": "countries/europe/romania/romania-bnr.json", + "geographic_scope": "national" + }, + { + "id": "uk-boe", + "name": { + "en": "Bank of England Statistical Interactive Database", + "zh": "英格兰银行统计数据库" + }, + "authority_level": "government", + "data_url": "https://www.bankofengland.co.uk/boeapps/database/", + "has_api": false, + "file_path": "countries/europe/uk/bank-of-england.json", + "geographic_scope": "national" + }, + { + "id": "uk-ons-cpi-rpi", + "name": { + "en": "UK Office for National Statistics - Consumer Price Index and Retail Prices Index", + "zh": "英国国家统计局 - 消费者价格指数和零售价格指数" + }, + "authority_level": "government", + "data_url": "https://www.ons.gov.uk/economy/inflationandpriceindices", + "has_api": false, + "file_path": "countries/europe/uk-ons-cpi-rpi.json", + "geographic_scope": "national" + }, + { + "id": "canada-boc", + "name": { + "en": "Bank of Canada", + "zh": "加拿大银行", + "native": "Banque du Canada" + }, + "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": "mx-banxico", + "name": { + "en": "Bank of Mexico Economic Information System", + "zh": "墨西哥银行经济信息系统", + "native": "Sistema de Información Económica - Banco de México" + }, + "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": "us-federalreserve", + "name": { + "en": "Federal Reserve Board", + "zh": "美联储理事会" + }, + "authority_level": "government", + "data_url": "https://www.federalreserve.gov/data.htm", + "has_api": false, + "file_path": "countries/north-america/usa/us-federalreserve.json", + "geographic_scope": "national" + }, + { + "id": "brazil-bcb", + "name": { + "en": "Central Bank of Brazil", + "zh": "巴西中央银行", + "native": "Banco Central do Brasil" + }, + "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": "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, + "file_path": "international/economics/ecb-sdw.json", + "geographic_scope": "regional" + }, + { + "id": "bis-cbta", + "name": { + "en": "BIS Central Bank Total Assets", + "zh": "国际清算银行中央银行总资产统计" + }, + "authority_level": "international", + "data_url": "https://data.bis.org/topics/CBTA", + "has_api": true, + "file_path": "international/finance/bis-cbta.json", + "geographic_scope": "global" + }, + { + "id": "bis-reserves", + "name": { + "en": "BIS Central Bank Reserves Statistics", + "zh": "国际清算银行外汇储备统计" + }, + "authority_level": "international", + "data_url": "https://data.bis.org/topics/CBTA", + "has_api": true, + "file_path": "international/finance/bis-reserves.json", + "geographic_scope": "global" + } + ], + "money-supply": [ + { + "id": "sbv", + "name": { + "en": "State Bank of Vietnam", + "zh": "越南国家银行" + }, + "authority_level": "government", + "data_url": "https://www.sbv.gov.vn/webcenter/portal/en/home/rm/public", + "has_api": false, + "file_path": "countries/asia/vietnam/sbv.json", + "geographic_scope": "national" + } + ], + "mortality": [ + { + "id": "ghdx", + "name": { + "en": "Global Health Data Exchange (GHDx)", + "zh": "全球健康数据交换平台" + }, + "authority_level": "research", + "data_url": "https://ghdx.healthdata.org/", + "has_api": true, + "file_path": "academic/health/ghdx.json", + "geographic_scope": "global" + }, + { + "id": "us-cdc", + "name": { + "en": "Centers for Disease Control and Prevention", + "zh": "美国疾病控制与预防中心" + }, + "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": "aus-aihw", + "name": { + "en": "Australian Institute of Health and Welfare", + "zh": "澳大利亚健康与福利研究所" + }, + "authority_level": "government", + "data_url": "https://www.aihw.gov.au/", + "has_api": true, + "file_path": "countries/oceania/australia/aihw.json", + "geographic_scope": "national" + } + ], + "museum-studies": [ + { + "id": "british-museum-collection", + "name": { + "en": "British Museum Collection", + "zh": "大英博物馆馆藏" + }, + "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" + } + ], + "named-entity-recognition": [ + { + "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" + } + ], + "natality": [ + { + "id": "us-cdc", + "name": { + "en": "Centers for Disease Control and Prevention", + "zh": "美国疾病控制与预防中心" + }, + "authority_level": "government", + "data_url": "https://wonder.cdc.gov/", + "has_api": true, + "file_path": "countries/north-america/usa/us-cdc.json", + "geographic_scope": "national" + } + ], + "national-accounting": [ + { + "id": "vietnam-mof", + "name": { + "en": "Ministry of Finance of Vietnam", + "zh": "越南财政部" + }, + "authority_level": "government", + "data_url": "https://www.mof.gov.vn/webcenter/portal/btcen/pages_r/m/statistics", + "has_api": false, + "file_path": "countries/asia/vietnam/vietnam-mof.json", + "geographic_scope": "national" + } + ], + "national-accounts": [ + { + "id": "dosm", + "name": { + "en": "Department of Statistics Malaysia", + "zh": "马来西亚统计局" + }, + "authority_level": "government", + "data_url": "https://open.dosm.gov.my/", + "has_api": true, + "file_path": "countries/asia/dosm.json", + "geographic_scope": "national" + }, + { + "id": "korea-bok", + "name": { + "en": "Bank of Korea", + "zh": "韩国银行", + "native": "한국은행" + }, + "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", + "geographic_scope": "national" + }, + { + "id": "gso-vietnam", + "name": { + "en": "General Statistics Office of Vietnam", + "zh": "越南国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.gso.gov.vn/en/data-and-statistics/", + "has_api": false, + "file_path": "countries/asia/vietnam/gso-vietnam.json", + "geographic_scope": "national" + }, + { + "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" + }, + { + "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, + "file_path": "international/economics/ecb-sdw.json", + "geographic_scope": "regional" + } + ], + "natural-gas": [ + { + "id": "china-cnpc", + "name": { + "en": "China National Petroleum Corporation", + "zh": "中国石油天然气集团有限公司" + }, + "authority_level": "government", + "data_url": "https://www.cnpc.com.cn/cnpc/nybg/common_index.shtml", + "has_api": false, + "file_path": "china/resources/china-cnpc.json", + "geographic_scope": "national" + }, + { + "id": "usa-eia", + "name": { + "en": "U.S. Energy Information Administration", + "zh": "美国能源信息署" + }, + "authority_level": "government", + "data_url": "https://www.eia.gov", + "has_api": true, + "file_path": "countries/north-america/usa/eia.json", + "geographic_scope": "national" + } + ], + "natural-hazards": [ + { + "id": "usgs", + "name": { + "en": "U.S. Geological Survey (USGS)", + "zh": "美国地质调查局" + }, + "authority_level": "government", + "data_url": "https://www.usgs.gov/products/data", + "has_api": true, + "file_path": "countries/us/geology/usgs.json", + "geographic_scope": "national" + } + ], + "natural-history": [ + { + "id": "china-nsii", + "name": { + "en": "National Specimen Information Infrastructure of China", + "zh": "中国国家标本资源平台" + }, + "authority_level": "research", + "data_url": "https://www.nsii.org.cn/2017/home.php", + "has_api": false, + "file_path": "china/research/china-nsii.json", + "geographic_scope": "national" + } + ], + "natural-language-processing": [ + { + "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", + "geographic_scope": "global" + }, + { + "id": "common-crawl", + "name": { + "en": "Common Crawl", + "zh": "Common Crawl 网络爬取数据" + }, + "authority_level": "research", + "data_url": "https://commoncrawl.org", + "has_api": true, + "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" + } + ], + "natural-resources": [ + { + "id": "china-resdc", + "name": { + "en": "Resource and Environment Science and Data Center, Chinese Academy of Sciences", + "zh": "中国科学院资源环境科学与数据中心" + }, + "authority_level": "research", + "data_url": "https://www.resdc.cn", + "has_api": false, + "file_path": "china/research/china-resdc.json", + "geographic_scope": "national" + }, + { + "id": "china-guangdong-nr", + "name": { + "en": "Guangdong Provincial Department of Natural Resources", + "zh": "广东省自然资源厅" + }, + "authority_level": "government", + "data_url": "https://nr.gd.gov.cn/zwgknew/index.html", + "has_api": false, + "file_path": "china/resources/china-guangdong-nr.json", + "geographic_scope": "subnational" + }, + { + "id": "china-shenzhen-pnr", + "name": { + "en": "Shenzhen Municipal Planning and Natural Resources Bureau", + "zh": "深圳市规划和自然资源局" + }, + "authority_level": "government", + "data_url": "https://pnr.sz.gov.cn/xxgk/", + "has_api": false, + "file_path": "china/resources/china-shenzhen-pnr.json", + "geographic_scope": "subnational" + } + ], + "network-architecture": [ + { + "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", + "geographic_scope": "national" + } + ], + "new-energy-vehicles": [ + { + "id": "china-passenger-car-association", + "name": { + "en": "China Passenger Car Association", + "zh": "全国乘用车市场信息联席会" + }, + "authority_level": "research", + "data_url": "https://www.cpcaauto.com/newslist.php?types=csjd", + "has_api": false, + "file_path": "china/economy/automotive/china-passenger-car-association.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" + } + ], + "nft-markets": [ + { + "id": "cryptocurrency-data", + "name": { + "en": "Cryptocurrency Market Data (CoinMarketCap & CoinGecko)", + "zh": "加密货币市场数据(CoinMarketCap 和 CoinGecko)" + }, + "authority_level": "commercial", + "data_url": "https://coinmarketcap.com", + "has_api": true, + "file_path": "sectors/K-finance-insurance/cryptocurrency-data.json", + "geographic_scope": "global" + } + ], + "nuclear-energy": [ + { + "id": "usa-eia", + "name": { + "en": "U.S. Energy Information Administration", + "zh": "美国能源信息署" + }, + "authority_level": "government", + "data_url": "https://www.eia.gov", + "has_api": true, + "file_path": "countries/north-america/usa/eia.json", + "geographic_scope": "national" + } + ], + "nuclear-physics": [ + { + "id": "cern-open-data", + "name": { + "en": "CERN Open Data Portal", + "zh": "CERN 开放数据门户" + }, + "authority_level": "research", + "data_url": "https://opendata.cern.ch/", + "has_api": true, + "file_path": "academic/physics/cern-open-data.json", + "geographic_scope": "global" + } + ], + "nuclear-power": [ + { + "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" + } + ], + "nutrition": [ + { + "id": "cgiar-research-data", + "name": { + "en": "CGIAR Research Data", + "zh": "国际农业研究磋商组织研究数据" + }, + "authority_level": "international", + "data_url": "https://gardian.cgiar.org/", + "has_api": true, + "file_path": "international/agriculture/cgiar-research-data.json", + "geographic_scope": "global" + }, + { + "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": "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": [ + { + "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, + "file_path": "sectors/J-information-communication/cifar.json", + "geographic_scope": "global" + }, + { + "id": "imagenet", + "name": { + "en": "ImageNet", + "zh": "ImageNet 图像数据库" + }, + "authority_level": "research", + "data_url": "https://www.image-net.org", + "has_api": false, + "file_path": "sectors/J-information-communication/imagenet.json", + "geographic_scope": "global" + } + ], + "occupational-statistics": [ + { + "id": "us-bls", + "name": { + "en": "Bureau of Labor Statistics", + "zh": "劳工统计局" + }, + "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" + } + ], + "ocean": [ + { + "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", + "geographic_scope": "global" + }, + { + "id": "china-polar-service", + "name": { + "en": "China Polar Operations Service Platform (CHINARE Data)", + "zh": "中国极地业务服务平台" + }, + "authority_level": "government", + "data_url": "https://www.chinare.org.cn/", + "has_api": false, + "file_path": "china/research/china-polar-service.json", + "geographic_scope": "global" + }, + { + "id": "china-pric", + "name": { + "en": "Polar Research Institute of China", + "zh": "中国极地研究中心" + }, + "authority_level": "research", + "data_url": "https://www.pric.org.cn/", + "has_api": false, + "file_path": "china/research/china-pric.json", + "geographic_scope": "global" + }, + { + "id": "china-nmdis", + "name": { + "en": "National Marine Data and Information Service", + "zh": "国家海洋信息中心" + }, + "authority_level": "government", + "data_url": "https://mds.nmdis.org.cn/", + "has_api": false, + "file_path": "china/resources/ocean/china-nmdis.json", + "geographic_scope": "national" + }, + { + "id": "china-nsoas", + "name": { + "en": "National Satellite Ocean Application Service", + "zh": "国家卫星海洋应用中心" + }, + "authority_level": "government", + "data_url": "http://www.nsoas.org.cn", + "has_api": false, + "file_path": "china/resources/ocean/china-nsoas.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": "nasa-earthdata", + "name": { + "en": "NASA Earthdata", + "zh": "NASA地球数据" + }, + "authority_level": "government", + "data_url": "https://www.earthdata.nasa.gov", + "has_api": true, + "file_path": "international/earth-science/nasa-earthdata.json", + "geographic_scope": "global" + } + ], + "ocean-monitoring": [ + { + "id": "intl-copernicus-cdse", + "name": { + "en": "Copernicus Data Space Ecosystem", + "zh": "哥白尼数据空间生态系统" + }, + "authority_level": "international", + "data_url": "https://dataspace.copernicus.eu", + "has_api": true, + "file_path": "international/earth-science/copernicus-data-space.json", + "geographic_scope": "global" + } + ], + "oceanography": [ + { + "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" + } + ], + "oceans": [ + { + "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" + } + ], + "oil-and-gas": [ + { + "id": "canada-cer", + "name": { + "en": "Canada Energy Regulator", + "zh": "加拿大能源监管局", + "native": "Régie de l'énergie du Canada" + }, + "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" + } + ], + "oncology": [ + { + "id": "tcga", + "name": { + "en": "The Cancer Genome Atlas (TCGA)", + "zh": "癌症基因组图谱" + }, + "authority_level": "government", + "data_url": "https://portal.gdc.cancer.gov/", + "has_api": true, + "file_path": "academic/health/tcga.json", + "geographic_scope": "national" + } + ], + "optics": [ + { + "id": "china-optical-association", + "name": { + "en": "China Optics and Optoelectronics Manufacturers Association", + "zh": "中国光学光电子行业协会" + }, + "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" + } + ], + "options": [ + { + "id": "akshare", + "name": { + "en": "AkShare", + "zh": "AkShare" + }, + "authority_level": "other", + "data_url": "https://github.com/akfamily/akshare", + "has_api": true, + "file_path": "sectors/K-finance-insurance/akshare.json", + "geographic_scope": "global" + } + ], + "optoelectronics": [ + { + "id": "china-optical-association", + "name": { + "en": "China Optics and Optoelectronics Manufacturers Association", + "zh": "中国光学光电子行业协会" + }, + "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" + } + ], + "organic-chemistry": [ + { + "id": "intl-chemspider", + "name": { + "en": "ChemSpider", + "zh": "化学蜘蛛数据库" + }, + "authority_level": "international", + "data_url": "https://www.chemspider.com", + "has_api": false, + "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" + } + ], + "outbreak-response": [ + { + "id": "africa-cdc", + "name": { + "en": "Africa CDC Health Data", + "zh": "非洲疾控中心健康数据" + }, + "authority_level": "international", + "data_url": "https://africacdc.org", + "has_api": false, + "file_path": "international/health/africa-cdc.json", + "geographic_scope": "regional" + } + ], + "paleontology": [ + { + "id": "gbif", + "name": { + "en": "Global Biodiversity Information Facility (GBIF)", + "zh": "全球生物多样性信息设施" + }, + "authority_level": "international", + "data_url": "https://www.gbif.org/occurrence/search", + "has_api": true, + "file_path": "international/paleontology/gbif.json", + "geographic_scope": "global" + }, + { + "id": "paleobiodb", + "name": { + "en": "Paleobiology Database (PBDB)", + "zh": "古生物学数据库" + }, + "authority_level": "research", + "data_url": "https://paleobiodb.org/navigator/", + "has_api": true, + "file_path": "international/paleontology/paleobiodb.json", + "geographic_scope": "global" + } + ], + "parsing": [ + { + "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" + } + ], + "particle-physics": [ + { + "id": "cern-open-data", + "name": { + "en": "CERN Open Data Portal", + "zh": "CERN 开放数据门户" + }, + "authority_level": "research", + "data_url": "https://opendata.cern.ch/", + "has_api": true, + "file_path": "academic/physics/cern-open-data.json", + "geographic_scope": "global" + } + ], + "patents": [ + { + "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, + "file_path": "international/intellectual-property/wipo.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" + } + ], + "pathogen-surveillance": [ + { + "id": "ena", + "name": { + "en": "European Nucleotide Archive", + "zh": "欧洲核苷酸档案库" + }, + "authority_level": "international", + "data_url": "https://www.ebi.ac.uk/ena/browser/", + "has_api": true, + "file_path": "academic/biology/ena.json", + "geographic_scope": "global" + } + ], + "patient-outcomes": [ + { + "id": "canada-cihi", + "name": { + "en": "Canadian Institute for Health Information", + "zh": "加拿大健康信息研究所", + "native": "Institut canadien d'information sur la santé" + }, + "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" + } + ], + "payment-systems": [ + { + "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", + "geographic_scope": "global" + }, + { + "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", + "geographic_scope": "national" + }, + { + "id": "sbv", + "name": { + "en": "State Bank of Vietnam", + "zh": "越南国家银行" + }, + "authority_level": "government", + "data_url": "https://www.sbv.gov.vn/webcenter/portal/en/home/rm/public", + "has_api": false, + "file_path": "countries/asia/vietnam/sbv.json", + "geographic_scope": "national" + }, + { + "id": "uk-boe", + "name": { + "en": "Bank of England Statistical Interactive Database", + "zh": "英格兰银行统计数据库" + }, + "authority_level": "government", + "data_url": "https://www.bankofengland.co.uk/boeapps/database/", + "has_api": false, + "file_path": "countries/europe/uk/bank-of-england.json", + "geographic_scope": "national" + }, + { + "id": "mx-banxico", + "name": { + "en": "Bank of Mexico Economic Information System", + "zh": "墨西哥银行经济信息系统", + "native": "Sistema de Información Económica - Banco de México" + }, + "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": "brazil-bcb", + "name": { + "en": "Central Bank of Brazil", + "zh": "巴西中央银行", + "native": "Banco Central do Brasil" + }, + "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" + } + ], + "pension": [ + { + "id": "japan-gpif", + "name": { + "en": "Government Pension Investment Fund", + "zh": "日本政府养老投资基金" + }, + "authority_level": "government", + "data_url": "https://www.gpif.go.jp/en/performance/", + "has_api": false, + "file_path": "countries/asia/japan/japan-gpif.json", + "geographic_scope": "national" + } + ], + "personal-income": [ + { + "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" + } + ], + "pesticide-residues": [ + { + "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" + } + ], + "petrochemical": [ + { + "id": "china-sinopec", + "name": { + "en": "China Petrochemical Corporation (Sinopec Group)", + "zh": "中国石油化工集团有限公司" + }, + "authority_level": "government", + "data_url": "http://www.sinopecgroup.com/group/xhtml/shzr/", + "has_api": false, + "file_path": "china/resources/china-sinopec.json", + "geographic_scope": "national" + } + ], + "petrochemicals": [ + { + "id": "china-petroleum-chemical-federation", + "name": { + "en": "China Petroleum and Chemical Industry Federation", + "zh": "中国石油和化学工业联合会" + }, + "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" + } + ], + "petroleum": [ + { + "id": "china-cnooc", + "name": { + "en": "China National Offshore Oil Corporation", + "zh": "中国海洋石油集团有限公司" + }, + "authority_level": "government", + "data_url": "https://www.cnooc.com.cn", + "has_api": false, + "file_path": "china/resources/china-cnooc.json", + "geographic_scope": "national" + }, + { + "id": "china-cnpc", + "name": { + "en": "China National Petroleum Corporation", + "zh": "中国石油天然气集团有限公司" + }, + "authority_level": "government", + "data_url": "https://www.cnpc.com.cn/cnpc/nybg/common_index.shtml", + "has_api": false, + "file_path": "china/resources/china-cnpc.json", + "geographic_scope": "national" + }, + { + "id": "china-sinopec", + "name": { + "en": "China Petrochemical Corporation (Sinopec Group)", + "zh": "中国石油化工集团有限公司" + }, + "authority_level": "government", + "data_url": "http://www.sinopecgroup.com/group/xhtml/shzr/", + "has_api": false, + "file_path": "china/resources/china-sinopec.json", + "geographic_scope": "national" + }, + { + "id": "usa-eia", + "name": { + "en": "U.S. Energy Information Administration", + "zh": "美国能源信息署" + }, + "authority_level": "government", + "data_url": "https://www.eia.gov", + "has_api": true, + "file_path": "countries/north-america/usa/eia.json", + "geographic_scope": "national" + } + ], + "petroleum-industry": [ + { + "id": "china-petroleum-chemical-federation", + "name": { + "en": "China Petroleum and Chemical Industry Federation", + "zh": "中国石油和化学工业联合会" + }, + "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" + } + ], + "pharmaceutical-sciences": [ + { + "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" + }, + { + "id": "intl-chemspider", + "name": { + "en": "ChemSpider", + "zh": "化学蜘蛛数据库" + }, + "authority_level": "international", + "data_url": "https://www.chemspider.com", + "has_api": false, + "file_path": "academic/chemistry/chemspider.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" + }, + { + "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": [ + { + "id": "china-cams", + "name": { + "en": "Chinese Academy of Medical Sciences (CAMS)", + "zh": "中国医学科学院" + }, + "authority_level": "research", + "data_url": "https://www.cams.cn", + "has_api": false, + "file_path": "china/health/china-cams.json", + "geographic_scope": "national" + }, + { + "id": "china-catcm", + "name": { + "en": "China Association of Traditional Chinese Medicine", + "zh": "中国中药协会" + }, + "authority_level": "other", + "data_url": "https://www.catcm.org.cn", + "has_api": false, + "file_path": "china/health/china-catcm.json", + "geographic_scope": "national" + }, + { + "id": "china-chinadrugtrials", + "name": { + "en": "China Drug Clinical Trials Registration and Information Disclosure Platform", + "zh": "药物临床试验登记与信息公示平台" + }, + "authority_level": "government", + "data_url": "https://www.chinadrugtrials.org.cn", + "has_api": false, + "file_path": "china/health/china-chinadrugtrials.json", + "geographic_scope": "national" + }, + { + "id": "china-cpharma", + "name": { + "en": "Chinese Pharmaceutical Association", + "zh": "中国药学会" + }, + "authority_level": "research", + "data_url": "https://www.cpa.org.cn/?do=class&classid=250", + "has_api": false, + "file_path": "china/health/china-cpharma.json", + "geographic_scope": "national" + }, + { + "id": "china-nifdc", + "name": { + "en": "National Institutes for Food and Drug Control", + "zh": "中国食品药品检定研究院" + }, + "authority_level": "government", + "data_url": "https://www.nifdc.org.cn", + "has_api": false, + "file_path": "china/health/china-nifdc.json", + "geographic_scope": "national" + }, + { + "id": "canada-cihi", + "name": { + "en": "Canadian Institute for Health Information", + "zh": "加拿大健康信息研究所", + "native": "Institut canadien d'information sur la santé" + }, + "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": "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" + } + ], + "pharmacology": [ + { + "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" + }, + { + "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" + }, + { + "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": "china-cacms", + "name": { + "en": "China Academy of Chinese Medical Sciences", + "zh": "中国中医科学院" + }, + "authority_level": "research", + "data_url": "https://www.cacms.ac.cn/index.html", + "has_api": false, + "file_path": "china/health/china-cacms.json", + "geographic_scope": "national" + } + ], + "photometry-and-radiometry": [ + { + "id": "bipm-kcdb", + "name": { + "en": "BIPM Key Comparison Database (KCDB)", + "zh": "国际度量衡局关键比对数据库", + "native": "Bureau International des Poids et Mesures (BIPM)" + }, + "authority_level": "international", + "data_url": "https://www.bipm.org/kcdb", + "has_api": true, + "file_path": "international/standards-metrology/bipm-kcdb.json", + "geographic_scope": "global" + } + ], + "photonics": [ + { + "id": "china-optical-association", + "name": { + "en": "China Optics and Optoelectronics Manufacturers Association", + "zh": "中国光学光电子行业协会" + }, + "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" + } + ], + "photovoltaic-materials": [ + { + "id": "china-cemia", + "name": { + "en": "China Electronic Materials Industry Association", + "zh": "中国电子材料行业协会" + }, + "authority_level": "other", + "data_url": "http://www.cemia.org.cn", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cemia.json", + "geographic_scope": "national" + } + ], + "physics": [ + { + "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" + } + ], + "pipeline-regulation": [ + { + "id": "canada-cer", + "name": { + "en": "Canada Energy Regulator", + "zh": "加拿大能源监管局", + "native": "Régie de l'énergie du Canada" + }, + "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" + } + ], + "plastics": [ + { + "id": "china-cppia", + "name": { + "en": "China Plastics Processing Industry Association", + "zh": "中国塑料加工工业协会" + }, + "authority_level": "market", + "data_url": "http://www.cppia.com.cn", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cppia.json", + "geographic_scope": "national" + } + ], + "player-performance": [ + { + "id": "tennis-abstract-atp-wta", + "name": { + "en": "Tennis Abstract - ATP/WTA Data", + "zh": "Tennis Abstract - ATP/WTA网球数据" + }, + "authority_level": "research", + "data_url": "https://github.com/JeffSackmann/tennis_atp", + "has_api": false, + "file_path": "sectors/sports/tennis-abstract-atp-wta.json", + "geographic_scope": "global" + } + ], + "player-performance-analytics": [ + { + "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, + "file_path": "sectors/R-arts-entertainment/tennis-atp-wta-data.json", + "geographic_scope": "global" + } + ], + "policy": [ + { + "id": "china-npc-law", + "name": { + "en": "National People's Congress Law Database", + "zh": "全国人大法律法规数据库" + }, + "authority_level": "government", + "data_url": "https://flk.npc.gov.cn/", + "has_api": true, + "file_path": "china/governance/china-npc-law.json", + "geographic_scope": "national" + }, + { + "id": "china-pkulaw", + "name": { + "en": "PKU Law (Peking University Law Database)", + "zh": "北大法宝" + }, + "authority_level": "research", + "data_url": "https://www.pkulaw.com/law", + "has_api": false, + "file_path": "china/governance/china-pkulaw.json", + "geographic_scope": "national" + }, + { + "id": "china-craes", + "name": { + "en": "Chinese Research Academy of Environmental Sciences", + "zh": "中国环境科学研究院" + }, + "authority_level": "research", + "data_url": "https://www.craes.cn", + "has_api": false, + "file_path": "china/resources/environment/china-craes.json", + "geographic_scope": "national" + } + ], + "policy-coordination": [ + { + "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" + } + ], + "policy-research": [ + { + "id": "china-drcnet", + "name": { + "en": "DRCNET - Development Research Center Network", + "zh": "国研网" + }, + "authority_level": "research", + "data_url": "https://www.drcnet.com.cn", + "has_api": false, + "file_path": "china/economy/macro/china-drcnet.json", + "geographic_scope": "national" + } + ], + "political-participation": [ + { + "id": "afrobarometer", + "name": { + "en": "Afrobarometer", + "zh": "非洲晴雨表" + }, + "authority_level": "research", + "data_url": "https://www.afrobarometer.org/data/", + "has_api": false, + "file_path": "academic/social/afrobarometer.json", + "geographic_scope": "regional" + } + ], + "political-science": [ + { + "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", + "geographic_scope": "regional" + }, + { + "id": "china-cppcc", + "name": { + "en": "Chinese People's Political Consultative Conference", + "zh": "中国人民政治协商会议" + }, + "authority_level": "government", + "data_url": "http://www.cppcc.gov.cn", + "has_api": false, + "file_path": "china/governance/china-cppcc.json", + "geographic_scope": "national" + }, + { + "id": "china-cass", + "name": { + "en": "Chinese Academy of Social Sciences", + "zh": "中国社会科学院" + }, + "authority_level": "research", + "data_url": "http://www.cass.ac.cn/list/zw_sscp.html", + "has_api": false, + "file_path": "china/research/china-cass.json", + "geographic_scope": "national" + } + ], + "political-values": [ + { + "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", + "geographic_scope": "regional" + } + ], + "pollution": [ + { + "id": "china-ipe", + "name": { + "en": "Institute of Public & Environmental Affairs", + "zh": "公众环境研究中心" + }, + "authority_level": "research", + "data_url": "https://www.ipe.org.cn/AirMap_fxy/AirMap.html", + "has_api": false, + "file_path": "china/resources/environment/china-ipe.json", + "geographic_scope": "national" + } + ], + "population": [ + { + "id": "dhs", + "name": { + "en": "Demographic and Health Surveys (DHS) Program", + "zh": "人口与健康调查项目" + }, + "authority_level": "international", + "data_url": "https://dhsprogram.com/", + "has_api": true, + "file_path": "academic/health/dhs.json", + "geographic_scope": "regional" + }, + { + "id": "kostat", + "name": { + "en": "Statistics Korea (KOSTAT)", + "zh": "韩国统计厅" + }, + "authority_level": "government", + "data_url": "https://kosis.kr/eng/", + "has_api": true, + "file_path": "countries/asia/kostat.json", + "geographic_scope": "national" + }, + { + "id": "philippines-psa", + "name": { + "en": "Philippine Statistics Authority", + "zh": "菲律宾统计局" + }, + "authority_level": "government", + "data_url": "https://openstat.psa.gov.ph", + "has_api": false, + "file_path": "countries/asia/philippines/psa.json", + "geographic_scope": "national" + }, + { + "id": "vietnam-gso", + "name": { + "en": "General Statistics Office of Vietnam", + "zh": "越南统计总局" + }, + "authority_level": "government", + "data_url": "https://www.nso.gov.vn/en/statistical-data/", + "has_api": false, + "file_path": "countries/asia/vietnam/gso.json", + "geographic_scope": "national" + }, + { + "id": "finland-stat", + "name": { + "en": "Statistics Finland", + "zh": "芬兰统计局", + "native": "Tilastokeskus" + }, + "authority_level": "government", + "data_url": "https://pxdata.stat.fi/PxWeb/pxweb/en/StatFin/", + "has_api": true, + "file_path": "countries/europe/finland/finland-stat.json", + "geographic_scope": "national" + }, + { + "id": "poland-gus", + "name": { + "en": "Statistics Poland (GUS)", + "zh": "波兰中央统计局", + "native": "Główny Urząd Statystyczny" + }, + "authority_level": "government", + "data_url": "https://bdl.stat.gov.pl/BDL/start", + "has_api": true, + "file_path": "countries/europe/poland/poland-gus.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": "unfpa-china", + "name": { + "en": "UNFPA China", + "zh": "联合国人口基金驻华代表处" + }, + "authority_level": "international", + "data_url": "https://china.unfpa.org/en/publications", + "has_api": false, + "file_path": "international/demographics/unfpa-china.json", + "geographic_scope": "national" + } + ], + "population-and-census": [ + { + "id": "dosm", + "name": { + "en": "Department of Statistics Malaysia", + "zh": "马来西亚统计局" + }, + "authority_level": "government", + "data_url": "https://open.dosm.gov.my/", + "has_api": true, + "file_path": "countries/asia/dosm.json", + "geographic_scope": "national" + } + ], + "population-and-employment": [ + { + "id": "gso-vietnam", + "name": { + "en": "General Statistics Office of Vietnam", + "zh": "越南国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.gso.gov.vn/en/data-and-statistics/", + "has_api": false, + "file_path": "countries/asia/vietnam/gso-vietnam.json", + "geographic_scope": "national" + } + ], + "population-development": [ + { + "id": "unfpa-urbanization", + "name": { + "zh": "联合国人口基金 - 城镇化数据", + "en": "UNFPA - Urbanization Data" + }, + "authority_level": "international", + "data_url": "https://www.unfpa.org/urbanization", + "has_api": false, + "file_path": "international/demographics/unfpa-urbanization.json", + "geographic_scope": "global" + } + ], + "population-genetics": [ + { + "id": "1000-genomes", + "name": { + "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" + } + ], + "population-health": [ + { + "id": "canada-cihi", + "name": { + "en": "Canadian Institute for Health Information", + "zh": "加拿大健康信息研究所", + "native": "Institut canadien d'information sur la santé" + }, + "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": "us-cdc", + "name": { + "en": "Centers for Disease Control and Prevention", + "zh": "美国疾病控制与预防中心" + }, + "authority_level": "government", + "data_url": "https://wonder.cdc.gov/", + "has_api": true, + "file_path": "countries/north-america/usa/us-cdc.json", + "geographic_scope": "national" + } + ], + "postgraduate-admissions": [ + { + "id": "china-gaokao-chsi", + "name": { + "en": "China Postgraduate Admissions Information Network", + "zh": "中国研究生招生信息网" + }, + "authority_level": "government", + "data_url": "https://yz.chsi.com.cn/sch/", + "has_api": false, + "file_path": "china/education/higher_education/china-gaokao-chsi.json", + "geographic_scope": "national" + } + ], + "poverty": [ + { + "id": "owid", + "name": { + "en": "Our World in Data", + "zh": "用数据看世界" + }, + "authority_level": "research", + "data_url": "https://github.com/owid/owid-datasets", + "has_api": true, + "file_path": "academic/multidisciplinary/owid.json", + "geographic_scope": "global" + }, + { + "id": "indonesia-bps", + "name": { + "en": "Statistics Indonesia (BPS)", + "zh": "印度尼西亚中央统计局", + "native": "Badan Pusat Statistik" + }, + "authority_level": "government", + "data_url": "https://www.bps.go.id/en/statistics-table", + "has_api": true, + "file_path": "countries/asia/indonesia/indonesia-bps.json", + "geographic_scope": "national" + }, + { + "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" + }, + { + "id": "adb-vietnam-data", + "name": { + "en": "Asian Development Bank - Vietnam Country Data", + "zh": "亚洲开发银行越南国别数据" + }, + "authority_level": "international", + "data_url": "https://www.adb.org/countries/viet-nam/data", + "has_api": false, + "file_path": "international/economics/adb-vietnam-data.json", + "geographic_scope": "national" + } + ], + "poverty-and-inequality": [ + { + "id": "adb-data-library", + "name": { + "en": "Asian Development Bank Data Library", + "zh": "亚洲开发银行数据库" + }, + "authority_level": "international", + "data_url": "https://data.adb.org", + "has_api": true, + "file_path": "international/development/adb-data-library.json", + "geographic_scope": "regional" + } + ], + "poverty-reduction": [ + { + "id": "china-iprcc", + "name": { + "en": "International Poverty Reduction Center in China", + "zh": "中国国际减贫中心" + }, + "authority_level": "research", + "data_url": "https://www.iprcc.org.cn", + "has_api": false, + "file_path": "china/economy/macro/china-iprcc.json", + "geographic_scope": "national" + }, + { + "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" + } + ], + "precision-medicine": [ + { + "id": "tcga", + "name": { + "en": "The Cancer Genome Atlas (TCGA)", + "zh": "癌症基因组图谱" + }, + "authority_level": "government", + "data_url": "https://portal.gdc.cancer.gov/", + "has_api": true, + "file_path": "academic/health/tcga.json", + "geographic_scope": "national" + } + ], + "price-indices": [ + { + "id": "korea-bok", + "name": { + "en": "Bank of Korea", + "zh": "韩国银行", + "native": "한국은행" + }, + "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", + "geographic_scope": "national" + }, + { + "id": "gso-vietnam", + "name": { + "en": "General Statistics Office of Vietnam", + "zh": "越南国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.gso.gov.vn/en/data-and-statistics/", + "has_api": false, + "file_path": "countries/asia/vietnam/gso-vietnam.json", + "geographic_scope": "national" + } + ], + "price-monitoring": [ + { + "id": "china-shenzhen-drc", + "name": { + "en": "Shenzhen Municipal Development and Reform Commission", + "zh": "深圳市发展和改革委员会" + }, + "authority_level": "government", + "data_url": "http://fgw.sz.gov.cn/zwgk/", + "has_api": false, + "file_path": "china/economy/macro/china-shenzhen-drc.json", + "geographic_scope": "subnational" + } + ], + "price-statistics": [ + { + "id": "uk-ons-cpi-rpi", + "name": { + "en": "UK Office for National Statistics - Consumer Price Index and Retail Prices Index", + "zh": "英国国家统计局 - 消费者价格指数和零售价格指数" + }, + "authority_level": "government", + "data_url": "https://www.ons.gov.uk/economy/inflationandpriceindices", + "has_api": false, + "file_path": "countries/europe/uk-ons-cpi-rpi.json", + "geographic_scope": "national" + } + ], + "prices": [ + { + "id": "china-ndrc", + "name": { + "en": "National Development and Reform Commission", + "zh": "国家发展和改革委员会", + "native": "国家发展和改革委员会" + }, + "authority_level": "government", + "data_url": "https://www.ndrc.gov.cn/fgsj/", + "has_api": false, + "file_path": "china/economy/macro/ndrc.json", + "geographic_scope": "national" + }, + { + "id": "stats-sa", + "name": { + "en": "Statistics South Africa (Stats SA)", + "zh": "南非统计局", + "native": "Statistics South Africa (Stats SA)" + }, + "authority_level": "government", + "data_url": "https://www.statssa.gov.za/?page_id=1521", + "has_api": false, + "file_path": "countries/africa/south-africa/stats-sa.json", + "geographic_scope": "national" + }, + { + "id": "india-mospi", + "name": { + "en": "Ministry of Statistics and Programme Implementation (MoSPI)", + "zh": "印度统计与计划实施部", + "native": "सांख्यिकी और कार्यक्रम कार्यान्वयन मंत्रालय" + }, + "authority_level": "government", + "data_url": "https://mospi.gov.in/data", + "has_api": false, + "file_path": "countries/asia/india/india-mospi.json", + "geographic_scope": "national" + }, + { + "id": "indonesia-bps", + "name": { + "en": "Statistics Indonesia (BPS)", + "zh": "印度尼西亚中央统计局", + "native": "Badan Pusat Statistik" + }, + "authority_level": "government", + "data_url": "https://www.bps.go.id/en/statistics-table", + "has_api": true, + "file_path": "countries/asia/indonesia/indonesia-bps.json", + "geographic_scope": "national" + }, + { + "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", + "geographic_scope": "national" + }, + { + "id": "kostat-cpi", + "name": { + "en": "Statistics Korea (KOSTAT) - Consumer Price Index", + "zh": "韩国统计局 - 消费者物价指数", + "ko": "통계청 - 소비자물가지수" + }, + "authority_level": "government", + "data_url": "https://kosis.kr/eng/", + "has_api": true, + "file_path": "countries/asia/kostat-cpi.json", + "geographic_scope": "national" + }, + { + "id": "kostat", + "name": { + "en": "Statistics Korea (KOSTAT)", + "zh": "韩国统计厅" + }, + "authority_level": "government", + "data_url": "https://kosis.kr/eng/", + "has_api": true, + "file_path": "countries/asia/kostat.json", + "geographic_scope": "national" + }, + { + "id": "saudi-gastat", + "name": { + "en": "General Authority for Statistics (GASTAT)", + "zh": "沙特阿拉伯统计总局" + }, + "authority_level": "government", + "data_url": "https://www.stats.gov.sa/statistics", + "has_api": false, + "file_path": "countries/asia/saudi-arabia/saudi-gastat.json", + "geographic_scope": "national" + }, + { + "id": "austria-statistik", + "name": { + "en": "Statistics Austria", + "zh": "奥地利统计局", + "native": "Statistik Austria" + }, + "authority_level": "government", + "data_url": "https://www.statistik.at/statistiken", + "has_api": true, + "file_path": "countries/europe/at/austria-statistik.json", + "geographic_scope": "national" + }, + { + "id": "bulgaria-nsi", + "name": { + "en": "National Statistical Institute of Bulgaria (NSI)", + "zh": "保加利亚国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.nsi.bg/en/content/2666/statisticsdatabases", + "has_api": false, + "file_path": "countries/europe/bulgaria/bulgaria-nsi.json", + "geographic_scope": "national" + }, + { + "id": "denmark-dst", + "name": { + "en": "Statistics Denmark", + "zh": "丹麦统计局", + "native": "Danmarks Statistik" + }, + "authority_level": "government", + "data_url": "https://www.dst.dk/en/Statistik", + "has_api": true, + "file_path": "countries/europe/dk/denmark-dst.json", + "geographic_scope": "national" + }, + { + "id": "france-insee", + "name": { + "en": "INSEE - National Institute of Statistics and Economic Studies", + "zh": "法国国家统计与经济研究所", + "native": "Institut national de la statistique et des études économiques" + }, + "authority_level": "government", + "data_url": "https://www.insee.fr/en/statistiques", + "has_api": true, + "file_path": "countries/europe/fr/france-insee.json", + "geographic_scope": "national" + }, + { + "id": "greece-elstat", + "name": { + "en": "Hellenic Statistical Authority (ELSTAT)", + "zh": "希腊统计局", + "native": "Ελληνική Στατιστική Αρχή (ΕΛΣΤΑΤ)" + }, + "authority_level": "government", + "data_url": "https://www.statistics.gr/en/statistics", + "has_api": false, + "file_path": "countries/europe/greece/greece-elstat.json", + "geographic_scope": "national" + }, + { + "id": "romania-ins", + "name": { + "en": "National Institute of Statistics (Romania)", + "zh": "罗马尼亚国家统计局" + }, + "authority_level": "government", + "data_url": "https://insse.ro/cms/en/statistici-2", + "has_api": true, + "file_path": "countries/europe/romania/romania-ins.json", + "geographic_scope": "national" + }, + { + "id": "russia-rosstat", + "name": { + "en": "Federal State Statistics Service (Rosstat)", + "zh": "俄罗斯联邦统计局", + "native": "Федеральная служба государственной статистики (Росстат)" + }, + "authority_level": "government", + "data_url": "https://rosstat.gov.ru/statistics", + "has_api": true, + "file_path": "countries/europe/russia/russia-rosstat.json", + "geographic_scope": "national" + }, + { + "id": "slovenia-surs", + "name": { + "en": "Statistical Office of the Republic of Slovenia (SURS)", + "zh": "斯洛文尼亚共和国统计局" + }, + "authority_level": "government", + "data_url": "https://www.stat.si/StatWeb/en", + "has_api": true, + "file_path": "countries/europe/slovenia/slovenia-surs.json", + "geographic_scope": "national" + }, + { + "id": "mexico-inegi", + "name": { + "en": "National Institute of Statistics and Geography (INEGI)", + "zh": "墨西哥国家统计和地理研究所", + "native": "Instituto Nacional de Estadística y Geografía (INEGI)" + }, + "authority_level": "government", + "data_url": "https://www.inegi.org.mx/datos/", + "has_api": true, + "file_path": "countries/north-america/mexico/mexico-inegi.json", + "geographic_scope": "national" + }, + { + "id": "us-bls", + "name": { + "en": "Bureau of Labor Statistics", + "zh": "劳工统计局" + }, + "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": "nz-stats", + "name": { + "en": "Statistics New Zealand (Stats NZ)", + "zh": "新西兰统计局" + }, + "authority_level": "government", + "data_url": "https://infoshare.stats.govt.nz", + "has_api": false, + "file_path": "countries/oceania/new-zealand/nz-stats.json", + "geographic_scope": "national" + }, + { + "id": "colombia-dane", + "name": { + "en": "National Administrative Department of Statistics (DANE)", + "zh": "哥伦比亚国家统计局", + "native": "Departamento Administrativo Nacional de Estadística (DANE)" + }, + "authority_level": "government", + "data_url": "https://www.dane.gov.co/index.php/estadisticas-por-tema", + "has_api": true, + "file_path": "countries/south-america/colombia/colombia-dane.json", + "geographic_scope": "national" + }, + { + "id": "peru-inei", + "name": { + "en": "National Institute of Statistics and Informatics of Peru (INEI)", + "zh": "秘鲁国家统计和信息学研究所" + }, + "authority_level": "government", + "data_url": "https://www.inei.gob.pe/estadisticas/", + "has_api": false, + "file_path": "countries/south-america/peru/peru-inei.json", + "geographic_scope": "national" + }, + { + "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" + } + ], + "prices-and-inflation": [ + { + "id": "dosm", + "name": { + "en": "Department of Statistics Malaysia", + "zh": "马来西亚统计局" + }, + "authority_level": "government", + "data_url": "https://open.dosm.gov.my/", + "has_api": true, + "file_path": "countries/asia/dosm.json", + "geographic_scope": "national" + } + ], + "production": [ + { + "id": "mx-banxico", + "name": { + "en": "Bank of Mexico Economic Information System", + "zh": "墨西哥银行经济信息系统", + "native": "Sistema de Información Económica - Banco de México" + }, + "authority_level": "government", + "data_url": "https://www.banxico.org.mx", + "has_api": true, + "file_path": "countries/north-america/mexico/banxico.json", + "geographic_scope": "national" + } + ], + "productivity": [ + { + "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, + "file_path": "academic/economics/ggdc-databases.json", + "geographic_scope": "global" + }, + { + "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": "penn-world-table", + "name": { + "en": "Penn World Table", + "zh": "宾州世界表" + }, + "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": "us-bls", + "name": { + "en": "Bureau of Labor Statistics", + "zh": "劳工统计局" + }, + "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" + } + ], + "professional-sports-data": [ + { + "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, + "file_path": "sectors/R-arts-entertainment/tennis-atp-wta-data.json", + "geographic_scope": "global" + } + ], + "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", + "geographic_scope": "global" + } + ], + "protein-science": [ + { + "id": "intl-rcsb-pdb", + "name": { + "en": "Protein Data Bank (PDB)", + "zh": "蛋白质数据银行" + }, + "authority_level": "research", + "data_url": "https://www.rcsb.org", + "has_api": true, + "file_path": "academic/biology/pdb.json", + "geographic_scope": "global" + } + ], + "proteomics": [ + { + "id": "alphafold-db", + "name": { + "en": "AlphaFold Protein Structure Database", + "zh": "AlphaFold蛋白质结构数据库" + }, + "authority_level": "international", + "data_url": "https://alphafold.com", + "has_api": true, + "file_path": "academic/biology/alphafold-db.json", + "geographic_scope": "global" + }, + { + "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": "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" + } + ], + "public-finance": [ + { + "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", + "geographic_scope": "national" + }, + { + "id": "vietnam-mof", + "name": { + "en": "Ministry of Finance of Vietnam", + "zh": "越南财政部" + }, + "authority_level": "government", + "data_url": "https://www.mof.gov.vn/webcenter/portal/btcen/pages_r/m/statistics", + "has_api": false, + "file_path": "countries/asia/vietnam/vietnam-mof.json", + "geographic_scope": "national" + }, + { + "id": "mx-banxico", + "name": { + "en": "Bank of Mexico Economic Information System", + "zh": "墨西哥银行经济信息系统", + "native": "Sistema de Información Económica - Banco de México" + }, + "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": "adb-data-library", + "name": { + "en": "Asian Development Bank Data Library", + "zh": "亚洲开发银行数据库" + }, + "authority_level": "international", + "data_url": "https://data.adb.org", + "has_api": true, + "file_path": "international/development/adb-data-library.json", + "geographic_scope": "regional" + } + ], + "public-funding": [ + { + "id": "china-cnaf", + "name": { + "en": "China National Arts Fund", + "zh": "国家艺术基金" + }, + "authority_level": "government", + "data_url": "https://www.cnaf.cn", + "has_api": false, + "file_path": "china/governance/culture/china-cnaf.json", + "geographic_scope": "national" + } + ], + "public-health": [ + { + "id": "china-mem", + "name": { + "en": "Ministry of Emergency Management of China", + "zh": "中华人民共和国应急管理部" + }, + "authority_level": "government", + "data_url": "https://www.mem.gov.cn/gk/tjsj/", + "has_api": false, + "file_path": "china/governance/china-mem.json", + "geographic_scope": "national" + }, + { + "id": "china-cdc", + "name": { + "en": "Chinese Center for Disease Control and Prevention", + "zh": "中国疾病预防控制中心" + }, + "authority_level": "government", + "data_url": "https://www.chinacdc.cn/gzdt/", + "has_api": false, + "file_path": "china/health/china-cdc.json", + "geographic_scope": "national" + }, + { + "id": "china-nhei", + "name": { + "en": "China National Health Development Research Center", + "zh": "国家卫生健康委卫生发展研究中心" + }, + "authority_level": "research", + "data_url": "https://www.nhei.cn", + "has_api": false, + "file_path": "china/health/china-nhei.json", + "geographic_scope": "national" + }, + { + "id": "china-nmpa", + "name": { + "en": "National Medical Products Administration of China", + "zh": "国家药品监督管理局" + }, + "authority_level": "government", + "data_url": "https://www.nmpa.gov.cn/datasearch/home-index.html", + "has_api": false, + "file_path": "china/health/china-nmpa.json", + "geographic_scope": "national" + }, + { + "id": "china-cnemc", + "name": { + "en": "China National Environmental Monitoring Centre", + "zh": "中国环境监测总站" + }, + "authority_level": "government", + "data_url": "https://www.cnemc.cn/sssj/", + "has_api": false, + "file_path": "china/resources/environment/china-cnemc.json", + "geographic_scope": "national" + }, + { + "id": "china-mee", + "name": { + "en": "Ministry of Ecology and Environment of China - Environmental Data", + "zh": "生态环境部环境数据" + }, + "authority_level": "government", + "data_url": "https://www.mee.gov.cn/hjzl/", + "has_api": false, + "file_path": "china/resources/environment/china-mee.json", + "geographic_scope": "national" + }, + { + "id": "us-cdc", + "name": { + "en": "Centers for Disease Control and Prevention", + "zh": "美国疾病控制与预防中心" + }, + "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": "africa-cdc", + "name": { + "en": "Africa CDC Health Data", + "zh": "非洲疾控中心健康数据" + }, + "authority_level": "international", + "data_url": "https://africacdc.org", + "has_api": false, + "file_path": "international/health/africa-cdc.json", + "geographic_scope": "regional" + }, + { + "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, + "file_path": "international/health/ecdc-surveillance.json", + "geographic_scope": "regional" + } + ], + "public-opinion": [ + { + "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", + "geographic_scope": "regional" + } + ], + "public-resource-trading": [ + { + "id": "china-gpai", + "name": { + "en": "China Public Auction Network", + "zh": "公拍网" + }, + "authority_level": "commercial", + "data_url": "https://www.gpai.net/sf/", + "has_api": false, + "file_path": "china/economy/china-gpai.json", + "geographic_scope": "national" + }, + { + "id": "china-shenzhen-prtc", + "name": { + "en": "Shenzhen Public Resource Trading Center", + "zh": "深圳市公共资源交易中心" + }, + "authority_level": "government", + "data_url": "https://www.szggzy.com/", + "has_api": false, + "file_path": "china/economy/market/china-shenzhen-prtc.json", + "geographic_scope": "subnational" + } + ], + "public-safety": [ + { + "id": "china-cfpa", + "name": { + "en": "China Fire Protection Association", + "zh": "中国消防协会" + }, + "authority_level": "other", + "data_url": "http://www.cfpa.cn", + "has_api": false, + "file_path": "china/governance/china-cfpa.json", + "geographic_scope": "national" + }, + { + "id": "china-nfra-fire", + "name": { + "en": "National Fire and Rescue Administration of China", + "zh": "国家消防救援局" + }, + "authority_level": "government", + "data_url": "https://www.119.gov.cn", + "has_api": false, + "file_path": "china/governance/china-nfra-fire.json", + "geographic_scope": "national" + }, + { + "id": "china-nncc", + "name": { + "en": "China National Narcotics Control Commission", + "zh": "中国国家禁毒委员会" + }, + "authority_level": "government", + "data_url": "http://www.nncc626.com", + "has_api": false, + "file_path": "china/governance/china-nncc.json", + "geographic_scope": "national" + }, + { + "id": "china-mps", + "name": { + "en": "Ministry of Public Security of China", + "zh": "中华人民共和国公安部" + }, + "authority_level": "government", + "data_url": "https://www.mps.gov.cn/n6557558/index.html", + "has_api": false, + "file_path": "china/national/china-mps.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" + } + ], + "public-sector": [ + { + "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" + } + ], + "public-services": [ + { + "id": "afrobarometer", + "name": { + "en": "Afrobarometer", + "zh": "非洲晴雨表" + }, + "authority_level": "research", + "data_url": "https://www.afrobarometer.org/data/", + "has_api": false, + "file_path": "academic/social/afrobarometer.json", + "geographic_scope": "regional" + }, + { + "id": "china-shenzhen-open-data", + "name": { + "en": "Shenzhen Open Data Platform", + "zh": "深圳市政府数据开放平台" + }, + "authority_level": "government", + "data_url": "https://opendata.sz.gov.cn/data/dataSet/toDataList", + "has_api": true, + "file_path": "china/economy/provincial/china-shenzhen-open-data.json", + "geographic_scope": "subnational" + } + ], + "quality": [ + { + "id": "china-cnas", + "name": { + "en": "China National Accreditation Service for Conformity Assessment", + "zh": "中国合格评定国家认可委员会" + }, + "authority_level": "government", + "data_url": "https://www.cnas.org.cn/", + "has_api": false, + "file_path": "china/governance/china-cnas.json", + "geographic_scope": "national" + }, + { + "id": "china-cnca", + "name": { + "en": "China National Accreditation Service for Conformity Assessment", + "zh": "中国国家认证认可监督管理委员会" + }, + "authority_level": "government", + "data_url": "https://www.cnca.gov.cn", + "has_api": false, + "file_path": "china/governance/china-cnca.json", + "geographic_scope": "national" + } + ], + "quality-management": [ + { + "id": "china-sac-standards", + "name": { + "en": "Standardization Administration of China (SAC)", + "zh": "国家标准化管理委员会" + }, + "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" + } + ], + "quantitative-trading": [ + { + "id": "joinquant", + "name": { + "zh": "聚宽量化交易平台", + "en": "JoinQuant Quantitative Trading Platform" + }, + "authority_level": "commercial", + "data_url": "https://www.joinquant.com/data", + "has_api": true, + "file_path": "sectors/finance_markets/joinquant.json", + "geographic_scope": "national" + } + ], + "rail": [ + { + "id": "china-crrc", + "name": { + "en": "CRRC Corporation Limited", + "zh": "中国中车股份有限公司" + }, + "authority_level": "commercial", + "data_url": "https://www.crrcgc.cc", + "has_api": false, + "file_path": "china/infrastructure/china-crrc.json", + "geographic_scope": "national" + } + ], + "rare-earth-industry": [ + { + "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, + "file_path": "sectors/B-mining/rare-earth/china-rare-earth-association.json", + "geographic_scope": "national" + } + ], + "reading-literacy": [ + { + "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, + "file_path": "international/education/oecd-pisa.json", + "geographic_scope": "global" + } + ], + "real-estate": [ + { + "id": "china-beike-research", + "name": { + "en": "Beike Research Institute", + "zh": "贝壳研究院" + }, + "authority_level": "market", + "data_url": "https://research.ke.com", + "has_api": false, + "file_path": "china/construction/china-beike-research.json", + "geographic_scope": "national" + }, + { + "id": "china-cih-index", + "name": { + "en": "China Index Academy (CIH Cloud)", + "zh": "中指研究院(中指云)" + }, + "authority_level": "research", + "data_url": "https://www.cih-index.com", + "has_api": false, + "file_path": "china/construction/china-cih-index.json", + "geographic_scope": "national" + }, + { + "id": "china-creprice", + "name": { + "en": "China Real Estate Price Information Network", + "zh": "中国房价行情网" + }, + "authority_level": "market", + "data_url": "http://www.creprice.cn", + "has_api": false, + "file_path": "china/construction/china-creprice.json", + "geographic_scope": "national" + }, + { + "id": "china-cric", + "name": { + "en": "China Real Estate Information Corporation (CRIC)", + "zh": "克而瑞研究中心(CRIC)" + }, + "authority_level": "market", + "data_url": "https://www.cric.com/newhouse/", + "has_api": false, + "file_path": "china/construction/china-cric.json", + "geographic_scope": "national" + }, + { + "id": "china-cscec", + "name": { + "en": "China State Construction Engineering Corporation", + "zh": "中国建筑集团有限公司" + }, + "authority_level": "commercial", + "data_url": "https://www.cscec.com", + "has_api": false, + "file_path": "china/construction/china-cscec.json", + "geographic_scope": "national" + }, + { + "id": "china-fangjia", + "name": { + "en": "Fangjia.com - China Housing Price Network", + "zh": "房价网(fangjia.com)" + }, + "authority_level": "market", + "data_url": "https://www.fangjia.com", + "has_api": false, + "file_path": "china/construction/china-fangjia.json", + "geographic_scope": "national" + }, + { + "id": "china-gd-housing", + "name": { + "en": "Guangdong Provincial Department of Housing and Urban-Rural Development", + "zh": "广东省住房和城乡建设厅" + }, + "authority_level": "government", + "data_url": "https://zfcxjst.gd.gov.cn/xxgk/", + "has_api": false, + "file_path": "china/construction/china-gd-housing.json", + "geographic_scope": "subnational" + }, + { + "id": "china-shenzhen-housing", + "name": { + "en": "Shenzhen Municipal Housing and Construction Bureau", + "zh": "深圳市住房和建设局" + }, + "authority_level": "government", + "data_url": "https://zjj.sz.gov.cn/xxgk/", + "has_api": false, + "file_path": "china/construction/china-shenzhen-housing.json", + "geographic_scope": "subnational" + }, + { + "id": "china-alibaba-auction", + "name": { + "en": "Alibaba Judicial Auction Platform", + "zh": "阿里拍卖·司法" + }, + "authority_level": "commercial", + "data_url": "https://sf.taobao.com", + "has_api": false, + "file_path": "china/economy/china-alibaba-auction.json", + "geographic_scope": "national" + }, + { + "id": "china-gpai", + "name": { + "en": "China Public Auction Network", + "zh": "公拍网" + }, + "authority_level": "commercial", + "data_url": "https://www.gpai.net/sf/", + "has_api": false, + "file_path": "china/economy/china-gpai.json", + "geographic_scope": "national" + }, + { + "id": "china-jd-auction", + "name": { + "en": "JD.com Judicial Auction Platform", + "zh": "京东拍卖·司法" + }, + "authority_level": "commercial", + "data_url": "https://auction.jd.com/sifa.html", + "has_api": false, + "file_path": "china/economy/china-jd-auction.json", + "geographic_scope": "national" + }, + { + "id": "china-shenzhen-prtc", + "name": { + "en": "Shenzhen Public Resource Trading Center", + "zh": "深圳市公共资源交易中心" + }, + "authority_level": "government", + "data_url": "https://www.szggzy.com/", + "has_api": false, + "file_path": "china/economy/market/china-shenzhen-prtc.json", + "geographic_scope": "subnational" + }, + { + "id": "china-court-auction", + "name": { + "en": "People's Court Litigation Assets Network", + "zh": "人民法院诉讼资产网" + }, + "authority_level": "government", + "data_url": "https://www.rmfysszc.gov.cn", + "has_api": false, + "file_path": "china/governance/china-court-auction.json", + "geographic_scope": "national" + }, + { + "id": "china-guangdong-nr", + "name": { + "en": "Guangdong Provincial Department of Natural Resources", + "zh": "广东省自然资源厅" + }, + "authority_level": "government", + "data_url": "https://nr.gd.gov.cn/zwgknew/index.html", + "has_api": false, + "file_path": "china/resources/china-guangdong-nr.json", + "geographic_scope": "subnational" + }, + { + "id": "china-landchina", + "name": { + "en": "China Land Market Network", + "zh": "中国土地市场网" + }, + "authority_level": "government", + "data_url": "https://www.landchina.com/default.aspx?tabid=226", + "has_api": false, + "file_path": "china/resources/china-landchina.json", + "geographic_scope": "national" + }, + { + "id": "china-shenzhen-pnr", + "name": { + "en": "Shenzhen Municipal Planning and Natural Resources Bureau", + "zh": "深圳市规划和自然资源局" + }, + "authority_level": "government", + "data_url": "https://pnr.sz.gov.cn/xxgk/", + "has_api": false, + "file_path": "china/resources/china-shenzhen-pnr.json", + "geographic_scope": "subnational" + }, + { + "id": "us-hud", + "name": { + "en": "U.S. Department of Housing and Urban Development", + "zh": "美国住房和城市发展部", + "native": "U.S. Department of Housing and Urban Development" + }, + "authority_level": "government", + "data_url": "https://www.huduser.gov/portal/datasets/", + "has_api": true, + "file_path": "international/construction/us-hud.json", + "geographic_scope": "national" + } + ], + "regional-cooperation": [ + { + "id": "adb", + "name": { + "en": "Asian Development Bank Data", + "zh": "亚洲开发银行数据" + }, + "authority_level": "international", + "data_url": "https://www.adb.org/what-we-do/data", + "has_api": false, + "file_path": "international/economics/adb.json", + "geographic_scope": "regional" + } + ], + "regional-development": [ + { + "id": "china-drcnet", + "name": { + "en": "DRCNET - Development Research Center Network", + "zh": "国研网" + }, + "authority_level": "research", + "data_url": "https://www.drcnet.com.cn", + "has_api": false, + "file_path": "china/economy/macro/china-drcnet.json", + "geographic_scope": "national" + }, + { + "id": "china-sass", + "name": { + "en": "Shanghai Academy of Social Sciences", + "zh": "上海社会科学院" + }, + "authority_level": "research", + "data_url": "https://www.sass.org.cn", + "has_api": false, + "file_path": "china/research/china-sass.json", + "geographic_scope": "national" + } + ], + "regional-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", + "geographic_scope": "national" + } + ], + "regional-integration": [ + { + "id": "adb-data-library", + "name": { + "en": "Asian Development Bank Data Library", + "zh": "亚洲开发银行数据库" + }, + "authority_level": "international", + "data_url": "https://data.adb.org", + "has_api": true, + "file_path": "international/development/adb-data-library.json", + "geographic_scope": "regional" + }, + { + "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, + "file_path": "international/development/caf.json", + "geographic_scope": "regional" + } + ], + "regulation": [ + { + "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": "china-nifa", + "name": { + "en": "National Internet Finance Association of China", + "zh": "中国互联网金融协会" + }, + "authority_level": "other", + "data_url": "https://www.nifa.org.cn", + "has_api": false, + "file_path": "china/finance/china-nifa.json", + "geographic_scope": "national" + }, + { + "id": "hk-sfc", + "name": { + "en": "Securities and Futures Commission of Hong Kong", + "zh": "香港证券及期货事务监察委员会" + }, + "authority_level": "government", + "data_url": "https://www.sfc.hk/en/Regulatory-functions/Products", + "has_api": false, + "file_path": "countries/asia/hk-sfc.json", + "geographic_scope": "national" + }, + { + "id": "japan-fsa", + "name": { + "en": "Japan Financial Services Agency", + "zh": "日本金融厅" + }, + "authority_level": "government", + "data_url": "https://www.fsa.go.jp/en/refer/index.html", + "has_api": false, + "file_path": "countries/asia/japan/japan-fsa.json", + "geographic_scope": "national" + }, + { + "id": "eu-construction", + "name": { + "en": "European Commission - Construction and Buildings", + "zh": "欧盟委员会 - 建筑与建设", + "native": "European Commission - Construction and Buildings" + }, + "authority_level": "international", + "data_url": "https://ec.europa.eu/growth/sectors/construction_en", + "has_api": false, + "file_path": "international/construction/eu-construction.json", + "geographic_scope": "regional" + } + ], + "regulatory": [ + { + "id": "china-npc-law", + "name": { + "en": "National People's Congress Law Database", + "zh": "全国人大法律法规数据库" + }, + "authority_level": "government", + "data_url": "https://flk.npc.gov.cn/", + "has_api": true, + "file_path": "china/governance/china-npc-law.json", + "geographic_scope": "national" + }, + { + "id": "china-spc", + "name": { + "en": "Supreme People's Court of China", + "zh": "最高人民法院" + }, + "authority_level": "government", + "data_url": "https://www.court.gov.cn/sfsj.html", + "has_api": false, + "file_path": "china/governance/china-spc.json", + "geographic_scope": "national" + }, + { + "id": "china-spp", + "name": { + "en": "Supreme People's Procuratorate of China", + "zh": "最高人民检察院" + }, + "authority_level": "government", + "data_url": "https://www.spp.gov.cn/spp/jcdt/jcgzdt/index_1.shtml", + "has_api": false, + "file_path": "china/governance/china-spp.json", + "geographic_scope": "national" + } + ], + "regulatory-capital": [ + { + "id": "uk-boe", + "name": { + "en": "Bank of England Statistical Interactive Database", + "zh": "英格兰银行统计数据库" + }, + "authority_level": "government", + "data_url": "https://www.bankofengland.co.uk/boeapps/database/", + "has_api": false, + "file_path": "countries/europe/uk/bank-of-england.json", + "geographic_scope": "national" + } + ], + "regulatory-standards": [ + { + "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" + } + ], + "remote-sensing": [ + { + "id": "china-nsmc", + "name": { + "en": "National Satellite Meteorological Center of China", + "zh": "国家卫星气象中心" + }, + "authority_level": "government", + "data_url": "https://www.nsmc.org.cn/nsmc/cn/satellite/index.html", + "has_api": false, + "file_path": "china/national/meteorology/china-nsmc.json", + "geographic_scope": "global" + }, + { + "id": "china-casm", + "name": { + "en": "Chinese Academy of Surveying and Mapping", + "zh": "中国测绘科学研究院" + }, + "authority_level": "research", + "data_url": "https://www.casm.ac.cn", + "has_api": false, + "file_path": "china/research/china-casm.json", + "geographic_scope": "national" + }, + { + "id": "china-igsnrr", + "name": { + "en": "Institute of Geographic Sciences and Natural Resources Research, Chinese Academy of Sciences", + "zh": "中国科学院地理科学与资源研究所" + }, + "authority_level": "research", + "data_url": "http://www.igsnrr.ac.cn", + "has_api": false, + "file_path": "china/research/china-igsnrr.json", + "geographic_scope": "national" + }, + { + "id": "china-nsoas", + "name": { + "en": "National Satellite Ocean Application Service", + "zh": "国家卫星海洋应用中心" + }, + "authority_level": "government", + "data_url": "http://www.nsoas.org.cn", + "has_api": false, + "file_path": "china/resources/ocean/china-nsoas.json", + "geographic_scope": "national" + }, + { + "id": "usgs-earthexplorer", + "name": { + "en": "USGS EarthExplorer", + "zh": "美国地质调查局地球探索者" + }, + "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": "intl-copernicus-cdse", + "name": { + "en": "Copernicus Data Space Ecosystem", + "zh": "哥白尼数据空间生态系统" + }, + "authority_level": "international", + "data_url": "https://dataspace.copernicus.eu", + "has_api": true, + "file_path": "international/earth-science/copernicus-data-space.json", + "geographic_scope": "global" + } + ], + "renewable-energy": [ + { + "id": "china-huaneng", + "name": { + "en": "China Huaneng Group", + "zh": "中国华能集团有限公司" + }, + "authority_level": "commercial", + "data_url": "https://www.chng.com.cn", + "has_api": false, + "file_path": "china/resources/china-huaneng.json", + "geographic_scope": "national" + }, + { + "id": "canada-cer", + "name": { + "en": "Canada Energy Regulator", + "zh": "加拿大能源监管局", + "native": "Régie de l'énergie du Canada" + }, + "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": "usa-eia", + "name": { + "en": "U.S. Energy Information Administration", + "zh": "美国能源信息署" + }, + "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", + "name": { + "en": "Statistical Review of World Energy", + "zh": "世界能源统计年鉴" + }, + "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" + } + ], + "reproductive-health": [ + { + "id": "unfpa-china", + "name": { + "en": "UNFPA China", + "zh": "联合国人口基金驻华代表处" + }, + "authority_level": "international", + "data_url": "https://china.unfpa.org/en/publications", + "has_api": false, + "file_path": "international/demographics/unfpa-china.json", + "geographic_scope": "national" + }, + { + "id": "unfpa-urbanization", + "name": { + "zh": "联合国人口基金 - 城镇化数据", + "en": "UNFPA - Urbanization Data" + }, + "authority_level": "international", + "data_url": "https://www.unfpa.org/urbanization", + "has_api": false, + "file_path": "international/demographics/unfpa-urbanization.json", + "geographic_scope": "global" + } + ], + "research": [ + { + "id": "china-sic", + "name": { + "en": "State Information Center of China", + "zh": "国家信息中心" + }, + "authority_level": "government", + "data_url": "https://www.sic.gov.cn/", + "has_api": false, + "file_path": "china/economy/macro/china-sic.json", + "geographic_scope": "national" + }, + { + "id": "china-nlc", + "name": { + "en": "National Library of China", + "zh": "中国国家图书馆" + }, + "authority_level": "government", + "data_url": "https://www.nlc.cn/pcab/", + "has_api": false, + "file_path": "china/education/china-nlc.json", + "geographic_scope": "national" + }, + { + "id": "china-cacm", + "name": { + "en": "Chinese Association of Chinese Medicine", + "zh": "中华中医药学会" + }, + "authority_level": "research", + "data_url": "https://www.cacm.org.cn", + "has_api": false, + "file_path": "china/health/china-cacm.json", + "geographic_scope": "national" + }, + { + "id": "china-cams", + "name": { + "en": "Chinese Academy of Medical Sciences (CAMS)", + "zh": "中国医学科学院" + }, + "authority_level": "research", + "data_url": "https://www.cams.cn", + "has_api": false, + "file_path": "china/health/china-cams.json", + "geographic_scope": "national" + }, + { + "id": "china-cpharma", + "name": { + "en": "Chinese Pharmaceutical Association", + "zh": "中国药学会" + }, + "authority_level": "research", + "data_url": "https://www.cpa.org.cn/?do=class&classid=250", + "has_api": false, + "file_path": "china/health/china-cpharma.json", + "geographic_scope": "national" + }, + { + "id": "china-medical-association", + "name": { + "en": "Chinese Medical Association", + "zh": "中华医学会" + }, + "authority_level": "research", + "data_url": "https://www.cma.org.cn/col/col5601/index.html", + "has_api": false, + "file_path": "china/health/china-medical-association.json", + "geographic_scope": "national" + }, + { + "id": "china-phirda", + "name": { + "en": "China Pharmaceutical Innovation and Research Development Association", + "zh": "中国医药创新促进会" + }, + "authority_level": "other", + "data_url": "https://www.phirda.com", + "has_api": false, + "file_path": "china/health/china-phirda.json", + "geographic_scope": "national" + }, + { + "id": "china-cae", + "name": { + "en": "Chinese Academy of Engineering", + "zh": "中国工程院" + }, + "authority_level": "research", + "data_url": "https://www.cae.cn/cae/html/main/col73/column_73_1.html", + "has_api": false, + "file_path": "china/research/china-cae.json", + "geographic_scope": "national" + }, + { + "id": "china-cas", + "name": { + "en": "Chinese Academy of Sciences - Science Data Bank", + "zh": "中国科学院科学数据库" + }, + "authority_level": "research", + "data_url": "https://www.scidb.cn/", + "has_api": false, + "file_path": "china/research/china-cas.json", + "geographic_scope": "national" + }, + { + "id": "china-cast", + "name": { + "en": "China Association for Science and Technology", + "zh": "中国科学技术协会" + }, + "authority_level": "other", + "data_url": "https://www.cast.org.cn/xw/", + "has_api": false, + "file_path": "china/research/china-cast.json", + "geographic_scope": "national" + }, + { + "id": "china-casted", + "name": { + "en": "China Academy of Science and Technology for Development", + "zh": "中国科学技术发展战略研究院" + }, + "authority_level": "research", + "data_url": "http://www.casted.org.cn/channel/", + "has_api": false, + "file_path": "china/research/china-casted.json", + "geographic_scope": "national" + }, + { + "id": "china-ccs-crop", + "name": { + "en": "Chinese Crop Science Society", + "zh": "中国作物学会" + }, + "authority_level": "research", + "data_url": "https://www.chinacrops.org", + "has_api": false, + "file_path": "china/research/china-ccs-crop.json", + "geographic_scope": "national" + }, + { + "id": "china-cf40", + "name": { + "en": "China Finance 40 Forum (CF40)", + "zh": "中国金融四十人论坛" + }, + "authority_level": "research", + "data_url": "https://www.cf40.com/research", + "has_api": false, + "file_path": "china/research/china-cf40.json", + "geographic_scope": "national" + }, + { + "id": "china-cufe-iigf", + "name": { + "en": "International Institute of Green Finance (IIGF), Central University of Finance and Economics", + "zh": "中央财经大学绿色金融国际研究院" + }, + "authority_level": "research", + "data_url": "https://iigf.cufe.edu.cn/yjcg/yjbg.htm", + "has_api": false, + "file_path": "china/research/china-cufe-iigf.json", + "geographic_scope": "national" + }, + { + "id": "china-gscloud", + "name": { + "en": "Geospatial Data Cloud - Computer Network Information Center, CAS", + "zh": "地理空间数据云(中国科学院计算机网络信息中心)" + }, + "authority_level": "research", + "data_url": "https://www.gscloud.cn/search", + "has_api": false, + "file_path": "china/research/china-gscloud.json", + "geographic_scope": "global" + }, + { + "id": "china-istic", + "name": { + "en": "Institute of Scientific and Technical Information of China", + "zh": "中国科学技术信息研究所" + }, + "authority_level": "research", + "data_url": "https://www.istic.ac.cn/", + "has_api": false, + "file_path": "china/research/china-istic.json", + "geographic_scope": "national" + }, + { + "id": "china-nsfc", + "name": { + "en": "National Natural Science Foundation of China", + "zh": "国家自然科学基金委员会" + }, + "authority_level": "government", + "data_url": "https://www.nsfc.gov.cn/p1/2961/2964/3655/cg.html", + "has_api": false, + "file_path": "china/research/china-nsfc.json", + "geographic_scope": "national" + }, + { + "id": "china-nstl", + "name": { + "en": "National Science and Technology Library of China", + "zh": "国家科技图书文献中心" + }, + "authority_level": "government", + "data_url": "https://www.nstl.gov.cn/search.html", + "has_api": false, + "file_path": "china/research/china-nstl.json", + "geographic_scope": "national" + }, + { + "id": "china-scidb", + "name": { + "en": "Science Data Bank (ScienceDB)", + "zh": "中国科学数据银行" + }, + "authority_level": "research", + "data_url": "https://www.scidb.cn/list?type=all", + "has_api": false, + "file_path": "china/research/china-scidb.json", + "geographic_scope": "global" + }, + { + "id": "china-wanfang", + "name": { + "en": "Wanfang Data", + "zh": "万方数据" + }, + "authority_level": "commercial", + "data_url": "https://www.wanfangdata.com.cn/", + "has_api": false, + "file_path": "china/research/china-wanfang.json", + "geographic_scope": "national" + }, + { + "id": "china-ngdc", + "name": { + "en": "National Genomics Data Center", + "zh": "国家基因组科学数据中心" + }, + "authority_level": "research", + "data_url": "https://ngdc.cncb.ac.cn/gsub/", + "has_api": true, + "file_path": "china/research/ngdc.json", + "geographic_scope": "national" + }, + { + "id": "china-ches", + "name": { + "en": "China Hydraulic Engineering Society", + "zh": "中国水利学会" + }, + "authority_level": "research", + "data_url": "http://www.ches.org.cn", + "has_api": false, + "file_path": "china/resources/water/china-ches.json", + "geographic_scope": "national" + }, + { + "id": "china-shenzhen-stic", + "name": { + "en": "Shenzhen Science, Technology and Innovation Commission", + "zh": "深圳市科技创新局" + }, + "authority_level": "government", + "data_url": "https://stic.sz.gov.cn/xxgk/index.html", + "has_api": false, + "file_path": "china/technology/china-shenzhen-stic.json", + "geographic_scope": "subnational" + }, + { + "id": "china-most-rnd", + "name": { + "en": "National Key R&D Program of China - Industrial Software and 16 Key Special Projects", + "zh": "国家重点研发计划 - 工业软件专项及16个重点专项" + }, + "authority_level": "government", + "data_url": "https://service.most.gov.cn/", + "has_api": false, + "file_path": "china/technology/sci_resources/china-most-rnd.json", + "geographic_scope": "national" + }, + { + "id": "common-crawl", + "name": { + "en": "Common Crawl", + "zh": "Common Crawl 网络爬取数据" + }, + "authority_level": "research", + "data_url": "https://commoncrawl.org", + "has_api": true, + "file_path": "sectors/J-information-communication/common-crawl.json", + "geographic_scope": "global" + } + ], + "research-infrastructure": [ + { + "id": "china-most-infrastructure", + "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, + "file_path": "china/technology/sci_resources/china-most-infrastructure.json", + "geographic_scope": "national" + } + ], + "research-performance": [ + { + "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, + "file_path": "sectors/P-education/arwu.json", + "geographic_scope": "global" + } + ], + "resource-management": [ + { + "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, + "file_path": "sectors/B-mining/rare-earth/china-rare-earth-association.json", + "geographic_scope": "national" + } + ], + "resources": [ + { + "id": "china-jx-stats", + "name": { + "en": "Jiangxi Bureau of Statistics", + "zh": "江西省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.jiangxi.gov.cn/jxstjj/col/col40939/index.html", + "has_api": false, + "file_path": "china/economy/provincial/china-jx-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-crra", + "name": { + "en": "China Association of Circular Economy", + "zh": "中国再生资源回收利用协会" + }, + "authority_level": "other", + "data_url": "https://www.crra.org.cn", + "has_api": false, + "file_path": "china/resources/environment/china-crra.json", + "geographic_scope": "national" + }, + { + "id": "china-cgas", + "name": { + "en": "China Geological Survey", + "zh": "中国地质调查局" + }, + "authority_level": "government", + "data_url": "https://www.cgs.gov.cn/", + "has_api": false, + "file_path": "china/resources/mineral/china-cgas.json", + "geographic_scope": "national" + }, + { + "id": "china-chinalco", + "name": { + "en": "Aluminum Corporation of China (Chinalco)", + "zh": "中国铝业集团有限公司" + }, + "authority_level": "commercial", + "data_url": "https://www.chinalco.com.cn", + "has_api": false, + "file_path": "china/resources/mineral/china-chinalco.json", + "geographic_scope": "national" + }, + { + "id": "china-cnia", + "name": { + "en": "China Nonferrous Metals Industry Association", + "zh": "中国有色金属工业协会" + }, + "authority_level": "other", + "data_url": "https://www.chinania.org.cn/html/hangyetongji/chanyeshuju/", + "has_api": false, + "file_path": "china/resources/mineral/china-cnia.json", + "geographic_scope": "national" + }, + { + "id": "china-miit-rare-earth", + "name": { + "en": "MIIT Rare Earth Office - Rare Earth Industry Regulation and Production Quotas", + "zh": "工业和信息化部稀土办公室 - 稀土行业规范与生产配额" + }, + "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": "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", + "geographic_scope": "national" + }, + { + "id": "china-nmdis", + "name": { + "en": "National Marine Data and Information Service", + "zh": "国家海洋信息中心" + }, + "authority_level": "government", + "data_url": "https://mds.nmdis.org.cn/", + "has_api": false, + "file_path": "china/resources/ocean/china-nmdis.json", + "geographic_scope": "national" + }, + { + "id": "china-csre", + "name": { + "en": "China Society of Rare Earths", + "zh": "中国稀土学会" + }, + "authority_level": "other", + "data_url": "http://www.cs-re.org.cn/c50", + "has_api": false, + "file_path": "china/technology/industry_associations/china-csre.json", + "geographic_scope": "national" + } + ], + "respiratory-diseases": [ + { + "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, + "file_path": "international/health/ecdc-surveillance.json", + "geographic_scope": "regional" + } + ], + "retail": [ + { + "id": "us-census", + "name": { + "en": "U.S. Census Bureau", + "zh": "美国人口普查局" + }, + "authority_level": "government", + "data_url": "https://data.census.gov", + "has_api": true, + "file_path": "countries/north-america/usa/us-census.json", + "geographic_scope": "national" + } + ], + "revenue": [ + { + "id": "gdvc", + "name": { + "en": "General Department of Vietnam Customs", + "zh": "越南海关总局" + }, + "authority_level": "government", + "data_url": "https://www.customs.gov.vn", + "has_api": false, + "file_path": "countries/asia/vietnam/gdvc.json", + "geographic_scope": "national" + } + ], + "risk-factors": [ + { + "id": "ghdx", + "name": { + "en": "Global Health Data Exchange (GHDx)", + "zh": "全球健康数据交换平台" + }, + "authority_level": "research", + "data_url": "https://ghdx.healthdata.org/", + "has_api": true, + "file_path": "academic/health/ghdx.json", + "geographic_scope": "global" + } + ], + "risk-management": [ + { + "id": "refinitiv-lseg", + "name": { + "en": "LSEG Data & Analytics (Refinitiv)", + "zh": "伦敦证交所数据分析(路孚特)" + }, + "authority_level": "commercial", + "data_url": "https://www.lseg.com/en/data-analytics/products/workspace", + "has_api": true, + "file_path": "sectors/K-finance-insurance/refinitiv-lseg.json", + "geographic_scope": "global" + } + ], + "robotics": [ + { + "id": "china-automation-association", + "name": { + "en": "Chinese Association of Automation", + "zh": "中国自动化学会" + }, + "authority_level": "other", + "data_url": "https://www.caa.org.cn/", + "has_api": false, + "file_path": "china/technology/industry_associations/china-automation-association.json", + "geographic_scope": "national" + }, + { + "id": "china-robot-industry-alliance", + "name": { + "en": "Robot Branch of China Machinery Industry Federation", + "zh": "中国机械工业联合会机器人分会" + }, + "authority_level": "market", + "data_url": "https://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" + } + ], + "rural-development": [ + { + "id": "china-iprcc", + "name": { + "en": "International Poverty Reduction Center in China", + "zh": "中国国际减贫中心" + }, + "authority_level": "research", + "data_url": "https://www.iprcc.org.cn", + "has_api": false, + "file_path": "china/economy/macro/china-iprcc.json", + "geographic_scope": "national" + } + ], + "rural-environment": [ + { + "id": "china-nies", + "name": { + "en": "Nanjing Institute of Environmental Sciences, MEE", + "zh": "生态环境部南京环境科学研究所" + }, + "authority_level": "research", + "data_url": "https://www.nies.org", + "has_api": false, + "file_path": "china/resources/environment/china-nies.json", + "geographic_scope": "national" + } + ], + "safety": [ + { + "id": "china-csei", + "name": { + "en": "China Special Equipment Inspection and Research Institute", + "zh": "中国特种设备检测研究院" + }, + "authority_level": "research", + "data_url": "https://www.csei.org.cn", + "has_api": false, + "file_path": "china/industry/china-csei.json", + "geographic_scope": "national" + }, + { + "id": "china-ccs", + "name": { + "en": "China Classification Society", + "zh": "中国船级社" + }, + "authority_level": "government", + "data_url": "https://www.ccs.org.cn/", + "has_api": false, + "file_path": "china/infrastructure/china-ccs.json", + "geographic_scope": "national" + }, + { + "id": "china-msa", + "name": { + "en": "China Maritime Safety Administration", + "zh": "中国海事局" + }, + "authority_level": "government", + "data_url": "https://www.msa.gov.cn/page/zxgk/tjsj.html", + "has_api": false, + "file_path": "china/infrastructure/china-msa.json", + "geographic_scope": "national" + }, + { + "id": "china-nmsa", + "name": { + "en": "National Mine Safety Administration of China", + "zh": "国家矿山安全监察局" + }, + "authority_level": "government", + "data_url": "https://www.chinamine-safety.gov.cn/zfxxgk/", + "has_api": false, + "file_path": "china/resources/mineral/china-nmsa.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" + } + ], + "sanctions": [ + { + "id": "us-treasury", + "name": { + "en": "U.S. Department of the Treasury", + "zh": "美国财政部" + }, + "authority_level": "government", + "data_url": "https://fiscaldata.treasury.gov", + "has_api": true, + "file_path": "countries/north-america/usa/us-treasury.json", + "geographic_scope": "national" + } + ], + "science": [ + { + "id": "ieee-xplore", + "name": { + "en": "IEEE Xplore Digital Library", + "zh": "IEEE Xplore数字图书馆" + }, + "authority_level": "research", + "data_url": "https://ieeexplore.ieee.org", + "has_api": true, + "file_path": "academic/ieee-xplore.json", + "geographic_scope": "global" + }, + { + "id": "china-catas", + "name": { + "en": "Chinese Academy of Tropical Agricultural Sciences", + "zh": "中国热带农业科学院" + }, + "authority_level": "research", + "data_url": "https://www.catas.cn", + "has_api": false, + "file_path": "china/economy/agriculture/china-catas.json", + "geographic_scope": "national" + }, + { + "id": "china-nnsa", + "name": { + "en": "National Nuclear Safety Administration", + "zh": "国家核安全局" + }, + "authority_level": "government", + "data_url": "http://nnsa.mee.gov.cn", + "has_api": false, + "file_path": "china/governance/china-nnsa.json", + "geographic_scope": "national" + }, + { + "id": "china-cpma", + "name": { + "en": "Chinese Preventive Medicine Association", + "zh": "中华预防医学会" + }, + "authority_level": "research", + "data_url": "https://www.cpma.org.cn", + "has_api": false, + "file_path": "china/health/china-cpma.json", + "geographic_scope": "national" + }, + { + "id": "china-nmpa", + "name": { + "en": "National Medical Products Administration of China", + "zh": "国家药品监督管理局" + }, + "authority_level": "government", + "data_url": "https://www.nmpa.gov.cn/datasearch/home-index.html", + "has_api": false, + "file_path": "china/health/china-nmpa.json", + "geographic_scope": "national" + }, + { + "id": "china-cabr", + "name": { + "en": "China Academy of Building Research", + "zh": "中国建筑科学研究院有限公司" + }, + "authority_level": "research", + "data_url": "https://www.cabr.cn", + "has_api": false, + "file_path": "china/research/china-cabr.json", + "geographic_scope": "national" + }, + { + "id": "china-cae", + "name": { + "en": "Chinese Academy of Engineering", + "zh": "中国工程院" + }, + "authority_level": "research", + "data_url": "https://www.cae.cn/cae/html/main/col73/column_73_1.html", + "has_api": false, + "file_path": "china/research/china-cae.json", + "geographic_scope": "national" + }, + { + "id": "china-cas", + "name": { + "en": "Chinese Academy of Sciences - Science Data Bank", + "zh": "中国科学院科学数据库" + }, + "authority_level": "research", + "data_url": "https://www.scidb.cn/", + "has_api": false, + "file_path": "china/research/china-cas.json", + "geographic_scope": "national" + }, + { + "id": "china-cast", + "name": { + "en": "China Association for Science and Technology", + "zh": "中国科学技术协会" + }, + "authority_level": "other", + "data_url": "https://www.cast.org.cn/xw/", + "has_api": false, + "file_path": "china/research/china-cast.json", + "geographic_scope": "national" + }, + { + "id": "china-cisri", + "name": { + "en": "China Iron & Steel Research Institute Group", + "zh": "中国钢研科技集团有限公司" + }, + "authority_level": "research", + "data_url": "https://www.cisri.com.cn", + "has_api": false, + "file_path": "china/research/china-cisri.json", + "geographic_scope": "national" + }, + { + "id": "china-cncbd", + "name": { + "en": "China National Center for Biotechnology Development", + "zh": "中国生物技术发展中心" + }, + "authority_level": "government", + "data_url": "https://www.cncbd.org.cn", + "has_api": false, + "file_path": "china/research/china-cncbd.json", + "geographic_scope": "national" + }, + { + "id": "china-cste", + "name": { + "en": "China Society for Technology Economics", + "zh": "中国技术经济学会" + }, + "authority_level": "research", + "data_url": "https://www.cste.org.cn", + "has_api": false, + "file_path": "china/research/china-cste.json", + "geographic_scope": "national" + }, + { + "id": "china-cstr", + "name": { + "en": "China Science & Technology Resource Identifier Platform", + "zh": "科技资源标识服务平台" + }, + "authority_level": "government", + "data_url": "https://cstr.cn/resreg", + "has_api": false, + "file_path": "china/research/china-cstr.json", + "geographic_scope": "national" + }, + { + "id": "china-drc", + "name": { + "en": "Development Research Center of the State Council of China", + "zh": "国务院发展研究中心" + }, + "authority_level": "government", + "data_url": "https://www.drc.gov.cn/yjcg.htm", + "has_api": false, + "file_path": "china/research/china-drc.json", + "geographic_scope": "national" + }, + { + "id": "china-gscloud", + "name": { + "en": "Geospatial Data Cloud - Computer Network Information Center, CAS", + "zh": "地理空间数据云(中国科学院计算机网络信息中心)" + }, + "authority_level": "research", + "data_url": "https://www.gscloud.cn/search", + "has_api": false, + "file_path": "china/research/china-gscloud.json", + "geographic_scope": "global" + }, + { + "id": "china-iap", + "name": { + "en": "Institute of Atmospheric Physics, Chinese Academy of Sciences", + "zh": "中国科学院大气物理研究所" + }, + "authority_level": "research", + "data_url": "https://www.iap.ac.cn", + "has_api": false, + "file_path": "china/research/china-iap.json", + "geographic_scope": "national" + }, + { + "id": "china-ibcas", + "name": { + "en": "Institute of Botany, Chinese Academy of Sciences", + "zh": "中国科学院植物研究所" + }, + "authority_level": "research", + "data_url": "https://www.ibcas.ac.cn", + "has_api": false, + "file_path": "china/research/china-ibcas.json", + "geographic_scope": "national" + }, + { + "id": "china-imcas", + "name": { + "en": "Institute of Microbiology, Chinese Academy of Sciences", + "zh": "中国科学院微生物研究所" + }, + "authority_level": "research", + "data_url": "https://www.im.cas.cn", + "has_api": false, + "file_path": "china/research/china-imcas.json", + "geographic_scope": "national" + }, + { + "id": "china-istic", + "name": { + "en": "Institute of Scientific and Technical Information of China", + "zh": "中国科学技术信息研究所" + }, + "authority_level": "research", + "data_url": "https://www.istic.ac.cn/", + "has_api": false, + "file_path": "china/research/china-istic.json", + "geographic_scope": "national" + }, + { + "id": "china-ncsti", + "name": { + "en": "National Center for Science and Technology Information", + "zh": "中国科学技术信息研究所" + }, + "authority_level": "research", + "data_url": "https://www.ncsti.gov.cn", + "has_api": false, + "file_path": "china/research/china-ncsti.json", + "geographic_scope": "national" + }, + { + "id": "china-nigpas", + "name": { + "en": "Nanjing Institute of Geology and Palaeontology, Chinese Academy of Sciences", + "zh": "中国科学院南京地质古生物研究所" + }, + "authority_level": "research", + "data_url": "http://www.nigpas.ac.cn", + "has_api": false, + "file_path": "china/research/china-nigpas.json", + "geographic_scope": "national" + }, + { + "id": "china-nsfc", + "name": { + "en": "National Natural Science Foundation of China", + "zh": "国家自然科学基金委员会" + }, + "authority_level": "government", + "data_url": "https://www.nsfc.gov.cn/p1/2961/2964/3655/cg.html", + "has_api": false, + "file_path": "china/research/china-nsfc.json", + "geographic_scope": "national" + }, + { + "id": "china-nsii", + "name": { + "en": "National Specimen Information Infrastructure of China", + "zh": "中国国家标本资源平台" + }, + "authority_level": "research", + "data_url": "https://www.nsii.org.cn/2017/home.php", + "has_api": false, + "file_path": "china/research/china-nsii.json", + "geographic_scope": "national" + }, + { + "id": "china-nssdc", + "name": { + "en": "National Space Science Data Center", + "zh": "国家空间科学数据中心" + }, + "authority_level": "research", + "data_url": "https://www.nssdc.ac.cn", + "has_api": false, + "file_path": "china/research/china-nssdc.json", + "geographic_scope": "national" + }, + { + "id": "china-nstl", + "name": { + "en": "National Science and Technology Library of China", + "zh": "国家科技图书文献中心" + }, + "authority_level": "government", + "data_url": "https://www.nstl.gov.cn/search.html", + "has_api": false, + "file_path": "china/research/china-nstl.json", + "geographic_scope": "national" + }, + { + "id": "china-pku-opendata", + "name": { + "en": "Peking University Open Research Data Platform", + "zh": "北京大学开放研究数据平台" + }, + "authority_level": "research", + "data_url": "https://opendata.pku.edu.cn", + "has_api": false, + "file_path": "china/research/china-pku-opendata.json", + "geographic_scope": "national" + }, + { + "id": "china-plant-csdb", + "name": { + "en": "China Plant Thematic Database (CAS Science Database)", + "zh": "中国植物主题数据库" + }, + "authority_level": "research", + "data_url": "https://www.plant.csdb.cn", + "has_api": false, + "file_path": "china/research/china-plant-csdb.json", + "geographic_scope": "national" + }, + { + "id": "china-pmo", + "name": { + "en": "Purple Mountain Observatory, Chinese Academy of Sciences", + "zh": "中国科学院紫金山天文台" + }, + "authority_level": "research", + "data_url": "http://www.pmo.ac.cn", + "has_api": false, + "file_path": "china/research/china-pmo.json", + "geographic_scope": "national" + }, + { + "id": "china-polar-service", + "name": { + "en": "China Polar Operations Service Platform (CHINARE Data)", + "zh": "中国极地业务服务平台" + }, + "authority_level": "government", + "data_url": "https://www.chinare.org.cn/", + "has_api": false, + "file_path": "china/research/china-polar-service.json", + "geographic_scope": "global" + }, + { + "id": "china-pric", + "name": { + "en": "Polar Research Institute of China", + "zh": "中国极地研究中心" + }, + "authority_level": "research", + "data_url": "https://www.pric.org.cn/", + "has_api": false, + "file_path": "china/research/china-pric.json", + "geographic_scope": "global" + }, + { + "id": "china-scidb", + "name": { + "en": "Science Data Bank (ScienceDB)", + "zh": "中国科学数据银行" + }, + "authority_level": "research", + "data_url": "https://www.scidb.cn/list?type=all", + "has_api": false, + "file_path": "china/research/china-scidb.json", + "geographic_scope": "global" + }, + { + "id": "china-wanfang", + "name": { + "en": "Wanfang Data", + "zh": "万方数据" + }, + "authority_level": "commercial", + "data_url": "https://www.wanfangdata.com.cn/", + "has_api": false, + "file_path": "china/research/china-wanfang.json", + "geographic_scope": "national" + }, + { + "id": "china-ngdc", + "name": { + "en": "National Genomics Data Center", + "zh": "国家基因组科学数据中心" + }, + "authority_level": "research", + "data_url": "https://ngdc.cncb.ac.cn/gsub/", + "has_api": true, + "file_path": "china/research/ngdc.json", + "geographic_scope": "national" + }, + { + "id": "china-craes", + "name": { + "en": "Chinese Research Academy of Environmental Sciences", + "zh": "中国环境科学研究院" + }, + "authority_level": "research", + "data_url": "https://www.craes.cn", + "has_api": false, + "file_path": "china/resources/environment/china-craes.json", + "geographic_scope": "national" + }, + { + "id": "china-cgas", + "name": { + "en": "China Geological Survey", + "zh": "中国地质调查局" + }, + "authority_level": "government", + "data_url": "https://www.cgs.gov.cn/", + "has_api": false, + "file_path": "china/resources/mineral/china-cgas.json", + "geographic_scope": "national" + }, + { + "id": "china-beidou", + "name": { + "en": "BeiDou Navigation Satellite System", + "zh": "北斗卫星导航系统" + }, + "authority_level": "government", + "data_url": "http://www.beidou.gov.cn", + "has_api": false, + "file_path": "china/technology/china-beidou.json", + "geographic_scope": "global" + }, + { + "id": "china-caai", + "name": { + "en": "Chinese Association for Artificial Intelligence", + "zh": "中国人工智能学会" + }, + "authority_level": "research", + "data_url": "https://www.caai.cn/index.php?s=/home/article/lists/category/baokan.html", + "has_api": false, + "file_path": "china/technology/china-caai.json", + "geographic_scope": "national" + }, + { + "id": "china-ccf", + "name": { + "en": "China Computer Federation", + "zh": "中国计算机学会" + }, + "authority_level": "research", + "data_url": "https://www.ccf.org.cn/Academic_Evaluation/By_category/", + "has_api": false, + "file_path": "china/technology/china-ccf.json", + "geographic_scope": "national" + }, + { + "id": "china-cmse", + "name": { + "en": "China Manned Space Engineering Office", + "zh": "中国载人航天工程办公室" + }, + "authority_level": "government", + "data_url": "https://www.cmse.gov.cn", + "has_api": false, + "file_path": "china/technology/china-cmse.json", + "geographic_scope": "national" + }, + { + "id": "china-csm", + "name": { + "en": "Chinese Society for Metals", + "zh": "中国金属学会" + }, + "authority_level": "research", + "data_url": "https://www.csm.org.cn", + "has_api": false, + "file_path": "china/technology/industry_associations/china-csm.json", + "geographic_scope": "national" + }, + { + "id": "china-most-infrastructure", + "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, + "file_path": "china/technology/sci_resources/china-most-infrastructure.json", + "geographic_scope": "national" + }, + { + "id": "china-naoc", + "name": { + "en": "National Astronomical Observatories of China (NAOC)", + "zh": "中国科学院国家天文台" + }, + "authority_level": "research", + "data_url": "https://nadc.china-vo.org", + "has_api": false, + "file_path": "china/technology/sci_resources/china-naoc.json", + "geographic_scope": "national" + }, + { + "id": "china-csa", + "name": { + "en": "China Association for Standardization", + "zh": "中国标准化协会" + }, + "authority_level": "other", + "data_url": "https://www.china-cas.org", + "has_api": false, + "file_path": "china/technology/standards/china-csa.json", + "geographic_scope": "national" + }, + { + "id": "china-nim", + "name": { + "en": "National Institute of Metrology China", + "zh": "中国计量科学研究院" + }, + "authority_level": "government", + "data_url": "https://www.nim.ac.cn/nim_time", + "has_api": false, + "file_path": "china/technology/standards/china-nim.json", + "geographic_scope": "national" + }, + { + "id": "unesco-uis", + "name": { + "en": "UNESCO Institute for Statistics", + "zh": "联合国教科文组织统计研究所" + }, + "authority_level": "international", + "data_url": "https://data.uis.unesco.org/", + "has_api": false, + "file_path": "international/education/unesco-uis.json", + "geographic_scope": "global" + } + ], + "science-and-research": [ + { + "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" + } + ], + "science-technology": [ + { + "id": "china-casted", + "name": { + "en": "China Academy of Science and Technology for Development", + "zh": "中国科学技术发展战略研究院" + }, + "authority_level": "research", + "data_url": "http://www.casted.org.cn/channel/", + "has_api": false, + "file_path": "china/research/china-casted.json", + "geographic_scope": "national" + } + ], + "scientific-instruments": [ + { + "id": "china-most-infrastructure", + "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, + "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" + } + ], + "scientific-literacy": [ + { + "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, + "file_path": "international/education/oecd-pisa.json", + "geographic_scope": "global" + } + ], + "securities": [ + { + "id": "china-beijing-stock-exchange", + "name": { + "en": "Beijing Stock Exchange", + "zh": "北京证券交易所" + }, + "authority_level": "market", + "data_url": "https://www.bse.cn/market_data.html", + "has_api": false, + "file_path": "china/finance/china-beijing-stock-exchange.json", + "geographic_scope": "national" + }, + { + "id": "china-csi-index", + "name": { + "en": "China Securities Index Co., Ltd.", + "zh": "中证指数有限公司" + }, + "authority_level": "market", + "data_url": "https://www.csindex.com.cn/#/indices/family/list", + "has_api": false, + "file_path": "china/finance/china-csi-index.json", + "geographic_scope": "national" + }, + { + "id": "china-neeq", + "name": { + "en": "National Equities Exchange and Quotations (New Third Board)", + "zh": "全国中小企业股份转让系统(新三板)" + }, + "authority_level": "market", + "data_url": "https://www.neeq.com.cn/issuanceList.html", + "has_api": false, + "file_path": "china/finance/securities/china-neeq.json", + "geographic_scope": "national" + }, + { + "id": "china-sse", + "name": { + "en": "Shanghai Stock Exchange", + "zh": "上海证券交易所", + "native": "上海证券交易所" + }, + "authority_level": "market", + "data_url": "https://www.sse.com.cn/market/stockdata/statistic/", + "has_api": false, + "file_path": "china/finance/securities/china-sse.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": "china/finance/securities/csrc.json", + "geographic_scope": "national" + }, + { + "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, + "file_path": "china/finance/securities/hkex.json", + "geographic_scope": "regional" + }, + { + "id": "china-szse", + "name": { + "en": "Shenzhen Stock Exchange", + "zh": "深圳证券交易所", + "native": "深圳证券交易所" + }, + "authority_level": "government", + "data_url": "https://www.szse.cn/market/trend/index.html", + "has_api": true, + "file_path": "china/finance/securities/szse.json", + "geographic_scope": "national" + }, + { + "id": "hk-sfc", + "name": { + "en": "Securities and Futures Commission of Hong Kong", + "zh": "香港证券及期货事务监察委员会" + }, + "authority_level": "government", + "data_url": "https://www.sfc.hk/en/Regulatory-functions/Products", + "has_api": false, + "file_path": "countries/asia/hk-sfc.json", + "geographic_scope": "national" + }, + { + "id": "japan-fsa", + "name": { + "en": "Japan Financial Services Agency", + "zh": "日本金融厅" + }, + "authority_level": "government", + "data_url": "https://www.fsa.go.jp/en/refer/index.html", + "has_api": false, + "file_path": "countries/asia/japan/japan-fsa.json", + "geographic_scope": "national" + }, + { + "id": "jpx", + "name": { + "en": "Japan Exchange Group", + "zh": "日本交易所集团" + }, + "authority_level": "market", + "data_url": "https://www.jpx.co.jp/english/markets/statistics-equities/index.html", + "has_api": false, + "file_path": "countries/asia/japan/jpx.json", + "geographic_scope": "national" + }, + { + "id": "romania-bvb", + "name": { + "en": "Bucharest Stock Exchange", + "zh": "布加勒斯特证券交易所" + }, + "authority_level": "market", + "data_url": "https://www.bvb.ro/FinancialInstruments/Markets/Shares", + "has_api": false, + "file_path": "countries/europe/romania/romania-bvb.json", + "geographic_scope": "national" + }, + { + "id": "asx", + "name": { + "en": "Australian Securities Exchange", + "zh": "澳大利亚证券交易所" + }, + "authority_level": "market", + "data_url": "https://www.asx.com.au/markets", + "has_api": false, + "file_path": "countries/oceania/australia/asx.json", + "geographic_scope": "national" + }, + { + "id": "bloomberg-ipo-database", + "name": { + "en": "Bloomberg IPO Database", + "zh": "彭博IPO数据库" + }, + "authority_level": "commercial", + "data_url": "https://www.bloomberg.com/professional/products/bloomberg-terminal/", + "has_api": true, + "file_path": "sectors/K-finance-insurance/bloomberg-ipo-database.json", + "geographic_scope": "global" + }, + { + "id": "hundsun-juyuan", + "name": { + "en": "Hundsun JuYuan Financial Data", + "zh": "恒生聚源金融数据" + }, + "authority_level": "commercial", + "data_url": "https://gildata.hs.net/", + "has_api": true, + "file_path": "sectors/K-finance-insurance/hundsun-juyuan.json", + "geographic_scope": "national" + }, + { + "id": "joinquant", + "name": { + "zh": "聚宽量化交易平台", + "en": "JoinQuant Quantitative Trading Platform" + }, + "authority_level": "commercial", + "data_url": "https://www.joinquant.com/data", + "has_api": true, + "file_path": "sectors/finance_markets/joinquant.json", + "geographic_scope": "national" + } + ], + "securities-issuance": [ + { + "id": "bloomberg-terminal-ipo", + "name": { + "en": "Bloomberg Terminal - IPO Module", + "zh": "彭博终端 - IPO模块" + }, + "authority_level": "commercial", + "data_url": "https://www.bloomberg.com/professional/products/bloomberg-terminal/", + "has_api": true, + "file_path": "sectors/K-finance-insurance/bloomberg-terminal-ipo.json", + "geographic_scope": "global" + } + ], + "security": [ + { + "id": "china-cncert", + "name": { + "en": "National Computer Network Emergency Response Technical Team/Coordination Center of China", + "zh": "国家互联网应急中心" + }, + "authority_level": "government", + "data_url": "https://www.cert.org.cn/publish/main/45/index.html", + "has_api": false, + "file_path": "china/technology/internet/china-cncert.json", + "geographic_scope": "national" + } + ], + "security-and-conflict": [ + { + "id": "afrobarometer", + "name": { + "en": "Afrobarometer", + "zh": "非洲晴雨表" + }, + "authority_level": "research", + "data_url": "https://www.afrobarometer.org/data/", + "has_api": false, + "file_path": "academic/social/afrobarometer.json", + "geographic_scope": "regional" + } + ], + "semantic-analysis": [ + { + "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" + } + ], + "semiconductor-materials": [ + { + "id": "china-cemia", + "name": { + "en": "China Electronic Materials Industry Association", + "zh": "中国电子材料行业协会" + }, + "authority_level": "other", + "data_url": "http://www.cemia.org.cn", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cemia.json", + "geographic_scope": "national" + } + ], + "semiconductors": [ + { + "id": "china-semiconductor-association", + "name": { + "en": "China Semiconductor Industry Association", + "zh": "中国半导体行业协会" + }, + "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": "semi", + "name": { + "en": "SEMI - Semiconductor Equipment and Materials International", + "zh": "SEMI国际半导体产业协会" + }, + "authority_level": "research", + "data_url": "https://semi.org/en/products-services/market-data", + "has_api": false, + "file_path": "sectors/C-manufacturing/electronics/semi.json", + "geographic_scope": "global" + } + ], + "services": [ + { + "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": "china/national/nbs.json", + "geographic_scope": "national" + }, + { + "id": "china-sac-standards", + "name": { + "en": "Standardization Administration of China (SAC)", + "zh": "国家标准化管理委员会" + }, + "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" + } + ], + "sexually-transmitted-diseases": [ + { + "id": "us-cdc", + "name": { + "en": "Centers for Disease Control and Prevention", + "zh": "美国疾病控制与预防中心" + }, + "authority_level": "government", + "data_url": "https://wonder.cdc.gov/", + "has_api": true, + "file_path": "countries/north-america/usa/us-cdc.json", + "geographic_scope": "national" + } + ], + "shipping-statistics": [ + { + "id": "india-dgcis", + "name": { + "en": "Directorate General of Commercial Intelligence and Statistics", + "zh": "印度商业情报与统计总局" + }, + "authority_level": "government", + "data_url": "https://www.commerce.gov.in/trade-statistics/", + "has_api": false, + "file_path": "countries/asia/india/india-dgcis.json", + "geographic_scope": "national" + } + ], + "slums": [ + { + "id": "unfpa-urbanization", + "name": { + "zh": "联合国人口基金 - 城镇化数据", + "en": "UNFPA - Urbanization Data" + }, + "authority_level": "international", + "data_url": "https://www.unfpa.org/urbanization", + "has_api": false, + "file_path": "international/demographics/unfpa-urbanization.json", + "geographic_scope": "global" + } + ], + "social": [ + { + "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", + "geographic_scope": "global" + }, + { + "id": "china-natesc", + "name": { + "en": "National Agro-Tech Extension and Service Center", + "zh": "全国农业技术推广服务中心" + }, + "authority_level": "government", + "data_url": "https://www.natesc.org.cn", + "has_api": false, + "file_path": "china/economy/agriculture/china-natesc.json", + "geographic_scope": "national" + }, + { + "id": "china-caq", + "name": { + "en": "China Association for Quality", + "zh": "中国质量协会" + }, + "authority_level": "other", + "data_url": "https://www.caq.org.cn/html/zltj", + "has_api": false, + "file_path": "china/economy/industry_associations/china-caq.json", + "geographic_scope": "national" + }, + { + "id": "china-acftu", + "name": { + "en": "All-China Federation of Trade Unions", + "zh": "中华全国总工会" + }, + "authority_level": "government", + "data_url": "https://www.acftu.org", + "has_api": false, + "file_path": "china/economy/labor/china-acftu.json", + "geographic_scope": "national" + }, + { + "id": "china-samr", + "name": { + "en": "State Administration for Market Regulation", + "zh": "国家市场监督管理总局", + "native": "国家市场监督管理总局" + }, + "authority_level": "government", + "data_url": "https://www.samr.gov.cn/zw/sj/sjzx/", + "has_api": false, + "file_path": "china/economy/market/china-samr.json", + "geographic_scope": "national" + }, + { + "id": "china-ah-stats", + "name": { + "en": "Anhui Bureau of Statistics", + "zh": "安徽省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.ah.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-ah-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-beijing-stats", + "name": { + "en": "Beijing Bureau of Statistics", + "zh": "北京市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.beijing.gov.cn/tjsj_31433/", + "has_api": false, + "file_path": "china/economy/provincial/china-beijing-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-chengdu-stats", + "name": { + "en": "Chengdu Bureau of Statistics", + "zh": "成都市统计局" + }, + "authority_level": "government", + "data_url": "http://cdstats.chengdu.gov.cn/", + "has_api": false, + "file_path": "china/economy/provincial/china-chengdu-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-cq-stats", + "name": { + "en": "Chongqing Bureau of Statistics", + "zh": "重庆市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.cq.gov.cn/zwgk_233040/zfxxgkml/tjxx/", + "has_api": false, + "file_path": "china/economy/provincial/china-cq-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-fj-stats", + "name": { + "en": "Fujian Bureau of Statistics", + "zh": "福建省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.fujian.gov.cn/xxgk/tjxx/", + "has_api": false, + "file_path": "china/economy/provincial/china-fj-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-fuzhou-stats", + "name": { + "en": "Fuzhou Bureau of Statistics", + "zh": "福州市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.fuzhou.gov.cn", + "has_api": false, + "file_path": "china/economy/provincial/china-fuzhou-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-gd-stats", + "name": { + "en": "Guangdong Bureau of Statistics", + "zh": "广东省统计局" + }, + "authority_level": "government", + "data_url": "https://stats.gd.gov.cn/tjsj186/index.html", + "has_api": false, + "file_path": "china/economy/provincial/china-gd-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-gs-stats", + "name": { + "en": "Gansu Bureau of Statistics", + "zh": "甘肃省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.gansu.gov.cn/tjj/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-gs-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-gx-stats", + "name": { + "en": "Guangxi Bureau of Statistics", + "zh": "广西壮族自治区统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.gxzf.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-gx-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-gz-stats", + "name": { + "en": "Guizhou Bureau of Statistics", + "zh": "贵州省统计局" + }, + "authority_level": "government", + "data_url": "https://stjj.guizhou.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-gz-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-ha-stats", + "name": { + "en": "Henan Bureau of Statistics", + "zh": "河南省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.henan.gov.cn/tjfw/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-ha-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-hb-stats", + "name": { + "en": "Hubei Bureau of Statistics", + "zh": "湖北省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.hubei.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-hb-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-heb-stats", + "name": { + "en": "Hebei Bureau of Statistics", + "zh": "河北省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.hebei.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-heb-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-hi-stats", + "name": { + "en": "Hainan Bureau of Statistics", + "zh": "海南省统计局" + }, + "authority_level": "government", + "data_url": "https://stats.hainan.gov.cn/hntjj/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-hi-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-hlj-stats", + "name": { + "en": "Heilongjiang Bureau of Statistics", + "zh": "黑龙江省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.hlj.gov.cn/tjj/c106777/common_zfxxgk.shtml?tab=tjxx", + "has_api": false, + "file_path": "china/economy/provincial/china-hlj-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-hn-stats", + "name": { + "en": "Hunan Bureau of Statistics", + "zh": "湖南省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.hunan.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-hn-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-jl-stats", + "name": { + "en": "Jilin Bureau of Statistics", + "zh": "吉林省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.jl.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-jl-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-js-stats", + "name": { + "en": "Jiangsu Bureau of Statistics", + "zh": "江苏省统计局" + }, + "authority_level": "government", + "data_url": "https://tj.jiangsu.gov.cn/col/col85273/index.html", + "has_api": false, + "file_path": "china/economy/provincial/china-js-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-jx-stats", + "name": { + "en": "Jiangxi Bureau of Statistics", + "zh": "江西省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.jiangxi.gov.cn/jxstjj/col/col40939/index.html", + "has_api": false, + "file_path": "china/economy/provincial/china-jx-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-ln-stats", + "name": { + "en": "Liaoning Bureau of Statistics", + "zh": "辽宁省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.ln.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-ln-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-nanchang-stats", + "name": { + "en": "Nanchang Bureau of Statistics", + "zh": "南昌市统计局" + }, + "authority_level": "government", + "data_url": "http://tjj.nc.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-nanchang-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-nanjing-stats", + "name": { + "en": "Nanjing Bureau of Statistics", + "zh": "南京市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.nanjing.gov.cn/", + "has_api": false, + "file_path": "china/economy/provincial/china-nanjing-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-nx-stats", + "name": { + "en": "Ningxia Bureau of Statistics", + "zh": "宁夏回族自治区统计局" + }, + "authority_level": "government", + "data_url": "https://tj.nx.gov.cn/tjsj_htr/jdsj_htr/", + "has_api": false, + "file_path": "china/economy/provincial/china-nx-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-qingdao-stats", + "name": { + "en": "Qingdao Bureau of Statistics", + "zh": "青岛市统计局" + }, + "authority_level": "government", + "data_url": "http://qdtj.qingdao.gov.cn/", + "has_api": false, + "file_path": "china/economy/provincial/china-qingdao-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-sc-stats", + "name": { + "en": "Sichuan Bureau of Statistics", + "zh": "四川省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.sc.gov.cn/scstjj/c112124/sjcx.shtml", + "has_api": false, + "file_path": "china/economy/provincial/china-sc-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-sd-stats", + "name": { + "en": "Shandong Bureau of Statistics", + "zh": "山东省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.shandong.gov.cn/col/col8456/index.html", + "has_api": false, + "file_path": "china/economy/provincial/china-sd-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-shanghai-stats", + "name": { + "en": "Shanghai Municipal Bureau of Statistics", + "zh": "上海市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.sh.gov.cn/sjxx/index.html", + "has_api": false, + "file_path": "china/economy/provincial/china-shanghai-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-sn-stats", + "name": { + "en": "Shaanxi Bureau of Statistics", + "zh": "陕西省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.shaanxi.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-sn-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-tj-stats", + "name": { + "en": "Tianjin Bureau of Statistics", + "zh": "天津市统计局" + }, + "authority_level": "government", + "data_url": "https://stats.tj.gov.cn/tjsj_52032/", + "has_api": false, + "file_path": "china/economy/provincial/china-tj-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-wuhan-stats", + "name": { + "en": "Wuhan Bureau of Statistics", + "zh": "武汉市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.wuhan.gov.cn/zfxxgk/", + "has_api": false, + "file_path": "china/economy/provincial/china-wuhan-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-xian-stats", + "name": { + "en": "Xi'an Bureau of Statistics", + "zh": "西安市统计局" + }, + "authority_level": "government", + "data_url": "http://tjj.xa.gov.cn/", + "has_api": false, + "file_path": "china/economy/provincial/china-xian-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-xz-stats", + "name": { + "en": "Xizang (Tibet) Bureau of Statistics", + "zh": "西藏自治区统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.xizang.gov.cn/xxgk/tjxx/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-xz-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-yn-stats", + "name": { + "en": "Yunnan Bureau of Statistics", + "zh": "云南省统计局" + }, + "authority_level": "government", + "data_url": "http://stats.yn.gov.cn", + "has_api": false, + "file_path": "china/economy/provincial/china-yn-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-zhengzhou-stats", + "name": { + "en": "Zhengzhou Bureau of Statistics", + "zh": "郑州市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.zhengzhou.gov.cn/tjsj/index.jhtml", + "has_api": false, + "file_path": "china/economy/provincial/china-zhengzhou-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-zj-stats", + "name": { + "en": "Zhejiang Bureau of Statistics", + "zh": "浙江省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.zj.gov.cn/col/col1525563/index.html", + "has_api": false, + "file_path": "china/economy/provincial/china-zj-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-cdpf", + "name": { + "en": "China Disabled Persons' Federation", + "zh": "中国残疾人联合会" + }, + "authority_level": "government", + "data_url": "https://www.cdpf.org.cn/zwgk/index.htm", + "has_api": false, + "file_path": "china/governance/china-cdpf.json", + "geographic_scope": "national" + }, + { + "id": "china-cppcc", + "name": { + "en": "Chinese People's Political Consultative Conference", + "zh": "中国人民政治协商会议" + }, + "authority_level": "government", + "data_url": "http://www.cppcc.gov.cn", + "has_api": false, + "file_path": "china/governance/china-cppcc.json", + "geographic_scope": "national" + }, + { + "id": "china-mem", + "name": { + "en": "Ministry of Emergency Management of China", + "zh": "中华人民共和国应急管理部" + }, + "authority_level": "government", + "data_url": "https://www.mem.gov.cn/gk/tjsj/", + "has_api": false, + "file_path": "china/governance/china-mem.json", + "geographic_scope": "national" + }, + { + "id": "china-moj", + "name": { + "en": "Ministry of Justice of China", + "zh": "中华人民共和国司法部" + }, + "authority_level": "government", + "data_url": "https://www.moj.gov.cn/pub/sfbgw/zwgkzl/tjsj/", + "has_api": false, + "file_path": "china/governance/china-moj.json", + "geographic_scope": "national" + }, + { + "id": "china-mva", + "name": { + "en": "Ministry of Veterans Affairs of China", + "zh": "中华人民共和国退役军人事务部" + }, + "authority_level": "government", + "data_url": "https://www.mva.gov.cn/gongkai/", + "has_api": false, + "file_path": "china/governance/china-mva.json", + "geographic_scope": "national" + }, + { + "id": "china-neac", + "name": { + "en": "National Ethnic Affairs Commission of China", + "zh": "国家民族事务委员会" + }, + "authority_level": "government", + "data_url": "https://www.neac.gov.cn/seac/xxgk/tjsj/", + "has_api": false, + "file_path": "china/governance/china-neac.json", + "geographic_scope": "national" + }, + { + "id": "china-nfra-fire", + "name": { + "en": "National Fire and Rescue Administration of China", + "zh": "国家消防救援局" + }, + "authority_level": "government", + "data_url": "https://www.119.gov.cn", + "has_api": false, + "file_path": "china/governance/china-nfra-fire.json", + "geographic_scope": "national" + }, + { + "id": "china-nia", + "name": { + "en": "National Immigration Administration of China", + "zh": "国家移民管理局" + }, + "authority_level": "government", + "data_url": "https://www.nia.gov.cn/n741440/n741547/index.html", + "has_api": false, + "file_path": "china/governance/china-nia.json", + "geographic_scope": "national" + }, + { + "id": "china-spc", + "name": { + "en": "Supreme People's Court of China", + "zh": "最高人民法院" + }, + "authority_level": "government", + "data_url": "https://www.court.gov.cn/sfsj.html", + "has_api": false, + "file_path": "china/governance/china-spc.json", + "geographic_scope": "national" + }, + { + "id": "china-spp", + "name": { + "en": "Supreme People's Procuratorate of China", + "zh": "最高人民检察院" + }, + "authority_level": "government", + "data_url": "https://www.spp.gov.cn/spp/jcdt/jcgzdt/index_1.shtml", + "has_api": false, + "file_path": "china/governance/china-spp.json", + "geographic_scope": "national" + }, + { + "id": "china-gas", + "name": { + "en": "General Administration of Sport of China", + "zh": "国家体育总局" + }, + "authority_level": "government", + "data_url": "https://www.sport.gov.cn/n315/n330/index.html", + "has_api": false, + "file_path": "china/governance/sports/china-gas.json", + "geographic_scope": "national" + }, + { + "id": "china-cacm", + "name": { + "en": "Chinese Association of Chinese Medicine", + "zh": "中华中医药学会" + }, + "authority_level": "research", + "data_url": "https://www.cacm.org.cn", + "has_api": false, + "file_path": "china/health/china-cacm.json", + "geographic_scope": "national" + }, + { + "id": "china-class", + "name": { + "en": "China Longitudinal Aging Social Survey (CLASS)", + "zh": "中国老年社会追踪调查(CLASS)" + }, + "authority_level": "research", + "data_url": "http://class.ruc.edu.cn/", + "has_api": false, + "file_path": "china/health/china-class.json", + "geographic_scope": "national" + }, + { + "id": "china-cpdrc", + "name": { + "en": "China Population and Development Research Center", + "zh": "中国人口与发展研究中心" + }, + "authority_level": "research", + "data_url": "https://www.cpdrc.org.cn/sjzw/", + "has_api": false, + "file_path": "china/health/china-cpdrc.json", + "geographic_scope": "national" + }, + { + "id": "china-cpma", + "name": { + "en": "Chinese Preventive Medicine Association", + "zh": "中华预防医学会" + }, + "authority_level": "research", + "data_url": "https://www.cpma.org.cn", + "has_api": false, + "file_path": "china/health/china-cpma.json", + "geographic_scope": "national" + }, + { + "id": "china-natcm", + "name": { + "en": "National Administration of Traditional Chinese Medicine", + "zh": "国家中医药管理局" + }, + "authority_level": "government", + "data_url": "https://www.natcm.gov.cn/guihuacaiwusi/gongzuodongtai/index.html", + "has_api": false, + "file_path": "china/health/china-natcm.json", + "geographic_scope": "national" + }, + { + "id": "china-ndcpa", + "name": { + "en": "National Disease Control and Prevention Administration of China", + "zh": "国家疾病预防控制局" + }, + "authority_level": "government", + "data_url": "https://www.ndcpa.gov.cn/jbkzzx/c100016/second/list.html", + "has_api": false, + "file_path": "china/health/china-ndcpa.json", + "geographic_scope": "national" + }, + { + "id": "china-nhc", + "name": { + "en": "National Health Commission of China", + "zh": "国家卫生健康委员会", + "native": "国家卫生健康委员会" + }, + "authority_level": "government", + "data_url": "https://www.nhc.gov.cn/mohwsbwstjxxzx/s7967/new_list.shtml", + "has_api": false, + "file_path": "china/health/china-nhc.json", + "geographic_scope": "national" + }, + { + "id": "china-nhsa", + "name": { + "en": "National Healthcare Security Administration of China", + "zh": "国家医疗保障局" + }, + "authority_level": "government", + "data_url": "https://www.nhsa.gov.cn/col/col7/index.html", + "has_api": false, + "file_path": "china/health/china-nhsa.json", + "geographic_scope": "national" + }, + { + "id": "china-nphsd", + "name": { + "en": "National Population and Health Science Data Center", + "zh": "国家人口与健康科学数据中心" + }, + "authority_level": "research", + "data_url": "https://www.phsciencedata.cn", + "has_api": false, + "file_path": "china/health/china-nphsd.json", + "geographic_scope": "national" + }, + { + "id": "ceic-china-urbanization", + "name": { + "en": "CEIC Data - China Urbanization Rate", + "zh": "CEIC数据库 - 中国城镇化率" + }, + "authority_level": "commercial", + "data_url": "https://www.ceicdata.com/zh-hans/china/population-urbanization-rate", + "has_api": true, + "file_path": "china/national/ceic-china-urbanization.json", + "geographic_scope": "national" + }, + { + "id": "china-acwf", + "name": { + "en": "All-China Women's Federation", + "zh": "中华全国妇女联合会" + }, + "authority_level": "government", + "data_url": "https://www.women.org.cn/", + "has_api": false, + "file_path": "china/national/china-acwf.json", + "geographic_scope": "national" + }, + { + "id": "china-cncaprc", + "name": { + "en": "China National Committee on Ageing", + "zh": "中国老龄协会" + }, + "authority_level": "government", + "data_url": "https://www.cncaprc.gov.cn", + "has_api": false, + "file_path": "china/national/china-cncaprc.json", + "geographic_scope": "national" + }, + { + "id": "china-mca", + "name": { + "en": "Ministry of Civil Affairs of China", + "zh": "中华人民共和国民政部", + "native": "中华人民共和国民政部" + }, + "authority_level": "government", + "data_url": "https://www.mca.gov.cn/n156/n2679/index.html", + "has_api": false, + "file_path": "china/national/china-mca.json", + "geographic_scope": "national" + }, + { + "id": "china-mps", + "name": { + "en": "Ministry of Public Security of China", + "zh": "中华人民共和国公安部" + }, + "authority_level": "government", + "data_url": "https://www.mps.gov.cn/n6557558/index.html", + "has_api": false, + "file_path": "china/national/china-mps.json", + "geographic_scope": "national" + }, + { + "id": "cnki-population-census", + "name": { + "en": "CNKI China Population Census Database", + "zh": "中国人口普查数据库" + }, + "authority_level": "commercial", + "data_url": "https://data.cnki.net/npcd", + "has_api": false, + "file_path": "china/national/cnki-population-census.json", + "geographic_scope": "national" + }, + { + "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": "china/national/nbs.json", + "geographic_scope": "national" + }, + { + "id": "china-cass", + "name": { + "en": "Chinese Academy of Social Sciences", + "zh": "中国社会科学院" + }, + "authority_level": "research", + "data_url": "http://www.cass.ac.cn/list/zw_sscp.html", + "has_api": false, + "file_path": "china/research/china-cass.json", + "geographic_scope": "national" + }, + { + "id": "china-cdrf", + "name": { + "en": "China Development Research Foundation (CDRF)", + "zh": "中国发展研究基金会" + }, + "authority_level": "research", + "data_url": "https://www.cdrf.org.cn", + "has_api": false, + "file_path": "china/research/china-cdrf.json", + "geographic_scope": "national" + }, + { + "id": "china-cfps", + "name": { + "en": "China Family Panel Studies (CFPS)", + "zh": "中国家庭追踪调查(CFPS)" + }, + "authority_level": "research", + "data_url": "https://opendata.pku.edu.cn/dataverse/CFPS", + "has_api": false, + "file_path": "china/research/china-cfps.json", + "geographic_scope": "national" + }, + { + "id": "china-cgss", + "name": { + "en": "Chinese General Social Survey (CGSS)", + "zh": "中国综合社会调查(CGSS)" + }, + "authority_level": "research", + "data_url": "http://cgss.ruc.edu.cn/", + "has_api": false, + "file_path": "china/research/china-cgss.json", + "geographic_scope": "national" + }, + { + "id": "china-chfs", + "name": { + "en": "China Household Finance Survey (CHFS)", + "zh": "中国家庭金融调查(CHFS)" + }, + "authority_level": "research", + "data_url": "https://chfs.swufe.edu.cn", + "has_api": false, + "file_path": "china/research/china-chfs.json", + "geographic_scope": "national" + }, + { + "id": "china-pku-opendata", + "name": { + "en": "Peking University Open Research Data Platform", + "zh": "北京大学开放研究数据平台" + }, + "authority_level": "research", + "data_url": "https://opendata.pku.edu.cn", + "has_api": false, + "file_path": "china/research/china-pku-opendata.json", + "geographic_scope": "national" + }, + { + "id": "china-sass", + "name": { + "en": "Shanghai Academy of Social Sciences", + "zh": "上海社会科学院" + }, + "authority_level": "research", + "data_url": "https://www.sass.org.cn", + "has_api": false, + "file_path": "china/research/china-sass.json", + "geographic_scope": "national" + }, + { + "id": "china-ndrcc", + "name": { + "en": "National Disaster Reduction Center of China", + "zh": "国家减灾中心" + }, + "authority_level": "government", + "data_url": "https://www.ndrcc.org.cn/", + "has_api": false, + "file_path": "china/resources/environment/china-ndrcc.json", + "geographic_scope": "national" + }, + { + "id": "stats-sa", + "name": { + "en": "Statistics South Africa (Stats SA)", + "zh": "南非统计局", + "native": "Statistics South Africa (Stats SA)" + }, + "authority_level": "government", + "data_url": "https://www.statssa.gov.za/?page_id=1521", + "has_api": false, + "file_path": "countries/africa/south-africa/stats-sa.json", + "geographic_scope": "national" + }, + { + "id": "cambodia-nis", + "name": { + "en": "National Institute of Statistics of Cambodia (NIS)", + "zh": "柬埔寨国家统计局" + }, + "authority_level": "government", + "data_url": "https://camstat.nis.gov.kh/", + "has_api": false, + "file_path": "countries/asia/cambodia/cambodia-nis.json", + "geographic_scope": "national" + }, + { + "id": "india-mospi", + "name": { + "en": "Ministry of Statistics and Programme Implementation (MoSPI)", + "zh": "印度统计与计划实施部", + "native": "सांख्यिकी और कार्यक्रम कार्यान्वयन मंत्रालय" + }, + "authority_level": "government", + "data_url": "https://mospi.gov.in/data", + "has_api": false, + "file_path": "countries/asia/india/india-mospi.json", + "geographic_scope": "national" + }, + { + "id": "indonesia-bps", + "name": { + "en": "Statistics Indonesia (BPS)", + "zh": "印度尼西亚中央统计局", + "native": "Badan Pusat Statistik" + }, + "authority_level": "government", + "data_url": "https://www.bps.go.id/en/statistics-table", + "has_api": true, + "file_path": "countries/asia/indonesia/indonesia-bps.json", + "geographic_scope": "national" + }, + { + "id": "japan-estat", + "name": { + "en": "Japan e-Stat (Portal Site of Official Statistics)", + "zh": "日本统计局 e-Stat(政府统计综合窗口)", + "native": "政府統計の総合窓口 e-Stat" + }, + "authority_level": "government", + "data_url": "https://www.e-stat.go.jp/en/stat-search", + "has_api": true, + "file_path": "countries/asia/japan/japan-estat.json", + "geographic_scope": "national" + }, + { + "id": "kostat", + "name": { + "en": "Statistics Korea (KOSTAT)", + "zh": "韩国统计厅" + }, + "authority_level": "government", + "data_url": "https://kosis.kr/eng/", + "has_api": true, + "file_path": "countries/asia/kostat.json", + "geographic_scope": "national" + }, + { + "id": "laos-lsb", + "name": { + "en": "Lao Statistics Bureau (LSB)", + "zh": "老挝统计局" + }, + "authority_level": "government", + "data_url": "https://laosis.lsb.gov.la/", + "has_api": false, + "file_path": "countries/asia/laos/laos-lsb.json", + "geographic_scope": "national" + }, + { + "id": "philippines-psa", + "name": { + "en": "Philippine Statistics Authority", + "zh": "菲律宾统计局" + }, + "authority_level": "government", + "data_url": "https://openstat.psa.gov.ph", + "has_api": false, + "file_path": "countries/asia/philippines/psa.json", + "geographic_scope": "national" + }, + { + "id": "saudi-gastat", + "name": { + "en": "General Authority for Statistics (GASTAT)", + "zh": "沙特阿拉伯统计总局" + }, + "authority_level": "government", + "data_url": "https://www.stats.gov.sa/statistics", + "has_api": false, + "file_path": "countries/asia/saudi-arabia/saudi-gastat.json", + "geographic_scope": "national" + }, + { + "id": "singapore-singstat", + "name": { + "en": "Singapore Department of Statistics (SingStat)", + "zh": "新加坡统计局", + "native": "Department of Statistics Singapore" + }, + "authority_level": "government", + "data_url": "https://tablebuilder.singstat.gov.sg", + "has_api": true, + "file_path": "countries/asia/singapore/singapore-singstat.json", + "geographic_scope": "national" + }, + { + "id": "austria-statistik", + "name": { + "en": "Statistics Austria", + "zh": "奥地利统计局", + "native": "Statistik Austria" + }, + "authority_level": "government", + "data_url": "https://www.statistik.at/statistiken", + "has_api": true, + "file_path": "countries/europe/at/austria-statistik.json", + "geographic_scope": "national" + }, + { + "id": "belgium-statbel", + "name": { + "en": "Statbel - Belgian Statistical Office", + "zh": "比利时统计局" + }, + "authority_level": "government", + "data_url": "https://statbel.fgov.be/en/open-data", + "has_api": false, + "file_path": "countries/europe/belgium/belgium-statbel.json", + "geographic_scope": "national" + }, + { + "id": "bulgaria-nsi", + "name": { + "en": "National Statistical Institute of Bulgaria (NSI)", + "zh": "保加利亚国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.nsi.bg/en/content/2666/statisticsdatabases", + "has_api": false, + "file_path": "countries/europe/bulgaria/bulgaria-nsi.json", + "geographic_scope": "national" + }, + { + "id": "croatia-dzs", + "name": { + "en": "Croatian Bureau of Statistics (DZS)", + "zh": "克罗地亚统计局" + }, + "authority_level": "government", + "data_url": "https://dzs.gov.hr/en/data-and-statistics", + "has_api": false, + "file_path": "countries/europe/croatia/croatia-dzs.json", + "geographic_scope": "national" + }, + { + "id": "denmark-dst", + "name": { + "en": "Statistics Denmark", + "zh": "丹麦统计局", + "native": "Danmarks Statistik" + }, + "authority_level": "government", + "data_url": "https://www.dst.dk/en/Statistik", + "has_api": true, + "file_path": "countries/europe/dk/denmark-dst.json", + "geographic_scope": "national" + }, + { + "id": "france-insee", + "name": { + "en": "INSEE - National Institute of Statistics and Economic Studies", + "zh": "法国国家统计与经济研究所", + "native": "Institut national de la statistique et des études économiques" + }, + "authority_level": "government", + "data_url": "https://www.insee.fr/en/statistiques", + "has_api": true, + "file_path": "countries/europe/fr/france-insee.json", + "geographic_scope": "national" + }, + { + "id": "germany-destatis", + "name": { + "en": "Federal Statistical Office of Germany (Destatis)", + "zh": "德国联邦统计局", + "native": "Statistisches Bundesamt (Destatis)" + }, + "authority_level": "government", + "data_url": "https://www.destatis.de/EN/Themes/_node.html", + "has_api": true, + "file_path": "countries/europe/germany/germany-destatis.json", + "geographic_scope": "national" + }, + { + "id": "greece-elstat", + "name": { + "en": "Hellenic Statistical Authority (ELSTAT)", + "zh": "希腊统计局", + "native": "Ελληνική Στατιστική Αρχή (ΕΛΣΤΑΤ)" + }, + "authority_level": "government", + "data_url": "https://www.statistics.gr/en/statistics", + "has_api": false, + "file_path": "countries/europe/greece/greece-elstat.json", + "geographic_scope": "national" + }, + { + "id": "portugal-ine", + "name": { + "en": "Statistics Portugal (INE)", + "zh": "葡萄牙国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.ine.pt/xportal/xmain?xpid=INE&xpgid=ine_base_dados", + "has_api": true, + "file_path": "countries/europe/portugal/portugal-ine.json", + "geographic_scope": "national" + }, + { + "id": "romania-ins", + "name": { + "en": "National Institute of Statistics (Romania)", + "zh": "罗马尼亚国家统计局" + }, + "authority_level": "government", + "data_url": "https://insse.ro/cms/en/statistici-2", + "has_api": true, + "file_path": "countries/europe/romania/romania-ins.json", + "geographic_scope": "national" + }, + { + "id": "russia-rosstat", + "name": { + "en": "Federal State Statistics Service (Rosstat)", + "zh": "俄罗斯联邦统计局", + "native": "Федеральная служба государственной статистики (Росстат)" + }, + "authority_level": "government", + "data_url": "https://rosstat.gov.ru/statistics", + "has_api": true, + "file_path": "countries/europe/russia/russia-rosstat.json", + "geographic_scope": "national" + }, + { + "id": "slovakia-susr", + "name": { + "en": "Statistical Office of the Slovak Republic (SUSR)", + "zh": "斯洛伐克共和国统计局" + }, + "authority_level": "government", + "data_url": "https://datacube.statistics.sk", + "has_api": false, + "file_path": "countries/europe/slovakia/slovakia-susr.json", + "geographic_scope": "national" + }, + { + "id": "slovenia-surs", + "name": { + "en": "Statistical Office of the Republic of Slovenia (SURS)", + "zh": "斯洛文尼亚共和国统计局" + }, + "authority_level": "government", + "data_url": "https://www.stat.si/StatWeb/en", + "has_api": true, + "file_path": "countries/europe/slovenia/slovenia-surs.json", + "geographic_scope": "national" + }, + { + "id": "turkey-tuik", + "name": { + "en": "Turkish Statistical Institute (TurkStat)", + "zh": "土耳其统计局", + "native": "Türkiye İstatistik Kurumu (TÜİK)" + }, + "authority_level": "government", + "data_url": "https://data.tuik.gov.tr", + "has_api": true, + "file_path": "countries/europe/turkey/turkey-tuik.json", + "geographic_scope": "national" + }, + { + "id": "mexico-inegi", + "name": { + "en": "National Institute of Statistics and Geography (INEGI)", + "zh": "墨西哥国家统计和地理研究所", + "native": "Instituto Nacional de Estadística y Geografía (INEGI)" + }, + "authority_level": "government", + "data_url": "https://www.inegi.org.mx/datos/", + "has_api": true, + "file_path": "countries/north-america/mexico/mexico-inegi.json", + "geographic_scope": "national" + }, + { + "id": "nz-stats", + "name": { + "en": "Statistics New Zealand (Stats NZ)", + "zh": "新西兰统计局" + }, + "authority_level": "government", + "data_url": "https://infoshare.stats.govt.nz", + "has_api": false, + "file_path": "countries/oceania/new-zealand/nz-stats.json", + "geographic_scope": "national" + }, + { + "id": "argentina-indec", + "name": { + "en": "National Institute of Statistics and Censuses (INDEC)", + "zh": "阿根廷国家统计与普查局" + }, + "authority_level": "government", + "data_url": "https://www.indec.gob.ar/indec/web/Nivel3-Tema-3-35", + "has_api": true, + "file_path": "countries/south-america/argentina/argentina-indec.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": "chile-ine", + "name": { + "en": "National Statistics Institute of Chile (INE)", + "zh": "智利国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.ine.gob.cl/estadisticas", + "has_api": false, + "file_path": "countries/south-america/chile/chile-ine.json", + "geographic_scope": "national" + }, + { + "id": "colombia-dane", + "name": { + "en": "National Administrative Department of Statistics (DANE)", + "zh": "哥伦比亚国家统计局", + "native": "Departamento Administrativo Nacional de Estadística (DANE)" + }, + "authority_level": "government", + "data_url": "https://www.dane.gov.co/index.php/estadisticas-por-tema", + "has_api": true, + "file_path": "countries/south-america/colombia/colombia-dane.json", + "geographic_scope": "national" + }, + { + "id": "peru-inei", + "name": { + "en": "National Institute of Statistics and Informatics of Peru (INEI)", + "zh": "秘鲁国家统计和信息学研究所" + }, + "authority_level": "government", + "data_url": "https://www.inei.gob.pe/estadisticas/", + "has_api": false, + "file_path": "countries/south-america/peru/peru-inei.json", + "geographic_scope": "national" + }, + { + "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", + "geographic_scope": "regional" + }, + { + "id": "afdb-statistics", + "name": { + "en": "African Development Bank Statistics", + "zh": "非洲开发银行统计数据" + }, + "authority_level": "international", + "data_url": "https://dataportal.opendataforafrica.org", + "has_api": true, + "file_path": "international/development/afdb-statistics.json", + "geographic_scope": "regional" + }, + { + "id": "undp-hdr", + "name": { + "en": "UNDP Human Development Reports", + "zh": "联合国开发计划署人类发展报告" + }, + "authority_level": "international", + "data_url": "https://hdr.undp.org/data-center", + "has_api": false, + "file_path": "international/development/undp-hdr.json", + "geographic_scope": "global" + }, + { + "id": "adb-ado", + "name": { + "en": "Asian Development Outlook", + "zh": "亚洲发展展望" + }, + "authority_level": "international", + "data_url": "https://www.adb.org/publications/series/asian-development-outlook", + "has_api": false, + "file_path": "international/economics/adb-ado.json", + "geographic_scope": "regional" + }, + { + "id": "adb-vietnam", + "name": { + "en": "Asian Development Bank - Vietnam Country Data", + "zh": "亚洲开发银行越南国别数据" + }, + "authority_level": "international", + "data_url": "https://www.adb.org/countries/viet-nam/data", + "has_api": false, + "file_path": "international/economics/adb-vietnam.json", + "geographic_scope": "national" + }, + { + "id": "eurostat", + "name": { + "en": "Eurostat - Statistical Office of the European Union", + "zh": "欧盟统计局", + "native": "Eurostat" + }, + "authority_level": "international", + "data_url": "https://ec.europa.eu/eurostat/databrowser/explore/all/all_themes", + "has_api": true, + "file_path": "international/economics/eurostat.json", + "geographic_scope": "regional" + }, + { + "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", + "name": { + "en": "World Bank Open Data", + "zh": "世界银行开放数据", + "native": "World Bank Open Data" + }, + "authority_level": "international", + "data_url": "https://data.worldbank.org", + "has_api": true, + "file_path": "international/economics/worldbank.json", + "geographic_scope": "global" + } + ], + "social-credit": [ + { + "id": "china-court-execution", + "name": { + "en": "China Court Execution Information Disclosure Network", + "zh": "全国法院被执行人信息查询平台" + }, + "authority_level": "government", + "data_url": "https://zxgk.court.gov.cn", + "has_api": false, + "file_path": "china/governance/china-court-execution.json", + "geographic_scope": "national" + } + ], + "social-development": [ + { + "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" + }, + { + "id": "adb-key-indicators", + "name": { + "en": "Asian Development Bank Key Indicators", + "zh": "亚洲开发银行关键指标" + }, + "authority_level": "international", + "data_url": "https://kidb.adb.org", + "has_api": true, + "file_path": "international/development/adb-key-indicators.json", + "geographic_scope": "regional" + }, + { + "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": "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, + "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", + "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" + }, + { + "id": "adb-vietnam-data", + "name": { + "en": "Asian Development Bank - Vietnam Country Data", + "zh": "亚洲开发银行越南国别数据" + }, + "authority_level": "international", + "data_url": "https://www.adb.org/countries/viet-nam/data", + "has_api": false, + "file_path": "international/economics/adb-vietnam-data.json", + "geographic_scope": "national" + }, + { + "id": "adb", + "name": { + "en": "Asian Development Bank Data", + "zh": "亚洲开发银行数据" + }, + "authority_level": "international", + "data_url": "https://www.adb.org/what-we-do/data", + "has_api": false, + "file_path": "international/economics/adb.json", + "geographic_scope": "regional" + } + ], + "social-issues": [ + { + "id": "afrobarometer", + "name": { + "en": "Afrobarometer", + "zh": "非洲晴雨表" + }, + "authority_level": "research", + "data_url": "https://www.afrobarometer.org/data/", + "has_api": false, + "file_path": "academic/social/afrobarometer.json", + "geographic_scope": "regional" + } + ], + "social-policy": [ + { + "id": "china-iprcc", + "name": { + "en": "International Poverty Reduction Center in China", + "zh": "中国国际减贫中心" + }, + "authority_level": "research", + "data_url": "https://www.iprcc.org.cn", + "has_api": false, + "file_path": "china/economy/macro/china-iprcc.json", + "geographic_scope": "national" + }, + { + "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" + } + ], + "social-science": [ + { + "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", + "geographic_scope": "regional" + } + ], + "social-sciences": [ + { + "id": "china-csic", + "name": { + "en": "Institute of Sociology, Chinese Academy of Social Sciences", + "zh": "中国社会科学院社会学研究所" + }, + "authority_level": "research", + "data_url": "https://sociology.cssn.cn", + "has_api": false, + "file_path": "china/research/china-csic.json", + "geographic_scope": "national" + }, + { + "id": "china-scidb", + "name": { + "en": "Science Data Bank (ScienceDB)", + "zh": "中国科学数据银行" + }, + "authority_level": "research", + "data_url": "https://www.scidb.cn/list?type=all", + "has_api": false, + "file_path": "china/research/china-scidb.json", + "geographic_scope": "global" + } + ], + "social-security": [ + { + "id": "china-mohrss", + "name": { + "en": "Ministry of Human Resources and Social Security of China - Employment and Social Security Statistics", + "zh": "人力资源和社会保障部统计数据" + }, + "authority_level": "government", + "data_url": "https://www.mohrss.gov.cn/SYrlzyhshbzb/zwgk/szrs/", + "has_api": false, + "file_path": "china/economy/labor/china-mohrss.json", + "geographic_scope": "national" + }, + { + "id": "china-shenzhen-hrss", + "name": { + "en": "Shenzhen Municipal Human Resources and Social Security Bureau", + "zh": "深圳市人力资源和社会保障局" + }, + "authority_level": "government", + "data_url": "https://hrss.sz.gov.cn/xxgk/index.html", + "has_api": false, + "file_path": "china/economy/labor/china-shenzhen-hrss.json", + "geographic_scope": "subnational" + }, + { + "id": "china-nssf", + "name": { + "en": "National Social Security Fund Council of China", + "zh": "全国社会保障基金理事会" + }, + "authority_level": "government", + "data_url": "http://www.ssf.gov.cn/", + "has_api": false, + "file_path": "china/finance/fiscal/china-nssf.json", + "geographic_scope": "national" + } + ], + "social-services": [ + { + "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" + } + ], + "social-statistics": [ + { + "id": "dosm", + "name": { + "en": "Department of Statistics Malaysia", + "zh": "马来西亚统计局" + }, + "authority_level": "government", + "data_url": "https://open.dosm.gov.my/", + "has_api": true, + "file_path": "countries/asia/dosm.json", + "geographic_scope": "national" + }, + { + "id": "gso-vietnam", + "name": { + "en": "General Statistics Office of Vietnam", + "zh": "越南国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.gso.gov.vn/en/data-and-statistics/", + "has_api": false, + "file_path": "countries/asia/vietnam/gso-vietnam.json", + "geographic_scope": "national" + }, + { + "id": "adb-data-library", + "name": { + "en": "Asian Development Bank Data Library", + "zh": "亚洲开发银行数据库" + }, + "authority_level": "international", + "data_url": "https://data.adb.org", + "has_api": true, + "file_path": "international/development/adb-data-library.json", + "geographic_scope": "regional" + } + ], + "society": [ + { + "id": "finland-stat", + "name": { + "en": "Statistics Finland", + "zh": "芬兰统计局", + "native": "Tilastokeskus" + }, + "authority_level": "government", + "data_url": "https://pxdata.stat.fi/PxWeb/pxweb/en/StatFin/", + "has_api": true, + "file_path": "countries/europe/finland/finland-stat.json", + "geographic_scope": "national" + }, + { + "id": "poland-gus", + "name": { + "en": "Statistics Poland (GUS)", + "zh": "波兰中央统计局", + "native": "Główny Urząd Statystyczny" + }, + "authority_level": "government", + "data_url": "https://bdl.stat.gov.pl/BDL/start", + "has_api": true, + "file_path": "countries/europe/poland/poland-gus.json", + "geographic_scope": "national" + }, + { + "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", + "geographic_scope": "national" + } + ], + "software": [ + { + "id": "china-most-rnd", + "name": { + "en": "National Key R&D Program of China - Industrial Software and 16 Key Special Projects", + "zh": "国家重点研发计划 - 工业软件专项及16个重点专项" + }, + "authority_level": "government", + "data_url": "https://service.most.gov.cn/", + "has_api": false, + "file_path": "china/technology/sci_resources/china-most-rnd.json", + "geographic_scope": "national" + } + ], + "soil-pollution": [ + { + "id": "china-nies", + "name": { + "en": "Nanjing Institute of Environmental Sciences, MEE", + "zh": "生态环境部南京环境科学研究所" + }, + "authority_level": "research", + "data_url": "https://www.nies.org", + "has_api": false, + "file_path": "china/resources/environment/china-nies.json", + "geographic_scope": "national" + } + ], + "soil-science": [ + { + "id": "cgiar-research-data", + "name": { + "en": "CGIAR Research Data", + "zh": "国际农业研究磋商组织研究数据" + }, + "authority_level": "international", + "data_url": "https://gardian.cgiar.org/", + "has_api": true, + "file_path": "international/agriculture/cgiar-research-data.json", + "geographic_scope": "global" + } + ], + "space": [ + { + "id": "china-nssdc", + "name": { + "en": "National Space Science Data Center", + "zh": "国家空间科学数据中心" + }, + "authority_level": "research", + "data_url": "https://www.nssdc.ac.cn", + "has_api": false, + "file_path": "china/research/china-nssdc.json", + "geographic_scope": "national" + }, + { + "id": "china-cmse", + "name": { + "en": "China Manned Space Engineering Office", + "zh": "中国载人航天工程办公室" + }, + "authority_level": "government", + "data_url": "https://www.cmse.gov.cn", + "has_api": false, + "file_path": "china/technology/china-cmse.json", + "geographic_scope": "national" + }, + { + "id": "china-naoc", + "name": { + "en": "National Astronomical Observatories of China (NAOC)", + "zh": "中国科学院国家天文台" + }, + "authority_level": "research", + "data_url": "https://nadc.china-vo.org", + "has_api": false, + "file_path": "china/technology/sci_resources/china-naoc.json", + "geographic_scope": "national" + } + ], + "space-weather": [ + { + "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" + } + ], + "sports": [ + { + "id": "china-gas", + "name": { + "en": "General Administration of Sport of China", + "zh": "国家体育总局" + }, + "authority_level": "government", + "data_url": "https://www.sport.gov.cn/n315/n330/index.html", + "has_api": false, + "file_path": "china/governance/sports/china-gas.json", + "geographic_scope": "national" + }, + { + "id": "tennis-abstract-atp-wta", + "name": { + "en": "Tennis Abstract - ATP/WTA Data", + "zh": "Tennis Abstract - ATP/WTA网球数据" + }, + "authority_level": "research", + "data_url": "https://github.com/JeffSackmann/tennis_atp", + "has_api": false, + "file_path": "sectors/sports/tennis-abstract-atp-wta.json", + "geographic_scope": "global" + }, + { + "id": "tennis-sackmann", + "name": { + "en": "Tennis Abstract - ATP/WTA Match Data", + "zh": "网球数据摘要 - ATP/WTA 比赛数据" + }, + "authority_level": "research", + "data_url": "https://github.com/JeffSackmann/tennis_atp", + "has_api": false, + "file_path": "sectors/sports/tennis-sackmann.json", + "geographic_scope": "global" + } + ], + "sports-analytics": [ + { + "id": "tennis-abstract-atp-wta", + "name": { + "en": "Tennis Abstract - ATP/WTA Data", + "zh": "Tennis Abstract - ATP/WTA网球数据" + }, + "authority_level": "research", + "data_url": "https://github.com/JeffSackmann/tennis_atp", + "has_api": false, + "file_path": "sectors/sports/tennis-abstract-atp-wta.json", + "geographic_scope": "global" + } + ], + "sports-statistics": [ + { + "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, + "file_path": "sectors/R-arts-entertainment/tennis-atp-wta-data.json", + "geographic_scope": "global" + }, + { + "id": "tennis-abstract-atp-wta", + "name": { + "en": "Tennis Abstract - ATP/WTA Data", + "zh": "Tennis Abstract - ATP/WTA网球数据" + }, + "authority_level": "research", + "data_url": "https://github.com/JeffSackmann/tennis_atp", + "has_api": false, + "file_path": "sectors/sports/tennis-abstract-atp-wta.json", + "geographic_scope": "global" + } + ], + "standards": [ + { + "id": "china-construction-standards", + "name": { + "en": "China Engineering Construction Standardization Association", + "zh": "中国工程建设标准化协会", + "native": "中国工程建设标准化协会" + }, + "authority_level": "government", + "data_url": "https://www.cecs.org.cn/biaozhun/", + "has_api": false, + "file_path": "china/construction/china-construction-standards.json", + "geographic_scope": "national" + }, + { + "id": "china-cnas", + "name": { + "en": "China National Accreditation Service for Conformity Assessment", + "zh": "中国合格评定国家认可委员会" + }, + "authority_level": "government", + "data_url": "https://www.cnas.org.cn/", + "has_api": false, + "file_path": "china/governance/china-cnas.json", + "geographic_scope": "national" + }, + { + "id": "china-cnca", + "name": { + "en": "China National Accreditation Service for Conformity Assessment", + "zh": "中国国家认证认可监督管理委员会" + }, + "authority_level": "government", + "data_url": "https://www.cnca.gov.cn", + "has_api": false, + "file_path": "china/governance/china-cnca.json", + "geographic_scope": "national" + }, + { + "id": "china-nifdc", + "name": { + "en": "National Institutes for Food and Drug Control", + "zh": "中国食品药品检定研究院" + }, + "authority_level": "government", + "data_url": "https://www.nifdc.org.cn", + "has_api": false, + "file_path": "china/health/china-nifdc.json", + "geographic_scope": "national" + }, + { + "id": "china-csei", + "name": { + "en": "China Special Equipment Inspection and Research Institute", + "zh": "中国特种设备检测研究院" + }, + "authority_level": "research", + "data_url": "https://www.csei.org.cn", + "has_api": false, + "file_path": "china/industry/china-csei.json", + "geographic_scope": "national" + }, + { + "id": "china-ccs", + "name": { + "en": "China Classification Society", + "zh": "中国船级社" + }, + "authority_level": "government", + "data_url": "https://www.ccs.org.cn/", + "has_api": false, + "file_path": "china/infrastructure/china-ccs.json", + "geographic_scope": "national" + }, + { + "id": "china-cagis", + "name": { + "en": "China Association for Geographic Information Industry", + "zh": "中国地理信息产业协会" + }, + "authority_level": "research", + "data_url": "https://www.cagis.org.cn", + "has_api": false, + "file_path": "china/technology/industry-associations/china-cagis.json", + "geographic_scope": "national" + }, + { + "id": "china-sae", + "name": { + "en": "Society of Automotive Engineers of China", + "zh": "中国汽车工程学会" + }, + "authority_level": "research", + "data_url": "https://www.sae-china.org/newsdata/reportdata/", + "has_api": false, + "file_path": "china/technology/industry-associations/china-sae.json", + "geographic_scope": "national" + }, + { + "id": "china-sac-standards", + "name": { + "en": "Standardization Administration of China (SAC)", + "zh": "国家标准化管理委员会" + }, + "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": "eu-construction", + "name": { + "en": "European Commission - Construction and Buildings", + "zh": "欧盟委员会 - 建筑与建设", + "native": "European Commission - Construction and Buildings" + }, + "authority_level": "international", + "data_url": "https://ec.europa.eu/growth/sectors/construction_en", + "has_api": false, + "file_path": "international/construction/eu-construction.json", + "geographic_scope": "regional" + }, + { + "id": "iso-construction", + "name": { + "en": "ISO Technical Committee 59 - Buildings and Civil Engineering Works", + "zh": "ISO技术委员会59 - 建筑与土木工程", + "native": "ISO/TC 59 - Buildings and civil engineering works" + }, + "authority_level": "international", + "data_url": "https://www.iso.org/committee/49070/x/catalogue/", + "has_api": false, + "file_path": "international/construction/iso-construction.json", + "geographic_scope": "global" + }, + { + "id": "global-reporting-initiative", + "name": { + "en": "GRI - Global Reporting Initiative", + "zh": "全球报告倡议组织" + }, + "authority_level": "international", + "data_url": "https://www.globalreporting.org/standards/", + "has_api": false, + "file_path": "international/standards-metrology/global-reporting-initiative.json", + "geographic_scope": "global" + }, + { + "id": "sasb-standards", + "name": { + "en": "SASB Standards (IFRS Foundation)", + "zh": "SASB可持续发展会计准则(IFRS基金会)" + }, + "authority_level": "international", + "data_url": "https://sasb.ifrs.org/standards/", + "has_api": false, + "file_path": "international/standards-metrology/sasb-standards.json", + "geographic_scope": "global" + } + ], + "state-assets": [ + { + "id": "vietnam-mof", + "name": { + "en": "Ministry of Finance of Vietnam", + "zh": "越南财政部" + }, + "authority_level": "government", + "data_url": "https://www.mof.gov.vn/webcenter/portal/btcen/pages_r/m/statistics", + "has_api": false, + "file_path": "countries/asia/vietnam/vietnam-mof.json", + "geographic_scope": "national" + } + ], + "statistics": [ + { + "id": "china-ccia", + "name": { + "en": "China Construction Industry Association", + "zh": "中国建筑业协会" + }, + "authority_level": "other", + "data_url": "http://www.zgjzy.org.cn/newsList/11/1.html", + "has_api": false, + "file_path": "china/construction/china-ccia.json", + "geographic_scope": "national" + }, + { + "id": "china-agri", + "name": { + "en": "China Agricultural and Rural Information Network", + "zh": "中国农业农村信息网" + }, + "authority_level": "government", + "data_url": "https://www.agri.cn/", + "has_api": false, + "file_path": "china/economy/agriculture/china-agri.json", + "geographic_scope": "national" + }, + { + "id": "china-moa", + "name": { + "en": "Ministry of Agriculture and Rural Affairs of China - Agricultural Statistics", + "zh": "中华人民共和国农业农村部农业统计" + }, + "authority_level": "government", + "data_url": "https://www.moa.gov.cn/nybgb/", + "has_api": false, + "file_path": "china/economy/agriculture/china-moa.json", + "geographic_scope": "national" + }, + { + "id": "china-nfsra", + "name": { + "en": "National Food and Strategic Reserves Administration of China", + "zh": "国家粮食和物资储备局" + }, + "authority_level": "government", + "data_url": "https://lswz.gov.cn/html/xwzx/sjfb/index.html", + "has_api": false, + "file_path": "china/economy/agriculture/china-nfsra.json", + "geographic_scope": "national" + }, + { + "id": "china-acfic", + "name": { + "en": "All-China Federation of Industry and Commerce", + "zh": "中华全国工商业联合会" + }, + "authority_level": "other", + "data_url": "https://www.acfic.org.cn/myjjsj/", + "has_api": false, + "file_path": "china/economy/china-acfic.json", + "geographic_scope": "national" + }, + { + "id": "china-caac", + "name": { + "en": "Civil Aviation Administration of China", + "zh": "中国民用航空局", + "native": "中国民用航空局" + }, + "authority_level": "government", + "data_url": "https://www.caac.gov.cn/XXGK/XXGK/TJSJ/index.html", + "has_api": false, + "file_path": "china/economy/china-caac.json", + "geographic_scope": "national" + }, + { + "id": "china-miit-sme", + "name": { + "en": "China Center for Promotion of SME Development (MIIT)", + "zh": "中国中小企业发展促进中心(工业和信息化部中小企业发展促进中心)" + }, + "authority_level": "government", + "data_url": "https://www.chinasme.org.cn/html/mcms/daohang/tongzhigonggao/index.html", + "has_api": false, + "file_path": "china/economy/china-miit-sme.json", + "geographic_scope": "national" + }, + { + "id": "china-drcnet", + "name": { + "en": "DRCNET - Development Research Center Network", + "zh": "国研网" + }, + "authority_level": "research", + "data_url": "https://www.drcnet.com.cn", + "has_api": false, + "file_path": "china/economy/macro/china-drcnet.json", + "geographic_scope": "national" + }, + { + "id": "china-sasac", + "name": { + "en": "State-owned Assets Supervision and Administration Commission of the State Council", + "zh": "国务院国有资产监督管理委员会" + }, + "authority_level": "government", + "data_url": "https://www.sasac.gov.cn/n2588030/index.html", + "has_api": false, + "file_path": "china/economy/macro/china-sasac.json", + "geographic_scope": "national" + }, + { + "id": "china-sic", + "name": { + "en": "State Information Center of China", + "zh": "国家信息中心" + }, + "authority_level": "government", + "data_url": "https://www.sic.gov.cn/", + "has_api": false, + "file_path": "china/economy/macro/china-sic.json", + "geographic_scope": "national" + }, + { + "id": "china-ah-stats", + "name": { + "en": "Anhui Bureau of Statistics", + "zh": "安徽省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.ah.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-ah-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-beijing-stats", + "name": { + "en": "Beijing Bureau of Statistics", + "zh": "北京市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.beijing.gov.cn/tjsj_31433/", + "has_api": false, + "file_path": "china/economy/provincial/china-beijing-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-chengdu-stats", + "name": { + "en": "Chengdu Bureau of Statistics", + "zh": "成都市统计局" + }, + "authority_level": "government", + "data_url": "http://cdstats.chengdu.gov.cn/", + "has_api": false, + "file_path": "china/economy/provincial/china-chengdu-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-cq-stats", + "name": { + "en": "Chongqing Bureau of Statistics", + "zh": "重庆市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.cq.gov.cn/zwgk_233040/zfxxgkml/tjxx/", + "has_api": false, + "file_path": "china/economy/provincial/china-cq-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-fj-stats", + "name": { + "en": "Fujian Bureau of Statistics", + "zh": "福建省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.fujian.gov.cn/xxgk/tjxx/", + "has_api": false, + "file_path": "china/economy/provincial/china-fj-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-fuzhou-stats", + "name": { + "en": "Fuzhou Bureau of Statistics", + "zh": "福州市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.fuzhou.gov.cn", + "has_api": false, + "file_path": "china/economy/provincial/china-fuzhou-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-gd-stats", + "name": { + "en": "Guangdong Bureau of Statistics", + "zh": "广东省统计局" + }, + "authority_level": "government", + "data_url": "https://stats.gd.gov.cn/tjsj186/index.html", + "has_api": false, + "file_path": "china/economy/provincial/china-gd-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-gs-stats", + "name": { + "en": "Gansu Bureau of Statistics", + "zh": "甘肃省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.gansu.gov.cn/tjj/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-gs-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-gx-stats", + "name": { + "en": "Guangxi Bureau of Statistics", + "zh": "广西壮族自治区统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.gxzf.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-gx-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-gz-stats", + "name": { + "en": "Guizhou Bureau of Statistics", + "zh": "贵州省统计局" + }, + "authority_level": "government", + "data_url": "https://stjj.guizhou.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-gz-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-ha-stats", + "name": { + "en": "Henan Bureau of Statistics", + "zh": "河南省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.henan.gov.cn/tjfw/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-ha-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-hb-stats", + "name": { + "en": "Hubei Bureau of Statistics", + "zh": "湖北省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.hubei.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-hb-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-heb-stats", + "name": { + "en": "Hebei Bureau of Statistics", + "zh": "河北省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.hebei.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-heb-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-hi-stats", + "name": { + "en": "Hainan Bureau of Statistics", + "zh": "海南省统计局" + }, + "authority_level": "government", + "data_url": "https://stats.hainan.gov.cn/hntjj/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-hi-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-hlj-stats", + "name": { + "en": "Heilongjiang Bureau of Statistics", + "zh": "黑龙江省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.hlj.gov.cn/tjj/c106777/common_zfxxgk.shtml?tab=tjxx", + "has_api": false, + "file_path": "china/economy/provincial/china-hlj-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-hn-stats", + "name": { + "en": "Hunan Bureau of Statistics", + "zh": "湖南省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.hunan.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-hn-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-jl-stats", + "name": { + "en": "Jilin Bureau of Statistics", + "zh": "吉林省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.jl.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-jl-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-js-stats", + "name": { + "en": "Jiangsu Bureau of Statistics", + "zh": "江苏省统计局" + }, + "authority_level": "government", + "data_url": "https://tj.jiangsu.gov.cn/col/col85273/index.html", + "has_api": false, + "file_path": "china/economy/provincial/china-js-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-jx-stats", + "name": { + "en": "Jiangxi Bureau of Statistics", + "zh": "江西省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.jiangxi.gov.cn/jxstjj/col/col40939/index.html", + "has_api": false, + "file_path": "china/economy/provincial/china-jx-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-ln-stats", + "name": { + "en": "Liaoning Bureau of Statistics", + "zh": "辽宁省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.ln.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-ln-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-nanchang-stats", + "name": { + "en": "Nanchang Bureau of Statistics", + "zh": "南昌市统计局" + }, + "authority_level": "government", + "data_url": "http://tjj.nc.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-nanchang-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-nanjing-stats", + "name": { + "en": "Nanjing Bureau of Statistics", + "zh": "南京市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.nanjing.gov.cn/", + "has_api": false, + "file_path": "china/economy/provincial/china-nanjing-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-nm-stats", + "name": { + "en": "Inner Mongolia Bureau of Statistics", + "zh": "内蒙古自治区统计局" + }, + "authority_level": "government", + "data_url": "http://tj.nmg.gov.cn", + "has_api": false, + "file_path": "china/economy/provincial/china-nm-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-nx-stats", + "name": { + "en": "Ningxia Bureau of Statistics", + "zh": "宁夏回族自治区统计局" + }, + "authority_level": "government", + "data_url": "https://tj.nx.gov.cn/tjsj_htr/jdsj_htr/", + "has_api": false, + "file_path": "china/economy/provincial/china-nx-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-qh-stats", + "name": { + "en": "Qinghai Bureau of Statistics", + "zh": "青海省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.qinghai.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-qh-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-qingdao-stats", + "name": { + "en": "Qingdao Bureau of Statistics", + "zh": "青岛市统计局" + }, + "authority_level": "government", + "data_url": "http://qdtj.qingdao.gov.cn/", + "has_api": false, + "file_path": "china/economy/provincial/china-qingdao-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-sc-stats", + "name": { + "en": "Sichuan Bureau of Statistics", + "zh": "四川省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.sc.gov.cn/scstjj/c112124/sjcx.shtml", + "has_api": false, + "file_path": "china/economy/provincial/china-sc-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-sd-stats", + "name": { + "en": "Shandong Bureau of Statistics", + "zh": "山东省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.shandong.gov.cn/col/col8456/index.html", + "has_api": false, + "file_path": "china/economy/provincial/china-sd-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-shanghai-stats", + "name": { + "en": "Shanghai Municipal Bureau of Statistics", + "zh": "上海市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.sh.gov.cn/sjxx/index.html", + "has_api": false, + "file_path": "china/economy/provincial/china-shanghai-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-shenzhen-stats", + "name": { + "en": "Shenzhen Bureau of Statistics", + "zh": "深圳市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.sz.gov.cn/zwgk/zfxxgkml/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-shenzhen-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-sn-stats", + "name": { + "en": "Shaanxi Bureau of Statistics", + "zh": "陕西省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.shaanxi.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-sn-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-suzhou-stats", + "name": { + "en": "Suzhou Bureau of Statistics", + "zh": "苏州市统计局" + }, + "authority_level": "government", + "data_url": "http://tjj.suzhou.gov.cn/", + "has_api": false, + "file_path": "china/economy/provincial/china-suzhou-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-sx-stats", + "name": { + "en": "Shanxi Bureau of Statistics", + "zh": "山西省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.shanxi.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-sx-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-tj-stats", + "name": { + "en": "Tianjin Bureau of Statistics", + "zh": "天津市统计局" + }, + "authority_level": "government", + "data_url": "https://stats.tj.gov.cn/tjsj_52032/", + "has_api": false, + "file_path": "china/economy/provincial/china-tj-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-wuhan-stats", + "name": { + "en": "Wuhan Bureau of Statistics", + "zh": "武汉市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.wuhan.gov.cn/zfxxgk/", + "has_api": false, + "file_path": "china/economy/provincial/china-wuhan-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-xian-stats", + "name": { + "en": "Xi'an Bureau of Statistics", + "zh": "西安市统计局" + }, + "authority_level": "government", + "data_url": "http://tjj.xa.gov.cn/", + "has_api": false, + "file_path": "china/economy/provincial/china-xian-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-xj-stats", + "name": { + "en": "Xinjiang Bureau of Statistics", + "zh": "新疆维吾尔自治区统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.xinjiang.gov.cn/tjj/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-xj-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-xz-stats", + "name": { + "en": "Xizang (Tibet) Bureau of Statistics", + "zh": "西藏自治区统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.xizang.gov.cn/xxgk/tjxx/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-xz-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-yn-stats", + "name": { + "en": "Yunnan Bureau of Statistics", + "zh": "云南省统计局" + }, + "authority_level": "government", + "data_url": "http://stats.yn.gov.cn", + "has_api": false, + "file_path": "china/economy/provincial/china-yn-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-zhengzhou-stats", + "name": { + "en": "Zhengzhou Bureau of Statistics", + "zh": "郑州市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.zhengzhou.gov.cn/tjsj/index.jhtml", + "has_api": false, + "file_path": "china/economy/provincial/china-zhengzhou-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-zj-stats", + "name": { + "en": "Zhejiang Bureau of Statistics", + "zh": "浙江省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.zj.gov.cn/col/col1525563/index.html", + "has_api": false, + "file_path": "china/economy/provincial/china-zj-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-hk-censtatd", + "name": { + "en": "Hong Kong Census and Statistics Department", + "zh": "香港政府统计处" + }, + "authority_level": "government", + "data_url": "https://www.censtatd.gov.hk/", + "has_api": false, + "file_path": "china/economy/special_admin_regions/china-hk-censtatd.json", + "geographic_scope": "subnational" + }, + { + "id": "china-moe-higher-education", + "name": { + "en": "Ministry of Education of China - Higher Education Statistics", + "zh": "中华人民共和国教育部高等教育统计" + }, + "authority_level": "government", + "data_url": "https://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": "china-cba", + "name": { + "en": "China Banking Association", + "zh": "中国银行业协会" + }, + "authority_level": "market", + "data_url": "https://www.china-cba.net/Index/lists/catid/268.html", + "has_api": false, + "file_path": "china/finance/banking/china-cba.json", + "geographic_scope": "national" + }, + { + "id": "china-cfa", + "name": { + "en": "China Futures Association", + "zh": "中国期货业协会" + }, + "authority_level": "market", + "data_url": "https://www.cfachina.org/servicesupport/researchandpublishin/statisticalsdata/", + "has_api": false, + "file_path": "china/finance/capital-markets/china-cfa.json", + "geographic_scope": "national" + }, + { + "id": "china-cicpa", + "name": { + "en": "Chinese Institute of Certified Public Accountants", + "zh": "中国注册会计师协会" + }, + "authority_level": "market", + "data_url": "https://www.cicpa.org.cn/xxcx/", + "has_api": false, + "file_path": "china/finance/china-cicpa.json", + "geographic_scope": "national" + }, + { + "id": "china-iac", + "name": { + "en": "Insurance Association of China", + "zh": "中国保险业协会" + }, + "authority_level": "market", + "data_url": "https://www.iachina.cn/col/col4479/", + "has_api": false, + "file_path": "china/finance/china-iac.json", + "geographic_scope": "national" + }, + { + "id": "china-ccgp", + "name": { + "en": "China Government Procurement Network", + "zh": "中国政府采购网" + }, + "authority_level": "government", + "data_url": "https://www.ccgp.gov.cn/cggg/index.htm", + "has_api": false, + "file_path": "china/governance/china-ccgp.json", + "geographic_scope": "national" + }, + { + "id": "china-cfpa", + "name": { + "en": "China Fire Protection Association", + "zh": "中国消防协会" + }, + "authority_level": "other", + "data_url": "http://www.cfpa.cn", + "has_api": false, + "file_path": "china/governance/china-cfpa.json", + "geographic_scope": "national" + }, + { + "id": "china-cqc", + "name": { + "en": "China Quality Certification Centre", + "zh": "中国质量认证中心" + }, + "authority_level": "government", + "data_url": "https://www.cqc.com.cn/", + "has_api": false, + "file_path": "china/governance/china-cqc.json", + "geographic_scope": "national" + }, + { + "id": "china-mva", + "name": { + "en": "Ministry of Veterans Affairs of China", + "zh": "中华人民共和国退役军人事务部" + }, + "authority_level": "government", + "data_url": "https://www.mva.gov.cn/gongkai/", + "has_api": false, + "file_path": "china/governance/china-mva.json", + "geographic_scope": "national" + }, + { + "id": "china-nia", + "name": { + "en": "National Immigration Administration of China", + "zh": "国家移民管理局" + }, + "authority_level": "government", + "data_url": "https://www.nia.gov.cn/n741440/n741547/index.html", + "has_api": false, + "file_path": "china/governance/china-nia.json", + "geographic_scope": "national" + }, + { + "id": "china-saac", + "name": { + "en": "National Archives Administration of China", + "zh": "中华人民共和国国家档案局" + }, + "authority_level": "government", + "data_url": "https://www.saac.gov.cn/daj/fzgz/lmlist.shtml", + "has_api": false, + "file_path": "china/governance/china-saac.json", + "geographic_scope": "national" + }, + { + "id": "china-gas", + "name": { + "en": "General Administration of Sport of China", + "zh": "国家体育总局" + }, + "authority_level": "government", + "data_url": "https://www.sport.gov.cn/n315/n330/index.html", + "has_api": false, + "file_path": "china/governance/sports/china-gas.json", + "geographic_scope": "national" + }, + { + "id": "china-cpdrc", + "name": { + "en": "China Population and Development Research Center", + "zh": "中国人口与发展研究中心" + }, + "authority_level": "research", + "data_url": "https://www.cpdrc.org.cn/sjzw/", + "has_api": false, + "file_path": "china/health/china-cpdrc.json", + "geographic_scope": "national" + }, + { + "id": "china-nhsa", + "name": { + "en": "National Healthcare Security Administration of China", + "zh": "国家医疗保障局" + }, + "authority_level": "government", + "data_url": "https://www.nhsa.gov.cn/col/col7/index.html", + "has_api": false, + "file_path": "china/health/china-nhsa.json", + "geographic_scope": "national" + }, + { + "id": "china-camet", + "name": { + "en": "China Association of Metros (CAMET)", + "zh": "中国城市轨道交通协会" + }, + "authority_level": "other", + "data_url": "https://www.camet.org.cn", + "has_api": false, + "file_path": "china/infrastructure/china-camet.json", + "geographic_scope": "national" + }, + { + "id": "china-cata", + "name": { + "en": "China Air Transport Association", + "zh": "中国航空运输协会" + }, + "authority_level": "other", + "data_url": "https://www.cata.org.cn/NewsList.aspx?id=11", + "has_api": false, + "file_path": "china/infrastructure/china-cata.json", + "geographic_scope": "national" + }, + { + "id": "china-ccs", + "name": { + "en": "China Classification Society", + "zh": "中国船级社" + }, + "authority_level": "government", + "data_url": "https://www.ccs.org.cn/", + "has_api": false, + "file_path": "china/infrastructure/china-ccs.json", + "geographic_scope": "national" + }, + { + "id": "china-msa", + "name": { + "en": "China Maritime Safety Administration", + "zh": "中国海事局" + }, + "authority_level": "government", + "data_url": "https://www.msa.gov.cn/page/zxgk/tjsj.html", + "has_api": false, + "file_path": "china/infrastructure/china-msa.json", + "geographic_scope": "national" + }, + { + "id": "china-cta", + "name": { + "en": "China Tourism Academy", + "zh": "中国旅游研究院" + }, + "authority_level": "research", + "data_url": "https://www.ctaweb.org.cn/index.php?m=home&c=Lists&a=index&tid=21", + "has_api": false, + "file_path": "china/national/china-cta.json", + "geographic_scope": "national" + }, + { + "id": "china-casted", + "name": { + "en": "China Academy of Science and Technology for Development", + "zh": "中国科学技术发展战略研究院" + }, + "authority_level": "research", + "data_url": "http://www.casted.org.cn/channel/", + "has_api": false, + "file_path": "china/research/china-casted.json", + "geographic_scope": "national" + }, + { + "id": "china-istic", + "name": { + "en": "Institute of Scientific and Technical Information of China", + "zh": "中国科学技术信息研究所" + }, + "authority_level": "research", + "data_url": "https://www.istic.ac.cn/", + "has_api": false, + "file_path": "china/research/china-istic.json", + "geographic_scope": "national" + }, + { + "id": "china-ndrcc", + "name": { + "en": "National Disaster Reduction Center of China", + "zh": "国家减灾中心" + }, + "authority_level": "government", + "data_url": "https://www.ndrcc.org.cn/", + "has_api": false, + "file_path": "china/resources/environment/china-ndrcc.json", + "geographic_scope": "national" + }, + { + "id": "china-cea", + "name": { + "en": "China Earthquake Administration", + "zh": "中国地震局" + }, + "authority_level": "government", + "data_url": "https://www.cea.gov.cn/cea/dzpd/dzzt/index.html", + "has_api": false, + "file_path": "china/resources/seismology/china-cea.json", + "geographic_scope": "national" + }, + { + "id": "china-cenc", + "name": { + "en": "China Earthquake Networks Center", + "zh": "中国地震台网中心" + }, + "authority_level": "government", + "data_url": "https://www.cenc.ac.cn/", + "has_api": false, + "file_path": "china/resources/seismology/china-cenc.json", + "geographic_scope": "national" + }, + { + "id": "china-mwr", + "name": { + "en": "Ministry of Water Resources of China - Water Resources Statistics", + "zh": "中华人民共和国水利部水资源统计" + }, + "authority_level": "government", + "data_url": "http://www.mwr.gov.cn/sj/", + "has_api": false, + "file_path": "china/resources/water/china-mwr.json", + "geographic_scope": "national" + }, + { + "id": "china-cecc", + "name": { + "en": "China Electronics Chamber of Commerce", + "zh": "中国电子商会" + }, + "authority_level": "other", + "data_url": "http://www.cecc.org.cn/hangye/", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cecc.json", + "geographic_scope": "national" + }, + { + "id": "china-isc", + "name": { + "en": "Internet Society of China", + "zh": "中国互联网协会" + }, + "authority_level": "other", + "data_url": "https://www.isc.org.cn/yanjiu/index.html", + "has_api": false, + "file_path": "china/technology/industry_associations/china-isc.json", + "geographic_scope": "national" + }, + { + "id": "china-cncert", + "name": { + "en": "National Computer Network Emergency Response Technical Team/Coordination Center of China", + "zh": "国家互联网应急中心" + }, + "authority_level": "government", + "data_url": "https://www.cert.org.cn/publish/main/45/index.html", + "has_api": false, + "file_path": "china/technology/internet/china-cncert.json", + "geographic_scope": "national" + }, + { + "id": "japan-estat", + "name": { + "en": "Japan e-Stat (Portal Site of Official Statistics)", + "zh": "日本统计局 e-Stat(政府统计综合窗口)", + "native": "政府統計の総合窓口 e-Stat" + }, + "authority_level": "government", + "data_url": "https://www.e-stat.go.jp/en/stat-search", + "has_api": true, + "file_path": "countries/asia/japan/japan-estat.json", + "geographic_scope": "national" + }, + { + "id": "kostat-cpi", + "name": { + "en": "Statistics Korea (KOSTAT) - Consumer Price Index", + "zh": "韩国统计局 - 消费者物价指数", + "ko": "통계청 - 소비자물가지수" + }, + "authority_level": "government", + "data_url": "https://kosis.kr/eng/", + "has_api": true, + "file_path": "countries/asia/kostat-cpi.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" + }, + { + "id": "itf-transport", + "name": { + "en": "ITF Transport Statistics", + "zh": "国际交通论坛交通统计" + }, + "authority_level": "international", + "data_url": "https://www.itf-oecd.org/transport-statistics", + "has_api": true, + "file_path": "international/transportation/itf-transport.json", + "geographic_scope": "global" + }, + { + "id": "tennis-sackmann", + "name": { + "en": "Tennis Abstract - ATP/WTA Match Data", + "zh": "网球数据摘要 - ATP/WTA 比赛数据" + }, + "authority_level": "research", + "data_url": "https://github.com/JeffSackmann/tennis_atp", + "has_api": false, + "file_path": "sectors/sports/tennis-sackmann.json", + "geographic_scope": "global" + } + ], + "stock-market": [ + { + "id": "jpx", + "name": { + "en": "Japan Exchange Group", + "zh": "日本交易所集团" + }, + "authority_level": "market", + "data_url": "https://www.jpx.co.jp/english/markets/statistics-equities/index.html", + "has_api": false, + "file_path": "countries/asia/japan/jpx.json", + "geographic_scope": "national" + }, + { + "id": "romania-bvb", + "name": { + "en": "Bucharest Stock Exchange", + "zh": "布加勒斯特证券交易所" + }, + "authority_level": "market", + "data_url": "https://www.bvb.ro/FinancialInstruments/Markets/Shares", + "has_api": false, + "file_path": "countries/europe/romania/romania-bvb.json", + "geographic_scope": "national" + }, + { + "id": "asx", + "name": { + "en": "Australian Securities Exchange", + "zh": "澳大利亚证券交易所" + }, + "authority_level": "market", + "data_url": "https://www.asx.com.au/markets", + "has_api": false, + "file_path": "countries/oceania/australia/asx.json", + "geographic_scope": "national" + }, + { + "id": "akshare", + "name": { + "en": "AkShare", + "zh": "AkShare" + }, + "authority_level": "other", + "data_url": "https://github.com/akfamily/akshare", + "has_api": true, + "file_path": "sectors/K-finance-insurance/akshare.json", + "geographic_scope": "global" + } + ], + "stock-markets": [ + { + "id": "alpha-vantage", + "name": { + "en": "Alpha Vantage API", + "zh": "Alpha Vantage API" + }, + "authority_level": "commercial", + "data_url": "https://www.alphavantage.co/", + "has_api": true, + "file_path": "sectors/K-finance-insurance/alpha-vantage.json", + "geographic_scope": "global" + }, + { + "id": "crsp", + "name": { + "en": "CRSP - Center for Research in Security Prices", + "zh": "证券价格研究中心" + }, + "authority_level": "research", + "data_url": "https://www.crsp.org/", + "has_api": true, + "file_path": "sectors/K-finance-insurance/crsp.json", + "geographic_scope": "national" + } + ], + "structural-biology": [ + { + "id": "alphafold-db", + "name": { + "en": "AlphaFold Protein Structure Database", + "zh": "AlphaFold蛋白质结构数据库" + }, + "authority_level": "international", + "data_url": "https://alphafold.com", + "has_api": true, + "file_path": "academic/biology/alphafold-db.json", + "geographic_scope": "global" + }, + { + "id": "intl-rcsb-pdb", + "name": { + "en": "Protein Data Bank (PDB)", + "zh": "蛋白质数据银行" + }, + "authority_level": "research", + "data_url": "https://www.rcsb.org", + "has_api": true, + "file_path": "academic/biology/pdb.json", + "geographic_scope": "global" + } + ], + "structural-change": [ + { + "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, + "file_path": "academic/economics/ggdc-databases.json", + "geographic_scope": "global" + } + ], + "structural-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", + "geographic_scope": "global" + } + ], + "student-achievement": [ + { + "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" + } + ], + "student-assessment": [ + { + "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, + "file_path": "international/education/oecd-pisa.json", + "geographic_scope": "global" + } + ], + "student-outcomes": [ + { + "id": "qs-world-university-rankings", + "name": { + "en": "QS World University Rankings", + "zh": "QS世界大学排名" + }, + "authority_level": "market", + "data_url": "https://www.topuniversities.com/world-university-rankings", + "has_api": false, + "file_path": "sectors/P-education/qs-world-university-rankings.json", + "geographic_scope": "global" + } + ], + "sustainability": [ + { + "id": "china-ipe", + "name": { + "en": "Institute of Public & Environmental Affairs", + "zh": "公众环境研究中心" + }, + "authority_level": "research", + "data_url": "https://www.ipe.org.cn/AirMap_fxy/AirMap.html", + "has_api": false, + "file_path": "china/resources/environment/china-ipe.json", + "geographic_scope": "national" + }, + { + "id": "iso-construction", + "name": { + "en": "ISO Technical Committee 59 - Buildings and Civil Engineering Works", + "zh": "ISO技术委员会59 - 建筑与土木工程", + "native": "ISO/TC 59 - Buildings and civil engineering works" + }, + "authority_level": "international", + "data_url": "https://www.iso.org/committee/49070/x/catalogue/", + "has_api": false, + "file_path": "international/construction/iso-construction.json", + "geographic_scope": "global" + }, + { + "id": "global-reporting-initiative", + "name": { + "en": "GRI - Global Reporting Initiative", + "zh": "全球报告倡议组织" + }, + "authority_level": "international", + "data_url": "https://www.globalreporting.org/standards/", + "has_api": false, + "file_path": "international/standards-metrology/global-reporting-initiative.json", + "geographic_scope": "global" + }, + { + "id": "sasb-standards", + "name": { + "en": "SASB Standards (IFRS Foundation)", + "zh": "SASB可持续发展会计准则(IFRS基金会)" + }, + "authority_level": "international", + "data_url": "https://sasb.ifrs.org/standards/", + "has_api": false, + "file_path": "international/standards-metrology/sasb-standards.json", + "geographic_scope": "global" + }, + { + "id": "aws-open-data-registry", + "name": { + "en": "Registry of Open Data on AWS", + "zh": "AWS开放数据注册表" + }, + "authority_level": "commercial", + "data_url": "https://registry.opendata.aws/", + "has_api": false, + "file_path": "sectors/computer_science_ai/aws-open-data-registry.json", + "geographic_scope": "global" + } + ], + "sustainable-development": [ + { + "id": "unfpa-china", + "name": { + "en": "UNFPA China", + "zh": "联合国人口基金驻华代表处" + }, + "authority_level": "international", + "data_url": "https://china.unfpa.org/en/publications", + "has_api": false, + "file_path": "international/demographics/unfpa-china.json", + "geographic_scope": "national" + } + ], + "sustainable-development-goals": [ + { + "id": "adb-key-indicators", + "name": { + "en": "Asian Development Bank Key Indicators", + "zh": "亚洲开发银行关键指标" + }, + "authority_level": "international", + "data_url": "https://kidb.adb.org", + "has_api": true, + "file_path": "international/development/adb-key-indicators.json", + "geographic_scope": "regional" + } + ], + "sustainable-intensification": [ + { + "id": "cgiar-research-data", + "name": { + "en": "CGIAR Research Data", + "zh": "国际农业研究磋商组织研究数据" + }, + "authority_level": "international", + "data_url": "https://gardian.cgiar.org/", + "has_api": true, + "file_path": "international/agriculture/cgiar-research-data.json", + "geographic_scope": "global" + } + ], + "tariffs": [ + { + "id": "gdvc", + "name": { + "en": "General Department of Vietnam Customs", + "zh": "越南海关总局" + }, + "authority_level": "government", + "data_url": "https://www.customs.gov.vn", + "has_api": false, + "file_path": "countries/asia/vietnam/gdvc.json", + "geographic_scope": "national" + } + ], + "taxation": [ + { + "id": "china-mof", + "name": { + "en": "Ministry of Finance of China", + "zh": "中华人民共和国财政部" + }, + "authority_level": "government", + "data_url": "https://www.mof.gov.cn/gkml/", + "has_api": false, + "file_path": "china/finance/fiscal/china-mof.json", + "geographic_scope": "national" + }, + { + "id": "japan-mof", + "name": { + "en": "Ministry of Finance Japan", + "zh": "日本财务省" + }, + "authority_level": "government", + "data_url": "https://www.customs.go.jp/toukei/info/index_e.htm", + "has_api": false, + "file_path": "countries/asia/japan/japan-mof.json", + "geographic_scope": "national" + }, + { + "id": "vietnam-mof", + "name": { + "en": "Ministry of Finance of Vietnam", + "zh": "越南财政部" + }, + "authority_level": "government", + "data_url": "https://www.mof.gov.vn/webcenter/portal/btcen/pages_r/m/statistics", + "has_api": false, + "file_path": "countries/asia/vietnam/vietnam-mof.json", + "geographic_scope": "national" + } + ], + "technical-analysis": [ + { + "id": "alpha-vantage", + "name": { + "en": "Alpha Vantage API", + "zh": "Alpha Vantage API" + }, + "authority_level": "commercial", + "data_url": "https://www.alphavantage.co/", + "has_api": true, + "file_path": "sectors/K-finance-insurance/alpha-vantage.json", + "geographic_scope": "global" + } + ], + "technology": [ + { + "id": "ieee-xplore", + "name": { + "en": "IEEE Xplore Digital Library", + "zh": "IEEE Xplore数字图书馆" + }, + "authority_level": "research", + "data_url": "https://ieeexplore.ieee.org", + "has_api": true, + "file_path": "academic/ieee-xplore.json", + "geographic_scope": "global" + }, + { + "id": "china-natesc", + "name": { + "en": "National Agro-Tech Extension and Service Center", + "zh": "全国农业技术推广服务中心" + }, + "authority_level": "government", + "data_url": "https://www.natesc.org.cn", + "has_api": false, + "file_path": "china/economy/agriculture/china-natesc.json", + "geographic_scope": "national" + }, + { + "id": "china-cheaa", + "name": { + "en": "China Household Electrical Appliances Association", + "zh": "中国家用电器协会" + }, + "authority_level": "other", + "data_url": "https://www.cheaa.org/channels/116.html", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cheaa.json", + "geographic_scope": "national" + }, + { + "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-gz-stats", + "name": { + "en": "Guizhou Bureau of Statistics", + "zh": "贵州省统计局" + }, + "authority_level": "government", + "data_url": "https://stjj.guizhou.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-gz-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-shenzhen-stats", + "name": { + "en": "Shenzhen Bureau of Statistics", + "zh": "深圳市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.sz.gov.cn/zwgk/zfxxgkml/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-shenzhen-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-cccme", + "name": { + "en": "China Chamber of Commerce for Import and Export of Machinery and Electronic Products", + "zh": "中国机电产品进出口商会" + }, + "authority_level": "other", + "data_url": "https://www.cccme.org.cn/shop/cccme-stat/index.aspx", + "has_api": false, + "file_path": "china/economy/trade/china-cccme.json", + "geographic_scope": "national" + }, + { + "id": "china-cnas", + "name": { + "en": "China National Accreditation Service for Conformity Assessment", + "zh": "中国合格评定国家认可委员会" + }, + "authority_level": "government", + "data_url": "https://www.cnas.org.cn/", + "has_api": false, + "file_path": "china/governance/china-cnas.json", + "geographic_scope": "national" + }, + { + "id": "china-cqc", + "name": { + "en": "China Quality Certification Centre", + "zh": "中国质量认证中心" + }, + "authority_level": "government", + "data_url": "https://www.cqc.com.cn/", + "has_api": false, + "file_path": "china/governance/china-cqc.json", + "geographic_scope": "national" + }, + { + "id": "china-napp", + "name": { + "en": "National Administration of Press and Publication", + "zh": "国家新闻出版署" + }, + "authority_level": "government", + "data_url": "https://www.nppa.gov.cn/xxfb/", + "has_api": false, + "file_path": "china/governance/china-napp.json", + "geographic_scope": "national" + }, + { + "id": "china-ncac", + "name": { + "en": "National Copyright Administration of China", + "zh": "国家版权局" + }, + "authority_level": "government", + "data_url": "https://www.ncac.gov.cn/chinacopyright/channels/634.html", + "has_api": false, + "file_path": "china/governance/china-ncac.json", + "geographic_scope": "national" + }, + { + "id": "china-nrta", + "name": { + "en": "National Radio and Television Administration of China", + "zh": "国家广播电视总局" + }, + "authority_level": "government", + "data_url": "https://www.nrta.gov.cn/col/col2040/index.html", + "has_api": false, + "file_path": "china/governance/china-nrta.json", + "geographic_scope": "national" + }, + { + "id": "china-casc", + "name": { + "en": "China Aerospace Science and Technology Corporation (CASC)", + "zh": "中国航天科技集团有限公司" + }, + "authority_level": "government", + "data_url": "https://www.spacechina.com/n25/index.html", + "has_api": false, + "file_path": "china/industry/aerospace/china-casc.json", + "geographic_scope": "national" + }, + { + "id": "china-csia", + "name": { + "en": "China Semiconductor Industry Association", + "zh": "中国半导体行业协会" + }, + "authority_level": "other", + "data_url": "https://web.csia.net.cn", + "has_api": false, + "file_path": "china/industry/china-csia.json", + "geographic_scope": "national" + }, + { + "id": "china-miit-eidc", + "name": { + "en": "MIIT Equipment Industry Development Center", + "zh": "工业和信息化部装备工业发展中心" + }, + "authority_level": "government", + "data_url": "https://www.miit-eidc.org.cn/", + "has_api": false, + "file_path": "china/industry/china-miit-eidc.json", + "geographic_scope": "national" + }, + { + "id": "china-crrc", + "name": { + "en": "CRRC Corporation Limited", + "zh": "中国中车股份有限公司" + }, + "authority_level": "commercial", + "data_url": "https://www.crrcgc.cc", + "has_api": false, + "file_path": "china/infrastructure/china-crrc.json", + "geographic_scope": "national" + }, + { + "id": "china-cttic", + "name": { + "en": "China Transport Telecommunications & Information Center", + "zh": "中国交通通信信息中心" + }, + "authority_level": "government", + "data_url": "https://www.cttic.cn", + "has_api": false, + "file_path": "china/infrastructure/china-cttic.json", + "geographic_scope": "national" + }, + { + "id": "china-highway-society", + "name": { + "en": "China Highway and Transportation Society", + "zh": "中国公路学会" + }, + "authority_level": "research", + "data_url": "https://www.chts.cn", + "has_api": false, + "file_path": "china/infrastructure/china-highway-society.json", + "geographic_scope": "national" + }, + { + "id": "china-cae", + "name": { + "en": "Chinese Academy of Engineering", + "zh": "中国工程院" + }, + "authority_level": "research", + "data_url": "https://www.cae.cn/cae/html/main/col73/column_73_1.html", + "has_api": false, + "file_path": "china/research/china-cae.json", + "geographic_scope": "national" + }, + { + "id": "china-caict", + "name": { + "en": "China Academy of Information and Communications Technology", + "zh": "中国信息通信研究院" + }, + "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": "china-casm", + "name": { + "en": "Chinese Academy of Surveying and Mapping", + "zh": "中国测绘科学研究院" + }, + "authority_level": "research", + "data_url": "https://www.casm.ac.cn", + "has_api": false, + "file_path": "china/research/china-casm.json", + "geographic_scope": "national" + }, + { + "id": "china-cast", + "name": { + "en": "China Association for Science and Technology", + "zh": "中国科学技术协会" + }, + "authority_level": "other", + "data_url": "https://www.cast.org.cn/xw/", + "has_api": false, + "file_path": "china/research/china-cast.json", + "geographic_scope": "national" + }, + { + "id": "china-cisri", + "name": { + "en": "China Iron & Steel Research Institute Group", + "zh": "中国钢研科技集团有限公司" + }, + "authority_level": "research", + "data_url": "https://www.cisri.com.cn", + "has_api": false, + "file_path": "china/research/china-cisri.json", + "geographic_scope": "national" + }, + { + "id": "china-giec", + "name": { + "en": "Guangzhou Institute of Energy Conversion, Chinese Academy of Sciences", + "zh": "中国科学院广州能源研究所" + }, + "authority_level": "research", + "data_url": "http://www.giec.ac.cn", + "has_api": false, + "file_path": "china/research/china-giec.json", + "geographic_scope": "national" + }, + { + "id": "china-ncsti", + "name": { + "en": "National Center for Science and Technology Information", + "zh": "中国科学技术信息研究所" + }, + "authority_level": "research", + "data_url": "https://www.ncsti.gov.cn", + "has_api": false, + "file_path": "china/research/china-ncsti.json", + "geographic_scope": "national" + }, + { + "id": "china-nsfc", + "name": { + "en": "National Natural Science Foundation of China", + "zh": "国家自然科学基金委员会" + }, + "authority_level": "government", + "data_url": "https://www.nsfc.gov.cn/p1/2961/2964/3655/cg.html", + "has_api": false, + "file_path": "china/research/china-nsfc.json", + "geographic_scope": "national" + }, + { + "id": "china-nstl", + "name": { + "en": "National Science and Technology Library of China", + "zh": "国家科技图书文献中心" + }, + "authority_level": "government", + "data_url": "https://www.nstl.gov.cn/search.html", + "has_api": false, + "file_path": "china/research/china-nstl.json", + "geographic_scope": "national" + }, + { + "id": "china-wanfang", + "name": { + "en": "Wanfang Data", + "zh": "万方数据" + }, + "authority_level": "commercial", + "data_url": "https://www.wanfangdata.com.cn/", + "has_api": false, + "file_path": "china/research/china-wanfang.json", + "geographic_scope": "national" + }, + { + "id": "china-cnesa", + "name": { + "en": "China Energy Storage Alliance", + "zh": "中关村储能产业技术联盟" + }, + "authority_level": "other", + "data_url": "https://www.cnesa.org", + "has_api": false, + "file_path": "china/resources/environment/china-cnesa.json", + "geographic_scope": "national" + }, + { + "id": "china-beidou", + "name": { + "en": "BeiDou Navigation Satellite System", + "zh": "北斗卫星导航系统" + }, + "authority_level": "government", + "data_url": "http://www.beidou.gov.cn", + "has_api": false, + "file_path": "china/technology/china-beidou.json", + "geographic_scope": "global" + }, + { + "id": "china-caai", + "name": { + "en": "Chinese Association for Artificial Intelligence", + "zh": "中国人工智能学会" + }, + "authority_level": "research", + "data_url": "https://www.caai.cn/index.php?s=/home/article/lists/category/baokan.html", + "has_api": false, + "file_path": "china/technology/china-caai.json", + "geographic_scope": "national" + }, + { + "id": "china-ccf", + "name": { + "en": "China Computer Federation", + "zh": "中国计算机学会" + }, + "authority_level": "research", + "data_url": "https://www.ccf.org.cn/Academic_Evaluation/By_category/", + "has_api": false, + "file_path": "china/technology/china-ccf.json", + "geographic_scope": "national" + }, + { + "id": "china-cmse", + "name": { + "en": "China Manned Space Engineering Office", + "zh": "中国载人航天工程办公室" + }, + "authority_level": "government", + "data_url": "https://www.cmse.gov.cn", + "has_api": false, + "file_path": "china/technology/china-cmse.json", + "geographic_scope": "national" + }, + { + "id": "china-cnsa", + "name": { + "en": "China National Space Administration", + "zh": "国家航天局" + }, + "authority_level": "government", + "data_url": "https://www.cnsa.gov.cn/n6758823/index.html", + "has_api": false, + "file_path": "china/technology/china-cnsa.json", + "geographic_scope": "national" + }, + { + "id": "china-shenzhen-stic", + "name": { + "en": "Shenzhen Science, Technology and Innovation Commission", + "zh": "深圳市科技创新局" + }, + "authority_level": "government", + "data_url": "https://stic.sz.gov.cn/xxgk/index.html", + "has_api": false, + "file_path": "china/technology/china-shenzhen-stic.json", + "geographic_scope": "subnational" + }, + { + "id": "china-cagis", + "name": { + "en": "China Association for Geographic Information Industry", + "zh": "中国地理信息产业协会" + }, + "authority_level": "research", + "data_url": "https://www.cagis.org.cn", + "has_api": false, + "file_path": "china/technology/industry-associations/china-cagis.json", + "geographic_scope": "national" + }, + { + "id": "china-sae", + "name": { + "en": "Society of Automotive Engineers of China", + "zh": "中国汽车工程学会" + }, + "authority_level": "research", + "data_url": "https://www.sae-china.org/newsdata/reportdata/", + "has_api": false, + "file_path": "china/technology/industry-associations/china-sae.json", + "geographic_scope": "national" + }, + { + "id": "china-automation-association", + "name": { + "en": "Chinese Association of Automation", + "zh": "中国自动化学会" + }, + "authority_level": "other", + "data_url": "https://www.caa.org.cn/", + "has_api": false, + "file_path": "china/technology/industry_associations/china-automation-association.json", + "geographic_scope": "national" + }, + { + "id": "china-caam", + "name": { + "en": "China Association of Automobile Manufacturers", + "zh": "中国汽车工业协会" + }, + "authority_level": "other", + "data_url": "http://www.caam.org.cn/chn/4/cate_39/index.html", + "has_api": false, + "file_path": "china/technology/industry_associations/china-caam.json", + "geographic_scope": "national" + }, + { + "id": "china-cecc", + "name": { + "en": "China Electronics Chamber of Commerce", + "zh": "中国电子商会" + }, + "authority_level": "other", + "data_url": "http://www.cecc.org.cn/hangye/", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cecc.json", + "geographic_scope": "national" + }, + { + "id": "china-ciesc", + "name": { + "en": "Chemical Industry and Engineering Society of China", + "zh": "中国化工学会" + }, + "authority_level": "research", + "data_url": "https://www.ciesc.cn", + "has_api": false, + "file_path": "china/technology/industry_associations/china-ciesc.json", + "geographic_scope": "national" + }, + { + "id": "china-cima", + "name": { + "en": "China Instrumentation and Measurement Society", + "zh": "中国仪器仪表行业协会" + }, + "authority_level": "other", + "data_url": "http://www.cima.org.cn", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cima.json", + "geographic_scope": "national" + }, + { + "id": "china-cmes", + "name": { + "en": "Chinese Mechanical Engineering Society", + "zh": "中国机械工程学会" + }, + "authority_level": "research", + "data_url": "https://www.cmes.org", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cmes.json", + "geographic_scope": "national" + }, + { + "id": "china-csee", + "name": { + "en": "Chinese Society for Electrical Engineering", + "zh": "中国电机工程学会" + }, + "authority_level": "research", + "data_url": "https://www.csee.org.cn/", + "has_api": false, + "file_path": "china/technology/industry_associations/china-csee.json", + "geographic_scope": "national" + }, + { + "id": "china-isc", + "name": { + "en": "Internet Society of China", + "zh": "中国互联网协会" + }, + "authority_level": "other", + "data_url": "https://www.isc.org.cn/yanjiu/index.html", + "has_api": false, + "file_path": "china/technology/industry_associations/china-isc.json", + "geographic_scope": "national" + }, + { + "id": "china-cnipa-patents", + "name": { + "en": "China National Intellectual Property Administration - Patent Statistics", + "zh": "国家知识产权局专利统计" + }, + "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": "china-cac", + "name": { + "en": "Cyberspace Administration of China", + "zh": "国家互联网信息办公室" + }, + "authority_level": "government", + "data_url": "https://www.cac.gov.cn/wxzw/sjzl/A093708index_1.htm", + "has_api": false, + "file_path": "china/technology/internet/china-cac.json", + "geographic_scope": "national" + }, + { + "id": "china-cncert", + "name": { + "en": "National Computer Network Emergency Response Technical Team/Coordination Center of China", + "zh": "国家互联网应急中心" + }, + "authority_level": "government", + "data_url": "https://www.cert.org.cn/publish/main/45/index.html", + "has_api": false, + "file_path": "china/technology/internet/china-cncert.json", + "geographic_scope": "national" + }, + { + "id": "china-cinic", + "name": { + "en": "China Internet Network Information Center", + "zh": "中国互联网络信息中心", + "native": "中国互联网络信息中心" + }, + "authority_level": "government", + "data_url": "https://www.cnnic.cn/11/38/326/index.html", + "has_api": false, + "file_path": "china/technology/internet/cnnic.json", + "geographic_scope": "national" + }, + { + "id": "china-most-infrastructure", + "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, + "file_path": "china/technology/sci_resources/china-most-infrastructure.json", + "geographic_scope": "national" + }, + { + "id": "china-most-rnd", + "name": { + "en": "National Key R&D Program of China - Industrial Software and 16 Key Special Projects", + "zh": "国家重点研发计划 - 工业软件专项及16个重点专项" + }, + "authority_level": "government", + "data_url": "https://service.most.gov.cn/", + "has_api": false, + "file_path": "china/technology/sci_resources/china-most-rnd.json", + "geographic_scope": "national" + }, + { + "id": "china-cnis", + "name": { + "en": "China National Institute of Standardization", + "zh": "中国标准化研究院" + }, + "authority_level": "government", + "data_url": "https://www.cnis.ac.cn/kycg/", + "has_api": false, + "file_path": "china/technology/standards/china-cnis.json", + "geographic_scope": "national" + }, + { + "id": "china-csa", + "name": { + "en": "China Association for Standardization", + "zh": "中国标准化协会" + }, + "authority_level": "other", + "data_url": "https://www.china-cas.org", + "has_api": false, + "file_path": "china/technology/standards/china-csa.json", + "geographic_scope": "national" + }, + { + "id": "china-nim", + "name": { + "en": "National Institute of Metrology China", + "zh": "中国计量科学研究院" + }, + "authority_level": "government", + "data_url": "https://www.nim.ac.cn/nim_time", + "has_api": false, + "file_path": "china/technology/standards/china-nim.json", + "geographic_scope": "national" + }, + { + "id": "china-openstd", + "name": { + "en": "China National Standards Full Text Public Access System", + "zh": "国家标准全文公开系统" + }, + "authority_level": "government", + "data_url": "https://openstd.samr.gov.cn/", + "has_api": false, + "file_path": "china/technology/standards/china-openstd.json", + "geographic_scope": "national" + }, + { + "id": "china-sac-standards", + "name": { + "en": "Standardization Administration of China (SAC)", + "zh": "国家标准化管理委员会" + }, + "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": "china-ccsa", + "name": { + "en": "China Communication Standards Association", + "zh": "中国通信标准化协会" + }, + "authority_level": "other", + "data_url": "https://www.ccsa.org.cn/webadmin/", + "has_api": false, + "file_path": "china/technology/telecommunications/china-ccsa.json", + "geographic_scope": "national" + }, + { + "id": "china-miit", + "name": { + "en": "Ministry of Industry and Information Technology of the People's Republic of China", + "zh": "中华人民共和国工业和信息化部" + }, + "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": "china-tower", + "name": { + "en": "China Tower Corporation", + "zh": "中国铁塔股份有限公司" + }, + "authority_level": "commercial", + "data_url": "https://ir.china-tower.com/sc/ir/reports.php", + "has_api": false, + "file_path": "china/technology/telecommunications/china-tower.json", + "geographic_scope": "national" + }, + { + "id": "india-meity", + "name": { + "en": "Ministry of Electronics and Information Technology of India", + "zh": "印度电子和信息技术部" + }, + "authority_level": "government", + "data_url": "https://www.meity.gov.in/content/annual-report", + "has_api": false, + "file_path": "india/technology/india-meity.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": "unesco-uis", + "name": { + "en": "UNESCO Institute for Statistics", + "zh": "联合国教科文组织统计研究所" + }, + "authority_level": "international", + "data_url": "https://data.uis.unesco.org/", + "has_api": false, + "file_path": "international/education/unesco-uis.json", + "geographic_scope": "global" + }, + { + "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, + "file_path": "international/intellectual-property/wipo.json", + "geographic_scope": "global" + }, + { + "id": "china-lcd-association", + "name": { + "en": "China Optoelectronic Display Association - Liquid Crystal Division (CODA)", + "zh": "中国光学光电子行业协会液晶分会" + }, + "authority_level": "market", + "data_url": "https://www.coda.org.cn", + "has_api": false, + "file_path": "sectors/C-manufacturing/electronics/china-lcd-association.json", + "geographic_scope": "national" + }, + { + "id": "china-semiconductor-association", + "name": { + "en": "China Semiconductor Industry Association", + "zh": "中国半导体行业协会" + }, + "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": "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": "singapore-dos", + "name": { + "en": "Department of Statistics Singapore", + "zh": "新加坡统计局" + }, + "authority_level": "government", + "data_url": "https://tablebuilder.singstat.gov.sg", + "has_api": true, + "file_path": "singapore/national/singapore-dos.json", + "geographic_scope": "national" + } + ], + "technology-research": [ + { + "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", + "geographic_scope": "national" + } + ], + "technology-standards": [ + { + "id": "china-robot-industry-alliance", + "name": { + "en": "Robot Branch of China Machinery Industry Federation", + "zh": "中国机械工业联合会机器人分会" + }, + "authority_level": "market", + "data_url": "https://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" + } + ], + "telecommunications": [ + { + "id": "china-caict", + "name": { + "en": "China Academy of Information and Communications Technology", + "zh": "中国信息通信研究院" + }, + "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": "china-cinic", + "name": { + "en": "China Internet Network Information Center", + "zh": "中国互联网络信息中心", + "native": "中国互联网络信息中心" + }, + "authority_level": "government", + "data_url": "https://www.cnnic.cn/11/38/326/index.html", + "has_api": false, + "file_path": "china/technology/internet/cnnic.json", + "geographic_scope": "national" + }, + { + "id": "china-ccsa", + "name": { + "en": "China Communication Standards Association", + "zh": "中国通信标准化协会" + }, + "authority_level": "other", + "data_url": "https://www.ccsa.org.cn/webadmin/", + "has_api": false, + "file_path": "china/technology/telecommunications/china-ccsa.json", + "geographic_scope": "national" + }, + { + "id": "china-miit", + "name": { + "en": "Ministry of Industry and Information Technology of the People's Republic of China", + "zh": "中华人民共和国工业和信息化部" + }, + "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": "china-tower", + "name": { + "en": "China Tower Corporation", + "zh": "中国铁塔股份有限公司" + }, + "authority_level": "commercial", + "data_url": "https://ir.china-tower.com/sc/ir/reports.php", + "has_api": false, + "file_path": "china/technology/telecommunications/china-tower.json", + "geographic_scope": "national" + }, + { + "id": "unctad-infrastructure-statistics", + "name": { + "en": "UNCTAD Infrastructure Statistics Database", + "zh": "联合国贸发会议基础设施统计数据库" + }, + "authority_level": "international", + "data_url": "https://unctadstat.unctad.org/datacentre", + "has_api": true, + "file_path": "international/infrastructure/unctad-infrastructure-statistics.json", + "geographic_scope": "global" + }, + { + "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", + "geographic_scope": "national" + }, + { + "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" + } + ], + "tennis": [ + { + "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, + "file_path": "sectors/R-arts-entertainment/tennis-atp-wta-data.json", + "geographic_scope": "global" + }, + { + "id": "tennis-abstract-atp-wta", + "name": { + "en": "Tennis Abstract - ATP/WTA Data", + "zh": "Tennis Abstract - ATP/WTA网球数据" + }, + "authority_level": "research", + "data_url": "https://github.com/JeffSackmann/tennis_atp", + "has_api": false, + "file_path": "sectors/sports/tennis-abstract-atp-wta.json", + "geographic_scope": "global" + } + ], + "text-mining": [ + { + "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", + "geographic_scope": "global" + } + ], + "thermometry": [ + { + "id": "bipm-kcdb", + "name": { + "en": "BIPM Key Comparison Database (KCDB)", + "zh": "国际度量衡局关键比对数据库", + "native": "Bureau International des Poids et Mesures (BIPM)" + }, + "authority_level": "international", + "data_url": "https://www.bipm.org/kcdb", + "has_api": true, + "file_path": "international/standards-metrology/bipm-kcdb.json", + "geographic_scope": "global" + } + ], + "time-and-frequency": [ + { + "id": "bipm-kcdb", + "name": { + "en": "BIPM Key Comparison Database (KCDB)", + "zh": "国际度量衡局关键比对数据库", + "native": "Bureau International des Poids et Mesures (BIPM)" + }, + "authority_level": "international", + "data_url": "https://www.bipm.org/kcdb", + "has_api": true, + "file_path": "international/standards-metrology/bipm-kcdb.json", + "geographic_scope": "global" + } + ], + "tourism": [ + { + "id": "china-mct", + "name": { + "en": "Ministry of Culture and Tourism of China", + "zh": "中华人民共和国文化和旅游部", + "native": "中华人民共和国文化和旅游部" + }, + "authority_level": "government", + "data_url": "https://www.mct.gov.cn/zwgk/tjsj/", + "has_api": false, + "file_path": "china/economy/china-mct.json", + "geographic_scope": "national" + }, + { + "id": "china-cta", + "name": { + "en": "China Tourism Academy", + "zh": "中国旅游研究院" + }, + "authority_level": "research", + "data_url": "https://www.ctaweb.org.cn/index.php?m=home&c=Lists&a=index&tid=21", + "has_api": false, + "file_path": "china/national/china-cta.json", + "geographic_scope": "national" + }, + { + "id": "asean-stats", + "name": { + "en": "ASEAN Statistics", + "zh": "东盟统计局", + "native": "ASEANstats" + }, + "authority_level": "international", + "data_url": "https://data.aseanstats.org", + "has_api": false, + "file_path": "international/economics/asean-stats.json", + "geographic_scope": "regional" + } + ], + "tournament-data": [ + { + "id": "tennis-abstract-atp-wta", + "name": { + "en": "Tennis Abstract - ATP/WTA Data", + "zh": "Tennis Abstract - ATP/WTA网球数据" + }, + "authority_level": "research", + "data_url": "https://github.com/JeffSackmann/tennis_atp", + "has_api": false, + "file_path": "sectors/sports/tennis-abstract-atp-wta.json", + "geographic_scope": "global" + } + ], + "towns-and-cities": [ + { + "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", + "geographic_scope": "national" + } + ], + "toxicology": [ + { + "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" + }, + { + "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" + }, + { + "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" + } + ], + "trade": [ + { + "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, + "file_path": "academic/economics/ggdc-databases.json", + "geographic_scope": "global" + }, + { + "id": "china-cofco", + "name": { + "en": "COFCO Corporation", + "zh": "中粮集团有限公司" + }, + "authority_level": "government", + "data_url": "https://www.cofco.com", + "has_api": false, + "file_path": "china/economy/agriculture/china-cofco.json", + "geographic_scope": "global" + }, + { + "id": "china-cada", + "name": { + "en": "China Automobile Dealers Association", + "zh": "中国汽车流通协会" + }, + "authority_level": "other", + "data_url": "http://data.cada.cn/main/overview.do", + "has_api": false, + "file_path": "china/economy/china-cada.json", + "geographic_scope": "national" + }, + { + "id": "china-cansi", + "name": { + "en": "China Association of the National Shipbuilding Industry", + "zh": "中国船舶工业行业协会" + }, + "authority_level": "other", + "data_url": "https://www.cansi.org.cn/cms/document/show/43.html", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cansi.json", + "geographic_scope": "national" + }, + { + "id": "china-cantonfair", + "name": { + "en": "China Import and Export Fair (Canton Fair)", + "zh": "中国进出口商品交易会(广交会)" + }, + "authority_level": "government", + "data_url": "https://www.cantonfair.org.cn", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cantonfair.json", + "geographic_scope": "national" + }, + { + "id": "china-ccfa", + "name": { + "en": "China Chemical Fiber Industry Association", + "zh": "中国化学纤维工业协会" + }, + "authority_level": "other", + "data_url": "https://www.ccfa.com.cn/19/index.html", + "has_api": false, + "file_path": "china/economy/industry_associations/china-ccfa.json", + "geographic_scope": "national" + }, + { + "id": "china-cheaa", + "name": { + "en": "China Household Electrical Appliances Association", + "zh": "中国家用电器协会" + }, + "authority_level": "other", + "data_url": "https://www.cheaa.org/channels/116.html", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cheaa.json", + "geographic_scope": "national" + }, + { + "id": "china-cria", + "name": { + "en": "China Rubber Industry Association", + "zh": "中国橡胶工业协会" + }, + "authority_level": "other", + "data_url": "https://www.cria.org.cn/c/id/1760910256413655041", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cria.json", + "geographic_scope": "national" + }, + { + "id": "china-ctic", + "name": { + "en": "China Textile Information Center", + "zh": "中国纺织信息中心" + }, + "authority_level": "other", + "data_url": "https://www.ctic.org.cn", + "has_api": false, + "file_path": "china/economy/industry_associations/china-ctic.json", + "geographic_scope": "national" + }, + { + "id": "china-furniture-association", + "name": { + "en": "China National Furniture Association", + "zh": "中国家具协会" + }, + "authority_level": "market", + "data_url": "https://www.cnfa.com.cn", + "has_api": false, + "file_path": "china/economy/industry_associations/china-furniture-association.json", + "geographic_scope": "national" + }, + { + "id": "china-light-industry-council", + "name": { + "en": "China National Light Industry Council", + "zh": "中国轻工业联合会" + }, + "authority_level": "market", + "data_url": "http://www.cnlic.org.cn", + "has_api": false, + "file_path": "china/economy/industry_associations/china-light-industry-council.json", + "geographic_scope": "national" + }, + { + "id": "china-tea-marketing-association", + "name": { + "en": "China Tea Marketing Association", + "zh": "中国茶叶流通协会" + }, + "authority_level": "market", + "data_url": "https://www.ctma.com.cn", + "has_api": false, + "file_path": "china/economy/industry_associations/china-tea-marketing-association.json", + "geographic_scope": "national" + }, + { + "id": "china-cgcc", + "name": { + "en": "China General Chamber of Commerce", + "zh": "中国商业联合会" + }, + "authority_level": "other", + "data_url": "https://www.cgcc.org.cn/hyfz/zglsyfzzs/", + "has_api": false, + "file_path": "china/economy/market/china-cgcc.json", + "geographic_scope": "national" + }, + { + "id": "china-samr", + "name": { + "en": "State Administration for Market Regulation", + "zh": "国家市场监督管理总局", + "native": "国家市场监督管理总局" + }, + "authority_level": "government", + "data_url": "https://www.samr.gov.cn/zw/sj/sjzx/", + "has_api": false, + "file_path": "china/economy/market/china-samr.json", + "geographic_scope": "national" + }, + { + "id": "china-fj-stats", + "name": { + "en": "Fujian Bureau of Statistics", + "zh": "福建省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.fujian.gov.cn/xxgk/tjxx/", + "has_api": false, + "file_path": "china/economy/provincial/china-fj-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-gd-stats", + "name": { + "en": "Guangdong Bureau of Statistics", + "zh": "广东省统计局" + }, + "authority_level": "government", + "data_url": "https://stats.gd.gov.cn/tjsj186/index.html", + "has_api": false, + "file_path": "china/economy/provincial/china-gd-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-gx-stats", + "name": { + "en": "Guangxi Bureau of Statistics", + "zh": "广西壮族自治区统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.gxzf.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-gx-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-hi-stats", + "name": { + "en": "Hainan Bureau of Statistics", + "zh": "海南省统计局" + }, + "authority_level": "government", + "data_url": "https://stats.hainan.gov.cn/hntjj/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-hi-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-qingdao-stats", + "name": { + "en": "Qingdao Bureau of Statistics", + "zh": "青岛市统计局" + }, + "authority_level": "government", + "data_url": "http://qdtj.qingdao.gov.cn/", + "has_api": false, + "file_path": "china/economy/provincial/china-qingdao-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-sd-stats", + "name": { + "en": "Shandong Bureau of Statistics", + "zh": "山东省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.shandong.gov.cn/col/col8456/index.html", + "has_api": false, + "file_path": "china/economy/provincial/china-sd-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-shanghai-stats", + "name": { + "en": "Shanghai Municipal Bureau of Statistics", + "zh": "上海市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.sh.gov.cn/sjxx/index.html", + "has_api": false, + "file_path": "china/economy/provincial/china-shanghai-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-shenzhen-stats", + "name": { + "en": "Shenzhen Bureau of Statistics", + "zh": "深圳市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.sz.gov.cn/zwgk/zfxxgkml/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-shenzhen-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-suzhou-stats", + "name": { + "en": "Suzhou Bureau of Statistics", + "zh": "苏州市统计局" + }, + "authority_level": "government", + "data_url": "http://tjj.suzhou.gov.cn/", + "has_api": false, + "file_path": "china/economy/provincial/china-suzhou-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-tj-stats", + "name": { + "en": "Tianjin Bureau of Statistics", + "zh": "天津市统计局" + }, + "authority_level": "government", + "data_url": "https://stats.tj.gov.cn/tjsj_52032/", + "has_api": false, + "file_path": "china/economy/provincial/china-tj-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-hk-censtatd", + "name": { + "en": "Hong Kong Census and Statistics Department", + "zh": "香港政府统计处" + }, + "authority_level": "government", + "data_url": "https://www.censtatd.gov.hk/", + "has_api": false, + "file_path": "china/economy/special_admin_regions/china-hk-censtatd.json", + "geographic_scope": "subnational" + }, + { + "id": "china-cccme", + "name": { + "en": "China Chamber of Commerce for Import and Export of Machinery and Electronic Products", + "zh": "中国机电产品进出口商会" + }, + "authority_level": "other", + "data_url": "https://www.cccme.org.cn/shop/cccme-stat/index.aspx", + "has_api": false, + "file_path": "china/economy/trade/china-cccme.json", + "geographic_scope": "national" + }, + { + "id": "china-ccpit", + "name": { + "en": "China Council for the Promotion of International Trade", + "zh": "中国国际贸易促进委员会" + }, + "authority_level": "government", + "data_url": "https://www.ccpit.org/", + "has_api": false, + "file_path": "china/economy/trade/china-ccpit.json", + "geographic_scope": "national" + }, + { + "id": "china-cflp", + "name": { + "en": "China Federation of Logistics and Purchasing", + "zh": "中国物流与采购联合会" + }, + "authority_level": "other", + "data_url": "https://www.chinawuliu.com.cn/lhhzq/", + "has_api": false, + "file_path": "china/economy/trade/china-cflp.json", + "geographic_scope": "national" + }, + { + "id": "china-cfsmc", + "name": { + "en": "All-China Federation of Supply and Marketing Cooperatives", + "zh": "中华全国供销合作总社" + }, + "authority_level": "government", + "data_url": "https://www.chinacoop.gov.cn/", + "has_api": false, + "file_path": "china/economy/trade/china-cfsmc.json", + "geographic_scope": "national" + }, + { + "id": "china-chinca", + "name": { + "en": "China International Contractors Association", + "zh": "中国对外承包工程商会" + }, + "authority_level": "other", + "data_url": "https://www.chinca.org/CICA/info/20-1/index.html", + "has_api": false, + "file_path": "china/economy/trade/china-chinca.json", + "geographic_scope": "national" + }, + { + "id": "china-gacc", + "name": { + "en": "General Administration of Customs of China", + "zh": "中华人民共和国海关总署", + "native": "中华人民共和国海关总署" + }, + "authority_level": "government", + "data_url": "https://www.customs.gov.cn/customs/302249/zfxxgk/2799825/302274/302277/index.html", + "has_api": false, + "file_path": "china/economy/trade/china-gacc.json", + "geographic_scope": "national" + }, + { + "id": "china-sinosure", + "name": { + "en": "China Export & Credit Insurance Corporation", + "zh": "中国出口信用保险公司" + }, + "authority_level": "government", + "data_url": "https://www.sinosure.com.cn/gywm/gsjj/xxpl/index.shtml", + "has_api": false, + "file_path": "china/economy/trade/china-sinosure.json", + "geographic_scope": "national" + }, + { + "id": "china-customs", + "name": { + "en": "General Administration of Customs of China", + "zh": "中华人民共和国海关总署", + "native": "中华人民共和国海关总署" + }, + "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", + "name": { + "en": "Ministry of Commerce of China", + "zh": "中华人民共和国商务部", + "native": "中华人民共和国商务部" + }, + "authority_level": "government", + "data_url": "https://data.mofcom.gov.cn", + "has_api": false, + "file_path": "china/economy/trade/mofcom.json", + "geographic_scope": "national" + }, + { + "id": "china-eximbank", + "name": { + "en": "Export-Import Bank of China", + "zh": "中国进出口银行" + }, + "authority_level": "government", + "data_url": "http://www.eximbank.gov.cn/cn/index/information/annual/index.html", + "has_api": false, + "file_path": "china/finance/banking/eximbank.json", + "geographic_scope": "national" + }, + { + "id": "china-safe", + "name": { + "en": "State Administration of Foreign Exchange of China", + "zh": "国家外汇管理局", + "native": "国家外汇管理局" + }, + "authority_level": "government", + "data_url": "https://www.safe.gov.cn/safe/tjsj1/index.html", + "has_api": false, + "file_path": "china/finance/forex/china-safe.json", + "geographic_scope": "national" + }, + { + "id": "china-cnca", + "name": { + "en": "China National Accreditation Service for Conformity Assessment", + "zh": "中国国家认证认可监督管理委员会" + }, + "authority_level": "government", + "data_url": "https://www.cnca.gov.cn", + "has_api": false, + "file_path": "china/governance/china-cnca.json", + "geographic_scope": "national" + }, + { + "id": "china-cqc", + "name": { + "en": "China Quality Certification Centre", + "zh": "中国质量认证中心" + }, + "authority_level": "government", + "data_url": "https://www.cqc.com.cn/", + "has_api": false, + "file_path": "china/governance/china-cqc.json", + "geographic_scope": "national" + }, + { + "id": "china-catcm", + "name": { + "en": "China Association of Traditional Chinese Medicine", + "zh": "中国中药协会" + }, + "authority_level": "other", + "data_url": "https://www.catcm.org.cn", + "has_api": false, + "file_path": "china/health/china-catcm.json", + "geographic_scope": "national" + }, + { + "id": "china-ports-association", + "name": { + "en": "China Ports & Harbours Association", + "zh": "中国港口协会" + }, + "authority_level": "other", + "data_url": "http://www.port.org.cn", + "has_api": false, + "file_path": "china/infrastructure/china-ports-association.json", + "geographic_scope": "national" + }, + { + "id": "china-cciee", + "name": { + "en": "China Center for International Economic Exchanges", + "zh": "中国国际经济交流中心" + }, + "authority_level": "research", + "data_url": "https://www.cciee.org.cn/ktcglistall.aspx?clmId=650", + "has_api": false, + "file_path": "china/research/china-cciee.json", + "geographic_scope": "national" + }, + { + "id": "china-caam", + "name": { + "en": "China Association of Automobile Manufacturers", + "zh": "中国汽车工业协会" + }, + "authority_level": "other", + "data_url": "http://www.caam.org.cn/chn/4/cate_39/index.html", + "has_api": false, + "file_path": "china/technology/industry_associations/china-caam.json", + "geographic_scope": "national" + }, + { + "id": "china-cecc", + "name": { + "en": "China Electronics Chamber of Commerce", + "zh": "中国电子商会" + }, + "authority_level": "other", + "data_url": "http://www.cecc.org.cn/hangye/", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cecc.json", + "geographic_scope": "national" + }, + { + "id": "china-cima", + "name": { + "en": "China Instrumentation and Measurement Society", + "zh": "中国仪器仪表行业协会" + }, + "authority_level": "other", + "data_url": "http://www.cima.org.cn", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cima.json", + "geographic_scope": "national" + }, + { + "id": "china-cisa", + "name": { + "en": "China Iron and Steel Association", + "zh": "中国钢铁工业协会" + }, + "authority_level": "other", + "data_url": "https://www.chinaisa.org.cn/gxportal/xfgl/portal/index.html", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cisa.json", + "geographic_scope": "national" + }, + { + "id": "china-cntac", + "name": { + "en": "China National Textile and Apparel Council", + "zh": "中国纺织工业联合会" + }, + "authority_level": "other", + "data_url": "https://www.cntac.org.cn/jinghua", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cntac.json", + "geographic_scope": "national" + }, + { + "id": "china-cpcif", + "name": { + "en": "China Petroleum and Chemical Industry Federation", + "zh": "中国石油和化学工业联合会" + }, + "authority_level": "other", + "data_url": "http://www.cpcif.org.cn/list/stats", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cpcif.json", + "geographic_scope": "national" + }, + { + "id": "ghana-gss", + "name": { + "en": "Ghana Statistical Service", + "zh": "加纳统计局" + }, + "authority_level": "government", + "data_url": "https://statsghana.gov.gh/data-statistics/economic-statistics", + "has_api": false, + "file_path": "countries/africa/ghana/ghana-gss.json", + "geographic_scope": "national" + }, + { + "id": "kenya-knbs", + "name": { + "en": "Kenya National Bureau of Statistics", + "zh": "肯尼亚国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.knbs.or.ke/publications/", + "has_api": false, + "file_path": "countries/africa/kenya/kenya-knbs.json", + "geographic_scope": "national" + }, + { + "id": "stats-sa", + "name": { + "en": "Statistics South Africa (Stats SA)", + "zh": "南非统计局", + "native": "Statistics South Africa (Stats SA)" + }, + "authority_level": "government", + "data_url": "https://www.statssa.gov.za/?page_id=1521", + "has_api": false, + "file_path": "countries/africa/south-africa/stats-sa.json", + "geographic_scope": "national" + }, + { + "id": "brunei-deps", + "name": { + "en": "Department of Economic Planning and Statistics, Brunei (DEPS)", + "zh": "文莱经济规划与统计局" + }, + "authority_level": "government", + "data_url": "https://deps.mofe.gov.bn/edata-library/", + "has_api": false, + "file_path": "countries/asia/brunei/brunei-deps.json", + "geographic_scope": "national" + }, + { + "id": "india-mospi", + "name": { + "en": "Ministry of Statistics and Programme Implementation (MoSPI)", + "zh": "印度统计与计划实施部", + "native": "सांख्यिकी और कार्यक्रम कार्यान्वयन मंत्रालय" + }, + "authority_level": "government", + "data_url": "https://mospi.gov.in/data", + "has_api": false, + "file_path": "countries/asia/india/india-mospi.json", + "geographic_scope": "national" + }, + { + "id": "indonesia-bps", + "name": { + "en": "Statistics Indonesia (BPS)", + "zh": "印度尼西亚中央统计局", + "native": "Badan Pusat Statistik" + }, + "authority_level": "government", + "data_url": "https://www.bps.go.id/en/statistics-table", + "has_api": true, + "file_path": "countries/asia/indonesia/indonesia-bps.json", + "geographic_scope": "national" + }, + { + "id": "japan-jetro", + "name": { + "en": "Japan External Trade Organization", + "zh": "日本贸易振兴机构", + "native": "日本貿易振興機構" + }, + "authority_level": "government", + "data_url": "https://www.jetro.go.jp/en/reports/statistics.html", + "has_api": false, + "file_path": "countries/asia/japan/japan-jetro.json", + "geographic_scope": "national" + }, + { + "id": "japan-meti", + "name": { + "en": "Ministry of Economy, Trade and Industry (Japan)", + "zh": "日本经济产业省", + "native": "経済産業省" + }, + "authority_level": "government", + "data_url": "https://www.meti.go.jp/english/statistics/index.html", + "has_api": false, + "file_path": "countries/asia/japan/japan-meti.json", + "geographic_scope": "national" + }, + { + "id": "japan-mof", + "name": { + "en": "Ministry of Finance Japan", + "zh": "日本财务省" + }, + "authority_level": "government", + "data_url": "https://www.customs.go.jp/toukei/info/index_e.htm", + "has_api": false, + "file_path": "countries/asia/japan/japan-mof.json", + "geographic_scope": "national" + }, + { + "id": "kostat", + "name": { + "en": "Statistics Korea (KOSTAT)", + "zh": "韩国统计厅" + }, + "authority_level": "government", + "data_url": "https://kosis.kr/eng/", + "has_api": true, + "file_path": "countries/asia/kostat.json", + "geographic_scope": "national" + }, + { + "id": "myanmar-cso", + "name": { + "en": "Central Statistical Organization (Myanmar)", + "zh": "缅甸中央统计局" + }, + "authority_level": "government", + "data_url": "https://www.csostat.gov.mm", + "has_api": false, + "file_path": "countries/asia/myanmar/myanmar-cso.json", + "geographic_scope": "national" + }, + { + "id": "philippines-psa", + "name": { + "en": "Philippine Statistics Authority", + "zh": "菲律宾统计局" + }, + "authority_level": "government", + "data_url": "https://openstat.psa.gov.ph", + "has_api": false, + "file_path": "countries/asia/philippines/psa.json", + "geographic_scope": "national" + }, + { + "id": "saudi-gastat", + "name": { + "en": "General Authority for Statistics (GASTAT)", + "zh": "沙特阿拉伯统计总局" + }, + "authority_level": "government", + "data_url": "https://www.stats.gov.sa/statistics", + "has_api": false, + "file_path": "countries/asia/saudi-arabia/saudi-gastat.json", + "geographic_scope": "national" + }, + { + "id": "singapore-singstat", + "name": { + "en": "Singapore Department of Statistics (SingStat)", + "zh": "新加坡统计局", + "native": "Department of Statistics Singapore" + }, + "authority_level": "government", + "data_url": "https://tablebuilder.singstat.gov.sg", + "has_api": true, + "file_path": "countries/asia/singapore/singapore-singstat.json", + "geographic_scope": "national" + }, + { + "id": "gdvc", + "name": { + "en": "General Department of Vietnam Customs", + "zh": "越南海关总局" + }, + "authority_level": "government", + "data_url": "https://www.customs.gov.vn", + "has_api": false, + "file_path": "countries/asia/vietnam/gdvc.json", + "geographic_scope": "national" + }, + { + "id": "vietnam-gso", + "name": { + "en": "General Statistics Office of Vietnam", + "zh": "越南统计总局" + }, + "authority_level": "government", + "data_url": "https://www.nso.gov.vn/en/statistical-data/", + "has_api": false, + "file_path": "countries/asia/vietnam/gso.json", + "geographic_scope": "national" + }, + { + "id": "mpi-fdi", + "name": { + "en": "Ministry of Planning and Investment - FDI Statistics", + "zh": "越南计划投资部 - 外国直接投资统计", + "vi": "Bộ Kế hoạch và Đầu tư - Thống kê FDI" + }, + "authority_level": "government", + "data_url": "https://www.mpi.gov.vn/en/Pages/Report-on-Foreign-Direct-Investment-1740.aspx", + "has_api": false, + "file_path": "countries/asia/vietnam/mpi-fdi.json", + "geographic_scope": "national" + }, + { + "id": "vicofa", + "name": { + "en": "Vietnam Coffee and Cocoa Association", + "zh": "越南咖啡与可可协会" + }, + "authority_level": "market", + "data_url": "https://vicofa.org.vn/", + "has_api": false, + "file_path": "countries/asia/vietnam/vicofa.json", + "geographic_scope": "national" + }, + { + "id": "vietnam-fia", + "name": { + "en": "Foreign Investment Agency - Ministry of Planning and Investment", + "zh": "越南计划投资部外国投资局" + }, + "authority_level": "government", + "data_url": "https://www.mpi.gov.vn/en/Pages/FDI-1637.aspx", + "has_api": false, + "file_path": "countries/asia/vietnam/vietnam-fia.json", + "geographic_scope": "national" + }, + { + "id": "belgium-statbel", + "name": { + "en": "Statbel - Belgian Statistical Office", + "zh": "比利时统计局" + }, + "authority_level": "government", + "data_url": "https://statbel.fgov.be/en/open-data", + "has_api": false, + "file_path": "countries/europe/belgium/belgium-statbel.json", + "geographic_scope": "national" + }, + { + "id": "bulgaria-nsi", + "name": { + "en": "National Statistical Institute of Bulgaria (NSI)", + "zh": "保加利亚国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.nsi.bg/en/content/2666/statisticsdatabases", + "has_api": false, + "file_path": "countries/europe/bulgaria/bulgaria-nsi.json", + "geographic_scope": "national" + }, + { + "id": "croatia-dzs", + "name": { + "en": "Croatian Bureau of Statistics (DZS)", + "zh": "克罗地亚统计局" + }, + "authority_level": "government", + "data_url": "https://dzs.gov.hr/en/data-and-statistics", + "has_api": false, + "file_path": "countries/europe/croatia/croatia-dzs.json", + "geographic_scope": "national" + }, + { + "id": "czechia-czso", + "name": { + "en": "Czech Statistical Office (CZSO)", + "zh": "捷克统计局" + }, + "authority_level": "government", + "data_url": "https://vdb.czso.cz", + "has_api": true, + "file_path": "countries/europe/czechia/czechia-czso.json", + "geographic_scope": "national" + }, + { + "id": "denmark-dst", + "name": { + "en": "Statistics Denmark", + "zh": "丹麦统计局", + "native": "Danmarks Statistik" + }, + "authority_level": "government", + "data_url": "https://www.dst.dk/en/Statistik", + "has_api": true, + "file_path": "countries/europe/dk/denmark-dst.json", + "geographic_scope": "national" + }, + { + "id": "france-insee", + "name": { + "en": "INSEE - National Institute of Statistics and Economic Studies", + "zh": "法国国家统计与经济研究所", + "native": "Institut national de la statistique et des études économiques" + }, + "authority_level": "government", + "data_url": "https://www.insee.fr/en/statistiques", + "has_api": true, + "file_path": "countries/europe/fr/france-insee.json", + "geographic_scope": "national" + }, + { + "id": "germany-destatis", "name": { - "en": "UK Biobank", - "zh": "英国生物样本库" + "en": "Federal Statistical Office of Germany (Destatis)", + "zh": "德国联邦统计局", + "native": "Statistisches Bundesamt (Destatis)" }, - "authority_level": "research", - "data_url": "https://www.ukbiobank.ac.uk/", + "authority_level": "government", + "data_url": "https://www.destatis.de/EN/Themes/_node.html", "has_api": true, - "file_path": "academic/biology/uk-biobank.json", + "file_path": "countries/europe/germany/germany-destatis.json", "geographic_scope": "national" - } - ], - "medical_imaging": [ + }, { - "id": "canada-cihi", + "id": "greece-elstat", "name": { - "en": "Canadian Institute for Health Information", - "zh": "加拿大健康信息研究所", - "native": "Institut canadien d'information sur la santé" + "en": "Hellenic Statistical Authority (ELSTAT)", + "zh": "希腊统计局", + "native": "Ελληνική Στατιστική Αρχή (ΕΛΣΤΑΤ)" }, "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", + "data_url": "https://www.statistics.gr/en/statistics", + "has_api": false, + "file_path": "countries/europe/greece/greece-elstat.json", "geographic_scope": "national" - } - ], - "medical_trials": [ + }, { - "id": "clinicaltrials-gov", + "id": "hungary-ksh", "name": { - "en": "ClinicalTrials.gov", - "zh": "临床试验注册数据库" + "en": "Hungarian Central Statistical Office", + "zh": "匈牙利中央统计局" }, "authority_level": "government", - "data_url": "https://clinicaltrials.gov/", + "data_url": "https://www.ksh.hu/engstadat", "has_api": true, - "file_path": "academic/health/clinicaltrials-gov.json", - "geographic_scope": "global" - } - ], - "mental_health": [ + "file_path": "countries/europe/hungary/hungary-ksh.json", + "geographic_scope": "national" + }, { - "id": "canada-cihi", + "id": "ireland-cso", "name": { - "en": "Canadian Institute for Health Information", - "zh": "加拿大健康信息研究所", - "native": "Institut canadien d'information sur la santé" + "en": "Central Statistics Office (CSO)", + "zh": "爱尔兰中央统计局" }, "authority_level": "government", - "data_url": "https://www.cihi.ca/en/access-data-and-reports", + "data_url": "https://data.cso.ie", "has_api": true, - "file_path": "countries/north-america/canada/canada-cihi.json", + "file_path": "countries/europe/ireland/ireland-cso.json", "geographic_scope": "national" - } - ], - "metabolomics": [ + }, { - "id": "uk-biobank", + "id": "netherlands-cbs", "name": { - "en": "UK Biobank", - "zh": "英国生物样本库" + "en": "Statistics Netherlands (CBS)", + "zh": "荷兰统计局" }, - "authority_level": "research", - "data_url": "https://www.ukbiobank.ac.uk/", + "authority_level": "government", + "data_url": "https://opendata.cbs.nl/statline/", "has_api": true, - "file_path": "academic/biology/uk-biobank.json", + "file_path": "countries/europe/netherlands/netherlands-cbs.json", "geographic_scope": "national" - } - ], - "meteorology": [ + }, { - "id": "noaa-cdo", + "id": "portugal-ine", "name": { - "en": "NOAA Climate Data Online (CDO)", - "zh": "NOAA气候数据在线系统" + "en": "Statistics Portugal (INE)", + "zh": "葡萄牙国家统计局" }, "authority_level": "government", - "data_url": "https://www.ncei.noaa.gov/cdo-web/", + "data_url": "https://www.ine.pt/xportal/xmain?xpid=INE&xpgid=ine_base_dados", "has_api": true, - "file_path": "countries/north-america/usa/noaa-cdo.json", - "geographic_scope": "global" + "file_path": "countries/europe/portugal/portugal-ine.json", + "geographic_scope": "national" }, { - "id": "bureau-of-meteorology", + "id": "romania-ins", "name": { - "en": "Bureau of Meteorology", - "zh": "澳大利亚气象局" + "en": "National Institute of Statistics (Romania)", + "zh": "罗马尼亚国家统计局" }, "authority_level": "government", - "data_url": "https://www.bom.gov.au", + "data_url": "https://insse.ro/cms/en/statistici-2", "has_api": true, - "file_path": "countries/oceania/australia/bureau-of-meteorology.json", + "file_path": "countries/europe/romania/romania-ins.json", "geographic_scope": "national" - } - ], - "mineral": [ + }, { - "id": "china-miit-rare-earth", + "id": "russia-rosstat", "name": { - "en": "MIIT Rare Earth Office - Rare Earth Industry Regulation and Production Quotas", - "zh": "工业和信息化部稀土办公室 - 稀土行业规范与生产配额" + "en": "Federal State Statistics Service (Rosstat)", + "zh": "俄罗斯联邦统计局", + "native": "Федеральная служба государственной статистики (Росстат)" }, "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", + "data_url": "https://rosstat.gov.ru/statistics", + "has_api": true, + "file_path": "countries/europe/russia/russia-rosstat.json", "geographic_scope": "national" - } - ], - "minerals": [ + }, { - "id": "china-mnr-minerals", + "id": "slovakia-susr", "name": { - "en": "Ministry of Natural Resources - Mineral Resources Data", - "zh": "自然资源部矿产资源数据" + "en": "Statistical Office of the Slovak Republic (SUSR)", + "zh": "斯洛伐克共和国统计局" }, "authority_level": "government", - "data_url": "https://www.mnr.gov.cn/sj/sjfw/kc_19263/", + "data_url": "https://datacube.statistics.sk", "has_api": false, - "file_path": "china/resources/mineral/china-mnr-minerals.json", + "file_path": "countries/europe/slovakia/slovakia-susr.json", "geographic_scope": "national" - } - ], - "molecular biology": [ + }, { - "id": "tcga", + "id": "slovenia-surs", "name": { - "en": "The Cancer Genome Atlas (TCGA)", - "zh": "癌症基因组图谱" + "en": "Statistical Office of the Republic of Slovenia (SURS)", + "zh": "斯洛文尼亚共和国统计局" }, "authority_level": "government", - "data_url": "https://portal.gdc.cancer.gov/", + "data_url": "https://www.stat.si/StatWeb/en", "has_api": true, - "file_path": "academic/health/tcga.json", + "file_path": "countries/europe/slovenia/slovenia-surs.json", "geographic_scope": "national" - } - ], - "monetary_policy": [ + }, { - "id": "china-pbc", + "id": "sweden-scb", "name": { - "en": "People's Bank of China", - "zh": "中国人民银行", - "native": "中国人民银行" + "en": "Statistics Sweden (SCB)", + "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.statistikdatabasen.scb.se", + "has_api": true, + "file_path": "countries/europe/sweden/sweden-scb.json", "geographic_scope": "national" }, { - "id": "korea-bok", + "id": "turkey-tuik", "name": { - "en": "Bank of Korea", - "zh": "韩国银行", - "native": "한국은행" + "en": "Turkish Statistical Institute (TurkStat)", + "zh": "土耳其统计局", + "native": "Türkiye İstatistik Kurumu (TÜİK)" }, "authority_level": "government", - "data_url": "https://www.bok.or.kr/eng/main/main.do", + "data_url": "https://data.tuik.gov.tr", "has_api": true, - "file_path": "countries/asia/korea/korea-bok.json", + "file_path": "countries/europe/turkey/turkey-tuik.json", "geographic_scope": "national" }, { - "id": "canada-boc", + "id": "canada-statcan", "name": { - "en": "Bank of Canada", - "zh": "加拿大银行", - "native": "Banque du Canada" + "en": "Statistics Canada", + "zh": "加拿大统计局", + "native": "Statistique Canada" }, "authority_level": "government", - "data_url": "https://www.bankofcanada.ca/rates/", + "data_url": "https://www.statcan.gc.ca/en/start", "has_api": true, - "file_path": "countries/north-america/canada/canada-boc.json", + "file_path": "countries/north-america/canada/statcan.json", "geographic_scope": "national" }, { - "id": "mx-banxico", + "id": "mexico-inegi", "name": { - "en": "Bank of Mexico Economic Information System", - "zh": "墨西哥银行经济信息系统", - "native": "Sistema de Información Económica - Banco de México" + "en": "National Institute of Statistics and Geography (INEGI)", + "zh": "墨西哥国家统计和地理研究所", + "native": "Instituto Nacional de Estadística y Geografía (INEGI)" }, "authority_level": "government", - "data_url": "https://www.banxico.org.mx", + "data_url": "https://www.inegi.org.mx/datos/", "has_api": true, - "file_path": "countries/north-america/mexico/banxico.json", + "file_path": "countries/north-america/mexico/mexico-inegi.json", "geographic_scope": "national" - } - ], - "mortality": [ + }, { - "id": "ghdx", + "id": "us-census", "name": { - "en": "Global Health Data Exchange (GHDx)", - "zh": "全球健康数据交换平台" + "en": "U.S. Census Bureau", + "zh": "美国人口普查局" }, - "authority_level": "research", - "data_url": "https://ghdx.healthdata.org/", + "authority_level": "government", + "data_url": "https://data.census.gov", "has_api": true, - "file_path": "academic/health/ghdx.json", - "geographic_scope": "global" - } - ], - "national_accounts": [ + "file_path": "countries/north-america/usa/us-census.json", + "geographic_scope": "national" + }, { - "id": "korea-bok", + "id": "usda-fas", "name": { - "en": "Bank of Korea", - "zh": "韩国银行", - "native": "한국은행" + "en": "USDA Foreign Agricultural Service", + "zh": "美国农业部对外农业局" }, "authority_level": "government", - "data_url": "https://www.bok.or.kr/eng/main/main.do", + "data_url": "https://apps.fas.usda.gov/psdonline/app/index.html", "has_api": true, - "file_path": "countries/asia/korea/korea-bok.json", + "file_path": "countries/north-america/usa/usda-fas.json", "geographic_scope": "national" - } - ], - "natural gas": [ + }, { - "id": "usa-eia", + "id": "australia-abs", "name": { - "en": "U.S. Energy Information Administration", - "zh": "美国能源信息署" + "en": "Australian Bureau of Statistics", + "zh": "澳大利亚统计局" }, "authority_level": "government", - "data_url": "https://www.eia.gov", + "data_url": "https://www.abs.gov.au", "has_api": true, - "file_path": "countries/north-america/usa/eia.json", + "file_path": "countries/oceania/australia/abs.json", "geographic_scope": "national" - } - ], - "network-architecture": [ + }, { - "id": "china-imt2030", + "id": "nz-stats", "name": { - "en": "IMT-2030 (6G) Promotion Group", - "zh": "IMT-2030(6G)推进组" + "en": "Statistics New Zealand (Stats NZ)", + "zh": "新西兰统计局" }, "authority_level": "government", - "data_url": "https://www.imt2030.org.cn/html/default/zhongwen/chengguofabu/index.html", + "data_url": "https://infoshare.stats.govt.nz", "has_api": false, - "file_path": "sectors/J-information-communication/china-imt2030.json", + "file_path": "countries/oceania/new-zealand/nz-stats.json", "geographic_scope": "national" - } - ], - "nuclear energy": [ + }, { - "id": "usa-eia", + "id": "argentina-indec", "name": { - "en": "U.S. Energy Information Administration", - "zh": "美国能源信息署" + "en": "National Institute of Statistics and Censuses (INDEC)", + "zh": "阿根廷国家统计与普查局" }, "authority_level": "government", - "data_url": "https://www.eia.gov", + "data_url": "https://www.indec.gob.ar/indec/web/Nivel3-Tema-3-35", "has_api": true, - "file_path": "countries/north-america/usa/eia.json", + "file_path": "countries/south-america/argentina/argentina-indec.json", "geographic_scope": "national" - } - ], - "nuclear-power": [ + }, { - "id": "iaea-energy-data", + "id": "brazil-mapa", "name": { - "en": "IAEA Energy Data", - "zh": "国际原子能机构能源数据" + "en": "Brazil Ministry of Agriculture and Livestock", + "zh": "巴西农业和畜牧部" }, - "authority_level": "international", - "data_url": "https://data.iaea.org/", - "has_api": true, - "file_path": "international/energy/iaea-energy-data.json", - "geographic_scope": "global" - } - ], - "ocean": [ + "authority_level": "government", + "data_url": "https://indicadores.agricultura.gov.br/agrostat/index.htm", + "has_api": false, + "file_path": "countries/south-america/brazil/brazil-mapa.json", + "geographic_scope": "national" + }, { - "id": "copernicus-open-access-hub", + "id": "brazil-mdic-secex", "name": { - "en": "Copernicus Open Access Hub", - "zh": "哥白尼开放访问中心" + "en": "Brazil Ministry of Development, Industry, Commerce and Services - Foreign Trade Secretariat", + "zh": "巴西发展、工业、商业和服务部外贸秘书处" }, - "authority_level": "international", - "data_url": "https://dataspace.copernicus.eu/", + "authority_level": "government", + "data_url": "https://comexstat.mdic.gov.br/en/home", "has_api": true, - "file_path": "academic/environment/copernicus-open-access-hub.json", - "geographic_scope": "global" + "file_path": "countries/south-america/brazil/brazil-mdic-secex.json", + "geographic_scope": "national" }, { - "id": "nasa-earthdata", + "id": "brazil-cecafe", "name": { - "en": "NASA Earthdata", - "zh": "NASA地球数据" + "en": "Brazilian Coffee Exporters Council", + "zh": "巴西咖啡出口商协会" }, - "authority_level": "government", - "data_url": "https://www.earthdata.nasa.gov", - "has_api": true, - "file_path": "international/earth-science/nasa-earthdata.json", - "geographic_scope": "global" - } - ], - "oceanography": [ + "authority_level": "market", + "data_url": "https://www.cecafe.com.br/publicacoes/relatorio-de-exportacoes/", + "has_api": false, + "file_path": "countries/south-america/brazil-cecafe.json", + "geographic_scope": "national" + }, { - "id": "bureau-of-meteorology", + "id": "brazil-conab", "name": { - "en": "Bureau of Meteorology", - "zh": "澳大利亚气象局" + "en": "National Supply Company (CONAB)", + "zh": "巴西国家商品供应公司" }, "authority_level": "government", - "data_url": "https://www.bom.gov.au", - "has_api": true, - "file_path": "countries/oceania/australia/bureau-of-meteorology.json", + "data_url": "https://www.gov.br/conab/pt-br/atuacao/informacoes-agropecuarias/safras/safra-de-cafe", + "has_api": false, + "file_path": "countries/south-america/brazil-conab.json", "geographic_scope": "national" - } - ], - "oceans": [ + }, { - "id": "bureau-of-meteorology", + "id": "brazil-ibge", "name": { - "en": "Bureau of Meteorology", - "zh": "澳大利亚气象局" + "en": "Brazilian Institute of Geography and Statistics", + "zh": "巴西地理统计局" }, "authority_level": "government", - "data_url": "https://www.bom.gov.au", + "data_url": "https://www.ibge.gov.br/en/indicators", "has_api": true, - "file_path": "countries/oceania/australia/bureau-of-meteorology.json", + "file_path": "countries/south-america/brazil-ibge.json", "geographic_scope": "national" - } - ], - "oncology": [ + }, { - "id": "tcga", + "id": "colombia-dane", "name": { - "en": "The Cancer Genome Atlas (TCGA)", - "zh": "癌症基因组图谱" + "en": "National Administrative Department of Statistics (DANE)", + "zh": "哥伦比亚国家统计局", + "native": "Departamento Administrativo Nacional de Estadística (DANE)" }, "authority_level": "government", - "data_url": "https://portal.gdc.cancer.gov/", + "data_url": "https://www.dane.gov.co/index.php/estadisticas-por-tema", "has_api": true, - "file_path": "academic/health/tcga.json", + "file_path": "countries/south-america/colombia/colombia-dane.json", "geographic_scope": "national" - } - ], - "optics": [ + }, { - "id": "china-optical-association", + "id": "peru-inei", "name": { - "en": "China Optics and Optoelectronics Manufacturers Association", - "zh": "中国光学光电子行业协会" + "en": "National Institute of Statistics and Informatics of Peru (INEI)", + "zh": "秘鲁国家统计和信息学研究所" }, - "authority_level": "market", - "data_url": "https://www.coema.org.cn/research/sum", + "authority_level": "government", + "data_url": "https://www.inei.gob.pe/estadisticas/", "has_api": false, - "file_path": "sectors/C-manufacturing/electronics/china-optical-association.json", + "file_path": "countries/south-america/peru/peru-inei.json", "geographic_scope": "national" - } - ], - "optoelectronics": [ + }, { - "id": "china-optical-association", + "id": "india-meity", "name": { - "en": "China Optics and Optoelectronics Manufacturers Association", - "zh": "中国光学光电子行业协会" + "en": "Ministry of Electronics and Information Technology of India", + "zh": "印度电子和信息技术部" }, - "authority_level": "market", - "data_url": "https://www.coema.org.cn/research/sum", + "authority_level": "government", + "data_url": "https://www.meity.gov.in/content/annual-report", "has_api": false, - "file_path": "sectors/C-manufacturing/electronics/china-optical-association.json", + "file_path": "india/technology/india-meity.json", "geographic_scope": "national" - } - ], - "outbreak response": [ + }, { - "id": "africa-cdc", + "id": "faostat", "name": { - "en": "Africa CDC Health Data", - "zh": "非洲疾控中心健康数据" + "en": "FAOSTAT - Food and Agriculture Data", + "zh": "粮农组织统计数据库" }, "authority_level": "international", - "data_url": "https://africacdc.org", - "has_api": false, - "file_path": "international/health/africa-cdc.json", - "geographic_scope": "regional" - } - ], - "patents": [ + "data_url": "https://www.fao.org/faostat/en/", + "has_api": true, + "file_path": "international/agriculture/faostat.json", + "geographic_scope": "global" + }, { - "id": "wipo-ip-statistics", + "id": "ico-coffee", "name": { - "en": "WIPO IP Statistics", - "zh": "世界知识产权组织知识产权统计", - "native": "WIPO IP Statistics" + "en": "International Coffee Organization", + "zh": "国际咖啡组织" }, "authority_level": "international", - "data_url": "https://www3.wipo.int/ipstats/", + "data_url": "https://www.ico.org/trade_statistics.asp", "has_api": false, - "file_path": "international/intellectual-property/wipo.json", + "file_path": "international/agriculture/ico-coffee.json", "geographic_scope": "global" - } - ], - "patient_outcomes": [ + }, { - "id": "canada-cihi", + "id": "adb-data-library", "name": { - "en": "Canadian Institute for Health Information", - "zh": "加拿大健康信息研究所", - "native": "Institut canadien d'information sur la santé" + "en": "Asian Development Bank Data Library", + "zh": "亚洲开发银行数据库" }, - "authority_level": "government", - "data_url": "https://www.cihi.ca/en/access-data-and-reports", + "authority_level": "international", + "data_url": "https://data.adb.org", "has_api": true, - "file_path": "countries/north-america/canada/canada-cihi.json", - "geographic_scope": "national" - } - ], - "payment_systems": [ + "file_path": "international/development/adb-data-library.json", + "geographic_scope": "regional" + }, { - "id": "mx-banxico", + "id": "adb-key-indicators", "name": { - "en": "Bank of Mexico Economic Information System", - "zh": "墨西哥银行经济信息系统", - "native": "Sistema de Información Económica - Banco de México" + "en": "Asian Development Bank Key Indicators", + "zh": "亚洲开发银行关键指标" }, - "authority_level": "government", - "data_url": "https://www.banxico.org.mx", + "authority_level": "international", + "data_url": "https://kidb.adb.org", "has_api": true, - "file_path": "countries/north-america/mexico/banxico.json", - "geographic_scope": "national" - } - ], - "petroleum": [ + "file_path": "international/development/adb-key-indicators.json", + "geographic_scope": "regional" + }, { - "id": "usa-eia", + "id": "adb", "name": { - "en": "U.S. Energy Information Administration", - "zh": "美国能源信息署" + "en": "Asian Development Bank Data", + "zh": "亚洲开发银行数据" }, - "authority_level": "government", - "data_url": "https://www.eia.gov", - "has_api": true, - "file_path": "countries/north-america/usa/eia.json", - "geographic_scope": "national" - } - ], - "pharmaceuticals": [ + "authority_level": "international", + "data_url": "https://www.adb.org/what-we-do/data", + "has_api": false, + "file_path": "international/economics/adb.json", + "geographic_scope": "regional" + }, { - "id": "canada-cihi", + "id": "asean-stats", "name": { - "en": "Canadian Institute for Health Information", - "zh": "加拿大健康信息研究所", - "native": "Institut canadien d'information sur la santé" + "en": "ASEAN Statistics", + "zh": "东盟统计局", + "native": "ASEANstats" }, - "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" - } - ], - "photonics": [ + "authority_level": "international", + "data_url": "https://data.aseanstats.org", + "has_api": false, + "file_path": "international/economics/asean-stats.json", + "geographic_scope": "regional" + }, { - "id": "china-optical-association", + "id": "ceic-global-database", "name": { - "en": "China Optics and Optoelectronics Manufacturers Association", - "zh": "中国光学光电子行业协会" + "en": "CEIC Global Database", + "zh": "环亚经济数据库" }, - "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" - } - ], - "population": [ + "authority_level": "commercial", + "data_url": "https://www.ceicdata.com/en/products/global-economic-database", + "has_api": true, + "file_path": "international/economics/ceic-global-database.json", + "geographic_scope": "global" + }, { - "id": "dhs", + "id": "ceic-vietnam", "name": { - "en": "Demographic and Health Surveys (DHS) Program", - "zh": "人口与健康调查项目" + "en": "CEIC Vietnam Economic Database", + "zh": "环亚经济数据库 - 越南经济数据专题" }, - "authority_level": "international", - "data_url": "https://dhsprogram.com/", + "authority_level": "commercial", + "data_url": "https://www.ceicdata.com/en/country/vietnam", "has_api": true, - "file_path": "academic/health/dhs.json", - "geographic_scope": "regional" + "file_path": "international/economics/ceic-vietnam.json", + "geographic_scope": "national" }, { - "id": "usa-census-bureau", + "id": "eurostat", "name": { - "en": "United States Census Bureau", - "zh": "美国人口普查局" + "en": "Eurostat - Statistical Office of the European Union", + "zh": "欧盟统计局", + "native": "Eurostat" }, - "authority_level": "government", - "data_url": "https://www.census.gov", + "authority_level": "international", + "data_url": "https://ec.europa.eu/eurostat/databrowser/explore/all/all_themes", "has_api": true, - "file_path": "countries/north-america/usa/census-bureau.json", - "geographic_scope": "national" + "file_path": "international/economics/eurostat.json", + "geographic_scope": "regional" }, { - "id": "australia-abs", + "id": "bea-international-trade", "name": { - "en": "Australian Bureau of Statistics", - "zh": "澳大利亚统计局" + "en": "BEA Interactive Data - International Trade", + "zh": "美国经济分析局国际贸易互动数据" }, "authority_level": "government", - "data_url": "https://www.abs.gov.au", + "data_url": "https://apps.bea.gov/iTable/index_ita.cfm", "has_api": true, - "file_path": "countries/oceania/australia/abs.json", + "file_path": "international/trade/bea-international-trade.json", "geographic_scope": "national" }, { - "id": "brazil-ibge", + "id": "un-comtrade", "name": { - "en": "Brazilian Institute of Geography and Statistics", - "zh": "巴西地理统计局" + "en": "UN Comtrade - United Nations International Trade Statistics Database", + "zh": "联合国国际贸易统计数据库" }, - "authority_level": "government", - "data_url": "https://www.ibge.gov.br/en/indicators", + "authority_level": "international", + "data_url": "https://comtradeplus.un.org", "has_api": true, - "file_path": "countries/south-america/brazil-ibge.json", - "geographic_scope": "national" - } - ], - "population genetics": [ + "file_path": "international/trade/comtrade.json", + "geographic_scope": "global" + }, { - "id": "1000-genomes", + "id": "icc-trade-register", "name": { - "en": "1000 Genomes Project", - "zh": "千人基因组计划" + "en": "ICC Trade Register", + "zh": "国际商会贸易统计" }, - "authority_level": "research", - "data_url": "https://www.internationalgenome.org/", + "authority_level": "international", + "data_url": "https://iccwbo.org/news-publications/policies-reports/icc-trade-register-report/", "has_api": false, - "file_path": "academic/biology/1000-genomes.json", + "file_path": "international/trade/icc-trade-register.json", "geographic_scope": "global" - } - ], - "population_health": [ + }, { - "id": "canada-cihi", + "id": "unctad-trade-transport", "name": { - "en": "Canadian Institute for Health Information", - "zh": "加拿大健康信息研究所", - "native": "Institut canadien d'information sur la santé" + "en": "UNCTAD Trade-and-Transport Dataset", + "zh": "联合国贸发会议贸易与运输数据集" }, - "authority_level": "government", - "data_url": "https://www.cihi.ca/en/access-data-and-reports", + "authority_level": "international", + "data_url": "https://unctadstat.unctad.org/EN/TransportCost.html", "has_api": true, - "file_path": "countries/north-america/canada/canada-cihi.json", - "geographic_scope": "national" - } - ], - "postgraduate-admissions": [ + "file_path": "international/trade/unctad-trade-transport.json", + "geographic_scope": "global" + }, { - "id": "china-gaokao-chsi", + "id": "unctad", "name": { - "en": "China Postgraduate Admissions Information Network", - "zh": "中国研究生招生信息网" + "en": "UNCTAD - United Nations Conference on Trade and Development", + "zh": "联合国贸易和发展会议" }, - "authority_level": "government", - "data_url": "https://yz.chsi.com.cn/sch/", - "has_api": false, - "file_path": "china/education/higher_education/china-gaokao-chsi.json", - "geographic_scope": "national" - } - ], - "poverty": [ + "authority_level": "international", + "data_url": "https://unctadstat.unctad.org", + "has_api": true, + "file_path": "international/trade/unctad.json", + "geographic_scope": "global" + }, { - "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" }, - "authority_level": "government", - "data_url": "https://www.coneval.org.mx", - "has_api": false, - "file_path": "countries/north-america/mexico/coneval.json", - "geographic_scope": "national" - } - ], - "precision medicine": [ + "authority_level": "international", + "data_url": "https://stats.wto.org", + "has_api": true, + "file_path": "international/trade/wto.json", + "geographic_scope": "global" + }, { - "id": "tcga", + "id": "japan-customs", "name": { - "en": "The Cancer Genome Atlas (TCGA)", - "zh": "癌症基因组图谱" + "en": "Japan Customs Trade Statistics", + "zh": "日本财务省贸易统计", + "native": "貿易統計" }, "authority_level": "government", - "data_url": "https://portal.gdc.cancer.gov/", + "data_url": "https://www.customs.go.jp/toukei/info/index_e.htm", "has_api": true, - "file_path": "academic/health/tcga.json", + "file_path": "japan/trade/japan-customs.json", "geographic_scope": "national" - } - ], - "price_indices": [ + }, { - "id": "korea-bok", + "id": "singapore-dos", "name": { - "en": "Bank of Korea", - "zh": "韩国银行", - "native": "한국은행" + "en": "Department of Statistics Singapore", + "zh": "新加坡统计局" }, "authority_level": "government", - "data_url": "https://www.bok.or.kr/eng/main/main.do", + "data_url": "https://tablebuilder.singstat.gov.sg", "has_api": true, - "file_path": "countries/asia/korea/korea-bok.json", + "file_path": "singapore/national/singapore-dos.json", "geographic_scope": "national" - } - ], - "prices": [ + }, { - "id": "china-ndrc", + "id": "thailand-nso", "name": { - "en": "National Development and Reform Commission", - "zh": "国家发展和改革委员会", - "native": "国家发展和改革委员会" + "en": "National Statistical Office of Thailand", + "zh": "泰国国家统计局", + "native": "สำนักงานสถิติแห่งชาติ" }, "authority_level": "government", - "data_url": "https://www.ndrc.gov.cn/fgsj/", + "data_url": "https://www.nso.go.th/nsoweb/officialStatistics", "has_api": false, - "file_path": "china/economy/macro/ndrc.json", + "file_path": "thailand/national/thailand-nso.json", "geographic_scope": "national" - } - ], - "production": [ + }, { - "id": "mx-banxico", + "id": "us-fred", "name": { - "en": "Bank of Mexico Economic Information System", - "zh": "墨西哥银行经济信息系统", - "native": "Sistema de Información Económica - Banco de México" + "en": "FRED - Federal Reserve Economic Data", + "zh": "美联储经济数据库" }, "authority_level": "government", - "data_url": "https://www.banxico.org.mx", + "data_url": "https://fred.stlouisfed.org", "has_api": true, - "file_path": "countries/north-america/mexico/banxico.json", + "file_path": "us/economics/us-fred.json", "geographic_scope": "national" } ], - "productivity": [ - { - "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, - "file_path": "academic/economics/ggdc-databases.json", - "geographic_scope": "global" - }, - { - "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" - }, + "trade-and-integration": [ { - "id": "penn-world-table", + "id": "idb", "name": { - "en": "Penn World Table", - "zh": "宾州世界表" + "en": "Inter-American Development Bank", + "zh": "美洲开发银行" }, - "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" + "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" } ], - "proteomics": [ + "trade-and-services": [ { - "id": "uk-biobank", + "id": "gso-vietnam", "name": { - "en": "UK Biobank", - "zh": "英国生物样本库" + "en": "General Statistics Office of Vietnam", + "zh": "越南国家统计局" }, - "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.gso.gov.vn/en/data-and-statistics/", + "has_api": false, + "file_path": "countries/asia/vietnam/gso-vietnam.json", "geographic_scope": "national" } ], - "public health": [ + "trademarks": [ { - "id": "africa-cdc", + "id": "wipo-ip-statistics", "name": { - "en": "Africa CDC Health Data", - "zh": "非洲疾控中心健康数据" + "en": "WIPO IP Statistics", + "zh": "世界知识产权组织知识产权统计", + "native": "WIPO IP Statistics" }, "authority_level": "international", - "data_url": "https://africacdc.org", + "data_url": "https://www3.wipo.int/ipstats/", "has_api": false, - "file_path": "international/health/africa-cdc.json", - "geographic_scope": "regional" + "file_path": "international/intellectual-property/wipo.json", + "geographic_scope": "global" } ], - "public_finance": [ + "trading": [ { - "id": "mx-banxico", + "id": "refinitiv-lseg", "name": { - "en": "Bank of Mexico Economic Information System", - "zh": "墨西哥银行经济信息系统", - "native": "Sistema de Información Económica - Banco de México" + "en": "LSEG Data & Analytics (Refinitiv)", + "zh": "伦敦证交所数据分析(路孚特)" }, - "authority_level": "government", - "data_url": "https://www.banxico.org.mx", + "authority_level": "commercial", + "data_url": "https://www.lseg.com/en/data-analytics/products/workspace", "has_api": true, - "file_path": "countries/north-america/mexico/banxico.json", - "geographic_scope": "national" + "file_path": "sectors/K-finance-insurance/refinitiv-lseg.json", + "geographic_scope": "global" } ], - "quality-management": [ + "trading-data": [ { - "id": "china-sac-standards", + "id": "cryptocurrency-data", "name": { - "en": "Standardization Administration of China (SAC)", - "zh": "国家标准化管理委员会" + "en": "Cryptocurrency Market Data (CoinMarketCap & CoinGecko)", + "zh": "加密货币市场数据(CoinMarketCap 和 CoinGecko)" }, - "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" + "authority_level": "commercial", + "data_url": "https://coinmarketcap.com", + "has_api": true, + "file_path": "sectors/K-finance-insurance/cryptocurrency-data.json", + "geographic_scope": "global" } ], - "regulation": [ + "traditional-medicine": [ { - "id": "china-nfra", + "id": "china-cacms", "name": { - "en": "National Financial Regulatory Administration", - "zh": "国家金融监督管理总局", - "native": "国家金融监督管理总局" + "en": "China Academy of Chinese Medical Sciences", + "zh": "中国中医科学院" }, - "authority_level": "government", - "data_url": "https://www.nfra.gov.cn/cn/view/pages/tongjishuju/tongjishuju.html", + "authority_level": "research", + "data_url": "https://www.cacms.ac.cn/index.html", "has_api": false, - "file_path": "china/finance/banking/nfra.json", + "file_path": "china/health/china-cacms.json", "geographic_scope": "national" } ], - "regulatory-standards": [ + "transcriptomics": [ { - "id": "iais", + "id": "ena", "name": { - "en": "IAIS - International Association of Insurance Supervisors", - "zh": "国际保险监督官协会" + "en": "European Nucleotide Archive", + "zh": "欧洲核苷酸档案库" }, "authority_level": "international", - "data_url": "https://www.iais.org/activities-topics/financial-stability/gimar/", - "has_api": false, - "file_path": "international/finance/iais.json", + "data_url": "https://www.ebi.ac.uk/ena/browser/", + "has_api": true, + "file_path": "academic/biology/ena.json", "geographic_scope": "global" } ], - "remote-sensing": [ + "transparency": [ { - "id": "usgs-earthexplorer", + "id": "china-ccdi", "name": { - "en": "USGS EarthExplorer", - "zh": "美国地质调查局地球探索者" + "en": "Central Commission for Discipline Inspection of the Communist Party of China", + "zh": "中央纪律检查委员会" }, "authority_level": "government", - "data_url": "https://earthexplorer.usgs.gov/", - "has_api": true, - "file_path": "countries/north-america/usa/usgs-earthexplorer.json", - "geographic_scope": "global" + "data_url": "https://www.ccdi.gov.cn/xxgk/", + "has_api": false, + "file_path": "china/governance/china-ccdi.json", + "geographic_scope": "national" } ], - "renewable energy": [ + "transport": [ { - "id": "usa-eia", + "id": "uk-data-gov", "name": { - "en": "U.S. Energy Information Administration", - "zh": "美国能源信息署" + "en": "Data.gov.uk", + "zh": "英国政府开放数据平台" }, "authority_level": "government", - "data_url": "https://www.eia.gov", + "data_url": "https://www.data.gov.uk", "has_api": true, - "file_path": "countries/north-america/usa/eia.json", + "file_path": "countries/europe/uk/uk-data-gov.json", "geographic_scope": "national" - } - ], - "research": [ + }, { - "id": "china-most-rnd", + "id": "adb", "name": { - "en": "National Key R&D Program of China - Industrial Software and 16 Key Special Projects", - "zh": "国家重点研发计划 - 工业软件专项及16个重点专项" + "en": "Asian Development Bank Data", + "zh": "亚洲开发银行数据" }, - "authority_level": "government", - "data_url": "https://service.most.gov.cn/", + "authority_level": "international", + "data_url": "https://www.adb.org/what-we-do/data", "has_api": false, - "file_path": "china/technology/sci_resources/china-most-rnd.json", - "geographic_scope": "national" + "file_path": "international/economics/adb.json", + "geographic_scope": "regional" + }, + { + "id": "unctad-infrastructure-statistics", + "name": { + "en": "UNCTAD Infrastructure Statistics Database", + "zh": "联合国贸发会议基础设施统计数据库" + }, + "authority_level": "international", + "data_url": "https://unctadstat.unctad.org/datacentre", + "has_api": true, + "file_path": "international/infrastructure/unctad-infrastructure-statistics.json", + "geographic_scope": "global" } ], - "research-infrastructure": [ + "transport-and-telecommunications": [ { - "id": "china-most-infrastructure", + "id": "gso-vietnam", "name": { - "en": "National Platform for Research Infrastructure and Large-scale Scientific Instruments", - "zh": "重大科研基础设施和大型科研仪器国家网络管理平台" + "en": "General Statistics Office of Vietnam", + "zh": "越南国家统计局" }, "authority_level": "government", - "data_url": "https://nrii.org.cn/", + "data_url": "https://www.gso.gov.vn/en/data-and-statistics/", "has_api": false, - "file_path": "china/technology/sci_resources/china-most-infrastructure.json", + "file_path": "countries/asia/vietnam/gso-vietnam.json", "geographic_scope": "national" } ], - "resources": [ + "transportation": [ { - "id": "china-miit-rare-earth", + "id": "china-caupd", "name": { - "en": "MIIT Rare Earth Office - Rare Earth Industry Regulation and Production Quotas", - "zh": "工业和信息化部稀土办公室 - 稀土行业规范与生产配额" + "en": "China Academy of Urban Planning and Design", + "zh": "中国城市规划设计研究院" }, - "authority_level": "government", - "data_url": "https://www.miit.gov.cn/jgsj/ycls/xt/index.html", + "authority_level": "research", + "data_url": "https://www.caupd.com/", "has_api": false, - "file_path": "china/resources/mineral/china-miit-rare-earth.json", + "file_path": "china/construction/china-caupd.json", "geographic_scope": "national" }, { - "id": "china-mnr-minerals", + "id": "china-passenger-car-association", "name": { - "en": "Ministry of Natural Resources - Mineral Resources Data", - "zh": "自然资源部矿产资源数据" + "en": "China Passenger Car Association", + "zh": "全国乘用车市场信息联席会" }, - "authority_level": "government", - "data_url": "https://www.mnr.gov.cn/sj/sjfw/kc_19263/", + "authority_level": "research", + "data_url": "https://www.cpcaauto.com/newslist.php?types=csjd", "has_api": false, - "file_path": "china/resources/mineral/china-mnr-minerals.json", + "file_path": "china/economy/automotive/china-passenger-car-association.json", "geographic_scope": "national" - } - ], - "risk factors": [ + }, { - "id": "ghdx", + "id": "china-caac", "name": { - "en": "Global Health Data Exchange (GHDx)", - "zh": "全球健康数据交换平台" + "en": "Civil Aviation Administration of China", + "zh": "中国民用航空局", + "native": "中国民用航空局" }, - "authority_level": "research", - "data_url": "https://ghdx.healthdata.org/", - "has_api": true, - "file_path": "academic/health/ghdx.json", - "geographic_scope": "global" - } - ], - "safety": [ + "authority_level": "government", + "data_url": "https://www.caac.gov.cn/XXGK/XXGK/TJSJ/index.html", + "has_api": false, + "file_path": "china/economy/china-caac.json", + "geographic_scope": "national" + }, { - "id": "icao-aviation-data", + "id": "china-shenzhen-open-data", "name": { - "en": "ICAO Aviation Data", - "zh": "国际民航组织航空数据" + "en": "Shenzhen Open Data Platform", + "zh": "深圳市政府数据开放平台" }, - "authority_level": "international", - "data_url": "https://dataservices.icao.int/", + "authority_level": "government", + "data_url": "https://opendata.sz.gov.cn/data/dataSet/toDataList", "has_api": true, - "file_path": "international/transportation/icao-aviation-data.json", - "geographic_scope": "global" - } - ], - "science": [ + "file_path": "china/economy/provincial/china-shenzhen-open-data.json", + "geographic_scope": "subnational" + }, { - "id": "china-most-infrastructure", + "id": "china-camet", "name": { - "en": "National Platform for Research Infrastructure and Large-scale Scientific Instruments", - "zh": "重大科研基础设施和大型科研仪器国家网络管理平台" + "en": "China Association of Metros (CAMET)", + "zh": "中国城市轨道交通协会" }, - "authority_level": "government", - "data_url": "https://nrii.org.cn/", - "has_api": false, - "file_path": "china/technology/sci_resources/china-most-infrastructure.json", - "geographic_scope": "national" - } - ], - "scientific-instruments": [ + "authority_level": "other", + "data_url": "https://www.camet.org.cn", + "has_api": false, + "file_path": "china/infrastructure/china-camet.json", + "geographic_scope": "national" + }, { - "id": "china-most-infrastructure", + "id": "china-cata", "name": { - "en": "National Platform for Research Infrastructure and Large-scale Scientific Instruments", - "zh": "重大科研基础设施和大型科研仪器国家网络管理平台" + "en": "China Air Transport Association", + "zh": "中国航空运输协会" }, - "authority_level": "government", - "data_url": "https://nrii.org.cn/", + "authority_level": "other", + "data_url": "https://www.cata.org.cn/NewsList.aspx?id=11", "has_api": false, - "file_path": "china/technology/sci_resources/china-most-infrastructure.json", + "file_path": "china/infrastructure/china-cata.json", "geographic_scope": "national" }, { - "id": "china-instrument-society", + "id": "china-ccs", "name": { - "en": "China Instrument and Control Society", - "zh": "中国仪器仪表学会" + "en": "China Classification Society", + "zh": "中国船级社" }, - "authority_level": "research", - "data_url": "https://www.cis.org.cn/post/index/162", + "authority_level": "government", + "data_url": "https://www.ccs.org.cn/", "has_api": false, - "file_path": "sectors/M-professional-scientific/china-instrument-society.json", + "file_path": "china/infrastructure/china-ccs.json", "geographic_scope": "national" - } - ], - "securities": [ + }, { - "id": "china-csrc", + "id": "china-crg", "name": { - "en": "China Securities Regulatory Commission", - "zh": "中国证券监督管理委员会", - "native": "中国证券监督管理委员会" + "en": "China State Railway Group", + "zh": "中国国家铁路集团有限公司" }, "authority_level": "government", - "data_url": "https://www.csrc.gov.cn/csrc/c100103/common_list.shtml", + "data_url": "http://www.china-railway.com.cn/", "has_api": false, - "file_path": "china/finance/securities/csrc.json", + "file_path": "china/infrastructure/china-crg.json", "geographic_scope": "national" }, { - "id": "hkex", + "id": "china-crrc", "name": { - "en": "Hong Kong Exchanges and Clearing Limited (HKEX)", - "zh": "香港交易及结算所有限公司(港交所)", - "native": "香港交易及结算所有限公司" + "en": "CRRC Corporation Limited", + "zh": "中国中车股份有限公司" }, "authority_level": "commercial", - "data_url": "https://www.hkexnews.hk", - "has_api": true, - "file_path": "china/finance/securities/hkex.json", - "geographic_scope": "regional" - } - ], - "semiconductors": [ + "data_url": "https://www.crrcgc.cc", + "has_api": false, + "file_path": "china/infrastructure/china-crrc.json", + "geographic_scope": "national" + }, { - "id": "china-semiconductor-association", + "id": "china-crta", "name": { - "en": "China Semiconductor Industry Association", - "zh": "中国半导体行业协会" + "en": "China Road Transport Association", + "zh": "中国道路运输协会" }, - "authority_level": "market", - "data_url": "https://web.csia.net.cn/hyyhfx", + "authority_level": "other", + "data_url": "https://www.crta.org.cn/news.html?id=42", "has_api": false, - "file_path": "sectors/C-manufacturing/electronics/china-semiconductor-association.json", + "file_path": "china/infrastructure/china-crta.json", "geographic_scope": "national" - } - ], - "services": [ + }, { - "id": "china-nbs", + "id": "china-cttic", "name": { - "en": "National Bureau of Statistics of China", - "zh": "国家统计局", - "native": "国家统计局" + "en": "China Transport Telecommunications & Information Center", + "zh": "中国交通通信信息中心" }, "authority_level": "government", - "data_url": "https://www.stats.gov.cn/sj/", - "has_api": true, - "file_path": "china/national/nbs.json", + "data_url": "https://www.cttic.cn", + "has_api": false, + "file_path": "china/infrastructure/china-cttic.json", "geographic_scope": "national" }, { - "id": "china-sac-standards", + "id": "china-highway-society", "name": { - "en": "Standardization Administration of China (SAC)", - "zh": "国家标准化管理委员会" + "en": "China Highway and Transportation Society", + "zh": "中国公路学会" }, - "authority_level": "government", - "data_url": "https://std.samr.gov.cn/", + "authority_level": "research", + "data_url": "https://www.chts.cn", "has_api": false, - "file_path": "china/technology/standards/china-sac-standards.json", + "file_path": "china/infrastructure/china-highway-society.json", "geographic_scope": "national" - } - ], - "social": [ + }, { - "id": "world-inequality-database", + "id": "china-mot", "name": { - "en": "World Inequality Database (WID.world)", - "zh": "世界不平等数据库" + "en": "Ministry of Transport of China", + "zh": "中华人民共和国交通运输部", + "native": "中华人民共和国交通运输部" }, - "authority_level": "research", - "data_url": "https://wid.world/", - "has_api": true, - "file_path": "academic/economics/world-inequality-database.json", - "geographic_scope": "global" + "authority_level": "government", + "data_url": "https://www.mot.gov.cn/shuju/", + "has_api": false, + "file_path": "china/infrastructure/china-mot.json", + "geographic_scope": "national" }, { - "id": "ceic-china-urbanization", + "id": "china-msa", "name": { - "en": "CEIC Data - China Urbanization Rate", - "zh": "CEIC数据库 - 中国城镇化率" + "en": "China Maritime Safety Administration", + "zh": "中国海事局" }, - "authority_level": "commercial", - "data_url": "https://www.ceicdata.com/zh-hans/china/population-urbanization-rate", - "has_api": true, - "file_path": "china/national/ceic-china-urbanization.json", + "authority_level": "government", + "data_url": "https://www.msa.gov.cn/page/zxgk/tjsj.html", + "has_api": false, + "file_path": "china/infrastructure/china-msa.json", "geographic_scope": "national" }, { - "id": "cnki-population-census", + "id": "china-nra", "name": { - "en": "CNKI China Population Census Database", - "zh": "中国人口普查数据库" + "en": "National Railway Administration of China", + "zh": "国家铁路局" }, - "authority_level": "commercial", - "data_url": "https://data.cnki.net/npcd", + "authority_level": "government", + "data_url": "https://www.nra.gov.cn/xxgk/gkml/", "has_api": false, - "file_path": "china/national/cnki-population-census.json", + "file_path": "china/infrastructure/china-nra.json", "geographic_scope": "national" }, { - "id": "china-nbs", + "id": "china-ports-association", "name": { - "en": "National Bureau of Statistics of China", - "zh": "国家统计局", - "native": "国家统计局" + "en": "China Ports & Harbours Association", + "zh": "中国港口协会" }, - "authority_level": "government", - "data_url": "https://www.stats.gov.cn/sj/", - "has_api": true, - "file_path": "china/national/nbs.json", + "authority_level": "other", + "data_url": "http://www.port.org.cn", + "has_api": false, + "file_path": "china/infrastructure/china-ports-association.json", "geographic_scope": "national" }, { - "id": "brazil-ibge", + "id": "china-post-group", "name": { - "en": "Brazilian Institute of Geography and Statistics", - "zh": "巴西地理统计局" + "en": "China Post Group Corporation", + "zh": "中国邮政集团有限公司" }, "authority_level": "government", - "data_url": "https://www.ibge.gov.br/en/indicators", - "has_api": true, - "file_path": "countries/south-america/brazil-ibge.json", + "data_url": "https://www.chinapost.com.cn/", + "has_api": false, + "file_path": "china/infrastructure/china-post-group.json", "geographic_scope": "national" }, { - "id": "adb-data", + "id": "china-catarc", "name": { - "en": "Asian Development Bank Data Library", - "zh": "亚洲开发银行数据库", - "native": "ADB Data Library" + "en": "China Automotive Technology and Research Center", + "zh": "中国汽车技术研究中心" }, - "authority_level": "international", - "data_url": "https://data.adb.org", - "has_api": true, - "file_path": "international/development/adb-data.json", - "geographic_scope": "regional" + "authority_level": "research", + "data_url": "https://www.catarc.ac.cn", + "has_api": false, + "file_path": "china/research/china-catarc.json", + "geographic_scope": "national" }, { - "id": "afdb-statistics", + "id": "us-data-gov", "name": { - "en": "African Development Bank Statistics", - "zh": "非洲开发银行统计数据" + "en": "Data.gov", + "zh": "美国政府开放数据平台" }, - "authority_level": "international", - "data_url": "https://dataportal.opendataforafrica.org", - "has_api": true, - "file_path": "international/development/afdb-statistics.json", - "geographic_scope": "regional" + "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": "adb-data-library", + "id": "adb-key-indicators", "name": { - "en": "ADB Data Library", - "zh": "亚洲开发银行数据库" + "en": "Asian Development Bank Key Indicators", + "zh": "亚洲开发银行关键指标" }, "authority_level": "international", - "data_url": "https://data.adb.org", + "data_url": "https://kidb.adb.org", "has_api": true, - "file_path": "international/economics/adb-data-library.json", + "file_path": "international/development/adb-key-indicators.json", "geographic_scope": "regional" }, { - "id": "adb-vietnam", + "id": "caf", "name": { - "en": "Asian Development Bank - Vietnam Country Data", - "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.adb.org/countries/viet-nam/data", + "data_url": "https://www.caf.com/en/", "has_api": false, - "file_path": "international/economics/adb-vietnam.json", - "geographic_scope": "national" + "file_path": "international/development/caf.json", + "geographic_scope": "regional" }, { - "id": "oecd-statistics", + "id": "unctad-trade-transport", "name": { - "en": "OECD Statistics", - "zh": "经合组织统计数据", - "native": "OECD Statistics" + "en": "UNCTAD Trade-and-Transport Dataset", + "zh": "联合国贸发会议贸易与运输数据集" }, "authority_level": "international", - "data_url": "https://stats.oecd.org", + "data_url": "https://unctadstat.unctad.org/EN/TransportCost.html", "has_api": true, - "file_path": "international/economics/oecd.json", - "geographic_scope": "regional" + "file_path": "international/trade/unctad-trade-transport.json", + "geographic_scope": "global" }, { - "id": "worldbank-open-data", + "id": "icao-aviation-data", "name": { - "en": "World Bank Open Data", - "zh": "世界银行开放数据", - "native": "World Bank Open Data" + "en": "ICAO Aviation Data", + "zh": "国际民航组织航空数据" }, "authority_level": "international", - "data_url": "https://data.worldbank.org", + "data_url": "https://dataservices.icao.int/", "has_api": true, - "file_path": "international/economics/worldbank.json", + "file_path": "international/transportation/icao-aviation-data.json", "geographic_scope": "global" - } - ], - "social-development": [ - { - "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" - } - ], - "social-policy": [ - { - "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" - } - ], - "social-services": [ + }, { - "id": "mexico-coneval", + "id": "itf-transport", "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": "ITF Transport Statistics", + "zh": "国际交通论坛交通统计" }, - "authority_level": "government", - "data_url": "https://www.coneval.org.mx", - "has_api": false, - "file_path": "countries/north-america/mexico/coneval.json", - "geographic_scope": "national" - } - ], - "software": [ + "authority_level": "international", + "data_url": "https://www.itf-oecd.org/transport-statistics", + "has_api": true, + "file_path": "international/transportation/itf-transport.json", + "geographic_scope": "global" + }, { - "id": "china-most-rnd", + "id": "china-auto-association", "name": { - "en": "National Key R&D Program of China - Industrial Software and 16 Key Special Projects", - "zh": "国家重点研发计划 - 工业软件专项及16个重点专项" + "en": "China Association of Automobile Manufacturers", + "zh": "中国汽车工业协会" }, - "authority_level": "government", - "data_url": "https://service.most.gov.cn/", + "authority_level": "market", + "data_url": "http://www.caam.org.cn/tjsj", "has_api": false, - "file_path": "china/technology/sci_resources/china-most-rnd.json", + "file_path": "sectors/C-manufacturing/automotive/china-auto-association.json", "geographic_scope": "national" - } - ], - "space weather": [ + }, { - "id": "bureau-of-meteorology", + "id": "aws-open-data-registry", "name": { - "en": "Bureau of Meteorology", - "zh": "澳大利亚气象局" + "en": "Registry of Open Data on AWS", + "zh": "AWS开放数据注册表" }, - "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" + "authority_level": "commercial", + "data_url": "https://registry.opendata.aws/", + "has_api": false, + "file_path": "sectors/computer_science_ai/aws-open-data-registry.json", + "geographic_scope": "global" } ], - "standards": [ + "treasury-securities": [ { - "id": "china-sac-standards", + "id": "us-treasury", "name": { - "en": "Standardization Administration of China (SAC)", - "zh": "国家标准化管理委员会" + "en": "U.S. Department of the Treasury", + "zh": "美国财政部" }, "authority_level": "government", - "data_url": "https://std.samr.gov.cn/", - "has_api": false, - "file_path": "china/technology/standards/china-sac-standards.json", + "data_url": "https://fiscaldata.treasury.gov", + "has_api": true, + "file_path": "countries/north-america/usa/us-treasury.json", "geographic_scope": "national" } ], - "statistics": [ + "tuberculosis": [ { - "id": "china-moe-higher-education", + "id": "us-cdc", "name": { - "en": "Ministry of Education of China - Higher Education Statistics", - "zh": "中华人民共和国教育部高等教育统计" + "en": "Centers for Disease Control and Prevention", + "zh": "美国疾病控制与预防中心" }, "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", + "data_url": "https://wonder.cdc.gov/", + "has_api": true, + "file_path": "countries/north-america/usa/us-cdc.json", "geographic_scope": "national" - }, + } + ], + "unemployment": [ { - "id": "icao-aviation-data", + "id": "us-bls", "name": { - "en": "ICAO Aviation Data", - "zh": "国际民航组织航空数据" + "en": "Bureau of Labor Statistics", + "zh": "劳工统计局" }, - "authority_level": "international", - "data_url": "https://dataservices.icao.int/", + "authority_level": "government", + "data_url": "https://www.bls.gov/data/", "has_api": true, - "file_path": "international/transportation/icao-aviation-data.json", - "geographic_scope": "global" + "file_path": "countries/north-america/usa/us-bls.json", + "geographic_scope": "national" } ], - "structural-change": [ + "university-rankings": [ { - "id": "ggdc-databases", + "id": "arwu", "name": { - "en": "Groningen Growth and Development Centre (GGDC) Databases", - "zh": "格罗宁根增长与发展中心数据库" + "en": "Academic Ranking of World Universities", + "zh": "世界大学学术排名" }, "authority_level": "research", - "data_url": "https://www.rug.nl/ggdc/", + "data_url": "https://www.shanghairanking.com/rankings/arwu/2025", "has_api": false, - "file_path": "academic/economics/ggdc-databases.json", + "file_path": "sectors/P-education/arwu.json", "geographic_scope": "global" - } - ], - "student-achievement": [ + }, { - "id": "iea-education-studies", + "id": "qs-world-university-rankings", "name": { - "en": "IEA Education Studies Data", - "zh": "国际教育成就评价协会教育研究数据" + "en": "QS World University Rankings", + "zh": "QS世界大学排名" }, - "authority_level": "international", - "data_url": "https://www.iea.nl/data-tools/repository", + "authority_level": "market", + "data_url": "https://www.topuniversities.com/world-university-rankings", "has_api": false, - "file_path": "international/education/iea-education-studies.json", + "file_path": "sectors/P-education/qs-world-university-rankings.json", "geographic_scope": "global" } ], - "technology": [ + "urban": [ { - "id": "china-ndrc-computing", + "id": "china-camet", "name": { - "en": "NDRC East-to-West Computing Resources Project", - "zh": "国家发展改革委东数西算工程" + "en": "China Association of Metros (CAMET)", + "zh": "中国城市轨道交通协会" }, - "authority_level": "government", - "data_url": "https://www.ndrc.gov.cn/xxgk/zcfb/tz/202312/t20231229_1363000.html", + "authority_level": "other", + "data_url": "https://www.camet.org.cn", "has_api": false, - "file_path": "china/economy/macro/china-ndrc-computing.json", + "file_path": "china/infrastructure/china-camet.json", "geographic_scope": "national" - }, + } + ], + "urban-development": [ { - "id": "china-caict", + "id": "china-caupd", "name": { - "en": "China Academy of Information and Communications Technology", - "zh": "中国信息通信研究院" + "en": "China Academy of Urban Planning and Design", + "zh": "中国城市规划设计研究院" }, "authority_level": "research", - "data_url": "http://www.caict.ac.cn/kxyj/qwfb/", + "data_url": "https://www.caupd.com/", "has_api": false, - "file_path": "china/research/china-caict.json", + "file_path": "china/construction/china-caupd.json", "geographic_scope": "national" }, { - "id": "china-cnipa-patents", + "id": "china-cscec", "name": { - "en": "China National Intellectual Property Administration - Patent Statistics", - "zh": "国家知识产权局专利统计" + "en": "China State Construction Engineering Corporation", + "zh": "中国建筑集团有限公司" }, - "authority_level": "government", - "data_url": "https://www.cnipa.gov.cn/col/col61/index.html", + "authority_level": "commercial", + "data_url": "https://www.cscec.com", "has_api": false, - "file_path": "china/technology/intellectual_property/china-cnipa-patents.json", + "file_path": "china/construction/china-cscec.json", "geographic_scope": "national" }, { - "id": "china-most-infrastructure", + "id": "china-urban-planning", "name": { - "en": "National Platform for Research Infrastructure and Large-scale Scientific Instruments", - "zh": "重大科研基础设施和大型科研仪器国家网络管理平台" + "en": "Chinese Society for Urban Studies", + "zh": "中国城市规划学会" }, - "authority_level": "government", - "data_url": "https://nrii.org.cn/", + "authority_level": "research", + "data_url": "https://www.planning.org.cn/paper", "has_api": false, - "file_path": "china/technology/sci_resources/china-most-infrastructure.json", + "file_path": "china/construction/china-urban-planning.json", "geographic_scope": "national" }, { - "id": "china-most-rnd", + "id": "china-landchina", "name": { - "en": "National Key R&D Program of China - Industrial Software and 16 Key Special Projects", - "zh": "国家重点研发计划 - 工业软件专项及16个重点专项" + "en": "China Land Market Network", + "zh": "中国土地市场网" }, "authority_level": "government", - "data_url": "https://service.most.gov.cn/", + "data_url": "https://www.landchina.com/default.aspx?tabid=226", "has_api": false, - "file_path": "china/technology/sci_resources/china-most-rnd.json", + "file_path": "china/resources/china-landchina.json", "geographic_scope": "national" }, { - "id": "china-sac-standards", + "id": "us-hud", "name": { - "en": "Standardization Administration of China (SAC)", - "zh": "国家标准化管理委员会" + "en": "U.S. Department of Housing and Urban Development", + "zh": "美国住房和城市发展部", + "native": "U.S. Department of Housing and Urban Development" }, "authority_level": "government", - "data_url": "https://std.samr.gov.cn/", - "has_api": false, - "file_path": "china/technology/standards/china-sac-standards.json", + "data_url": "https://www.huduser.gov/portal/datasets/", + "has_api": true, + "file_path": "international/construction/us-hud.json", "geographic_scope": "national" }, { - "id": "china-miit", + "id": "caf", "name": { - "en": "Ministry of Industry and Information Technology of the People's Republic of China", - "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.miit.gov.cn/gxsj/index.html", + "authority_level": "international", + "data_url": "https://www.caf.com/en/", "has_api": false, - "file_path": "china/technology/telecommunications/china-miit.json", - "geographic_scope": "national" + "file_path": "international/development/caf.json", + "geographic_scope": "regional" }, { - "id": "oecd-statistics", + "id": "adb", "name": { - "en": "OECD Statistics", - "zh": "经合组织统计数据", - "native": "OECD Statistics" + "en": "Asian Development Bank Data", + "zh": "亚洲开发银行数据" }, "authority_level": "international", - "data_url": "https://stats.oecd.org", - "has_api": true, - "file_path": "international/economics/oecd.json", + "data_url": "https://www.adb.org/what-we-do/data", + "has_api": false, + "file_path": "international/economics/adb.json", "geographic_scope": "regional" - }, + } + ], + "urban-management": [ { - "id": "wipo-ip-statistics", + "id": "china-shenzhen-open-data", "name": { - "en": "WIPO IP Statistics", - "zh": "世界知识产权组织知识产权统计", - "native": "WIPO IP Statistics" + "en": "Shenzhen Open Data Platform", + "zh": "深圳市政府数据开放平台" }, - "authority_level": "international", - "data_url": "https://www3.wipo.int/ipstats/", - "has_api": false, - "file_path": "international/intellectual-property/wipo.json", - "geographic_scope": "global" - }, + "authority_level": "government", + "data_url": "https://opendata.sz.gov.cn/data/dataSet/toDataList", + "has_api": true, + "file_path": "china/economy/provincial/china-shenzhen-open-data.json", + "geographic_scope": "subnational" + } + ], + "urban-planning": [ { - "id": "china-lcd-association", + "id": "china-gd-housing", "name": { - "en": "China Optoelectronic Display Association - Liquid Crystal Division (CODA)", - "zh": "中国光学光电子行业协会液晶分会" + "en": "Guangdong Provincial Department of Housing and Urban-Rural Development", + "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://zfcxjst.gd.gov.cn/xxgk/", "has_api": false, - "file_path": "sectors/C-manufacturing/electronics/china-lcd-association.json", - "geographic_scope": "national" + "file_path": "china/construction/china-gd-housing.json", + "geographic_scope": "subnational" }, { - "id": "china-semiconductor-association", + "id": "china-mohurd", "name": { - "en": "China Semiconductor Industry Association", - "zh": "中国半导体行业协会" + "en": "Ministry of Housing and Urban-Rural Development", + "zh": "住房和城乡建设部", + "native": "住房和城乡建设部" }, - "authority_level": "market", - "data_url": "https://web.csia.net.cn/hyyhfx", + "authority_level": "government", + "data_url": "https://www.mohurd.gov.cn/gongkai/zhengce/", "has_api": false, - "file_path": "sectors/C-manufacturing/electronics/china-semiconductor-association.json", + "file_path": "china/construction/china-mohurd.json", "geographic_scope": "national" }, { - "id": "china-software-association", + "id": "china-shenzhen-pnr", "name": { - "en": "China Software Industry Association", - "zh": "中国软件行业协会" + "en": "Shenzhen Municipal Planning and Natural Resources Bureau", + "zh": "深圳市规划和自然资源局" }, - "authority_level": "market", - "data_url": "https://www.csia.org.cn/", + "authority_level": "government", + "data_url": "https://pnr.sz.gov.cn/xxgk/", "has_api": false, - "file_path": "sectors/J-information-communication/china-software-association.json", - "geographic_scope": "national" + "file_path": "china/resources/china-shenzhen-pnr.json", + "geographic_scope": "subnational" } ], - "technology-research": [ + "urban-studies": [ { - "id": "china-imt2030", + "id": "china-sass", "name": { - "en": "IMT-2030 (6G) Promotion Group", - "zh": "IMT-2030(6G)推进组" + "en": "Shanghai Academy of Social Sciences", + "zh": "上海社会科学院" }, - "authority_level": "government", - "data_url": "https://www.imt2030.org.cn/html/default/zhongwen/chengguofabu/index.html", + "authority_level": "research", + "data_url": "https://www.sass.org.cn", "has_api": false, - "file_path": "sectors/J-information-communication/china-imt2030.json", + "file_path": "china/research/china-sass.json", "geographic_scope": "national" } ], - "telecommunications": [ + "urbanization": [ { - "id": "china-caict", + "id": "ceic-china-urbanization", "name": { - "en": "China Academy of Information and Communications Technology", - "zh": "中国信息通信研究院" + "en": "CEIC Data - China Urbanization Rate", + "zh": "CEIC数据库 - 中国城镇化率" }, - "authority_level": "research", - "data_url": "http://www.caict.ac.cn/kxyj/qwfb/", - "has_api": false, - "file_path": "china/research/china-caict.json", + "authority_level": "commercial", + "data_url": "https://www.ceicdata.com/zh-hans/china/population-urbanization-rate", + "has_api": true, + "file_path": "china/national/ceic-china-urbanization.json", "geographic_scope": "national" }, { - "id": "china-miit", + "id": "unfpa-urbanization", "name": { - "en": "Ministry of Industry and Information Technology of the People's Republic of China", - "zh": "中华人民共和国工业和信息化部" + "zh": "联合国人口基金 - 城镇化数据", + "en": "UNFPA - Urbanization Data" }, - "authority_level": "government", - "data_url": "https://www.miit.gov.cn/gxsj/index.html", + "authority_level": "international", + "data_url": "https://www.unfpa.org/urbanization", "has_api": false, - "file_path": "china/technology/telecommunications/china-miit.json", - "geographic_scope": "national" - }, + "file_path": "international/demographics/unfpa-urbanization.json", + "geographic_scope": "global" + } + ], + "vaccine-safety": [ { - "id": "china-imt2030", + "id": "us-cdc", "name": { - "en": "IMT-2030 (6G) Promotion Group", - "zh": "IMT-2030(6G)推进组" + "en": "Centers for Disease Control and Prevention", + "zh": "美国疾病控制与预防中心" }, "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", + "data_url": "https://wonder.cdc.gov/", + "has_api": true, + "file_path": "countries/north-america/usa/us-cdc.json", "geographic_scope": "national" } ], - "trade": [ + "vaccines": [ { - "id": "ggdc-databases", + "id": "gavi", "name": { - "en": "Groningen Growth and Development Centre (GGDC) Databases", - "zh": "格罗宁根增长与发展中心数据库" + "en": "GAVI, the Vaccine Alliance", + "zh": "全球疫苗免疫联盟" }, - "authority_level": "research", - "data_url": "https://www.rug.nl/ggdc/", + "authority_level": "international", + "data_url": "https://www.gavi.org/programmes-impact/our-impact/facts-and-figures", "has_api": false, - "file_path": "academic/economics/ggdc-databases.json", + "file_path": "international/health/gavi.json", "geographic_scope": "global" - }, + } + ], + "vector-borne-diseases": [ { - "id": "china-customs", + "id": "ecdc-surveillance", "name": { - "en": "General Administration of Customs of China", - "zh": "中华人民共和国海关总署", - "native": "中华人民共和国海关总署" + "en": "ECDC Surveillance Data", + "zh": "欧洲疾病预防控制中心监测数据" }, - "authority_level": "government", - "data_url": "http://www.customs.gov.cn", + "authority_level": "international", + "data_url": "https://www.ecdc.europa.eu/en/data-dashboards-and-databases", "has_api": false, - "file_path": "china/economy/trade/customs.json", - "geographic_scope": "national" - }, + "file_path": "international/health/ecdc-surveillance.json", + "geographic_scope": "regional" + } + ], + "veterinary-drug-residues": [ { - "id": "china-mofcom", + "id": "codex-alimentarius", "name": { - "en": "Ministry of Commerce of China", - "zh": "中华人民共和国商务部", - "native": "中华人民共和国商务部" + "en": "Codex Alimentarius Standards", + "zh": "国际食品法典委员会标准" }, - "authority_level": "government", - "data_url": "https://data.mofcom.gov.cn", + "authority_level": "international", + "data_url": "https://www.fao.org/fao-who-codexalimentarius/codex-texts/all-standards/en/", "has_api": false, - "file_path": "china/economy/trade/mofcom.json", - "geographic_scope": "national" - }, + "file_path": "international/standards-metrology/codex-alimentarius.json", + "geographic_scope": "global" + } + ], + "vital-statistics": [ { - "id": "canada-statcan", + "id": "us-cdc", "name": { - "en": "Statistics Canada", - "zh": "加拿大统计局", - "native": "Statistique Canada" + "en": "Centers for Disease Control and Prevention", + "zh": "美国疾病控制与预防中心" }, "authority_level": "government", - "data_url": "https://www.statcan.gc.ca/en/start", + "data_url": "https://wonder.cdc.gov/", "has_api": true, - "file_path": "countries/north-america/canada/statcan.json", + "file_path": "countries/north-america/usa/us-cdc.json", "geographic_scope": "national" - }, + } + ], + "volcanoes": [ { - "id": "usa-census-bureau", + "id": "usgs", "name": { - "en": "United States Census Bureau", - "zh": "美国人口普查局" + "en": "U.S. Geological Survey (USGS)", + "zh": "美国地质调查局" }, "authority_level": "government", - "data_url": "https://www.census.gov", + "data_url": "https://www.usgs.gov/products/data", "has_api": true, - "file_path": "countries/north-america/usa/census-bureau.json", + "file_path": "countries/us/geology/usgs.json", "geographic_scope": "national" - }, + } + ], + "wages": [ { - "id": "australia-abs", + "id": "us-bls", "name": { - "en": "Australian Bureau of Statistics", - "zh": "澳大利亚统计局" + "en": "Bureau of Labor Statistics", + "zh": "劳工统计局" }, "authority_level": "government", - "data_url": "https://www.abs.gov.au", + "data_url": "https://www.bls.gov/data/", "has_api": true, - "file_path": "countries/oceania/australia/abs.json", + "file_path": "countries/north-america/usa/us-bls.json", "geographic_scope": "national" - }, + } + ], + "waste-management": [ { - "id": "brazil-cecafe", + "id": "basel-convention", "name": { - "en": "Brazilian Coffee Exporters Council", - "zh": "巴西咖啡出口商协会" + "en": "Basel Convention Data", + "zh": "巴塞尔公约数据" }, - "authority_level": "market", - "data_url": "https://www.cecafe.com.br/publicacoes/relatorio-de-exportacoes/", + "authority_level": "international", + "data_url": "https://www.basel.int", "has_api": false, - "file_path": "countries/south-america/brazil-cecafe.json", - "geographic_scope": "national" - }, + "file_path": "international/environment/basel-convention.json", + "geographic_scope": "global" + } + ], + "water": [ { - "id": "brazil-conab", + "id": "china-cigem", "name": { - "en": "National Supply Company (CONAB)", - "zh": "巴西国家商品供应公司" + "en": "China Institute of Geo-Environment Monitoring", + "zh": "中国地质环境监测院" }, "authority_level": "government", - "data_url": "https://www.gov.br/conab/pt-br/atuacao/informacoes-agropecuarias/safras/safra-de-cafe", + "data_url": "http://www.cigem.cgs.gov.cn/", "has_api": false, - "file_path": "countries/south-america/brazil-conab.json", + "file_path": "china/resources/environment/china-cigem.json", "geographic_scope": "national" }, { - "id": "brazil-ibge", + "id": "china-ches", "name": { - "en": "Brazilian Institute of Geography and Statistics", - "zh": "巴西地理统计局" + "en": "China Hydraulic Engineering Society", + "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": "http://www.ches.org.cn", + "has_api": false, + "file_path": "china/resources/water/china-ches.json", "geographic_scope": "national" }, { - "id": "ceic-global-database", + "id": "china-crsri", "name": { - "en": "CEIC Global Database", - "zh": "环亚经济数据库" + "en": "Changjiang River Scientific Research Institute", + "zh": "长江科学院" }, - "authority_level": "commercial", - "data_url": "https://www.ceicdata.com/en/products/global-economic-database", - "has_api": true, - "file_path": "international/economics/ceic-global-database.json", - "geographic_scope": "global" + "authority_level": "research", + "data_url": "http://www.crsri.cn", + "has_api": false, + "file_path": "china/resources/water/china-crsri.json", + "geographic_scope": "national" }, { - "id": "ceic-vietnam", + "id": "china-iwhr", "name": { - "en": "CEIC Vietnam Economic Database", - "zh": "环亚经济数据库 - 越南经济数据专题" + "en": "China Institute of Water Resources and Hydropower Research", + "zh": "中国水利水电科学研究院" }, - "authority_level": "commercial", - "data_url": "https://www.ceicdata.com/en/country/vietnam", - "has_api": true, - "file_path": "international/economics/ceic-vietnam.json", + "authority_level": "research", + "data_url": "http://www.iwhr.com/", + "has_api": false, + "file_path": "china/resources/water/china-iwhr.json", "geographic_scope": "national" }, { - "id": "bea-international-trade", + "id": "bureau-of-meteorology", "name": { - "en": "BEA International Trade in Goods and Services", - "zh": "美国经济分析局国际贸易数据" + "en": "Bureau of Meteorology", + "zh": "澳大利亚气象局" }, "authority_level": "government", - "data_url": "https://apps.bea.gov/iTable/index_ita.cfm", + "data_url": "https://www.bom.gov.au", "has_api": true, - "file_path": "international/trade/bea-international-trade.json", + "file_path": "countries/oceania/australia/bureau-of-meteorology.json", "geographic_scope": "national" }, { - "id": "un-comtrade", + "id": "adb", "name": { - "en": "UN Comtrade - United Nations International Trade Statistics Database", - "zh": "联合国国际贸易统计数据库" + "en": "Asian Development Bank Data", + "zh": "亚洲开发银行数据" }, "authority_level": "international", - "data_url": "https://comtradeplus.un.org", - "has_api": true, - "file_path": "international/trade/comtrade.json", - "geographic_scope": "global" + "data_url": "https://www.adb.org/what-we-do/data", + "has_api": false, + "file_path": "international/economics/adb.json", + "geographic_scope": "regional" }, { - "id": "icc-trade-register", + "id": "eea-climate", "name": { - "en": "ICC Trade Register", - "zh": "国际商会贸易统计" + "en": "European Environment Agency", + "zh": "欧洲环境署" }, "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", - "geographic_scope": "global" - }, + "data_url": "https://www.eea.europa.eu/en/datahub", + "has_api": true, + "file_path": "international/environment/eea-climate.json", + "geographic_scope": "regional" + } + ], + "water-resources": [ { - "id": "unctad", + "id": "usgs", "name": { - "en": "UNCTAD - United Nations Conference on Trade and Development", - "zh": "联合国贸易和发展会议" + "en": "U.S. Geological Survey (USGS)", + "zh": "美国地质调查局" }, - "authority_level": "international", - "data_url": "https://unctadstat.unctad.org", + "authority_level": "government", + "data_url": "https://www.usgs.gov/products/data", "has_api": true, - "file_path": "international/trade/unctad.json", - "geographic_scope": "global" + "file_path": "countries/us/geology/usgs.json", + "geographic_scope": "national" }, { - "id": "wto-statistics", + "id": "caf", "name": { - "en": "WTO Statistics Database", - "zh": "世界贸易组织统计数据库", - "native": "WTO Statistics Database" + "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://stats.wto.org", - "has_api": true, - "file_path": "international/trade/wto.json", - "geographic_scope": "global" + "data_url": "https://www.caf.com/en/", + "has_api": false, + "file_path": "international/development/caf.json", + "geographic_scope": "regional" } ], - "trademarks": [ + "water-resources-management": [ { - "id": "wipo-ip-statistics", + "id": "cgiar-research-data", "name": { - "en": "WIPO IP Statistics", - "zh": "世界知识产权组织知识产权统计", - "native": "WIPO IP Statistics" + "en": "CGIAR Research Data", + "zh": "国际农业研究磋商组织研究数据" }, "authority_level": "international", - "data_url": "https://www3.wipo.int/ipstats/", - "has_api": false, - "file_path": "international/intellectual-property/wipo.json", + "data_url": "https://gardian.cgiar.org/", + "has_api": true, + "file_path": "international/agriculture/cgiar-research-data.json", "geographic_scope": "global" } ], - "transportation": [ + "water-utilities": [ { - "id": "icao-aviation-data", + "id": "unctad-infrastructure-statistics", "name": { - "en": "ICAO Aviation Data", - "zh": "国际民航组织航空数据" + "en": "UNCTAD Infrastructure Statistics Database", + "zh": "联合国贸发会议基础设施统计数据库" }, "authority_level": "international", - "data_url": "https://dataservices.icao.int/", + "data_url": "https://unctadstat.unctad.org/datacentre", "has_api": true, - "file_path": "international/transportation/icao-aviation-data.json", + "file_path": "international/infrastructure/unctad-infrastructure-statistics.json", "geographic_scope": "global" } ], - "urbanization": [ + "weather": [ { - "id": "ceic-china-urbanization", + "id": "china-iap", "name": { - "en": "CEIC Data - China Urbanization Rate", - "zh": "CEIC数据库 - 中国城镇化率" + "en": "Institute of Atmospheric Physics, Chinese Academy of Sciences", + "zh": "中国科学院大气物理研究所" }, - "authority_level": "commercial", - "data_url": "https://www.ceicdata.com/zh-hans/china/population-urbanization-rate", - "has_api": true, - "file_path": "china/national/ceic-china-urbanization.json", + "authority_level": "research", + "data_url": "https://www.iap.ac.cn", + "has_api": false, + "file_path": "china/research/china-iap.json", "geographic_scope": "national" - } - ], - "water": [ + }, { "id": "bureau-of-meteorology", "name": { @@ -14333,18 +39230,32 @@ "geographic_scope": "national" } ], - "weather": [ + "web-analytics": [ { - "id": "bureau-of-meteorology", + "id": "common-crawl", "name": { - "en": "Bureau of Meteorology", - "zh": "澳大利亚气象局" + "en": "Common Crawl", + "zh": "Common Crawl 网络爬取数据" }, - "authority_level": "government", - "data_url": "https://www.bom.gov.au", + "authority_level": "research", + "data_url": "https://commoncrawl.org", "has_api": true, - "file_path": "countries/oceania/australia/bureau-of-meteorology.json", - "geographic_scope": "national" + "file_path": "sectors/J-information-communication/common-crawl.json", + "geographic_scope": "global" + } + ], + "web-crawling": [ + { + "id": "common-crawl", + "name": { + "en": "Common Crawl", + "zh": "Common Crawl 网络爬取数据" + }, + "authority_level": "research", + "data_url": "https://commoncrawl.org", + "has_api": true, + "file_path": "sectors/J-information-communication/common-crawl.json", + "geographic_scope": "global" } ], "welfare": [ @@ -14360,6 +39271,32 @@ "has_api": false, "file_path": "countries/north-america/mexico/coneval.json", "geographic_scope": "national" + }, + { + "id": "aus-aihw", + "name": { + "en": "Australian Institute of Health and Welfare", + "zh": "澳大利亚健康与福利研究所" + }, + "authority_level": "government", + "data_url": "https://www.aihw.gov.au/", + "has_api": true, + "file_path": "countries/oceania/australia/aihw.json", + "geographic_scope": "national" + } + ], + "wildlife-conservation": [ + { + "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" } ], "wireless-communication": [ @@ -14375,6 +39312,46 @@ "file_path": "sectors/J-information-communication/china-imt2030.json", "geographic_scope": "national" } + ], + "workplace-safety": [ + { + "id": "us-bls", + "name": { + "en": "Bureau of Labor Statistics", + "zh": "劳工统计局" + }, + "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" + } + ], + "youth-development": [ + { + "id": "afrobarometer", + "name": { + "en": "Afrobarometer", + "zh": "非洲晴雨表" + }, + "authority_level": "research", + "data_url": "https://www.afrobarometer.org/data/", + "has_api": false, + "file_path": "academic/social/afrobarometer.json", + "geographic_scope": "regional" + }, + { + "id": "unfpa-china", + "name": { + "en": "UNFPA China", + "zh": "联合国人口基金驻华代表处" + }, + "authority_level": "international", + "data_url": "https://china.unfpa.org/en/publications", + "has_api": false, + "file_path": "international/demographics/unfpa-china.json", + "geographic_scope": "national" + } ] } } diff --git a/firstdata/indexes/by-region.json b/firstdata/indexes/by-region.json index 7f658209..e8781b21 100644 --- a/firstdata/indexes/by-region.json +++ b/firstdata/indexes/by-region.json @@ -1,11 +1,40 @@ { "metadata": { - "generated_at": "2026-03-02T08:05:03.494144+00:00", - "total_regions": 11, - "total_sources": 156, + "generated_at": "2026-05-04T06:42:43.195561+00:00", + "total_regions": 58, + "total_sources": 679, "version": "2.0" }, "regions": { + "AR": [ + { + "id": "argentina-indec", + "name": { + "en": "National Institute of Statistics and Censuses (INDEC)", + "zh": "阿根廷国家统计与普查局" + }, + "authority_level": "government", + "data_url": "https://www.indec.gob.ar/indec/web/Nivel3-Tema-3-35", + "has_api": true, + "file_path": "countries/south-america/argentina/argentina-indec.json", + "geographic_scope": "national" + } + ], + "AT": [ + { + "id": "austria-statistik", + "name": { + "en": "Statistics Austria", + "zh": "奥地利统计局", + "native": "Statistik Austria" + }, + "authority_level": "government", + "data_url": "https://www.statistik.at/statistiken", + "has_api": true, + "file_path": "countries/europe/at/austria-statistik.json", + "geographic_scope": "national" + } + ], "AU": [ { "id": "australia-abs", @@ -31,6 +60,18 @@ "file_path": "countries/oceania/australia/aihw.json", "geographic_scope": "national" }, + { + "id": "asx", + "name": { + "en": "Australian Securities Exchange", + "zh": "澳大利亚证券交易所" + }, + "authority_level": "market", + "data_url": "https://www.asx.com.au/markets", + "has_api": false, + "file_path": "countries/oceania/australia/asx.json", + "geographic_scope": "national" + }, { "id": "bureau-of-meteorology", "name": { @@ -44,6 +85,48 @@ "geographic_scope": "national" } ], + "BE": [ + { + "id": "belgium-statbel", + "name": { + "en": "Statbel - Belgian Statistical Office", + "zh": "比利时统计局" + }, + "authority_level": "government", + "data_url": "https://statbel.fgov.be/en/open-data", + "has_api": false, + "file_path": "countries/europe/belgium/belgium-statbel.json", + "geographic_scope": "national" + } + ], + "BG": [ + { + "id": "bulgaria-nsi", + "name": { + "en": "National Statistical Institute of Bulgaria (NSI)", + "zh": "保加利亚国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.nsi.bg/en/content/2666/statisticsdatabases", + "has_api": false, + "file_path": "countries/europe/bulgaria/bulgaria-nsi.json", + "geographic_scope": "national" + } + ], + "BN": [ + { + "id": "brunei-deps", + "name": { + "en": "Department of Economic Planning and Statistics, Brunei (DEPS)", + "zh": "文莱经济规划与统计局" + }, + "authority_level": "government", + "data_url": "https://deps.mofe.gov.bn/edata-library/", + "has_api": false, + "file_path": "countries/asia/brunei/brunei-deps.json", + "geographic_scope": "national" + } + ], "BR": [ { "id": "brazil-bcb", @@ -58,6 +141,30 @@ "file_path": "countries/south-america/brazil/brazil-bcb.json", "geographic_scope": "national" }, + { + "id": "brazil-mapa", + "name": { + "en": "Brazil Ministry of Agriculture and Livestock", + "zh": "巴西农业和畜牧部" + }, + "authority_level": "government", + "data_url": "https://indicadores.agricultura.gov.br/agrostat/index.htm", + "has_api": false, + "file_path": "countries/south-america/brazil/brazil-mapa.json", + "geographic_scope": "national" + }, + { + "id": "brazil-mdic-secex", + "name": { + "en": "Brazil Ministry of Development, Industry, Commerce and Services - Foreign Trade Secretariat", + "zh": "巴西发展、工业、商业和服务部外贸秘书处" + }, + "authority_level": "government", + "data_url": "https://comexstat.mdic.gov.br/en/home", + "has_api": true, + "file_path": "countries/south-america/brazil/brazil-mdic-secex.json", + "geographic_scope": "national" + }, { "id": "brazil-cecafe", "name": { @@ -162,578 +269,6107 @@ "geographic_scope": "national" } ], - "CN": [ + "CH": [ { - "id": "china-ndrc-computing", + "id": "switzerland-fso", "name": { - "en": "NDRC East-to-West Computing Resources Project", - "zh": "国家发展改革委东数西算工程" + "en": "Swiss Federal Statistical Office (FSO)", + "zh": "瑞士联邦统计局", + "native": "Bundesamt für Statistik (BFS)" }, "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.bfs.admin.ch/bfs/en/home/statistics.html", + "has_api": true, + "file_path": "countries/europe/switzerland/switzerland-fso.json", "geographic_scope": "national" - }, + } + ], + "CL": [ { - "id": "china-ndrc", + "id": "chile-ine", "name": { - "en": "National Development and Reform Commission", - "zh": "国家发展和改革委员会", - "native": "国家发展和改革委员会" + "en": "National Statistics Institute of Chile (INE)", + "zh": "智利国家统计局" }, "authority_level": "government", - "data_url": "https://www.ndrc.gov.cn/fgsj/", + "data_url": "https://www.ine.gob.cl/estadisticas", "has_api": false, - "file_path": "china/economy/macro/ndrc.json", + "file_path": "countries/south-america/chile/chile-ine.json", "geographic_scope": "national" - }, + } + ], + "CN": [ { - "id": "china-customs", + "id": "china-csdc", "name": { - "en": "General Administration of Customs of China", - "zh": "中华人民共和国海关总署", - "native": "中华人民共和国海关总署" + "en": "China Securities Depository and Clearing Corporation", + "zh": "中国证券登记结算有限公司" }, - "authority_level": "government", - "data_url": "http://www.customs.gov.cn", + "authority_level": "other", + "data_url": "https://www.chinaclear.cn/zdjs/tjyb/center_tjbg.shtml", "has_api": false, - "file_path": "china/economy/trade/customs.json", + "file_path": "china/china-csdc.json", "geographic_scope": "national" }, { - "id": "china-mofcom", + "id": "china-nea", "name": { - "en": "Ministry of Commerce of China", - "zh": "中华人民共和国商务部", - "native": "中华人民共和国商务部" + "en": "National Energy Administration of China", + "zh": "国家能源局" }, "authority_level": "government", - "data_url": "https://data.mofcom.gov.cn", + "data_url": "https://www.nea.gov.cn/sjzz/", "has_api": false, - "file_path": "china/economy/trade/mofcom.json", + "file_path": "china/china-nea.json", "geographic_scope": "national" }, { - "id": "cscse", + "id": "china-sac", "name": { - "en": "Chinese Service Center for Scholarly Exchange", - "zh": "教育部留学服务中心" + "en": "Securities Association of China", + "zh": "中国证券业协会" }, - "authority_level": "government", - "data_url": "https://zwfw.cscse.edu.cn", + "authority_level": "other", + "data_url": "https://www.sac.net.cn/hysj/", "has_api": false, - "file_path": "china/education/cscse.json", + "file_path": "china/china-sac.json", "geographic_scope": "national" }, { - "id": "cdgdc", + "id": "cninfo", "name": { - "en": "China Academic Degrees & Graduate Education Development Center", - "zh": "教育部学位与研究生教育发展中心" + "en": "CNINFO (Shenzhen Stock Exchange Information)", + "zh": "巨潮资讯网" }, "authority_level": "government", - "data_url": "https://www.chinadegrees.cn/", - "has_api": false, - "file_path": "china/education/higher_education/cdgdc.json", + "data_url": "https://www.cninfo.com.cn/new/commonUrl?url=disclosure/list/search", + "has_api": true, + "file_path": "china/cninfo.json", "geographic_scope": "national" }, { - "id": "china-gaokao-chsi", + "id": "china-beike-research", "name": { - "en": "China Postgraduate Admissions Information Network", - "zh": "中国研究生招生信息网" + "en": "Beike Research Institute", + "zh": "贝壳研究院" }, - "authority_level": "government", - "data_url": "https://yz.chsi.com.cn/sch/", + "authority_level": "market", + "data_url": "https://research.ke.com", "has_api": false, - "file_path": "china/education/higher_education/china-gaokao-chsi.json", + "file_path": "china/construction/china-beike-research.json", "geographic_scope": "national" }, { - "id": "china-moe-higher-education", + "id": "china-caupd", "name": { - "en": "Ministry of Education of China - Higher Education Statistics", - "zh": "中华人民共和国教育部高等教育统计" + "en": "China Academy of Urban Planning and Design", + "zh": "中国城市规划设计研究院" }, - "authority_level": "government", - "data_url": "http://www.moe.gov.cn/jyb_sjzl/sjzl_fztjgb/", + "authority_level": "research", + "data_url": "https://www.caupd.com/", "has_api": false, - "file_path": "china/education/higher_education/china-moe-higher-education.json", + "file_path": "china/construction/china-caupd.json", "geographic_scope": "national" }, { - "id": "moe-china", + "id": "china-ccia", "name": { - "en": "Ministry of Education of the People's Republic of China", - "zh": "中华人民共和国教育部" + "en": "China Construction Industry Association", + "zh": "中国建筑业协会" }, - "authority_level": "government", - "data_url": "http://www.moe.gov.cn/jyb_xxgk/xxgk/neirong/tongji/", + "authority_level": "other", + "data_url": "http://www.zgjzy.org.cn/newsList/11/1.html", "has_api": false, - "file_path": "china/education/moe-china.json", + "file_path": "china/construction/china-ccia.json", "geographic_scope": "national" }, { - "id": "moe-gaokao", + "id": "china-cih-index", "name": { - "en": "Sunshine Gaokao Platform", - "zh": "阳光高考信息平台" + "en": "China Index Academy (CIH Cloud)", + "zh": "中指研究院(中指云)" }, - "authority_level": "government", - "data_url": "https://gaokao.chsi.com.cn/", + "authority_level": "research", + "data_url": "https://www.cih-index.com", "has_api": false, - "file_path": "china/education/moe-gaokao.json", + "file_path": "china/construction/china-cih-index.json", "geographic_scope": "national" }, { - "id": "china-nfra", + "id": "china-construction-standards", "name": { - "en": "National Financial Regulatory Administration", - "zh": "国家金融监督管理总局", - "native": "国家金融监督管理总局" + "en": "China Engineering Construction Standardization Association", + "zh": "中国工程建设标准化协会", + "native": "中国工程建设标准化协会" }, "authority_level": "government", - "data_url": "https://www.nfra.gov.cn/cn/view/pages/tongjishuju/tongjishuju.html", + "data_url": "https://www.cecs.org.cn/biaozhun/", "has_api": false, - "file_path": "china/finance/banking/nfra.json", + "file_path": "china/construction/china-construction-standards.json", "geographic_scope": "national" }, { - "id": "china-pbc", + "id": "china-creprice", "name": { - "en": "People's Bank of China", - "zh": "中国人民银行", - "native": "中国人民银行" + "en": "China Real Estate Price Information Network", + "zh": "中国房价行情网" }, - "authority_level": "government", - "data_url": "http://www.pbc.gov.cn/diaochatongjisi/116219/index.html", + "authority_level": "market", + "data_url": "http://www.creprice.cn", "has_api": false, - "file_path": "china/finance/banking/pbc.json", + "file_path": "china/construction/china-creprice.json", "geographic_scope": "national" }, { - "id": "china-csrc", + "id": "china-cric", "name": { - "en": "China Securities Regulatory Commission", - "zh": "中国证券监督管理委员会", - "native": "中国证券监督管理委员会" + "en": "China Real Estate Information Corporation (CRIC)", + "zh": "克而瑞研究中心(CRIC)" }, - "authority_level": "government", - "data_url": "https://www.csrc.gov.cn/csrc/c100103/common_list.shtml", + "authority_level": "market", + "data_url": "https://www.cric.com/newhouse/", "has_api": false, - "file_path": "china/finance/securities/csrc.json", + "file_path": "china/construction/china-cric.json", "geographic_scope": "national" }, { - "id": "ceic-china-urbanization", + "id": "china-cscec", "name": { - "en": "CEIC Data - China Urbanization Rate", - "zh": "CEIC数据库 - 中国城镇化率" + "en": "China State Construction Engineering Corporation", + "zh": "中国建筑集团有限公司" }, "authority_level": "commercial", - "data_url": "https://www.ceicdata.com/zh-hans/china/population-urbanization-rate", - "has_api": true, - "file_path": "china/national/ceic-china-urbanization.json", + "data_url": "https://www.cscec.com", + "has_api": false, + "file_path": "china/construction/china-cscec.json", "geographic_scope": "national" }, { - "id": "cnki-population-census", + "id": "china-fangjia", "name": { - "en": "CNKI China Population Census Database", - "zh": "中国人口普查数据库" + "en": "Fangjia.com - China Housing Price Network", + "zh": "房价网(fangjia.com)" }, - "authority_level": "commercial", - "data_url": "https://data.cnki.net/npcd", + "authority_level": "market", + "data_url": "https://www.fangjia.com", "has_api": false, - "file_path": "china/national/cnki-population-census.json", + "file_path": "china/construction/china-fangjia.json", "geographic_scope": "national" }, { - "id": "china-nbs", + "id": "china-gd-housing", "name": { - "en": "National Bureau of Statistics of China", - "zh": "国家统计局", - "native": "国家统计局" + "en": "Guangdong Provincial Department of Housing and Urban-Rural Development", + "zh": "广东省住房和城乡建设厅" }, "authority_level": "government", - "data_url": "https://www.stats.gov.cn/sj/", - "has_api": true, - "file_path": "china/national/nbs.json", - "geographic_scope": "national" + "data_url": "https://zfcxjst.gd.gov.cn/xxgk/", + "has_api": false, + "file_path": "china/construction/china-gd-housing.json", + "geographic_scope": "subnational" }, { - "id": "china-caict", + "id": "china-mohurd", "name": { - "en": "China Academy of Information and Communications Technology", - "zh": "中国信息通信研究院" + "en": "Ministry of Housing and Urban-Rural Development", + "zh": "住房和城乡建设部", + "native": "住房和城乡建设部" }, - "authority_level": "research", - "data_url": "http://www.caict.ac.cn/kxyj/qwfb/", + "authority_level": "government", + "data_url": "https://www.mohurd.gov.cn/gongkai/zhengce/", "has_api": false, - "file_path": "china/research/china-caict.json", + "file_path": "china/construction/china-mohurd.json", "geographic_scope": "national" }, { - "id": "china-miit-rare-earth", + "id": "china-shenzhen-housing", "name": { - "en": "MIIT Rare Earth Office - Rare Earth Industry Regulation and Production Quotas", - "zh": "工业和信息化部稀土办公室 - 稀土行业规范与生产配额" + "en": "Shenzhen Municipal Housing and Construction Bureau", + "zh": "深圳市住房和建设局" }, "authority_level": "government", - "data_url": "https://www.miit.gov.cn/jgsj/ycls/xt/index.html", + "data_url": "https://zjj.sz.gov.cn/xxgk/", "has_api": false, - "file_path": "china/resources/mineral/china-miit-rare-earth.json", + "file_path": "china/construction/china-shenzhen-housing.json", + "geographic_scope": "subnational" + }, + { + "id": "china-urban-planning", + "name": { + "en": "Chinese Society for Urban Studies", + "zh": "中国城市规划学会" + }, + "authority_level": "research", + "data_url": "https://www.planning.org.cn/paper", + "has_api": false, + "file_path": "china/construction/china-urban-planning.json", "geographic_scope": "national" }, { - "id": "china-mnr-minerals", + "id": "china-agri", "name": { - "en": "Ministry of Natural Resources - Mineral Resources Data", - "zh": "自然资源部矿产资源数据" + "en": "China Agricultural and Rural Information Network", + "zh": "中国农业农村信息网" }, "authority_level": "government", - "data_url": "https://www.mnr.gov.cn/sj/sjfw/kc_19263/", + "data_url": "https://www.agri.cn/", "has_api": false, - "file_path": "china/resources/mineral/china-mnr-minerals.json", + "file_path": "china/economy/agriculture/china-agri.json", "geographic_scope": "national" }, { - "id": "china-national-data-bureau", + "id": "china-catas", "name": { - "en": "National Data Administration of China", - "zh": "国家数据局" + "en": "Chinese Academy of Tropical Agricultural Sciences", + "zh": "中国热带农业科学院" }, - "authority_level": "government", - "data_url": "https://sjdj.nda.gov.cn/", + "authority_level": "research", + "data_url": "https://www.catas.cn", "has_api": false, - "file_path": "china/technology/digital_economy/china-national-data-bureau.json", + "file_path": "china/economy/agriculture/china-catas.json", "geographic_scope": "national" }, { - "id": "china-cnipa-patents", + "id": "china-cfeed", "name": { - "en": "China National Intellectual Property Administration - Patent Statistics", - "zh": "国家知识产权局专利统计" + "en": "China Feed Industry Association", + "zh": "中国饲料工业协会" }, - "authority_level": "government", - "data_url": "https://www.cnipa.gov.cn/col/col61/index.html", + "authority_level": "other", + "data_url": "https://www.chinafeed.org.cn/hyfx/", "has_api": false, - "file_path": "china/technology/intellectual_property/china-cnipa-patents.json", + "file_path": "china/economy/agriculture/china-cfeed.json", "geographic_scope": "national" }, { - "id": "china-most-infrastructure", + "id": "china-cofco", "name": { - "en": "National Platform for Research Infrastructure and Large-scale Scientific Instruments", - "zh": "重大科研基础设施和大型科研仪器国家网络管理平台" + "en": "COFCO Corporation", + "zh": "中粮集团有限公司" }, "authority_level": "government", - "data_url": "https://nrii.org.cn/", + "data_url": "https://www.cofco.com", "has_api": false, - "file_path": "china/technology/sci_resources/china-most-infrastructure.json", - "geographic_scope": "national" + "file_path": "china/economy/agriculture/china-cofco.json", + "geographic_scope": "global" }, { - "id": "china-most-rnd", + "id": "china-moa", "name": { - "en": "National Key R&D Program of China - Industrial Software and 16 Key Special Projects", - "zh": "国家重点研发计划 - 工业软件专项及16个重点专项" + "en": "Ministry of Agriculture and Rural Affairs of China - Agricultural Statistics", + "zh": "中华人民共和国农业农村部农业统计" }, "authority_level": "government", - "data_url": "https://service.most.gov.cn/", + "data_url": "https://www.moa.gov.cn/nybgb/", "has_api": false, - "file_path": "china/technology/sci_resources/china-most-rnd.json", + "file_path": "china/economy/agriculture/china-moa.json", "geographic_scope": "national" }, { - "id": "china-sac-standards", + "id": "china-natesc", "name": { - "en": "Standardization Administration of China (SAC)", - "zh": "国家标准化管理委员会" + "en": "National Agro-Tech Extension and Service Center", + "zh": "全国农业技术推广服务中心" }, "authority_level": "government", - "data_url": "https://std.samr.gov.cn/", + "data_url": "https://www.natesc.org.cn", "has_api": false, - "file_path": "china/technology/standards/china-sac-standards.json", + "file_path": "china/economy/agriculture/china-natesc.json", "geographic_scope": "national" }, { - "id": "china-miit", + "id": "china-nfsra", "name": { - "en": "Ministry of Industry and Information Technology of the People's Republic of China", - "zh": "中华人民共和国工业和信息化部" + "en": "National Food and Strategic Reserves Administration of China", + "zh": "国家粮食和物资储备局" }, "authority_level": "government", - "data_url": "https://www.miit.gov.cn/gxsj/index.html", + "data_url": "https://lswz.gov.cn/html/xwzx/sjfb/index.html", "has_api": false, - "file_path": "china/technology/telecommunications/china-miit.json", + "file_path": "china/economy/agriculture/china-nfsra.json", "geographic_scope": "national" }, { - "id": "china-rare-earth-association", + "id": "china-sinograin", "name": { - "en": "Association of China Rare Earth Industry", - "zh": "中国稀土行业协会" + "en": "Sinograin - China Grain Reserves Corporation", + "zh": "中国储备粮管理集团有限公司" }, - "authority_level": "market", - "data_url": "https://ac-rei.org.cn", + "authority_level": "government", + "data_url": "https://www.sinograin.com.cn", "has_api": false, - "file_path": "sectors/B-mining/rare-earth/china-rare-earth-association.json", + "file_path": "china/economy/agriculture/china-sinograin.json", "geographic_scope": "national" }, { - "id": "china-additive-manufacturing-alliance", + "id": "china-bof", "name": { - "en": "China Additive Manufacturing Alliance", - "zh": "中国增材制造产业联盟" + "en": "Bureau of Fisheries, Ministry of Agriculture and Rural Affairs", + "zh": "农业农村部渔业渔政管理局" }, - "authority_level": "market", - "data_url": "https://www.miit-eidc.org.cn", + "authority_level": "government", + "data_url": "https://yyj.moa.gov.cn", "has_api": false, - "file_path": "sectors/C-manufacturing/additive/china-additive-manufacturing-alliance.json", + "file_path": "china/economy/agriculture/fishery/china-bof.json", "geographic_scope": "national" }, { - "id": "china-auto-association", + "id": "china-passenger-car-association", "name": { - "en": "China Association of Automobile Manufacturers", - "zh": "中国汽车工业协会" + "en": "China Passenger Car Association", + "zh": "全国乘用车市场信息联席会" }, - "authority_level": "market", - "data_url": "http://www.caam.org.cn/tjsj", + "authority_level": "research", + "data_url": "https://www.cpcaauto.com/newslist.php?types=csjd", "has_api": false, - "file_path": "sectors/C-manufacturing/automotive/china-auto-association.json", + "file_path": "china/economy/automotive/china-passenger-car-association.json", "geographic_scope": "national" }, { - "id": "china-charging-alliance", + "id": "china-acfic", "name": { - "en": "China Electric Vehicle Charging Infrastructure Promotion Alliance", - "zh": "中国电动汽车充电基础设施促进联盟" + "en": "All-China Federation of Industry and Commerce", + "zh": "中华全国工商业联合会" }, - "authority_level": "market", - "data_url": "https://evcipa.com/dataCenter/dataList", + "authority_level": "other", + "data_url": "https://www.acfic.org.cn/myjjsj/", "has_api": false, - "file_path": "sectors/C-manufacturing/automotive/china-charging-alliance.json", + "file_path": "china/economy/china-acfic.json", "geographic_scope": "national" }, { - "id": "china-petroleum-chemical-federation", + "id": "china-alibaba-auction", "name": { - "en": "China Petroleum and Chemical Industry Federation", - "zh": "中国石油和化学工业联合会" + "en": "Alibaba Judicial Auction Platform", + "zh": "阿里拍卖·司法" }, - "authority_level": "market", - "data_url": "http://www.cpcif.org.cn/list/402882396610575f0166105924fe0000", + "authority_level": "commercial", + "data_url": "https://sf.taobao.com", "has_api": false, - "file_path": "sectors/C-manufacturing/chemicals/china-petroleum-chemical-federation.json", + "file_path": "china/economy/china-alibaba-auction.json", "geographic_scope": "national" }, { - "id": "china-lcd-association", + "id": "china-caac", "name": { - "en": "China Optoelectronic Display Association - Liquid Crystal Division (CODA)", - "zh": "中国光学光电子行业协会液晶分会" + "en": "Civil Aviation Administration of China", + "zh": "中国民用航空局", + "native": "中国民用航空局" + }, + "authority_level": "government", + "data_url": "https://www.caac.gov.cn/XXGK/XXGK/TJSJ/index.html", + "has_api": false, + "file_path": "china/economy/china-caac.json", + "geographic_scope": "national" + }, + { + "id": "china-cada", + "name": { + "en": "China Automobile Dealers Association", + "zh": "中国汽车流通协会" + }, + "authority_level": "other", + "data_url": "http://data.cada.cn/main/overview.do", + "has_api": false, + "file_path": "china/economy/china-cada.json", + "geographic_scope": "national" + }, + { + "id": "china-gpai", + "name": { + "en": "China Public Auction Network", + "zh": "公拍网" + }, + "authority_level": "commercial", + "data_url": "https://www.gpai.net/sf/", + "has_api": false, + "file_path": "china/economy/china-gpai.json", + "geographic_scope": "national" + }, + { + "id": "china-jd-auction", + "name": { + "en": "JD.com Judicial Auction Platform", + "zh": "京东拍卖·司法" + }, + "authority_level": "commercial", + "data_url": "https://auction.jd.com/sifa.html", + "has_api": false, + "file_path": "china/economy/china-jd-auction.json", + "geographic_scope": "national" + }, + { + "id": "china-mct", + "name": { + "en": "Ministry of Culture and Tourism of China", + "zh": "中华人民共和国文化和旅游部", + "native": "中华人民共和国文化和旅游部" + }, + "authority_level": "government", + "data_url": "https://www.mct.gov.cn/zwgk/tjsj/", + "has_api": false, + "file_path": "china/economy/china-mct.json", + "geographic_scope": "national" + }, + { + "id": "china-miit-sme", + "name": { + "en": "China Center for Promotion of SME Development (MIIT)", + "zh": "中国中小企业发展促进中心(工业和信息化部中小企业发展促进中心)" + }, + "authority_level": "government", + "data_url": "https://www.chinasme.org.cn/html/mcms/daohang/tongzhigonggao/index.html", + "has_api": false, + "file_path": "china/economy/china-miit-sme.json", + "geographic_scope": "national" + }, + { + "id": "china-cansi", + "name": { + "en": "China Association of the National Shipbuilding Industry", + "zh": "中国船舶工业行业协会" + }, + "authority_level": "other", + "data_url": "https://www.cansi.org.cn/cms/document/show/43.html", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cansi.json", + "geographic_scope": "national" + }, + { + "id": "china-cantonfair", + "name": { + "en": "China Import and Export Fair (Canton Fair)", + "zh": "中国进出口商品交易会(广交会)" + }, + "authority_level": "government", + "data_url": "https://www.cantonfair.org.cn", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cantonfair.json", + "geographic_scope": "national" + }, + { + "id": "china-caq", + "name": { + "en": "China Association for Quality", + "zh": "中国质量协会" + }, + "authority_level": "other", + "data_url": "https://www.caq.org.cn/html/zltj", + "has_api": false, + "file_path": "china/economy/industry_associations/china-caq.json", + "geographic_scope": "national" + }, + { + "id": "china-cbea", + "name": { + "en": "China Beverage Association", + "zh": "中国饮料工业协会" + }, + "authority_level": "other", + "data_url": "https://www.chinabeverage.org", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cbea.json", + "geographic_scope": "national" + }, + { + "id": "china-cbmf", + "name": { + "en": "China Building Materials Federation", + "zh": "中国建筑材料联合会" + }, + "authority_level": "other", + "data_url": "https://www.cbmf.org/yxjc/", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cbmf.json", + "geographic_scope": "national" + }, + { + "id": "china-ccfa", + "name": { + "en": "China Chemical Fiber Industry Association", + "zh": "中国化学纤维工业协会" + }, + "authority_level": "other", + "data_url": "https://www.ccfa.com.cn/19/index.html", + "has_api": false, + "file_path": "china/economy/industry_associations/china-ccfa.json", + "geographic_scope": "national" + }, + { + "id": "china-cheaa", + "name": { + "en": "China Household Electrical Appliances Association", + "zh": "中国家用电器协会" + }, + "authority_level": "other", + "data_url": "https://www.cheaa.org/channels/116.html", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cheaa.json", + "geographic_scope": "national" + }, + { + "id": "china-cnea", + "name": { + "en": "China Nuclear Energy Association", + "zh": "中国核能行业协会" + }, + "authority_level": "other", + "data_url": "https://www.china-nea.cn/", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cnea.json", + "geographic_scope": "national" + }, + { + "id": "china-cppia", + "name": { + "en": "China Plastics Processing Industry Association", + "zh": "中国塑料加工工业协会" }, "authority_level": "market", - "data_url": "http://www.coda.org.cn/#/details/more?type=list-info&id=61b1c9ec105e35101858fc49&bannerId=61b30eaa105e353264b3f083", + "data_url": "http://www.cppia.com.cn", "has_api": false, - "file_path": "sectors/C-manufacturing/electronics/china-lcd-association.json", + "file_path": "china/economy/industry_associations/china-cppia.json", "geographic_scope": "national" }, { - "id": "china-optical-association", + "id": "china-cria", "name": { - "en": "China Optics and Optoelectronics Manufacturers Association", - "zh": "中国光学光电子行业协会" + "en": "China Rubber Industry Association", + "zh": "中国橡胶工业协会" + }, + "authority_level": "other", + "data_url": "https://www.cria.org.cn/c/id/1760910256413655041", + "has_api": false, + "file_path": "china/economy/industry_associations/china-cria.json", + "geographic_scope": "national" + }, + { + "id": "china-ctic", + "name": { + "en": "China Textile Information Center", + "zh": "中国纺织信息中心" + }, + "authority_level": "other", + "data_url": "https://www.ctic.org.cn", + "has_api": false, + "file_path": "china/economy/industry_associations/china-ctic.json", + "geographic_scope": "national" + }, + { + "id": "china-furniture-association", + "name": { + "en": "China National Furniture Association", + "zh": "中国家具协会" }, "authority_level": "market", - "data_url": "https://www.coema.org.cn/research/sum", + "data_url": "https://www.cnfa.com.cn", "has_api": false, - "file_path": "sectors/C-manufacturing/electronics/china-optical-association.json", + "file_path": "china/economy/industry_associations/china-furniture-association.json", "geographic_scope": "national" }, { - "id": "china-semiconductor-association", + "id": "china-gas-association", "name": { - "en": "China Semiconductor Industry Association", - "zh": "中国半导体行业协会" + "en": "China Gas Association", + "zh": "中国燃气协会" + }, + "authority_level": "other", + "data_url": "https://www.chinagas.org.cn", + "has_api": false, + "file_path": "china/economy/industry_associations/china-gas-association.json", + "geographic_scope": "national" + }, + { + "id": "china-light-industry-council", + "name": { + "en": "China National Light Industry Council", + "zh": "中国轻工业联合会" }, "authority_level": "market", - "data_url": "https://web.csia.net.cn/hyyhfx", + "data_url": "http://www.cnlic.org.cn", "has_api": false, - "file_path": "sectors/C-manufacturing/electronics/china-semiconductor-association.json", + "file_path": "china/economy/industry_associations/china-light-industry-council.json", "geographic_scope": "national" }, { - "id": "china-machine-tool-association", + "id": "china-tea-marketing-association", "name": { - "en": "China Machine Tool & Tool Builders' Association", - "zh": "中国机床工具工业协会" + "en": "China Tea Marketing Association", + "zh": "中国茶叶流通协会" }, "authority_level": "market", - "data_url": "https://www.cmtba.org.cn/web/11/list.html", + "data_url": "https://www.ctma.com.cn", "has_api": false, - "file_path": "sectors/C-manufacturing/machinery/china-machine-tool-association.json", + "file_path": "china/economy/industry_associations/china-tea-marketing-association.json", "geographic_scope": "national" }, { - "id": "china-robot-industry-alliance", + "id": "china-acftu", "name": { - "en": "Robot Branch of China Machinery Industry Federation", - "zh": "中国机械工业联合会机器人分会" + "en": "All-China Federation of Trade Unions", + "zh": "中华全国总工会" + }, + "authority_level": "government", + "data_url": "https://www.acftu.org", + "has_api": false, + "file_path": "china/economy/labor/china-acftu.json", + "geographic_scope": "national" + }, + { + "id": "china-mohrss", + "name": { + "en": "Ministry of Human Resources and Social Security of China - Employment and Social Security Statistics", + "zh": "人力资源和社会保障部统计数据" + }, + "authority_level": "government", + "data_url": "https://www.mohrss.gov.cn/SYrlzyhshbzb/zwgk/szrs/", + "has_api": false, + "file_path": "china/economy/labor/china-mohrss.json", + "geographic_scope": "national" + }, + { + "id": "china-shenzhen-hrss", + "name": { + "en": "Shenzhen Municipal Human Resources and Social Security Bureau", + "zh": "深圳市人力资源和社会保障局" + }, + "authority_level": "government", + "data_url": "https://hrss.sz.gov.cn/xxgk/index.html", + "has_api": false, + "file_path": "china/economy/labor/china-shenzhen-hrss.json", + "geographic_scope": "subnational" + }, + { + "id": "china-cei", + "name": { + "en": "China Economic Information Service", + "zh": "中国经济信息社" + }, + "authority_level": "commercial", + "data_url": "https://www.cei.cn/category/", + "has_api": false, + "file_path": "china/economy/macro/china-cei.json", + "geographic_scope": "national" + }, + { + "id": "china-drcnet", + "name": { + "en": "DRCNET - Development Research Center Network", + "zh": "国研网" + }, + "authority_level": "research", + "data_url": "https://www.drcnet.com.cn", + "has_api": false, + "file_path": "china/economy/macro/china-drcnet.json", + "geographic_scope": "national" + }, + { + "id": "china-iprcc", + "name": { + "en": "International Poverty Reduction Center in China", + "zh": "中国国际减贫中心" + }, + "authority_level": "research", + "data_url": "https://www.iprcc.org.cn", + "has_api": false, + "file_path": "china/economy/macro/china-iprcc.json", + "geographic_scope": "national" + }, + { + "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-sasac", + "name": { + "en": "State-owned Assets Supervision and Administration Commission of the State Council", + "zh": "国务院国有资产监督管理委员会" + }, + "authority_level": "government", + "data_url": "https://www.sasac.gov.cn/n2588030/index.html", + "has_api": false, + "file_path": "china/economy/macro/china-sasac.json", + "geographic_scope": "national" + }, + { + "id": "china-shenzhen-drc", + "name": { + "en": "Shenzhen Municipal Development and Reform Commission", + "zh": "深圳市发展和改革委员会" + }, + "authority_level": "government", + "data_url": "http://fgw.sz.gov.cn/zwgk/", + "has_api": false, + "file_path": "china/economy/macro/china-shenzhen-drc.json", + "geographic_scope": "subnational" + }, + { + "id": "china-sic", + "name": { + "en": "State Information Center of China", + "zh": "国家信息中心" + }, + "authority_level": "government", + "data_url": "https://www.sic.gov.cn/", + "has_api": false, + "file_path": "china/economy/macro/china-sic.json", + "geographic_scope": "national" + }, + { + "id": "china-ndrc", + "name": { + "en": "National Development and Reform Commission", + "zh": "国家发展和改革委员会", + "native": "国家发展和改革委员会" + }, + "authority_level": "government", + "data_url": "https://www.ndrc.gov.cn/fgsj/", + "has_api": false, + "file_path": "china/economy/macro/ndrc.json", + "geographic_scope": "national" + }, + { + "id": "china-cgcc", + "name": { + "en": "China General Chamber of Commerce", + "zh": "中国商业联合会" + }, + "authority_level": "other", + "data_url": "https://www.cgcc.org.cn/hyfz/zglsyfzzs/", + "has_api": false, + "file_path": "china/economy/market/china-cgcc.json", + "geographic_scope": "national" + }, + { + "id": "china-gsxt", + "name": { + "en": "National Enterprise Credit Information Publicity System", + "zh": "国家企业信用信息公示系统" + }, + "authority_level": "government", + "data_url": "https://www.gsxt.gov.cn", + "has_api": false, + "file_path": "china/economy/market/china-gsxt.json", + "geographic_scope": "national" + }, + { + "id": "china-iresearch", + "name": { + "en": "iResearch Consulting Group", + "zh": "艾瑞咨询" }, "authority_level": "market", - "data_url": "http://cria.mei.net.cn/gzpt.asp?lm=/1310", + "data_url": "https://www.iresearch.com.cn/report.shtml", "has_api": false, - "file_path": "sectors/C-manufacturing/robotics/china-robot-industry-alliance.json", + "file_path": "china/economy/market/china-iresearch.json", "geographic_scope": "national" }, { - "id": "china-imt2030", + "id": "china-samr", "name": { - "en": "IMT-2030 (6G) Promotion Group", - "zh": "IMT-2030(6G)推进组" + "en": "State Administration for Market Regulation", + "zh": "国家市场监督管理总局", + "native": "国家市场监督管理总局" }, "authority_level": "government", - "data_url": "https://www.imt2030.org.cn/html/default/zhongwen/chengguofabu/index.html", + "data_url": "https://www.samr.gov.cn/zw/sj/sjzx/", "has_api": false, - "file_path": "sectors/J-information-communication/china-imt2030.json", + "file_path": "china/economy/market/china-samr.json", + "geographic_scope": "national" + }, + { + "id": "china-shenzhen-prtc", + "name": { + "en": "Shenzhen Public Resource Trading Center", + "zh": "深圳市公共资源交易中心" + }, + "authority_level": "government", + "data_url": "https://www.szggzy.com/", + "has_api": false, + "file_path": "china/economy/market/china-shenzhen-prtc.json", + "geographic_scope": "subnational" + }, + { + "id": "china-ah-stats", + "name": { + "en": "Anhui Bureau of Statistics", + "zh": "安徽省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.ah.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-ah-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-beijing-stats", + "name": { + "en": "Beijing Bureau of Statistics", + "zh": "北京市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.beijing.gov.cn/tjsj_31433/", + "has_api": false, + "file_path": "china/economy/provincial/china-beijing-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-chengdu-stats", + "name": { + "en": "Chengdu Bureau of Statistics", + "zh": "成都市统计局" + }, + "authority_level": "government", + "data_url": "http://cdstats.chengdu.gov.cn/", + "has_api": false, + "file_path": "china/economy/provincial/china-chengdu-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-cq-stats", + "name": { + "en": "Chongqing Bureau of Statistics", + "zh": "重庆市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.cq.gov.cn/zwgk_233040/zfxxgkml/tjxx/", + "has_api": false, + "file_path": "china/economy/provincial/china-cq-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-fj-stats", + "name": { + "en": "Fujian Bureau of Statistics", + "zh": "福建省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.fujian.gov.cn/xxgk/tjxx/", + "has_api": false, + "file_path": "china/economy/provincial/china-fj-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-fuzhou-stats", + "name": { + "en": "Fuzhou Bureau of Statistics", + "zh": "福州市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.fuzhou.gov.cn", + "has_api": false, + "file_path": "china/economy/provincial/china-fuzhou-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-gd-stats", + "name": { + "en": "Guangdong Bureau of Statistics", + "zh": "广东省统计局" + }, + "authority_level": "government", + "data_url": "https://stats.gd.gov.cn/tjsj186/index.html", + "has_api": false, + "file_path": "china/economy/provincial/china-gd-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-gs-stats", + "name": { + "en": "Gansu Bureau of Statistics", + "zh": "甘肃省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.gansu.gov.cn/tjj/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-gs-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-gx-stats", + "name": { + "en": "Guangxi Bureau of Statistics", + "zh": "广西壮族自治区统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.gxzf.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-gx-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-gz-stats", + "name": { + "en": "Guizhou Bureau of Statistics", + "zh": "贵州省统计局" + }, + "authority_level": "government", + "data_url": "https://stjj.guizhou.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-gz-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-ha-stats", + "name": { + "en": "Henan Bureau of Statistics", + "zh": "河南省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.henan.gov.cn/tjfw/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-ha-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-hb-stats", + "name": { + "en": "Hubei Bureau of Statistics", + "zh": "湖北省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.hubei.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-hb-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-heb-stats", + "name": { + "en": "Hebei Bureau of Statistics", + "zh": "河北省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.hebei.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-heb-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-hi-stats", + "name": { + "en": "Hainan Bureau of Statistics", + "zh": "海南省统计局" + }, + "authority_level": "government", + "data_url": "https://stats.hainan.gov.cn/hntjj/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-hi-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-hlj-stats", + "name": { + "en": "Heilongjiang Bureau of Statistics", + "zh": "黑龙江省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.hlj.gov.cn/tjj/c106777/common_zfxxgk.shtml?tab=tjxx", + "has_api": false, + "file_path": "china/economy/provincial/china-hlj-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-hn-stats", + "name": { + "en": "Hunan Bureau of Statistics", + "zh": "湖南省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.hunan.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-hn-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-jl-stats", + "name": { + "en": "Jilin Bureau of Statistics", + "zh": "吉林省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.jl.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-jl-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-js-stats", + "name": { + "en": "Jiangsu Bureau of Statistics", + "zh": "江苏省统计局" + }, + "authority_level": "government", + "data_url": "https://tj.jiangsu.gov.cn/col/col85273/index.html", + "has_api": false, + "file_path": "china/economy/provincial/china-js-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-jx-stats", + "name": { + "en": "Jiangxi Bureau of Statistics", + "zh": "江西省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.jiangxi.gov.cn/jxstjj/col/col40939/index.html", + "has_api": false, + "file_path": "china/economy/provincial/china-jx-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-ln-stats", + "name": { + "en": "Liaoning Bureau of Statistics", + "zh": "辽宁省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.ln.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-ln-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-nanchang-stats", + "name": { + "en": "Nanchang Bureau of Statistics", + "zh": "南昌市统计局" + }, + "authority_level": "government", + "data_url": "http://tjj.nc.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-nanchang-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-nanjing-stats", + "name": { + "en": "Nanjing Bureau of Statistics", + "zh": "南京市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.nanjing.gov.cn/", + "has_api": false, + "file_path": "china/economy/provincial/china-nanjing-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-nm-stats", + "name": { + "en": "Inner Mongolia Bureau of Statistics", + "zh": "内蒙古自治区统计局" + }, + "authority_level": "government", + "data_url": "http://tj.nmg.gov.cn", + "has_api": false, + "file_path": "china/economy/provincial/china-nm-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-nx-stats", + "name": { + "en": "Ningxia Bureau of Statistics", + "zh": "宁夏回族自治区统计局" + }, + "authority_level": "government", + "data_url": "https://tj.nx.gov.cn/tjsj_htr/jdsj_htr/", + "has_api": false, + "file_path": "china/economy/provincial/china-nx-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-qh-stats", + "name": { + "en": "Qinghai Bureau of Statistics", + "zh": "青海省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.qinghai.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-qh-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-qingdao-stats", + "name": { + "en": "Qingdao Bureau of Statistics", + "zh": "青岛市统计局" + }, + "authority_level": "government", + "data_url": "http://qdtj.qingdao.gov.cn/", + "has_api": false, + "file_path": "china/economy/provincial/china-qingdao-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-sc-stats", + "name": { + "en": "Sichuan Bureau of Statistics", + "zh": "四川省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.sc.gov.cn/scstjj/c112124/sjcx.shtml", + "has_api": false, + "file_path": "china/economy/provincial/china-sc-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-sd-stats", + "name": { + "en": "Shandong Bureau of Statistics", + "zh": "山东省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.shandong.gov.cn/col/col8456/index.html", + "has_api": false, + "file_path": "china/economy/provincial/china-sd-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-shanghai-stats", + "name": { + "en": "Shanghai Municipal Bureau of Statistics", + "zh": "上海市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.sh.gov.cn/sjxx/index.html", + "has_api": false, + "file_path": "china/economy/provincial/china-shanghai-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-shenzhen-open-data", + "name": { + "en": "Shenzhen Open Data Platform", + "zh": "深圳市政府数据开放平台" + }, + "authority_level": "government", + "data_url": "https://opendata.sz.gov.cn/data/dataSet/toDataList", + "has_api": true, + "file_path": "china/economy/provincial/china-shenzhen-open-data.json", + "geographic_scope": "subnational" + }, + { + "id": "china-shenzhen-stats", + "name": { + "en": "Shenzhen Bureau of Statistics", + "zh": "深圳市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.sz.gov.cn/zwgk/zfxxgkml/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-shenzhen-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-sn-stats", + "name": { + "en": "Shaanxi Bureau of Statistics", + "zh": "陕西省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.shaanxi.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-sn-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-suzhou-stats", + "name": { + "en": "Suzhou Bureau of Statistics", + "zh": "苏州市统计局" + }, + "authority_level": "government", + "data_url": "http://tjj.suzhou.gov.cn/", + "has_api": false, + "file_path": "china/economy/provincial/china-suzhou-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-sx-stats", + "name": { + "en": "Shanxi Bureau of Statistics", + "zh": "山西省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.shanxi.gov.cn/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-sx-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-tj-stats", + "name": { + "en": "Tianjin Bureau of Statistics", + "zh": "天津市统计局" + }, + "authority_level": "government", + "data_url": "https://stats.tj.gov.cn/tjsj_52032/", + "has_api": false, + "file_path": "china/economy/provincial/china-tj-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-wuhan-stats", + "name": { + "en": "Wuhan Bureau of Statistics", + "zh": "武汉市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.wuhan.gov.cn/zfxxgk/", + "has_api": false, + "file_path": "china/economy/provincial/china-wuhan-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-xian-stats", + "name": { + "en": "Xi'an Bureau of Statistics", + "zh": "西安市统计局" + }, + "authority_level": "government", + "data_url": "http://tjj.xa.gov.cn/", + "has_api": false, + "file_path": "china/economy/provincial/china-xian-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-xj-stats", + "name": { + "en": "Xinjiang Bureau of Statistics", + "zh": "新疆维吾尔自治区统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.xinjiang.gov.cn/tjj/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-xj-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-xz-stats", + "name": { + "en": "Xizang (Tibet) Bureau of Statistics", + "zh": "西藏自治区统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.xizang.gov.cn/xxgk/tjxx/tjsj/", + "has_api": false, + "file_path": "china/economy/provincial/china-xz-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-yn-stats", + "name": { + "en": "Yunnan Bureau of Statistics", + "zh": "云南省统计局" + }, + "authority_level": "government", + "data_url": "http://stats.yn.gov.cn", + "has_api": false, + "file_path": "china/economy/provincial/china-yn-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-zhengzhou-stats", + "name": { + "en": "Zhengzhou Bureau of Statistics", + "zh": "郑州市统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.zhengzhou.gov.cn/tjsj/index.jhtml", + "has_api": false, + "file_path": "china/economy/provincial/china-zhengzhou-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-zj-stats", + "name": { + "en": "Zhejiang Bureau of Statistics", + "zh": "浙江省统计局" + }, + "authority_level": "government", + "data_url": "https://tjj.zj.gov.cn/col/col1525563/index.html", + "has_api": false, + "file_path": "china/economy/provincial/china-zj-stats.json", + "geographic_scope": "subnational" + }, + { + "id": "china-hk-censtatd", + "name": { + "en": "Hong Kong Census and Statistics Department", + "zh": "香港政府统计处" + }, + "authority_level": "government", + "data_url": "https://www.censtatd.gov.hk/", + "has_api": false, + "file_path": "china/economy/special_admin_regions/china-hk-censtatd.json", + "geographic_scope": "subnational" + }, + { + "id": "china-cccme", + "name": { + "en": "China Chamber of Commerce for Import and Export of Machinery and Electronic Products", + "zh": "中国机电产品进出口商会" + }, + "authority_level": "other", + "data_url": "https://www.cccme.org.cn/shop/cccme-stat/index.aspx", + "has_api": false, + "file_path": "china/economy/trade/china-cccme.json", + "geographic_scope": "national" + }, + { + "id": "china-ccpit", + "name": { + "en": "China Council for the Promotion of International Trade", + "zh": "中国国际贸易促进委员会" + }, + "authority_level": "government", + "data_url": "https://www.ccpit.org/", + "has_api": false, + "file_path": "china/economy/trade/china-ccpit.json", + "geographic_scope": "national" + }, + { + "id": "china-cflp", + "name": { + "en": "China Federation of Logistics and Purchasing", + "zh": "中国物流与采购联合会" + }, + "authority_level": "other", + "data_url": "https://www.chinawuliu.com.cn/lhhzq/", + "has_api": false, + "file_path": "china/economy/trade/china-cflp.json", + "geographic_scope": "national" + }, + { + "id": "china-cfsmc", + "name": { + "en": "All-China Federation of Supply and Marketing Cooperatives", + "zh": "中华全国供销合作总社" + }, + "authority_level": "government", + "data_url": "https://www.chinacoop.gov.cn/", + "has_api": false, + "file_path": "china/economy/trade/china-cfsmc.json", + "geographic_scope": "national" + }, + { + "id": "china-chinca", + "name": { + "en": "China International Contractors Association", + "zh": "中国对外承包工程商会" + }, + "authority_level": "other", + "data_url": "https://www.chinca.org/CICA/info/20-1/index.html", + "has_api": false, + "file_path": "china/economy/trade/china-chinca.json", + "geographic_scope": "national" + }, + { + "id": "china-gacc", + "name": { + "en": "General Administration of Customs of China", + "zh": "中华人民共和国海关总署", + "native": "中华人民共和国海关总署" + }, + "authority_level": "government", + "data_url": "https://www.customs.gov.cn/customs/302249/zfxxgk/2799825/302274/302277/index.html", + "has_api": false, + "file_path": "china/economy/trade/china-gacc.json", + "geographic_scope": "national" + }, + { + "id": "china-sinosure", + "name": { + "en": "China Export & Credit Insurance Corporation", + "zh": "中国出口信用保险公司" + }, + "authority_level": "government", + "data_url": "https://www.sinosure.com.cn/gywm/gsjj/xxpl/index.shtml", + "has_api": false, + "file_path": "china/economy/trade/china-sinosure.json", + "geographic_scope": "national" + }, + { + "id": "china-customs", + "name": { + "en": "General Administration of Customs of China", + "zh": "中华人民共和国海关总署", + "native": "中华人民共和国海关总署" + }, + "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", + "name": { + "en": "Ministry of Commerce of China", + "zh": "中华人民共和国商务部", + "native": "中华人民共和国商务部" + }, + "authority_level": "government", + "data_url": "https://data.mofcom.gov.cn", + "has_api": false, + "file_path": "china/economy/trade/mofcom.json", + "geographic_scope": "national" + }, + { + "id": "china-csdp", + "name": { + "en": "China School Development Planning Center", + "zh": "教育部学校规划建设发展中心" + }, + "authority_level": "government", + "data_url": "https://www.csdp.edu.cn", + "has_api": false, + "file_path": "china/education/china-csdp.json", + "geographic_scope": "national" + }, + { + "id": "china-nlc", + "name": { + "en": "National Library of China", + "zh": "中国国家图书馆" + }, + "authority_level": "government", + "data_url": "https://www.nlc.cn/pcab/", + "has_api": false, + "file_path": "china/education/china-nlc.json", + "geographic_scope": "national" + }, + { + "id": "cscse", + "name": { + "en": "Chinese Service Center for Scholarly Exchange", + "zh": "教育部留学服务中心" + }, + "authority_level": "government", + "data_url": "https://zwfw.cscse.edu.cn", + "has_api": false, + "file_path": "china/education/cscse.json", + "geographic_scope": "national" + }, + { + "id": "cdgdc", + "name": { + "en": "China Academic Degrees & Graduate Education Development Center", + "zh": "教育部学位与研究生教育发展中心" + }, + "authority_level": "government", + "data_url": "https://www.chinadegrees.cn/", + "has_api": false, + "file_path": "china/education/higher_education/cdgdc.json", + "geographic_scope": "national" + }, + { + "id": "china-gaokao-chsi", + "name": { + "en": "China Postgraduate Admissions Information Network", + "zh": "中国研究生招生信息网" + }, + "authority_level": "government", + "data_url": "https://yz.chsi.com.cn/sch/", + "has_api": false, + "file_path": "china/education/higher_education/china-gaokao-chsi.json", + "geographic_scope": "national" + }, + { + "id": "china-moe-higher-education", + "name": { + "en": "Ministry of Education of China - Higher Education Statistics", + "zh": "中华人民共和国教育部高等教育统计" + }, + "authority_level": "government", + "data_url": "https://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": "moe-china", + "name": { + "en": "Ministry of Education of the People's Republic of China", + "zh": "中华人民共和国教育部" + }, + "authority_level": "government", + "data_url": "https://www.moe.gov.cn/jyb_xxgk/xxgk/neirong/tongji/", + "has_api": false, + "file_path": "china/education/moe-china.json", + "geographic_scope": "national" + }, + { + "id": "moe-gaokao", + "name": { + "en": "Sunshine Gaokao Platform", + "zh": "阳光高考信息平台" + }, + "authority_level": "government", + "data_url": "https://gaokao.chsi.com.cn/", + "has_api": false, + "file_path": "china/education/moe-gaokao.json", + "geographic_scope": "national" + }, + { + "id": "china-cdb", + "name": { + "en": "China Development Bank", + "zh": "国家开发银行" + }, + "authority_level": "government", + "data_url": "https://www.cdb.com.cn", + "has_api": false, + "file_path": "china/finance/banking/cdb.json", + "geographic_scope": "national" + }, + { + "id": "china-adbc", + "name": { + "en": "Agricultural Development Bank of China", + "zh": "中国农业发展银行" + }, + "authority_level": "government", + "data_url": "https://www.adbc.com.cn/", + "has_api": false, + "file_path": "china/finance/banking/china-adbc.json", + "geographic_scope": "national" + }, + { + "id": "china-boc", + "name": { + "en": "Bank of China (BOC)", + "zh": "中国银行" + }, + "authority_level": "commercial", + "data_url": "https://www.boc.cn/fimarkets/", + "has_api": false, + "file_path": "china/finance/banking/china-boc.json", + "geographic_scope": "national" + }, + { + "id": "china-cba", + "name": { + "en": "China Banking Association", + "zh": "中国银行业协会" + }, + "authority_level": "market", + "data_url": "https://www.china-cba.net/Index/lists/catid/268.html", + "has_api": false, + "file_path": "china/finance/banking/china-cba.json", + "geographic_scope": "national" + }, + { + "id": "china-pbccrc", + "name": { + "en": "People's Bank of China Credit Reference Center", + "zh": "中国人民银行征信中心" + }, + "authority_level": "government", + "data_url": "https://www.pbccrc.org.cn", + "has_api": false, + "file_path": "china/finance/banking/china-pbccrc.json", + "geographic_scope": "national" + }, + { + "id": "china-eximbank", + "name": { + "en": "Export-Import Bank of China", + "zh": "中国进出口银行" + }, + "authority_level": "government", + "data_url": "http://www.eximbank.gov.cn/cn/index/information/annual/index.html", + "has_api": false, + "file_path": "china/finance/banking/eximbank.json", + "geographic_scope": "national" + }, + { + "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": "china-pbc", + "name": { + "en": "People's Bank of China", + "zh": "中国人民银行", + "native": "中国人民银行" + }, + "authority_level": "government", + "data_url": "https://www.pbc.gov.cn/diaochatongjisi/116219/index.html", + "has_api": false, + "file_path": "china/finance/banking/pbc.json", + "geographic_scope": "national" + }, + { + "id": "china-amac", + "name": { + "en": "Asset Management Association of China", + "zh": "中国证券投资基金业协会" + }, + "authority_level": "government", + "data_url": "https://www.amac.org.cn/informationpublicity/", + "has_api": false, + "file_path": "china/finance/capital-markets/china-amac.json", + "geographic_scope": "national" + }, + { + "id": "china-capco", + "name": { + "en": "China Association for Public Companies (CAPCO)", + "zh": "中国上市公司协会" + }, + "authority_level": "market", + "data_url": "https://www.capco.org.cn", + "has_api": false, + "file_path": "china/finance/capital-markets/china-capco.json", + "geographic_scope": "national" + }, + { + "id": "china-cfa", + "name": { + "en": "China Futures Association", + "zh": "中国期货业协会" + }, + "authority_level": "market", + "data_url": "https://www.cfachina.org/servicesupport/researchandpublishin/statisticalsdata/", + "has_api": false, + "file_path": "china/finance/capital-markets/china-cfa.json", + "geographic_scope": "national" + }, + { + "id": "china-cffex", + "name": { + "en": "China Financial Futures Exchange", + "zh": "中国金融期货交易所" + }, + "authority_level": "market", + "data_url": "https://www.cffex.com.cn/sjzx/", + "has_api": false, + "file_path": "china/finance/capital-markets/china-cffex.json", + "geographic_scope": "national" + }, + { + "id": "china-chinabond", + "name": { + "en": "China Bond Information Network", + "zh": "中国债券信息网" + }, + "authority_level": "market", + "data_url": "https://yield.chinabond.com.cn/cbweb-pbc-web/pbc/historyQuery", + "has_api": false, + "file_path": "china/finance/capital-markets/china-chinabond.json", + "geographic_scope": "national" + }, + { + "id": "china-czce", + "name": { + "en": "Zhengzhou Commodity Exchange", + "zh": "郑州商品交易所" + }, + "authority_level": "market", + "data_url": "https://www.czce.com.cn/cn/exchange/daily_data/index.htm", + "has_api": false, + "file_path": "china/finance/capital-markets/china-czce.json", + "geographic_scope": "national" + }, + { + "id": "china-dce", + "name": { + "en": "Dalian Commodity Exchange", + "zh": "大连商品交易所" + }, + "authority_level": "market", + "data_url": "https://www.dce.com.cn/publicweb/quotesdata/dayQuotesCh.html", + "has_api": false, + "file_path": "china/finance/capital-markets/china-dce.json", + "geographic_scope": "national" + }, + { + "id": "china-nafmii", + "name": { + "en": "National Association of Financial Market Institutional Investors", + "zh": "中国银行间市场交易商协会" + }, + "authority_level": "government", + "data_url": "https://www.nafmii.org.cn/", + "has_api": false, + "file_path": "china/finance/capital-markets/china-nafmii.json", + "geographic_scope": "national" + }, + { + "id": "china-shfe", + "name": { + "en": "Shanghai Futures Exchange", + "zh": "上海期货交易所" + }, + "authority_level": "market", + "data_url": "https://www.shfe.com.cn/reports/tradedata/dailyandweeklydata/", + "has_api": false, + "file_path": "china/finance/capital-markets/china-shfe.json", + "geographic_scope": "national" + }, + { + "id": "china-beijing-stock-exchange", + "name": { + "en": "Beijing Stock Exchange", + "zh": "北京证券交易所" + }, + "authority_level": "market", + "data_url": "https://www.bse.cn/market_data.html", + "has_api": false, + "file_path": "china/finance/china-beijing-stock-exchange.json", + "geographic_scope": "national" + }, + { + "id": "china-cicpa", + "name": { + "en": "Chinese Institute of Certified Public Accountants", + "zh": "中国注册会计师协会" + }, + "authority_level": "market", + "data_url": "https://www.cicpa.org.cn/xxcx/", + "has_api": false, + "file_path": "china/finance/china-cicpa.json", + "geographic_scope": "national" + }, + { + "id": "china-csi-index", + "name": { + "en": "China Securities Index Co., Ltd.", + "zh": "中证指数有限公司" + }, + "authority_level": "market", + "data_url": "https://www.csindex.com.cn/#/indices/family/list", + "has_api": false, + "file_path": "china/finance/china-csi-index.json", + "geographic_scope": "national" + }, + { + "id": "china-csrc-futures", + "name": { + "en": "China Futures Association", + "zh": "中国期货业协会" + }, + "authority_level": "other", + "data_url": "https://www.cfachina.org/servicesupport/researchandpublishin/statisticalsdata/", + "has_api": false, + "file_path": "china/finance/china-csrc-futures.json", + "geographic_scope": "national" + }, + { + "id": "china-iac", + "name": { + "en": "Insurance Association of China", + "zh": "中国保险业协会" + }, + "authority_level": "market", + "data_url": "https://www.iachina.cn/col/col4479/", + "has_api": false, + "file_path": "china/finance/china-iac.json", + "geographic_scope": "national" + }, + { + "id": "china-iamac", + "name": { + "en": "China Association of Banking and Insurance Asset Management", + "zh": "中国银行保险资产管理业协会" + }, + "authority_level": "other", + "data_url": "https://www.iamac.org.cn", + "has_api": false, + "file_path": "china/finance/china-iamac.json", + "geographic_scope": "national" + }, + { + "id": "china-nifa", + "name": { + "en": "National Internet Finance Association of China", + "zh": "中国互联网金融协会" + }, + "authority_level": "other", + "data_url": "https://www.nifa.org.cn", + "has_api": false, + "file_path": "china/finance/china-nifa.json", + "geographic_scope": "national" + }, + { + "id": "china-nifd", + "name": { + "en": "National Institution for Finance and Development", + "zh": "国家金融与发展实验室" + }, + "authority_level": "research", + "data_url": "http://www.nifd.cn", + "has_api": false, + "file_path": "china/finance/china-nifd.json", + "geographic_scope": "national" + }, + { + "id": "china-payment-clearing", + "name": { + "en": "Payment & Clearing Association of China", + "zh": "中国支付清算协会" + }, + "authority_level": "other", + "data_url": "https://www.pcac.org.cn/eportal/ui?pageId=477883", + "has_api": false, + "file_path": "china/finance/china-payment-clearing.json", + "geographic_scope": "national" + }, + { + "id": "china-shanghai-clearing-house", + "name": { + "en": "Shanghai Clearing House", + "zh": "上海清算所" + }, + "authority_level": "market", + "data_url": "https://www.shclearing.com.cn/sjtj/", + "has_api": false, + "file_path": "china/finance/china-shanghai-clearing-house.json", + "geographic_scope": "national" + }, + { + "id": "china-shenzhen-jrj", + "name": { + "en": "Shenzhen Local Financial Supervision and Administration Bureau", + "zh": "深圳市地方金融监督管理局" + }, + "authority_level": "government", + "data_url": "https://jr.sz.gov.cn/sjrb/xxgk/index.html", + "has_api": false, + "file_path": "china/finance/china-shenzhen-jrj.json", + "geographic_scope": "subnational" + }, + { + "id": "china-trustee-association", + "name": { + "en": "China Trustee Association", + "zh": "中国信托业协会" + }, + "authority_level": "other", + "data_url": "http://www.xtxh.net/xtyxh/hyyj/tjsj/index.html", + "has_api": false, + "file_path": "china/finance/china-trustee-association.json", + "geographic_scope": "national" + }, + { + "id": "china-xinhua-finance", + "name": { + "en": "Xinhua Finance - China Financial Information Network", + "zh": "新华财经 - 中国金融信息网" + }, + "authority_level": "market", + "data_url": "https://www.cnfin.com/", + "has_api": false, + "file_path": "china/finance/china-xinhua-finance.json", + "geographic_scope": "national" + }, + { + "id": "china-mof", + "name": { + "en": "Ministry of Finance of China", + "zh": "中华人民共和国财政部" + }, + "authority_level": "government", + "data_url": "https://www.mof.gov.cn/gkml/", + "has_api": false, + "file_path": "china/finance/fiscal/china-mof.json", + "geographic_scope": "national" + }, + { + "id": "china-nssf", + "name": { + "en": "National Social Security Fund Council of China", + "zh": "全国社会保障基金理事会" + }, + "authority_level": "government", + "data_url": "http://www.ssf.gov.cn/", + "has_api": false, + "file_path": "china/finance/fiscal/china-nssf.json", + "geographic_scope": "national" + }, + { + "id": "china-cfets", + "name": { + "en": "China Foreign Exchange Trade System", + "zh": "中国外汇交易中心" + }, + "authority_level": "government", + "data_url": "https://www.chinamoney.com.cn/chinese/bkccpr/", + "has_api": false, + "file_path": "china/finance/forex/china-cfets.json", + "geographic_scope": "national" + }, + { + "id": "china-safe", + "name": { + "en": "State Administration of Foreign Exchange of China", + "zh": "国家外汇管理局", + "native": "国家外汇管理局" + }, + "authority_level": "government", + "data_url": "https://www.safe.gov.cn/safe/tjsj1/index.html", + "has_api": false, + "file_path": "china/finance/forex/china-safe.json", + "geographic_scope": "national" + }, + { + "id": "china-neeq", + "name": { + "en": "National Equities Exchange and Quotations (New Third Board)", + "zh": "全国中小企业股份转让系统(新三板)" + }, + "authority_level": "market", + "data_url": "https://www.neeq.com.cn/issuanceList.html", + "has_api": false, + "file_path": "china/finance/securities/china-neeq.json", + "geographic_scope": "national" + }, + { + "id": "china-sse", + "name": { + "en": "Shanghai Stock Exchange", + "zh": "上海证券交易所", + "native": "上海证券交易所" + }, + "authority_level": "market", + "data_url": "https://www.sse.com.cn/market/stockdata/statistic/", + "has_api": false, + "file_path": "china/finance/securities/china-sse.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": "china/finance/securities/csrc.json", + "geographic_scope": "national" + }, + { + "id": "china-szse", + "name": { + "en": "Shenzhen Stock Exchange", + "zh": "深圳证券交易所", + "native": "深圳证券交易所" + }, + "authority_level": "government", + "data_url": "https://www.szse.cn/market/trend/index.html", + "has_api": true, + "file_path": "china/finance/securities/szse.json", + "geographic_scope": "national" + }, + { + "id": "china-chinatax", + "name": { + "en": "State Taxation Administration of China", + "zh": "国家税务总局" + }, + "authority_level": "government", + "data_url": "https://www.chinatax.gov.cn/chinatax/n810219/", + "has_api": false, + "file_path": "china/finance/taxation/china-chinatax.json", + "geographic_scope": "national" + }, + { + "id": "china-acla", + "name": { + "en": "All China Lawyers Association", + "zh": "中华全国律师协会" + }, + "authority_level": "other", + "data_url": "https://www.acla.org.cn/acla/tjxx/", + "has_api": false, + "file_path": "china/governance/china-acla.json", + "geographic_scope": "national" + }, + { + "id": "china-bankruptcy-court", + "name": { + "en": "National Enterprise Bankruptcy and Restructuring Case Information Network", + "zh": "全国企业破产重整案件信息网" + }, + "authority_level": "government", + "data_url": "https://pccz.court.gov.cn/pcajxxw/index/xxwsy", + "has_api": false, + "file_path": "china/governance/china-bankruptcy-court.json", + "geographic_scope": "national" + }, + { + "id": "china-cafiu", + "name": { + "en": "China Association for International Understanding", + "zh": "中国国际交流协会" + }, + "authority_level": "other", + "data_url": "https://www.cafiu.org.cn", + "has_api": false, + "file_path": "china/governance/china-cafiu.json", + "geographic_scope": "national" + }, + { + "id": "china-ccdi", + "name": { + "en": "Central Commission for Discipline Inspection of the Communist Party of China", + "zh": "中央纪律检查委员会" + }, + "authority_level": "government", + "data_url": "https://www.ccdi.gov.cn/xxgk/", + "has_api": false, + "file_path": "china/governance/china-ccdi.json", + "geographic_scope": "national" + }, + { + "id": "china-ccgp", + "name": { + "en": "China Government Procurement Network", + "zh": "中国政府采购网" + }, + "authority_level": "government", + "data_url": "https://www.ccgp.gov.cn/cggg/index.htm", + "has_api": false, + "file_path": "china/governance/china-ccgp.json", + "geographic_scope": "national" + }, + { + "id": "china-cdpf", + "name": { + "en": "China Disabled Persons' Federation", + "zh": "中国残疾人联合会" + }, + "authority_level": "government", + "data_url": "https://www.cdpf.org.cn/zwgk/index.htm", + "has_api": false, + "file_path": "china/governance/china-cdpf.json", + "geographic_scope": "national" + }, + { + "id": "china-cfpa", + "name": { + "en": "China Fire Protection Association", + "zh": "中国消防协会" + }, + "authority_level": "other", + "data_url": "http://www.cfpa.cn", + "has_api": false, + "file_path": "china/governance/china-cfpa.json", + "geographic_scope": "national" + }, + { + "id": "china-cidca", + "name": { + "en": "China International Development Cooperation Agency", + "zh": "国家国际发展合作署" + }, + "authority_level": "government", + "data_url": "http://www.cidca.gov.cn/ywgz.htm", + "has_api": false, + "file_path": "china/governance/china-cidca.json", + "geographic_scope": "global" + }, + { + "id": "china-cnao", + "name": { + "en": "National Audit Office of China", + "zh": "中华人民共和国审计署" + }, + "authority_level": "government", + "data_url": "https://www.audit.gov.cn", + "has_api": false, + "file_path": "china/governance/china-cnao.json", + "geographic_scope": "national" + }, + { + "id": "china-cnas", + "name": { + "en": "China National Accreditation Service for Conformity Assessment", + "zh": "中国合格评定国家认可委员会" + }, + "authority_level": "government", + "data_url": "https://www.cnas.org.cn/", + "has_api": false, + "file_path": "china/governance/china-cnas.json", + "geographic_scope": "national" + }, + { + "id": "china-cnca", + "name": { + "en": "China National Accreditation Service for Conformity Assessment", + "zh": "中国国家认证认可监督管理委员会" + }, + "authority_level": "government", + "data_url": "https://www.cnca.gov.cn", + "has_api": false, + "file_path": "china/governance/china-cnca.json", + "geographic_scope": "national" + }, + { + "id": "china-court-auction", + "name": { + "en": "People's Court Litigation Assets Network", + "zh": "人民法院诉讼资产网" + }, + "authority_level": "government", + "data_url": "https://www.rmfysszc.gov.cn", + "has_api": false, + "file_path": "china/governance/china-court-auction.json", + "geographic_scope": "national" + }, + { + "id": "china-court-execution", + "name": { + "en": "China Court Execution Information Disclosure Network", + "zh": "全国法院被执行人信息查询平台" + }, + "authority_level": "government", + "data_url": "https://zxgk.court.gov.cn", + "has_api": false, + "file_path": "china/governance/china-court-execution.json", + "geographic_scope": "national" + }, + { + "id": "china-cppcc", + "name": { + "en": "Chinese People's Political Consultative Conference", + "zh": "中国人民政治协商会议" + }, + "authority_level": "government", + "data_url": "http://www.cppcc.gov.cn", + "has_api": false, + "file_path": "china/governance/china-cppcc.json", + "geographic_scope": "national" + }, + { + "id": "china-cqc", + "name": { + "en": "China Quality Certification Centre", + "zh": "中国质量认证中心" + }, + "authority_level": "government", + "data_url": "https://www.cqc.com.cn/", + "has_api": false, + "file_path": "china/governance/china-cqc.json", + "geographic_scope": "national" + }, + { + "id": "china-ggzy", + "name": { + "en": "China National Public Resources Trading Platform", + "zh": "全国公共资源交易平台" + }, + "authority_level": "government", + "data_url": "https://www.ggzy.gov.cn/", + "has_api": false, + "file_path": "china/governance/china-ggzy.json", + "geographic_scope": "national" + }, + { + "id": "china-mem", + "name": { + "en": "Ministry of Emergency Management of China", + "zh": "中华人民共和国应急管理部" + }, + "authority_level": "government", + "data_url": "https://www.mem.gov.cn/gk/tjsj/", + "has_api": false, + "file_path": "china/governance/china-mem.json", + "geographic_scope": "national" + }, + { + "id": "china-mofa", + "name": { + "en": "Ministry of Foreign Affairs of China", + "zh": "中华人民共和国外交部" + }, + "authority_level": "government", + "data_url": "https://www.mfa.gov.cn/web/system/index_17321.shtml", + "has_api": false, + "file_path": "china/governance/china-mofa.json", + "geographic_scope": "national" + }, + { + "id": "china-moj", + "name": { + "en": "Ministry of Justice of China", + "zh": "中华人民共和国司法部" + }, + "authority_level": "government", + "data_url": "https://www.moj.gov.cn/pub/sfbgw/zwgkzl/tjsj/", + "has_api": false, + "file_path": "china/governance/china-moj.json", + "geographic_scope": "national" + }, + { + "id": "china-mva", + "name": { + "en": "Ministry of Veterans Affairs of China", + "zh": "中华人民共和国退役军人事务部" + }, + "authority_level": "government", + "data_url": "https://www.mva.gov.cn/gongkai/", + "has_api": false, + "file_path": "china/governance/china-mva.json", + "geographic_scope": "national" + }, + { + "id": "china-napp", + "name": { + "en": "National Administration of Press and Publication", + "zh": "国家新闻出版署" + }, + "authority_level": "government", + "data_url": "https://www.nppa.gov.cn/xxfb/", + "has_api": false, + "file_path": "china/governance/china-napp.json", + "geographic_scope": "national" + }, + { + "id": "china-ncac", + "name": { + "en": "National Copyright Administration of China", + "zh": "国家版权局" + }, + "authority_level": "government", + "data_url": "https://www.ncac.gov.cn/chinacopyright/channels/634.html", + "has_api": false, + "file_path": "china/governance/china-ncac.json", + "geographic_scope": "national" + }, + { + "id": "china-ncha", + "name": { + "en": "National Cultural Heritage Administration of China", + "zh": "国家文物局" + }, + "authority_level": "government", + "data_url": "http://www.ncha.gov.cn/col/col2276/index.html", + "has_api": false, + "file_path": "china/governance/china-ncha.json", + "geographic_scope": "national" + }, + { + "id": "china-neac", + "name": { + "en": "National Ethnic Affairs Commission of China", + "zh": "国家民族事务委员会" + }, + "authority_level": "government", + "data_url": "https://www.neac.gov.cn/seac/xxgk/tjsj/", + "has_api": false, + "file_path": "china/governance/china-neac.json", + "geographic_scope": "national" + }, + { + "id": "china-nfra-fire", + "name": { + "en": "National Fire and Rescue Administration of China", + "zh": "国家消防救援局" + }, + "authority_level": "government", + "data_url": "https://www.119.gov.cn", + "has_api": false, + "file_path": "china/governance/china-nfra-fire.json", + "geographic_scope": "national" + }, + { + "id": "china-nia", + "name": { + "en": "National Immigration Administration of China", + "zh": "国家移民管理局" + }, + "authority_level": "government", + "data_url": "https://www.nia.gov.cn/n741440/n741547/index.html", + "has_api": false, + "file_path": "china/governance/china-nia.json", + "geographic_scope": "national" + }, + { + "id": "china-nncc", + "name": { + "en": "China National Narcotics Control Commission", + "zh": "中国国家禁毒委员会" + }, + "authority_level": "government", + "data_url": "http://www.nncc626.com", + "has_api": false, + "file_path": "china/governance/china-nncc.json", + "geographic_scope": "national" + }, + { + "id": "china-nnsa", + "name": { + "en": "National Nuclear Safety Administration", + "zh": "国家核安全局" + }, + "authority_level": "government", + "data_url": "http://nnsa.mee.gov.cn", + "has_api": false, + "file_path": "china/governance/china-nnsa.json", + "geographic_scope": "national" + }, + { + "id": "china-npc-law", + "name": { + "en": "National People's Congress Law Database", + "zh": "全国人大法律法规数据库" + }, + "authority_level": "government", + "data_url": "https://flk.npc.gov.cn/", + "has_api": true, + "file_path": "china/governance/china-npc-law.json", + "geographic_scope": "national" + }, + { + "id": "china-nrta", + "name": { + "en": "National Radio and Television Administration of China", + "zh": "国家广播电视总局" + }, + "authority_level": "government", + "data_url": "https://www.nrta.gov.cn/col/col2040/index.html", + "has_api": false, + "file_path": "china/governance/china-nrta.json", + "geographic_scope": "national" + }, + { + "id": "china-pkulaw", + "name": { + "en": "PKU Law (Peking University Law Database)", + "zh": "北大法宝" + }, + "authority_level": "research", + "data_url": "https://www.pkulaw.com/law", + "has_api": false, + "file_path": "china/governance/china-pkulaw.json", + "geographic_scope": "national" + }, + { + "id": "china-saac", + "name": { + "en": "National Archives Administration of China", + "zh": "中华人民共和国国家档案局" + }, + "authority_level": "government", + "data_url": "https://www.saac.gov.cn/daj/fzgz/lmlist.shtml", + "has_api": false, + "file_path": "china/governance/china-saac.json", + "geographic_scope": "national" + }, + { + "id": "china-spc", + "name": { + "en": "Supreme People's Court of China", + "zh": "最高人民法院" + }, + "authority_level": "government", + "data_url": "https://www.court.gov.cn/sfsj.html", + "has_api": false, + "file_path": "china/governance/china-spc.json", + "geographic_scope": "national" + }, + { + "id": "china-spp", + "name": { + "en": "Supreme People's Procuratorate of China", + "zh": "最高人民检察院" + }, + "authority_level": "government", + "data_url": "https://www.spp.gov.cn/spp/jcdt/jcgzdt/index_1.shtml", + "has_api": false, + "file_path": "china/governance/china-spp.json", + "geographic_scope": "national" + }, + { + "id": "china-stma", + "name": { + "en": "State Tobacco Monopoly Administration of China", + "zh": "国家烟草专卖局" + }, + "authority_level": "government", + "data_url": "https://www.tobacco.gov.cn/html/42/index.html", + "has_api": false, + "file_path": "china/governance/china-stma.json", + "geographic_scope": "national" + }, + { + "id": "china-wenshu", + "name": { + "en": "China Judgments Online", + "zh": "中国裁判文书网" + }, + "authority_level": "government", + "data_url": "https://wenshu.court.gov.cn/website/wenshu/181107ANFZ0BXSK4/index.html", + "has_api": false, + "file_path": "china/governance/china-wenshu.json", + "geographic_scope": "national" + }, + { + "id": "china-cflac", + "name": { + "en": "China Federation of Literary and Art Circles", + "zh": "中国文学艺术界联合会" + }, + "authority_level": "other", + "data_url": "https://www.cflac.org.cn", + "has_api": false, + "file_path": "china/governance/culture/china-cflac.json", + "geographic_scope": "national" + }, + { + "id": "china-cnaf", + "name": { + "en": "China National Arts Fund", + "zh": "国家艺术基金" + }, + "authority_level": "government", + "data_url": "https://www.cnaf.cn", + "has_api": false, + "file_path": "china/governance/culture/china-cnaf.json", + "geographic_scope": "national" + }, + { + "id": "china-film-admin", + "name": { + "en": "National Film Administration of China", + "zh": "国家电影局" + }, + "authority_level": "government", + "data_url": "https://www.chinafilm.gov.cn", + "has_api": false, + "file_path": "china/governance/culture/china-film-admin.json", + "geographic_scope": "national" + }, + { + "id": "china-national-museum", + "name": { + "en": "National Museum of China", + "zh": "中国国家博物馆" + }, + "authority_level": "government", + "data_url": "https://www.chnmuseum.cn/zp/zpml/", + "has_api": false, + "file_path": "china/governance/culture/china-national-museum.json", + "geographic_scope": "national" + }, + { + "id": "china-gas", + "name": { + "en": "General Administration of Sport of China", + "zh": "国家体育总局" + }, + "authority_level": "government", + "data_url": "https://www.sport.gov.cn/n315/n330/index.html", + "has_api": false, + "file_path": "china/governance/sports/china-gas.json", + "geographic_scope": "national" + }, + { + "id": "china-cacm", + "name": { + "en": "Chinese Association of Chinese Medicine", + "zh": "中华中医药学会" + }, + "authority_level": "research", + "data_url": "https://www.cacm.org.cn", + "has_api": false, + "file_path": "china/health/china-cacm.json", + "geographic_scope": "national" + }, + { + "id": "china-cacms", + "name": { + "en": "China Academy of Chinese Medical Sciences", + "zh": "中国中医科学院" + }, + "authority_level": "research", + "data_url": "https://www.cacms.ac.cn/index.html", + "has_api": false, + "file_path": "china/health/china-cacms.json", + "geographic_scope": "national" + }, + { + "id": "china-cams", + "name": { + "en": "Chinese Academy of Medical Sciences (CAMS)", + "zh": "中国医学科学院" + }, + "authority_level": "research", + "data_url": "https://www.cams.cn", + "has_api": false, + "file_path": "china/health/china-cams.json", + "geographic_scope": "national" + }, + { + "id": "china-catcm", + "name": { + "en": "China Association of Traditional Chinese Medicine", + "zh": "中国中药协会" + }, + "authority_level": "other", + "data_url": "https://www.catcm.org.cn", + "has_api": false, + "file_path": "china/health/china-catcm.json", + "geographic_scope": "national" + }, + { + "id": "china-cdc", + "name": { + "en": "Chinese Center for Disease Control and Prevention", + "zh": "中国疾病预防控制中心" + }, + "authority_level": "government", + "data_url": "https://www.chinacdc.cn/gzdt/", + "has_api": false, + "file_path": "china/health/china-cdc.json", + "geographic_scope": "national" + }, + { + "id": "china-chinadrugtrials", + "name": { + "en": "China Drug Clinical Trials Registration and Information Disclosure Platform", + "zh": "药物临床试验登记与信息公示平台" + }, + "authority_level": "government", + "data_url": "https://www.chinadrugtrials.org.cn", + "has_api": false, + "file_path": "china/health/china-chinadrugtrials.json", + "geographic_scope": "national" + }, + { + "id": "china-class", + "name": { + "en": "China Longitudinal Aging Social Survey (CLASS)", + "zh": "中国老年社会追踪调查(CLASS)" + }, + "authority_level": "research", + "data_url": "http://class.ruc.edu.cn/", + "has_api": false, + "file_path": "china/health/china-class.json", + "geographic_scope": "national" + }, + { + "id": "china-cpdrc", + "name": { + "en": "China Population and Development Research Center", + "zh": "中国人口与发展研究中心" + }, + "authority_level": "research", + "data_url": "https://www.cpdrc.org.cn/sjzw/", + "has_api": false, + "file_path": "china/health/china-cpdrc.json", + "geographic_scope": "national" + }, + { + "id": "china-cpharma", + "name": { + "en": "Chinese Pharmaceutical Association", + "zh": "中国药学会" + }, + "authority_level": "research", + "data_url": "https://www.cpa.org.cn/?do=class&classid=250", + "has_api": false, + "file_path": "china/health/china-cpharma.json", + "geographic_scope": "national" + }, + { + "id": "china-cpma", + "name": { + "en": "Chinese Preventive Medicine Association", + "zh": "中华预防医学会" + }, + "authority_level": "research", + "data_url": "https://www.cpma.org.cn", + "has_api": false, + "file_path": "china/health/china-cpma.json", + "geographic_scope": "national" + }, + { + "id": "china-hospital-association", + "name": { + "en": "Chinese Hospital Association", + "zh": "中国医院协会" + }, + "authority_level": "other", + "data_url": "https://www.cha.org.cn", + "has_api": false, + "file_path": "china/health/china-hospital-association.json", + "geographic_scope": "national" + }, + { + "id": "china-medical-association", + "name": { + "en": "Chinese Medical Association", + "zh": "中华医学会" + }, + "authority_level": "research", + "data_url": "https://www.cma.org.cn/col/col5601/index.html", + "has_api": false, + "file_path": "china/health/china-medical-association.json", + "geographic_scope": "national" + }, + { + "id": "china-natcm", + "name": { + "en": "National Administration of Traditional Chinese Medicine", + "zh": "国家中医药管理局" + }, + "authority_level": "government", + "data_url": "https://www.natcm.gov.cn/guihuacaiwusi/gongzuodongtai/index.html", + "has_api": false, + "file_path": "china/health/china-natcm.json", + "geographic_scope": "national" + }, + { + "id": "china-ndcpa", + "name": { + "en": "National Disease Control and Prevention Administration of China", + "zh": "国家疾病预防控制局" + }, + "authority_level": "government", + "data_url": "https://www.ndcpa.gov.cn/jbkzzx/c100016/second/list.html", + "has_api": false, + "file_path": "china/health/china-ndcpa.json", + "geographic_scope": "national" + }, + { + "id": "china-nhc", + "name": { + "en": "National Health Commission of China", + "zh": "国家卫生健康委员会", + "native": "国家卫生健康委员会" + }, + "authority_level": "government", + "data_url": "https://www.nhc.gov.cn/mohwsbwstjxxzx/s7967/new_list.shtml", + "has_api": false, + "file_path": "china/health/china-nhc.json", + "geographic_scope": "national" + }, + { + "id": "china-nhei", + "name": { + "en": "China National Health Development Research Center", + "zh": "国家卫生健康委卫生发展研究中心" + }, + "authority_level": "research", + "data_url": "https://www.nhei.cn", + "has_api": false, + "file_path": "china/health/china-nhei.json", + "geographic_scope": "national" + }, + { + "id": "china-nhsa", + "name": { + "en": "National Healthcare Security Administration of China", + "zh": "国家医疗保障局" + }, + "authority_level": "government", + "data_url": "https://www.nhsa.gov.cn/col/col7/index.html", + "has_api": false, + "file_path": "china/health/china-nhsa.json", + "geographic_scope": "national" + }, + { + "id": "china-nifdc", + "name": { + "en": "National Institutes for Food and Drug Control", + "zh": "中国食品药品检定研究院" + }, + "authority_level": "government", + "data_url": "https://www.nifdc.org.cn", + "has_api": false, + "file_path": "china/health/china-nifdc.json", + "geographic_scope": "national" + }, + { + "id": "china-nmpa", + "name": { + "en": "National Medical Products Administration of China", + "zh": "国家药品监督管理局" + }, + "authority_level": "government", + "data_url": "https://www.nmpa.gov.cn/datasearch/home-index.html", + "has_api": false, + "file_path": "china/health/china-nmpa.json", + "geographic_scope": "national" + }, + { + "id": "china-nphsd", + "name": { + "en": "National Population and Health Science Data Center", + "zh": "国家人口与健康科学数据中心" + }, + "authority_level": "research", + "data_url": "https://www.phsciencedata.cn", + "has_api": false, + "file_path": "china/health/china-nphsd.json", + "geographic_scope": "national" + }, + { + "id": "china-phirda", + "name": { + "en": "China Pharmaceutical Innovation and Research Development Association", + "zh": "中国医药创新促进会" + }, + "authority_level": "other", + "data_url": "https://www.phirda.com", + "has_api": false, + "file_path": "china/health/china-phirda.json", + "geographic_scope": "national" + }, + { + "id": "china-avic", + "name": { + "en": "Aviation Industry Corporation of China (AVIC)", + "zh": "中国航空工业集团有限公司" + }, + "authority_level": "government", + "data_url": "https://www.avic.com", + "has_api": false, + "file_path": "china/industry/aerospace/china-avic.json", + "geographic_scope": "national" + }, + { + "id": "china-casc", + "name": { + "en": "China Aerospace Science and Technology Corporation (CASC)", + "zh": "中国航天科技集团有限公司" + }, + "authority_level": "government", + "data_url": "https://www.spacechina.com/n25/index.html", + "has_api": false, + "file_path": "china/industry/aerospace/china-casc.json", + "geographic_scope": "national" + }, + { + "id": "china-ceeia", + "name": { + "en": "China Electrical Equipment Industry Association", + "zh": "中国电器工业协会" + }, + "authority_level": "commercial", + "data_url": "https://www.ceeia.com", + "has_api": false, + "file_path": "china/industry/china-ceeia.json", + "geographic_scope": "national" + }, + { + "id": "china-csei", + "name": { + "en": "China Special Equipment Inspection and Research Institute", + "zh": "中国特种设备检测研究院" + }, + "authority_level": "research", + "data_url": "https://www.csei.org.cn", + "has_api": false, + "file_path": "china/industry/china-csei.json", + "geographic_scope": "national" + }, + { + "id": "china-csia", + "name": { + "en": "China Semiconductor Industry Association", + "zh": "中国半导体行业协会" + }, + "authority_level": "other", + "data_url": "https://web.csia.net.cn", + "has_api": false, + "file_path": "china/industry/china-csia.json", + "geographic_scope": "national" + }, + { + "id": "china-miit-eidc", + "name": { + "en": "MIIT Equipment Industry Development Center", + "zh": "工业和信息化部装备工业发展中心" + }, + "authority_level": "government", + "data_url": "https://www.miit-eidc.org.cn/", + "has_api": false, + "file_path": "china/industry/china-miit-eidc.json", + "geographic_scope": "national" + }, + { + "id": "china-camet", + "name": { + "en": "China Association of Metros (CAMET)", + "zh": "中国城市轨道交通协会" + }, + "authority_level": "other", + "data_url": "https://www.camet.org.cn", + "has_api": false, + "file_path": "china/infrastructure/china-camet.json", + "geographic_scope": "national" + }, + { + "id": "china-cata", + "name": { + "en": "China Air Transport Association", + "zh": "中国航空运输协会" + }, + "authority_level": "other", + "data_url": "https://www.cata.org.cn/NewsList.aspx?id=11", + "has_api": false, + "file_path": "china/infrastructure/china-cata.json", + "geographic_scope": "national" + }, + { + "id": "china-ccs", + "name": { + "en": "China Classification Society", + "zh": "中国船级社" + }, + "authority_level": "government", + "data_url": "https://www.ccs.org.cn/", + "has_api": false, + "file_path": "china/infrastructure/china-ccs.json", + "geographic_scope": "national" + }, + { + "id": "china-crg", + "name": { + "en": "China State Railway Group", + "zh": "中国国家铁路集团有限公司" + }, + "authority_level": "government", + "data_url": "http://www.china-railway.com.cn/", + "has_api": false, + "file_path": "china/infrastructure/china-crg.json", + "geographic_scope": "national" + }, + { + "id": "china-crrc", + "name": { + "en": "CRRC Corporation Limited", + "zh": "中国中车股份有限公司" + }, + "authority_level": "commercial", + "data_url": "https://www.crrcgc.cc", + "has_api": false, + "file_path": "china/infrastructure/china-crrc.json", + "geographic_scope": "national" + }, + { + "id": "china-crta", + "name": { + "en": "China Road Transport Association", + "zh": "中国道路运输协会" + }, + "authority_level": "other", + "data_url": "https://www.crta.org.cn/news.html?id=42", + "has_api": false, + "file_path": "china/infrastructure/china-crta.json", + "geographic_scope": "national" + }, + { + "id": "china-cttic", + "name": { + "en": "China Transport Telecommunications & Information Center", + "zh": "中国交通通信信息中心" + }, + "authority_level": "government", + "data_url": "https://www.cttic.cn", + "has_api": false, + "file_path": "china/infrastructure/china-cttic.json", + "geographic_scope": "national" + }, + { + "id": "china-highway-society", + "name": { + "en": "China Highway and Transportation Society", + "zh": "中国公路学会" + }, + "authority_level": "research", + "data_url": "https://www.chts.cn", + "has_api": false, + "file_path": "china/infrastructure/china-highway-society.json", + "geographic_scope": "national" + }, + { + "id": "china-mot", + "name": { + "en": "Ministry of Transport of China", + "zh": "中华人民共和国交通运输部", + "native": "中华人民共和国交通运输部" + }, + "authority_level": "government", + "data_url": "https://www.mot.gov.cn/shuju/", + "has_api": false, + "file_path": "china/infrastructure/china-mot.json", + "geographic_scope": "national" + }, + { + "id": "china-msa", + "name": { + "en": "China Maritime Safety Administration", + "zh": "中国海事局" + }, + "authority_level": "government", + "data_url": "https://www.msa.gov.cn/page/zxgk/tjsj.html", + "has_api": false, + "file_path": "china/infrastructure/china-msa.json", + "geographic_scope": "national" + }, + { + "id": "china-nra", + "name": { + "en": "National Railway Administration of China", + "zh": "国家铁路局" + }, + "authority_level": "government", + "data_url": "https://www.nra.gov.cn/xxgk/gkml/", + "has_api": false, + "file_path": "china/infrastructure/china-nra.json", + "geographic_scope": "national" + }, + { + "id": "china-ports-association", + "name": { + "en": "China Ports & Harbours Association", + "zh": "中国港口协会" + }, + "authority_level": "other", + "data_url": "http://www.port.org.cn", + "has_api": false, + "file_path": "china/infrastructure/china-ports-association.json", + "geographic_scope": "national" + }, + { + "id": "china-post-group", + "name": { + "en": "China Post Group Corporation", + "zh": "中国邮政集团有限公司" + }, + "authority_level": "government", + "data_url": "https://www.chinapost.com.cn/", + "has_api": false, + "file_path": "china/infrastructure/china-post-group.json", + "geographic_scope": "national" + }, + { + "id": "china-spb", + "name": { + "en": "State Post Bureau of China", + "zh": "国家邮政局" + }, + "authority_level": "government", + "data_url": "https://www.spb.gov.cn/gjyzj/c100009/c100014/xxgk_index.shtml", + "has_api": false, + "file_path": "china/infrastructure/china-spb.json", + "geographic_scope": "national" + }, + { + "id": "ceic-china-urbanization", + "name": { + "en": "CEIC Data - China Urbanization Rate", + "zh": "CEIC数据库 - 中国城镇化率" + }, + "authority_level": "commercial", + "data_url": "https://www.ceicdata.com/zh-hans/china/population-urbanization-rate", + "has_api": true, + "file_path": "china/national/ceic-china-urbanization.json", + "geographic_scope": "national" + }, + { + "id": "china-acwf", + "name": { + "en": "All-China Women's Federation", + "zh": "中华全国妇女联合会" + }, + "authority_level": "government", + "data_url": "https://www.women.org.cn/", + "has_api": false, + "file_path": "china/national/china-acwf.json", + "geographic_scope": "national" + }, + { + "id": "china-cncaprc", + "name": { + "en": "China National Committee on Ageing", + "zh": "中国老龄协会" + }, + "authority_level": "government", + "data_url": "https://www.cncaprc.gov.cn", + "has_api": false, + "file_path": "china/national/china-cncaprc.json", + "geographic_scope": "national" + }, + { + "id": "china-cta", + "name": { + "en": "China Tourism Academy", + "zh": "中国旅游研究院" + }, + "authority_level": "research", + "data_url": "https://www.ctaweb.org.cn/index.php?m=home&c=Lists&a=index&tid=21", + "has_api": false, + "file_path": "china/national/china-cta.json", + "geographic_scope": "national" + }, + { + "id": "china-mca", + "name": { + "en": "Ministry of Civil Affairs of China", + "zh": "中华人民共和国民政部", + "native": "中华人民共和国民政部" + }, + "authority_level": "government", + "data_url": "https://www.mca.gov.cn/n156/n2679/index.html", + "has_api": false, + "file_path": "china/national/china-mca.json", + "geographic_scope": "national" + }, + { + "id": "china-mps", + "name": { + "en": "Ministry of Public Security of China", + "zh": "中华人民共和国公安部" + }, + "authority_level": "government", + "data_url": "https://www.mps.gov.cn/n6557558/index.html", + "has_api": false, + "file_path": "china/national/china-mps.json", + "geographic_scope": "national" + }, + { + "id": "cnki-population-census", + "name": { + "en": "CNKI China Population Census Database", + "zh": "中国人口普查数据库" + }, + "authority_level": "commercial", + "data_url": "https://data.cnki.net/npcd", + "has_api": false, + "file_path": "china/national/cnki-population-census.json", + "geographic_scope": "national" + }, + { + "id": "china-cma", + "name": { + "en": "China Meteorological Administration", + "zh": "中国气象局" + }, + "authority_level": "government", + "data_url": "https://data.cma.cn", + "has_api": false, + "file_path": "china/national/meteorology/china-cma.json", + "geographic_scope": "national" + }, + { + "id": "china-ncc", + "name": { + "en": "National Climate Center of China (NCC-CMA)", + "zh": "国家气候中心" + }, + "authority_level": "government", + "data_url": "https://cmdp.ncc-cma.net", + "has_api": false, + "file_path": "china/national/meteorology/china-ncc.json", + "geographic_scope": "national" + }, + { + "id": "china-nmc", + "name": { + "en": "National Meteorological Centre of China", + "zh": "中央气象台" + }, + "authority_level": "government", + "data_url": "https://www.nmc.cn/publish/observations.html", + "has_api": false, + "file_path": "china/national/meteorology/china-nmc.json", + "geographic_scope": "national" + }, + { + "id": "china-nmic", + "name": { + "en": "National Meteorological Information Center", + "zh": "国家气象信息中心" + }, + "authority_level": "government", + "data_url": "https://data.cma.cn/data/index.html", + "has_api": false, + "file_path": "china/national/meteorology/china-nmic.json", + "geographic_scope": "national" + }, + { + "id": "china-nsmc", + "name": { + "en": "National Satellite Meteorological Center of China", + "zh": "国家卫星气象中心" + }, + "authority_level": "government", + "data_url": "https://www.nsmc.org.cn/nsmc/cn/satellite/index.html", + "has_api": false, + "file_path": "china/national/meteorology/china-nsmc.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": "china/national/nbs.json", + "geographic_scope": "national" + }, + { + "id": "china-cabr", + "name": { + "en": "China Academy of Building Research", + "zh": "中国建筑科学研究院有限公司" + }, + "authority_level": "research", + "data_url": "https://www.cabr.cn", + "has_api": false, + "file_path": "china/research/china-cabr.json", + "geographic_scope": "national" + }, + { + "id": "china-cae", + "name": { + "en": "Chinese Academy of Engineering", + "zh": "中国工程院" + }, + "authority_level": "research", + "data_url": "https://www.cae.cn/cae/html/main/col73/column_73_1.html", + "has_api": false, + "file_path": "china/research/china-cae.json", + "geographic_scope": "national" + }, + { + "id": "china-caict", + "name": { + "en": "China Academy of Information and Communications Technology", + "zh": "中国信息通信研究院" + }, + "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": "china-cas", + "name": { + "en": "Chinese Academy of Sciences - Science Data Bank", + "zh": "中国科学院科学数据库" + }, + "authority_level": "research", + "data_url": "https://www.scidb.cn/", + "has_api": false, + "file_path": "china/research/china-cas.json", + "geographic_scope": "national" + }, + { + "id": "china-casm", + "name": { + "en": "Chinese Academy of Surveying and Mapping", + "zh": "中国测绘科学研究院" + }, + "authority_level": "research", + "data_url": "https://www.casm.ac.cn", + "has_api": false, + "file_path": "china/research/china-casm.json", + "geographic_scope": "national" + }, + { + "id": "china-cass", + "name": { + "en": "Chinese Academy of Social Sciences", + "zh": "中国社会科学院" + }, + "authority_level": "research", + "data_url": "http://www.cass.ac.cn/list/zw_sscp.html", + "has_api": false, + "file_path": "china/research/china-cass.json", + "geographic_scope": "national" + }, + { + "id": "china-cast", + "name": { + "en": "China Association for Science and Technology", + "zh": "中国科学技术协会" + }, + "authority_level": "other", + "data_url": "https://www.cast.org.cn/xw/", + "has_api": false, + "file_path": "china/research/china-cast.json", + "geographic_scope": "national" + }, + { + "id": "china-casted", + "name": { + "en": "China Academy of Science and Technology for Development", + "zh": "中国科学技术发展战略研究院" + }, + "authority_level": "research", + "data_url": "http://www.casted.org.cn/channel/", + "has_api": false, + "file_path": "china/research/china-casted.json", + "geographic_scope": "national" + }, + { + "id": "china-catarc", + "name": { + "en": "China Automotive Technology and Research Center", + "zh": "中国汽车技术研究中心" + }, + "authority_level": "research", + "data_url": "https://www.catarc.ac.cn", + "has_api": false, + "file_path": "china/research/china-catarc.json", + "geographic_scope": "national" + }, + { + "id": "china-cciee", + "name": { + "en": "China Center for International Economic Exchanges", + "zh": "中国国际经济交流中心" + }, + "authority_level": "research", + "data_url": "https://www.cciee.org.cn/ktcglistall.aspx?clmId=650", + "has_api": false, + "file_path": "china/research/china-cciee.json", + "geographic_scope": "national" + }, + { + "id": "china-ccs-crop", + "name": { + "en": "Chinese Crop Science Society", + "zh": "中国作物学会" + }, + "authority_level": "research", + "data_url": "https://www.chinacrops.org", + "has_api": false, + "file_path": "china/research/china-ccs-crop.json", + "geographic_scope": "national" + }, + { + "id": "china-cdrf", + "name": { + "en": "China Development Research Foundation (CDRF)", + "zh": "中国发展研究基金会" + }, + "authority_level": "research", + "data_url": "https://www.cdrf.org.cn", + "has_api": false, + "file_path": "china/research/china-cdrf.json", + "geographic_scope": "national" + }, + { + "id": "china-cf40", + "name": { + "en": "China Finance 40 Forum (CF40)", + "zh": "中国金融四十人论坛" + }, + "authority_level": "research", + "data_url": "https://www.cf40.com/research", + "has_api": false, + "file_path": "china/research/china-cf40.json", + "geographic_scope": "national" + }, + { + "id": "china-cfps", + "name": { + "en": "China Family Panel Studies (CFPS)", + "zh": "中国家庭追踪调查(CFPS)" + }, + "authority_level": "research", + "data_url": "https://opendata.pku.edu.cn/dataverse/CFPS", + "has_api": false, + "file_path": "china/research/china-cfps.json", + "geographic_scope": "national" + }, + { + "id": "china-cgss", + "name": { + "en": "Chinese General Social Survey (CGSS)", + "zh": "中国综合社会调查(CGSS)" + }, + "authority_level": "research", + "data_url": "http://cgss.ruc.edu.cn/", + "has_api": false, + "file_path": "china/research/china-cgss.json", + "geographic_scope": "national" + }, + { + "id": "china-chfs", + "name": { + "en": "China Household Finance Survey (CHFS)", + "zh": "中国家庭金融调查(CHFS)" + }, + "authority_level": "research", + "data_url": "https://chfs.swufe.edu.cn", + "has_api": false, + "file_path": "china/research/china-chfs.json", + "geographic_scope": "national" + }, + { + "id": "china-ciecc", + "name": { + "en": "China International Engineering Consulting Corporation", + "zh": "中国国际工程咨询有限公司" + }, + "authority_level": "government", + "data_url": "https://www.ciecc.com.cn", + "has_api": false, + "file_path": "china/research/china-ciecc.json", + "geographic_scope": "national" + }, + { + "id": "china-cipd", + "name": { + "en": "China Population and Development Research Center", + "zh": "中国人口与发展研究中心" + }, + "authority_level": "research", + "data_url": "https://www.cpirc.org.cn", + "has_api": false, + "file_path": "china/research/china-cipd.json", + "geographic_scope": "national" + }, + { + "id": "china-cisri", + "name": { + "en": "China Iron & Steel Research Institute Group", + "zh": "中国钢研科技集团有限公司" + }, + "authority_level": "research", + "data_url": "https://www.cisri.com.cn", + "has_api": false, + "file_path": "china/research/china-cisri.json", + "geographic_scope": "national" + }, + { + "id": "china-cncbd", + "name": { + "en": "China National Center for Biotechnology Development", + "zh": "中国生物技术发展中心" + }, + "authority_level": "government", + "data_url": "https://www.cncbd.org.cn", + "has_api": false, + "file_path": "china/research/china-cncbd.json", + "geographic_scope": "national" + }, + { + "id": "china-csic", + "name": { + "en": "Institute of Sociology, Chinese Academy of Social Sciences", + "zh": "中国社会科学院社会学研究所" + }, + "authority_level": "research", + "data_url": "https://sociology.cssn.cn", + "has_api": false, + "file_path": "china/research/china-csic.json", + "geographic_scope": "national" + }, + { + "id": "china-cste", + "name": { + "en": "China Society for Technology Economics", + "zh": "中国技术经济学会" + }, + "authority_level": "research", + "data_url": "https://www.cste.org.cn", + "has_api": false, + "file_path": "china/research/china-cste.json", + "geographic_scope": "national" + }, + { + "id": "china-cstr", + "name": { + "en": "China Science & Technology Resource Identifier Platform", + "zh": "科技资源标识服务平台" + }, + "authority_level": "government", + "data_url": "https://cstr.cn/resreg", + "has_api": false, + "file_path": "china/research/china-cstr.json", + "geographic_scope": "national" + }, + { + "id": "china-cufe-iigf", + "name": { + "en": "International Institute of Green Finance (IIGF), Central University of Finance and Economics", + "zh": "中央财经大学绿色金融国际研究院" + }, + "authority_level": "research", + "data_url": "https://iigf.cufe.edu.cn/yjcg/yjbg.htm", + "has_api": false, + "file_path": "china/research/china-cufe-iigf.json", + "geographic_scope": "national" + }, + { + "id": "china-drc", + "name": { + "en": "Development Research Center of the State Council of China", + "zh": "国务院发展研究中心" + }, + "authority_level": "government", + "data_url": "https://www.drc.gov.cn/yjcg.htm", + "has_api": false, + "file_path": "china/research/china-drc.json", + "geographic_scope": "national" + }, + { + "id": "china-giec", + "name": { + "en": "Guangzhou Institute of Energy Conversion, Chinese Academy of Sciences", + "zh": "中国科学院广州能源研究所" + }, + "authority_level": "research", + "data_url": "http://www.giec.ac.cn", + "has_api": false, + "file_path": "china/research/china-giec.json", + "geographic_scope": "national" + }, + { + "id": "china-gscloud", + "name": { + "en": "Geospatial Data Cloud - Computer Network Information Center, CAS", + "zh": "地理空间数据云(中国科学院计算机网络信息中心)" + }, + "authority_level": "research", + "data_url": "https://www.gscloud.cn/search", + "has_api": false, + "file_path": "china/research/china-gscloud.json", + "geographic_scope": "global" + }, + { + "id": "china-iap", + "name": { + "en": "Institute of Atmospheric Physics, Chinese Academy of Sciences", + "zh": "中国科学院大气物理研究所" + }, + "authority_level": "research", + "data_url": "https://www.iap.ac.cn", + "has_api": false, + "file_path": "china/research/china-iap.json", + "geographic_scope": "national" + }, + { + "id": "china-ibcas", + "name": { + "en": "Institute of Botany, Chinese Academy of Sciences", + "zh": "中国科学院植物研究所" + }, + "authority_level": "research", + "data_url": "https://www.ibcas.ac.cn", + "has_api": false, + "file_path": "china/research/china-ibcas.json", + "geographic_scope": "national" + }, + { + "id": "china-igsnrr", + "name": { + "en": "Institute of Geographic Sciences and Natural Resources Research, Chinese Academy of Sciences", + "zh": "中国科学院地理科学与资源研究所" + }, + "authority_level": "research", + "data_url": "http://www.igsnrr.ac.cn", + "has_api": false, + "file_path": "china/research/china-igsnrr.json", + "geographic_scope": "national" + }, + { + "id": "china-imcas", + "name": { + "en": "Institute of Microbiology, Chinese Academy of Sciences", + "zh": "中国科学院微生物研究所" + }, + "authority_level": "research", + "data_url": "https://www.im.cas.cn", + "has_api": false, + "file_path": "china/research/china-imcas.json", + "geographic_scope": "national" + }, + { + "id": "china-ioz", + "name": { + "en": "Institute of Zoology, Chinese Academy of Sciences", + "zh": "中国科学院动物研究所" + }, + "authority_level": "research", + "data_url": "http://www.ioz.ac.cn", + "has_api": false, + "file_path": "china/research/china-ioz.json", + "geographic_scope": "national" + }, + { + "id": "china-istic", + "name": { + "en": "Institute of Scientific and Technical Information of China", + "zh": "中国科学技术信息研究所" + }, + "authority_level": "research", + "data_url": "https://www.istic.ac.cn/", + "has_api": false, + "file_path": "china/research/china-istic.json", + "geographic_scope": "national" + }, + { + "id": "china-ncsti", + "name": { + "en": "National Center for Science and Technology Information", + "zh": "中国科学技术信息研究所" + }, + "authority_level": "research", + "data_url": "https://www.ncsti.gov.cn", + "has_api": false, + "file_path": "china/research/china-ncsti.json", + "geographic_scope": "national" + }, + { + "id": "china-ngeos", + "name": { + "en": "National Earth System Science Data Center", + "zh": "国家地球系统科学数据中心" + }, + "authority_level": "research", + "data_url": "https://www.geodata.cn/data/", + "has_api": false, + "file_path": "china/research/china-ngeos.json", + "geographic_scope": "national" + }, + { + "id": "china-nigpas", + "name": { + "en": "Nanjing Institute of Geology and Palaeontology, Chinese Academy of Sciences", + "zh": "中国科学院南京地质古生物研究所" + }, + "authority_level": "research", + "data_url": "http://www.nigpas.ac.cn", + "has_api": false, + "file_path": "china/research/china-nigpas.json", + "geographic_scope": "national" + }, + { + "id": "china-nsfc", + "name": { + "en": "National Natural Science Foundation of China", + "zh": "国家自然科学基金委员会" + }, + "authority_level": "government", + "data_url": "https://www.nsfc.gov.cn/p1/2961/2964/3655/cg.html", + "has_api": false, + "file_path": "china/research/china-nsfc.json", + "geographic_scope": "national" + }, + { + "id": "china-nsii", + "name": { + "en": "National Specimen Information Infrastructure of China", + "zh": "中国国家标本资源平台" + }, + "authority_level": "research", + "data_url": "https://www.nsii.org.cn/2017/home.php", + "has_api": false, + "file_path": "china/research/china-nsii.json", + "geographic_scope": "national" + }, + { + "id": "china-nssdc", + "name": { + "en": "National Space Science Data Center", + "zh": "国家空间科学数据中心" + }, + "authority_level": "research", + "data_url": "https://www.nssdc.ac.cn", + "has_api": false, + "file_path": "china/research/china-nssdc.json", + "geographic_scope": "national" + }, + { + "id": "china-nstl", + "name": { + "en": "National Science and Technology Library of China", + "zh": "国家科技图书文献中心" + }, + "authority_level": "government", + "data_url": "https://www.nstl.gov.cn/search.html", + "has_api": false, + "file_path": "china/research/china-nstl.json", + "geographic_scope": "national" + }, + { + "id": "china-pku-opendata", + "name": { + "en": "Peking University Open Research Data Platform", + "zh": "北京大学开放研究数据平台" + }, + "authority_level": "research", + "data_url": "https://opendata.pku.edu.cn", + "has_api": false, + "file_path": "china/research/china-pku-opendata.json", + "geographic_scope": "national" + }, + { + "id": "china-plant-csdb", + "name": { + "en": "China Plant Thematic Database (CAS Science Database)", + "zh": "中国植物主题数据库" + }, + "authority_level": "research", + "data_url": "https://www.plant.csdb.cn", + "has_api": false, + "file_path": "china/research/china-plant-csdb.json", + "geographic_scope": "national" + }, + { + "id": "china-pmo", + "name": { + "en": "Purple Mountain Observatory, Chinese Academy of Sciences", + "zh": "中国科学院紫金山天文台" + }, + "authority_level": "research", + "data_url": "http://www.pmo.ac.cn", + "has_api": false, + "file_path": "china/research/china-pmo.json", + "geographic_scope": "national" + }, + { + "id": "china-polar-service", + "name": { + "en": "China Polar Operations Service Platform (CHINARE Data)", + "zh": "中国极地业务服务平台" + }, + "authority_level": "government", + "data_url": "https://www.chinare.org.cn/", + "has_api": false, + "file_path": "china/research/china-polar-service.json", + "geographic_scope": "global" + }, + { + "id": "china-pric", + "name": { + "en": "Polar Research Institute of China", + "zh": "中国极地研究中心" + }, + "authority_level": "research", + "data_url": "https://www.pric.org.cn/", + "has_api": false, + "file_path": "china/research/china-pric.json", + "geographic_scope": "global" + }, + { + "id": "china-resdc", + "name": { + "en": "Resource and Environment Science and Data Center, Chinese Academy of Sciences", + "zh": "中国科学院资源环境科学与数据中心" + }, + "authority_level": "research", + "data_url": "https://www.resdc.cn", + "has_api": false, + "file_path": "china/research/china-resdc.json", + "geographic_scope": "national" + }, + { + "id": "china-sass", + "name": { + "en": "Shanghai Academy of Social Sciences", + "zh": "上海社会科学院" + }, + "authority_level": "research", + "data_url": "https://www.sass.org.cn", + "has_api": false, + "file_path": "china/research/china-sass.json", + "geographic_scope": "national" + }, + { + "id": "china-scidb", + "name": { + "en": "Science Data Bank (ScienceDB)", + "zh": "中国科学数据银行" + }, + "authority_level": "research", + "data_url": "https://www.scidb.cn/list?type=all", + "has_api": false, + "file_path": "china/research/china-scidb.json", + "geographic_scope": "global" + }, + { + "id": "china-tpdc", + "name": { + "en": "National Tibetan Plateau Data Center", + "zh": "国家青藏高原科学数据中心" + }, + "authority_level": "research", + "data_url": "https://data.tpdc.ac.cn", + "has_api": false, + "file_path": "china/research/china-tpdc.json", + "geographic_scope": "regional" + }, + { + "id": "china-wanfang", + "name": { + "en": "Wanfang Data", + "zh": "万方数据" + }, + "authority_level": "commercial", + "data_url": "https://www.wanfangdata.com.cn/", + "has_api": false, + "file_path": "china/research/china-wanfang.json", + "geographic_scope": "national" + }, + { + "id": "china-ngdc", + "name": { + "en": "National Genomics Data Center", + "zh": "国家基因组科学数据中心" + }, + "authority_level": "research", + "data_url": "https://ngdc.cncb.ac.cn/gsub/", + "has_api": true, + "file_path": "china/research/ngdc.json", + "geographic_scope": "national" + }, + { + "id": "china-caea", + "name": { + "en": "China National Nuclear Safety Administration", + "zh": "国家原子能机构" + }, + "authority_level": "government", + "data_url": "https://www.caea.gov.cn", + "has_api": false, + "file_path": "china/resources/china-caea.json", + "geographic_scope": "national" + }, + { + "id": "china-chnenergy", + "name": { + "en": "China Energy Investment Corporation (CHN Energy)", + "zh": "国家能源投资集团有限责任公司" + }, + "authority_level": "government", + "data_url": "https://www.chnenergy.com.cn", + "has_api": false, + "file_path": "china/resources/china-chnenergy.json", + "geographic_scope": "national" + }, + { + "id": "china-cnooc", + "name": { + "en": "China National Offshore Oil Corporation", + "zh": "中国海洋石油集团有限公司" + }, + "authority_level": "government", + "data_url": "https://www.cnooc.com.cn", + "has_api": false, + "file_path": "china/resources/china-cnooc.json", + "geographic_scope": "national" + }, + { + "id": "china-cnpc", + "name": { + "en": "China National Petroleum Corporation", + "zh": "中国石油天然气集团有限公司" + }, + "authority_level": "government", + "data_url": "https://www.cnpc.com.cn/cnpc/nybg/common_index.shtml", + "has_api": false, + "file_path": "china/resources/china-cnpc.json", + "geographic_scope": "national" + }, + { + "id": "china-ctg", + "name": { + "en": "China Three Gorges Corporation (CTG)", + "zh": "中国长江三峡集团有限公司" + }, + "authority_level": "government", + "data_url": "https://www.ctg.com.cn", + "has_api": false, + "file_path": "china/resources/china-ctg.json", + "geographic_scope": "national" + }, + { + "id": "china-guangdong-nr", + "name": { + "en": "Guangdong Provincial Department of Natural Resources", + "zh": "广东省自然资源厅" + }, + "authority_level": "government", + "data_url": "https://nr.gd.gov.cn/zwgknew/index.html", + "has_api": false, + "file_path": "china/resources/china-guangdong-nr.json", + "geographic_scope": "subnational" + }, + { + "id": "china-huaneng", + "name": { + "en": "China Huaneng Group", + "zh": "中国华能集团有限公司" + }, + "authority_level": "commercial", + "data_url": "https://www.chng.com.cn", + "has_api": false, + "file_path": "china/resources/china-huaneng.json", + "geographic_scope": "national" + }, + { + "id": "china-landchina", + "name": { + "en": "China Land Market Network", + "zh": "中国土地市场网" + }, + "authority_level": "government", + "data_url": "https://www.landchina.com/default.aspx?tabid=226", + "has_api": false, + "file_path": "china/resources/china-landchina.json", + "geographic_scope": "national" + }, + { + "id": "china-ngcc", + "name": { + "en": "National Geomatics Center of China", + "zh": "国家基础地理信息中心" + }, + "authority_level": "government", + "data_url": "https://www.ngcc.cn/dlxxzy/gjjcdlxxsjk/", + "has_api": false, + "file_path": "china/resources/china-ngcc.json", + "geographic_scope": "national" + }, + { + "id": "china-shenzhen-pnr", + "name": { + "en": "Shenzhen Municipal Planning and Natural Resources Bureau", + "zh": "深圳市规划和自然资源局" + }, + "authority_level": "government", + "data_url": "https://pnr.sz.gov.cn/xxgk/", + "has_api": false, + "file_path": "china/resources/china-shenzhen-pnr.json", + "geographic_scope": "subnational" + }, + { + "id": "china-sinopec", + "name": { + "en": "China Petrochemical Corporation (Sinopec Group)", + "zh": "中国石油化工集团有限公司" + }, + "authority_level": "government", + "data_url": "http://www.sinopecgroup.com/group/xhtml/shzr/", + "has_api": false, + "file_path": "china/resources/china-sinopec.json", + "geographic_scope": "national" + }, + { + "id": "china-chinacoal", + "name": { + "en": "China National Coal Group Corporation", + "zh": "中国中煤能源集团有限公司" + }, + "authority_level": "government", + "data_url": "https://www.chinacoal.com", + "has_api": false, + "file_path": "china/resources/energy/china-chinacoal.json", + "geographic_scope": "national" + }, + { + "id": "china-csg", + "name": { + "en": "China Southern Power Grid", + "zh": "中国南方电网有限责任公司" + }, + "authority_level": "government", + "data_url": "https://www.csg.cn", + "has_api": false, + "file_path": "china/resources/energy/china-csg.json", + "geographic_scope": "subnational" + }, + { + "id": "china-cace", + "name": { + "en": "China Association of Circular Economy", + "zh": "中国循环经济协会" + }, + "authority_level": "other", + "data_url": "https://www.chinacace.org/patents/cycle_economy_report/", + "has_api": false, + "file_path": "china/resources/environment/china-cace.json", + "geographic_scope": "national" + }, + { + "id": "china-caep", + "name": { + "en": "Chinese Academy of Environmental Planning", + "zh": "生态环境部环境规划院" + }, + "authority_level": "research", + "data_url": "http://www.caep.org.cn", + "has_api": false, + "file_path": "china/resources/environment/china-caep.json", + "geographic_scope": "national" + }, + { + "id": "china-ceads", + "name": { + "en": "Carbon Emission Accounts and Datasets for China (CEADs)", + "zh": "中国碳排放核算数据库(CEADs)" + }, + "authority_level": "research", + "data_url": "https://ceads.net.cn/data/", + "has_api": false, + "file_path": "china/resources/environment/china-ceads.json", + "geographic_scope": "national" + }, + { + "id": "china-cern", + "name": { + "en": "Chinese Ecosystem Research Network (CERN)", + "zh": "中国生态系统研究网络" + }, + "authority_level": "research", + "data_url": "https://cern.ac.cn/0index/index.asp", + "has_api": false, + "file_path": "china/resources/environment/china-cern.json", + "geographic_scope": "national" + }, + { + "id": "china-cigem", + "name": { + "en": "China Institute of Geo-Environment Monitoring", + "zh": "中国地质环境监测院" + }, + "authority_level": "government", + "data_url": "http://www.cigem.cgs.gov.cn/", + "has_api": false, + "file_path": "china/resources/environment/china-cigem.json", + "geographic_scope": "national" + }, + { + "id": "china-cnemc", + "name": { + "en": "China National Environmental Monitoring Centre", + "zh": "中国环境监测总站" + }, + "authority_level": "government", + "data_url": "https://www.cnemc.cn/sssj/", + "has_api": false, + "file_path": "china/resources/environment/china-cnemc.json", + "geographic_scope": "national" + }, + { + "id": "china-cnesa", + "name": { + "en": "China Energy Storage Alliance", + "zh": "中关村储能产业技术联盟" + }, + "authority_level": "other", + "data_url": "https://www.cnesa.org", + "has_api": false, + "file_path": "china/resources/environment/china-cnesa.json", + "geographic_scope": "national" + }, + { + "id": "china-craes", + "name": { + "en": "Chinese Research Academy of Environmental Sciences", + "zh": "中国环境科学研究院" + }, + "authority_level": "research", + "data_url": "https://www.craes.cn", + "has_api": false, + "file_path": "china/resources/environment/china-craes.json", + "geographic_scope": "national" + }, + { + "id": "china-crra", + "name": { + "en": "China Association of Circular Economy", + "zh": "中国再生资源回收利用协会" + }, + "authority_level": "other", + "data_url": "https://www.crra.org.cn", + "has_api": false, + "file_path": "china/resources/environment/china-crra.json", + "geographic_scope": "national" + }, + { + "id": "china-ipe", + "name": { + "en": "Institute of Public & Environmental Affairs", + "zh": "公众环境研究中心" + }, + "authority_level": "research", + "data_url": "https://www.ipe.org.cn/AirMap_fxy/AirMap.html", + "has_api": false, + "file_path": "china/resources/environment/china-ipe.json", + "geographic_scope": "national" + }, + { + "id": "china-mee", + "name": { + "en": "Ministry of Ecology and Environment of China - Environmental Data", + "zh": "生态环境部环境数据" + }, + "authority_level": "government", + "data_url": "https://www.mee.gov.cn/hjzl/", + "has_api": false, + "file_path": "china/resources/environment/china-mee.json", + "geographic_scope": "national" + }, + { + "id": "china-ncsc", + "name": { + "en": "National Center for Climate Change Strategy and International Cooperation", + "zh": "国家应对气候变化战略研究和国际合作中心" + }, + "authority_level": "research", + "data_url": "http://www.ncsc.org.cn", + "has_api": false, + "file_path": "china/resources/environment/china-ncsc.json", + "geographic_scope": "national" + }, + { + "id": "china-ndrcc", + "name": { + "en": "National Disaster Reduction Center of China", + "zh": "国家减灾中心" + }, + "authority_level": "government", + "data_url": "https://www.ndrcc.org.cn/", + "has_api": false, + "file_path": "china/resources/environment/china-ndrcc.json", + "geographic_scope": "national" + }, + { + "id": "china-nesdc", + "name": { + "en": "National Ecosystem Science Data Center", + "zh": "国家生态科学数据中心" + }, + "authority_level": "research", + "data_url": "https://www.nesdc.org.cn", + "has_api": false, + "file_path": "china/resources/environment/china-nesdc.json", + "geographic_scope": "national" + }, + { + "id": "china-nies", + "name": { + "en": "Nanjing Institute of Environmental Sciences, MEE", + "zh": "生态环境部南京环境科学研究所" + }, + "authority_level": "research", + "data_url": "https://www.nies.org", + "has_api": false, + "file_path": "china/resources/environment/china-nies.json", + "geographic_scope": "national" + }, + { + "id": "china-nfga", + "name": { + "en": "National Forestry and Grassland Administration of China", + "zh": "国家林业和草原局" + }, + "authority_level": "government", + "data_url": "https://www.forestry.gov.cn/gjlcj/5462/index.html", + "has_api": false, + "file_path": "china/resources/forestry/china-nfga.json", + "geographic_scope": "national" + }, + { + "id": "china-cgas", + "name": { + "en": "China Geological Survey", + "zh": "中国地质调查局" + }, + "authority_level": "government", + "data_url": "https://www.cgs.gov.cn/", + "has_api": false, + "file_path": "china/resources/mineral/china-cgas.json", + "geographic_scope": "national" + }, + { + "id": "china-chinalco", + "name": { + "en": "Aluminum Corporation of China (Chinalco)", + "zh": "中国铝业集团有限公司" + }, + "authority_level": "commercial", + "data_url": "https://www.chinalco.com.cn", + "has_api": false, + "file_path": "china/resources/mineral/china-chinalco.json", + "geographic_scope": "national" + }, + { + "id": "china-cnia", + "name": { + "en": "China Nonferrous Metals Industry Association", + "zh": "中国有色金属工业协会" + }, + "authority_level": "other", + "data_url": "https://www.chinania.org.cn/html/hangyetongji/chanyeshuju/", + "has_api": false, + "file_path": "china/resources/mineral/china-cnia.json", + "geographic_scope": "national" + }, + { + "id": "china-miit-rare-earth", + "name": { + "en": "MIIT Rare Earth Office - Rare Earth Industry Regulation and Production Quotas", + "zh": "工业和信息化部稀土办公室 - 稀土行业规范与生产配额" + }, + "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": "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", + "geographic_scope": "national" + }, + { + "id": "china-nmsa", + "name": { + "en": "National Mine Safety Administration of China", + "zh": "国家矿山安全监察局" + }, + "authority_level": "government", + "data_url": "https://www.chinamine-safety.gov.cn/zfxxgk/", + "has_api": false, + "file_path": "china/resources/mineral/china-nmsa.json", + "geographic_scope": "national" + }, + { + "id": "china-nmdis", + "name": { + "en": "National Marine Data and Information Service", + "zh": "国家海洋信息中心" + }, + "authority_level": "government", + "data_url": "https://mds.nmdis.org.cn/", + "has_api": false, + "file_path": "china/resources/ocean/china-nmdis.json", + "geographic_scope": "national" + }, + { + "id": "china-nsoas", + "name": { + "en": "National Satellite Ocean Application Service", + "zh": "国家卫星海洋应用中心" + }, + "authority_level": "government", + "data_url": "http://www.nsoas.org.cn", + "has_api": false, + "file_path": "china/resources/ocean/china-nsoas.json", + "geographic_scope": "national" + }, + { + "id": "china-cea", + "name": { + "en": "China Earthquake Administration", + "zh": "中国地震局" + }, + "authority_level": "government", + "data_url": "https://www.cea.gov.cn/cea/dzpd/dzzt/index.html", + "has_api": false, + "file_path": "china/resources/seismology/china-cea.json", + "geographic_scope": "national" + }, + { + "id": "china-cenc", + "name": { + "en": "China Earthquake Networks Center", + "zh": "中国地震台网中心" + }, + "authority_level": "government", + "data_url": "https://www.cenc.ac.cn/", + "has_api": false, + "file_path": "china/resources/seismology/china-cenc.json", + "geographic_scope": "national" + }, + { + "id": "china-ches", + "name": { + "en": "China Hydraulic Engineering Society", + "zh": "中国水利学会" + }, + "authority_level": "research", + "data_url": "http://www.ches.org.cn", + "has_api": false, + "file_path": "china/resources/water/china-ches.json", + "geographic_scope": "national" + }, + { + "id": "china-chinawater", + "name": { + "en": "China Water Resources Portal", + "zh": "中国水利网" + }, + "authority_level": "government", + "data_url": "https://www.chinawater.com.cn", + "has_api": false, + "file_path": "china/resources/water/china-chinawater.json", + "geographic_scope": "national" + }, + { + "id": "china-crsri", + "name": { + "en": "Changjiang River Scientific Research Institute", + "zh": "长江科学院" + }, + "authority_level": "research", + "data_url": "http://www.crsri.cn", + "has_api": false, + "file_path": "china/resources/water/china-crsri.json", + "geographic_scope": "national" + }, + { + "id": "china-hrc", + "name": { + "en": "Huai River Water Resources Commission", + "zh": "水利部淮河水利委员会" + }, + "authority_level": "government", + "data_url": "http://www.hrc.gov.cn", + "has_api": false, + "file_path": "china/resources/water/china-hrc.json", + "geographic_scope": "subnational" + }, + { + "id": "china-hwcc", + "name": { + "en": "Hai River Water Resources Commission", + "zh": "水利部海河水利委员会" + }, + "authority_level": "government", + "data_url": "http://www.hwcc.gov.cn", + "has_api": false, + "file_path": "china/resources/water/china-hwcc.json", + "geographic_scope": "subnational" + }, + { + "id": "china-iwhr", + "name": { + "en": "China Institute of Water Resources and Hydropower Research", + "zh": "中国水利水电科学研究院" + }, + "authority_level": "research", + "data_url": "http://www.iwhr.com/", + "has_api": false, + "file_path": "china/resources/water/china-iwhr.json", + "geographic_scope": "national" + }, + { + "id": "china-mwr", + "name": { + "en": "Ministry of Water Resources of China - Water Resources Statistics", + "zh": "中华人民共和国水利部水资源统计" + }, + "authority_level": "government", + "data_url": "http://www.mwr.gov.cn/sj/", + "has_api": false, + "file_path": "china/resources/water/china-mwr.json", + "geographic_scope": "national" + }, + { + "id": "china-slwr", + "name": { + "en": "Songliao River Water Resources Commission", + "zh": "水利部松辽水利委员会" + }, + "authority_level": "government", + "data_url": "http://www.slwr.gov.cn/gbjb.jhtml", + "has_api": false, + "file_path": "china/resources/water/china-slwr.json", + "geographic_scope": "subnational" + }, + { + "id": "china-yrcc", + "name": { + "en": "Yellow River Conservancy Commission", + "zh": "水利部黄河水利委员会" + }, + "authority_level": "government", + "data_url": "http://www.yrcc.gov.cn", + "has_api": false, + "file_path": "china/resources/water/china-yrcc.json", + "geographic_scope": "subnational" + }, + { + "id": "china-beidou", + "name": { + "en": "BeiDou Navigation Satellite System", + "zh": "北斗卫星导航系统" + }, + "authority_level": "government", + "data_url": "http://www.beidou.gov.cn", + "has_api": false, + "file_path": "china/technology/china-beidou.json", + "geographic_scope": "global" + }, + { + "id": "china-caai", + "name": { + "en": "Chinese Association for Artificial Intelligence", + "zh": "中国人工智能学会" + }, + "authority_level": "research", + "data_url": "https://www.caai.cn/index.php?s=/home/article/lists/category/baokan.html", + "has_api": false, + "file_path": "china/technology/china-caai.json", + "geographic_scope": "national" + }, + { + "id": "china-ccf", + "name": { + "en": "China Computer Federation", + "zh": "中国计算机学会" + }, + "authority_level": "research", + "data_url": "https://www.ccf.org.cn/Academic_Evaluation/By_category/", + "has_api": false, + "file_path": "china/technology/china-ccf.json", + "geographic_scope": "national" + }, + { + "id": "china-cmse", + "name": { + "en": "China Manned Space Engineering Office", + "zh": "中国载人航天工程办公室" + }, + "authority_level": "government", + "data_url": "https://www.cmse.gov.cn", + "has_api": false, + "file_path": "china/technology/china-cmse.json", + "geographic_scope": "national" + }, + { + "id": "china-cnsa", + "name": { + "en": "China National Space Administration", + "zh": "国家航天局" + }, + "authority_level": "government", + "data_url": "https://www.cnsa.gov.cn/n6758823/index.html", + "has_api": false, + "file_path": "china/technology/china-cnsa.json", + "geographic_scope": "national" + }, + { + "id": "china-shenzhen-stic", + "name": { + "en": "Shenzhen Science, Technology and Innovation Commission", + "zh": "深圳市科技创新局" + }, + "authority_level": "government", + "data_url": "https://stic.sz.gov.cn/xxgk/index.html", + "has_api": false, + "file_path": "china/technology/china-shenzhen-stic.json", + "geographic_scope": "subnational" + }, + { + "id": "china-national-data-bureau", + "name": { + "en": "National Data Administration of China", + "zh": "国家数据局" + }, + "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": "china-cagis", + "name": { + "en": "China Association for Geographic Information Industry", + "zh": "中国地理信息产业协会" + }, + "authority_level": "research", + "data_url": "https://www.cagis.org.cn", + "has_api": false, + "file_path": "china/technology/industry-associations/china-cagis.json", + "geographic_scope": "national" + }, + { + "id": "china-sae", + "name": { + "en": "Society of Automotive Engineers of China", + "zh": "中国汽车工程学会" + }, + "authority_level": "research", + "data_url": "https://www.sae-china.org/newsdata/reportdata/", + "has_api": false, + "file_path": "china/technology/industry-associations/china-sae.json", + "geographic_scope": "national" + }, + { + "id": "china-automation-association", + "name": { + "en": "Chinese Association of Automation", + "zh": "中国自动化学会" + }, + "authority_level": "other", + "data_url": "https://www.caa.org.cn/", + "has_api": false, + "file_path": "china/technology/industry_associations/china-automation-association.json", + "geographic_scope": "national" + }, + { + "id": "china-caam", + "name": { + "en": "China Association of Automobile Manufacturers", + "zh": "中国汽车工业协会" + }, + "authority_level": "other", + "data_url": "http://www.caam.org.cn/chn/4/cate_39/index.html", + "has_api": false, + "file_path": "china/technology/industry_associations/china-caam.json", + "geographic_scope": "national" + }, + { + "id": "china-caamm", + "name": { + "en": "China Association of Agricultural Machinery Manufacturers", + "zh": "中国农业机械工业协会" + }, + "authority_level": "other", + "data_url": "http://www.caamm.org.cn/member/qytj.jspx", + "has_api": false, + "file_path": "china/technology/industry_associations/china-caamm.json", + "geographic_scope": "national" + }, + { + "id": "china-cec", + "name": { + "en": "China Electricity Council", + "zh": "中国电力企业联合会" + }, + "authority_level": "other", + "data_url": "https://www.cec.org.cn/detail/index.html?3-302929", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cec.json", + "geographic_scope": "national" + }, + { + "id": "china-cecc", + "name": { + "en": "China Electronics Chamber of Commerce", + "zh": "中国电子商会" + }, + "authority_level": "other", + "data_url": "http://www.cecc.org.cn/hangye/", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cecc.json", + "geographic_scope": "national" + }, + { + "id": "china-cemia", + "name": { + "en": "China Electronic Materials Industry Association", + "zh": "中国电子材料行业协会" + }, + "authority_level": "other", + "data_url": "http://www.cemia.org.cn", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cemia.json", + "geographic_scope": "national" + }, + { + "id": "china-ces", + "name": { + "en": "China Electrotechnical Society", + "zh": "中国电工技术学会" + }, + "authority_level": "research", + "data_url": "https://www.ces.org.cn", + "has_api": false, + "file_path": "china/technology/industry_associations/china-ces.json", + "geographic_scope": "national" + }, + { + "id": "china-ciesc", + "name": { + "en": "Chemical Industry and Engineering Society of China", + "zh": "中国化工学会" + }, + "authority_level": "research", + "data_url": "https://www.ciesc.cn", + "has_api": false, + "file_path": "china/technology/industry_associations/china-ciesc.json", + "geographic_scope": "national" + }, + { + "id": "china-ciia", + "name": { + "en": "China Information Association", + "zh": "中国信息协会" + }, + "authority_level": "other", + "data_url": "https://www.ciia.org.cn", + "has_api": false, + "file_path": "china/technology/industry_associations/china-ciia.json", + "geographic_scope": "national" + }, + { + "id": "china-cima", + "name": { + "en": "China Instrumentation and Measurement Society", + "zh": "中国仪器仪表行业协会" + }, + "authority_level": "other", + "data_url": "http://www.cima.org.cn", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cima.json", + "geographic_scope": "national" + }, + { + "id": "china-cisa", + "name": { + "en": "China Iron and Steel Association", + "zh": "中国钢铁工业协会" + }, + "authority_level": "other", + "data_url": "https://www.chinaisa.org.cn/gxportal/xfgl/portal/index.html", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cisa.json", + "geographic_scope": "national" + }, + { + "id": "china-cmes", + "name": { + "en": "Chinese Mechanical Engineering Society", + "zh": "中国机械工程学会" + }, + "authority_level": "research", + "data_url": "https://www.cmes.org", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cmes.json", + "geographic_scope": "national" + }, + { + "id": "china-cnfia", + "name": { + "en": "China National Food Industry Association", + "zh": "中国食品工业协会" + }, + "authority_level": "other", + "data_url": "https://www.cnfia.cn/archives/category/hangyetongji", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cnfia.json", + "geographic_scope": "national" + }, + { + "id": "china-cntac", + "name": { + "en": "China National Textile and Apparel Council", + "zh": "中国纺织工业联合会" + }, + "authority_level": "other", + "data_url": "https://www.cntac.org.cn/jinghua", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cntac.json", + "geographic_scope": "national" + }, + { + "id": "china-cpcif", + "name": { + "en": "China Petroleum and Chemical Industry Federation", + "zh": "中国石油和化学工业联合会" + }, + "authority_level": "other", + "data_url": "http://www.cpcif.org.cn/list/stats", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cpcif.json", + "geographic_scope": "national" + }, + { + "id": "china-cpia", + "name": { + "en": "China Photovoltaic Industry Association", + "zh": "中国光伏行业协会" + }, + "authority_level": "other", + "data_url": "https://www.chinapv.org.cn/StaticPage/association_page1.html", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cpia.json", + "geographic_scope": "national" + }, + { + "id": "china-csee", + "name": { + "en": "Chinese Society for Electrical Engineering", + "zh": "中国电机工程学会" + }, + "authority_level": "research", + "data_url": "https://www.csee.org.cn/", + "has_api": false, + "file_path": "china/technology/industry_associations/china-csee.json", + "geographic_scope": "national" + }, + { + "id": "china-csm", + "name": { + "en": "Chinese Society for Metals", + "zh": "中国金属学会" + }, + "authority_level": "research", + "data_url": "https://www.csm.org.cn", + "has_api": false, + "file_path": "china/technology/industry_associations/china-csm.json", + "geographic_scope": "national" + }, + { + "id": "china-csre", + "name": { + "en": "China Society of Rare Earths", + "zh": "中国稀土学会" + }, + "authority_level": "other", + "data_url": "http://www.cs-re.org.cn/c50", + "has_api": false, + "file_path": "china/technology/industry_associations/china-csre.json", + "geographic_scope": "national" + }, + { + "id": "china-cwea", + "name": { + "en": "Chinese Wind Energy Association", + "zh": "中国可再生能源学会风能专业委员会" + }, + "authority_level": "other", + "data_url": "http://www.cwea.org.cn/news_lastest.html", + "has_api": false, + "file_path": "china/technology/industry_associations/china-cwea.json", + "geographic_scope": "national" + }, + { + "id": "china-isc", + "name": { + "en": "Internet Society of China", + "zh": "中国互联网协会" + }, + "authority_level": "other", + "data_url": "https://www.isc.org.cn/yanjiu/index.html", + "has_api": false, + "file_path": "china/technology/industry_associations/china-isc.json", + "geographic_scope": "national" + }, + { + "id": "china-cnipa-patents", + "name": { + "en": "China National Intellectual Property Administration - Patent Statistics", + "zh": "国家知识产权局专利统计" + }, + "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": "china-ctmo", + "name": { + "en": "China Trademark Office (CNIPA Trademark Bureau)", + "zh": "国家知识产权局商标局" + }, + "authority_level": "government", + "data_url": "https://sbj.cnipa.gov.cn", + "has_api": false, + "file_path": "china/technology/intellectual_property/china-ctmo.json", + "geographic_scope": "national" + }, + { + "id": "china-cac", + "name": { + "en": "Cyberspace Administration of China", + "zh": "国家互联网信息办公室" + }, + "authority_level": "government", + "data_url": "https://www.cac.gov.cn/wxzw/sjzl/A093708index_1.htm", + "has_api": false, + "file_path": "china/technology/internet/china-cac.json", + "geographic_scope": "national" + }, + { + "id": "china-cncert", + "name": { + "en": "National Computer Network Emergency Response Technical Team/Coordination Center of China", + "zh": "国家互联网应急中心" + }, + "authority_level": "government", + "data_url": "https://www.cert.org.cn/publish/main/45/index.html", + "has_api": false, + "file_path": "china/technology/internet/china-cncert.json", + "geographic_scope": "national" + }, + { + "id": "china-cinic", + "name": { + "en": "China Internet Network Information Center", + "zh": "中国互联网络信息中心", + "native": "中国互联网络信息中心" + }, + "authority_level": "government", + "data_url": "https://www.cnnic.cn/11/38/326/index.html", + "has_api": false, + "file_path": "china/technology/internet/cnnic.json", + "geographic_scope": "national" + }, + { + "id": "china-most-infrastructure", + "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, + "file_path": "china/technology/sci_resources/china-most-infrastructure.json", + "geographic_scope": "national" + }, + { + "id": "china-most-rnd", + "name": { + "en": "National Key R&D Program of China - Industrial Software and 16 Key Special Projects", + "zh": "国家重点研发计划 - 工业软件专项及16个重点专项" + }, + "authority_level": "government", + "data_url": "https://service.most.gov.cn/", + "has_api": false, + "file_path": "china/technology/sci_resources/china-most-rnd.json", + "geographic_scope": "national" + }, + { + "id": "china-naoc", + "name": { + "en": "National Astronomical Observatories of China (NAOC)", + "zh": "中国科学院国家天文台" + }, + "authority_level": "research", + "data_url": "https://nadc.china-vo.org", + "has_api": false, + "file_path": "china/technology/sci_resources/china-naoc.json", + "geographic_scope": "national" + }, + { + "id": "china-cnis", + "name": { + "en": "China National Institute of Standardization", + "zh": "中国标准化研究院" + }, + "authority_level": "government", + "data_url": "https://www.cnis.ac.cn/kycg/", + "has_api": false, + "file_path": "china/technology/standards/china-cnis.json", + "geographic_scope": "national" + }, + { + "id": "china-csa", + "name": { + "en": "China Association for Standardization", + "zh": "中国标准化协会" + }, + "authority_level": "other", + "data_url": "https://www.china-cas.org", + "has_api": false, + "file_path": "china/technology/standards/china-csa.json", + "geographic_scope": "national" + }, + { + "id": "china-nim", + "name": { + "en": "National Institute of Metrology China", + "zh": "中国计量科学研究院" + }, + "authority_level": "government", + "data_url": "https://www.nim.ac.cn/nim_time", + "has_api": false, + "file_path": "china/technology/standards/china-nim.json", + "geographic_scope": "national" + }, + { + "id": "china-openstd", + "name": { + "en": "China National Standards Full Text Public Access System", + "zh": "国家标准全文公开系统" + }, + "authority_level": "government", + "data_url": "https://openstd.samr.gov.cn/", + "has_api": false, + "file_path": "china/technology/standards/china-openstd.json", + "geographic_scope": "national" + }, + { + "id": "china-sac-standards", + "name": { + "en": "Standardization Administration of China (SAC)", + "zh": "国家标准化管理委员会" + }, + "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": "china-ccsa", + "name": { + "en": "China Communication Standards Association", + "zh": "中国通信标准化协会" + }, + "authority_level": "other", + "data_url": "https://www.ccsa.org.cn/webadmin/", + "has_api": false, + "file_path": "china/technology/telecommunications/china-ccsa.json", + "geographic_scope": "national" + }, + { + "id": "china-miit", + "name": { + "en": "Ministry of Industry and Information Technology of the People's Republic of China", + "zh": "中华人民共和国工业和信息化部" + }, + "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": "china-tower", + "name": { + "en": "China Tower Corporation", + "zh": "中国铁塔股份有限公司" + }, + "authority_level": "commercial", + "data_url": "https://ir.china-tower.com/sc/ir/reports.php", + "has_api": false, + "file_path": "china/technology/telecommunications/china-tower.json", + "geographic_scope": "national" + }, + { + "id": "china-cgs", + "name": { + "en": "China Geological Survey (CGS)", + "zh": "中国地质调查局" + }, + "authority_level": "government", + "data_url": "https://geocloud.cgs.gov.cn", + "has_api": false, + "file_path": "countries/cn/geology/cgs.json", + "geographic_scope": "national" + }, + { + "id": "unfpa-china", + "name": { + "en": "UNFPA China", + "zh": "联合国人口基金驻华代表处" + }, + "authority_level": "international", + "data_url": "https://china.unfpa.org/en/publications", + "has_api": false, + "file_path": "international/demographics/unfpa-china.json", + "geographic_scope": "national" + }, + { + "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, + "file_path": "sectors/B-mining/rare-earth/china-rare-earth-association.json", + "geographic_scope": "national" + }, + { + "id": "china-additive-manufacturing-alliance", + "name": { + "en": "China Additive Manufacturing Alliance", + "zh": "中国增材制造产业联盟" + }, + "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", + "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-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", + "geographic_scope": "national" + }, + { + "id": "china-petroleum-chemical-federation", + "name": { + "en": "China Petroleum and Chemical Industry Federation", + "zh": "中国石油和化学工业联合会" + }, + "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": "china-lcd-association", + "name": { + "en": "China Optoelectronic Display Association - Liquid Crystal Division (CODA)", + "zh": "中国光学光电子行业协会液晶分会" + }, + "authority_level": "market", + "data_url": "https://www.coda.org.cn", + "has_api": false, + "file_path": "sectors/C-manufacturing/electronics/china-lcd-association.json", + "geographic_scope": "national" + }, + { + "id": "china-optical-association", + "name": { + "en": "China Optics and Optoelectronics Manufacturers Association", + "zh": "中国光学光电子行业协会" + }, + "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-semiconductor-association", + "name": { + "en": "China Semiconductor Industry Association", + "zh": "中国半导体行业协会" + }, + "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": "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", + "geographic_scope": "national" + }, + { + "id": "china-robot-industry-alliance", + "name": { + "en": "Robot Branch of China Machinery Industry Federation", + "zh": "中国机械工业联合会机器人分会" + }, + "authority_level": "market", + "data_url": "https://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": "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", + "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": "hundsun-juyuan", + "name": { + "en": "Hundsun JuYuan Financial Data", + "zh": "恒生聚源金融数据" + }, + "authority_level": "commercial", + "data_url": "https://gildata.hs.net/", + "has_api": true, + "file_path": "sectors/K-finance-insurance/hundsun-juyuan.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" + }, + { + "id": "joinquant", + "name": { + "zh": "聚宽量化交易平台", + "en": "JoinQuant Quantitative Trading Platform" + }, + "authority_level": "commercial", + "data_url": "https://www.joinquant.com/data", + "has_api": true, + "file_path": "sectors/finance_markets/joinquant.json", + "geographic_scope": "national" + } + ], + "CO": [ + { + "id": "colombia-dane", + "name": { + "en": "National Administrative Department of Statistics (DANE)", + "zh": "哥伦比亚国家统计局", + "native": "Departamento Administrativo Nacional de Estadística (DANE)" + }, + "authority_level": "government", + "data_url": "https://www.dane.gov.co/index.php/estadisticas-por-tema", + "has_api": true, + "file_path": "countries/south-america/colombia/colombia-dane.json", + "geographic_scope": "national" + } + ], + "CZ": [ + { + "id": "czechia-czso", + "name": { + "en": "Czech Statistical Office (CZSO)", + "zh": "捷克统计局" + }, + "authority_level": "government", + "data_url": "https://vdb.czso.cz", + "has_api": true, + "file_path": "countries/europe/czechia/czechia-czso.json", + "geographic_scope": "national" + } + ], + "DE": [ + { + "id": "germany-destatis", + "name": { + "en": "Federal Statistical Office of Germany (Destatis)", + "zh": "德国联邦统计局", + "native": "Statistisches Bundesamt (Destatis)" + }, + "authority_level": "government", + "data_url": "https://www.destatis.de/EN/Themes/_node.html", + "has_api": true, + "file_path": "countries/europe/germany/germany-destatis.json", + "geographic_scope": "national" + } + ], + "DK": [ + { + "id": "denmark-dst", + "name": { + "en": "Statistics Denmark", + "zh": "丹麦统计局", + "native": "Danmarks Statistik" + }, + "authority_level": "government", + "data_url": "https://www.dst.dk/en/Statistik", + "has_api": true, + "file_path": "countries/europe/dk/denmark-dst.json", + "geographic_scope": "national" + } + ], + "EG": [ + { + "id": "egypt-capmas", + "name": { + "en": "Central Agency for Public Mobilization and Statistics (CAPMAS)", + "zh": "埃及中央公共动员与统计局" + }, + "authority_level": "government", + "data_url": "https://www.capmas.gov.eg/Pages/Publications.aspx", + "has_api": false, + "file_path": "countries/africa/egypt/egypt-capmas.json", + "geographic_scope": "national" + } + ], + "ES": [ + { + "id": "spain-ine", + "name": { + "en": "National Statistics Institute of Spain", + "zh": "西班牙国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.ine.es/dyngs/INEbase/listaoperaciones.htm", + "has_api": true, + "file_path": "countries/europe/spain/spain-ine.json", + "geographic_scope": "national" + } + ], + "FI": [ + { + "id": "finland-stat", + "name": { + "en": "Statistics Finland", + "zh": "芬兰统计局", + "native": "Tilastokeskus" + }, + "authority_level": "government", + "data_url": "https://pxdata.stat.fi/PxWeb/pxweb/en/StatFin/", + "has_api": true, + "file_path": "countries/europe/finland/finland-stat.json", + "geographic_scope": "national" + } + ], + "FR": [ + { + "id": "france-insee", + "name": { + "en": "INSEE - National Institute of Statistics and Economic Studies", + "zh": "法国国家统计与经济研究所", + "native": "Institut national de la statistique et des études économiques" + }, + "authority_level": "government", + "data_url": "https://www.insee.fr/en/statistiques", + "has_api": true, + "file_path": "countries/europe/fr/france-insee.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": "bank-of-england-statistics", + "name": { + "en": "Bank of England Statistical Database", + "zh": "英格兰银行统计数据库" + }, + "authority_level": "government", + "data_url": "https://www.bankofengland.co.uk/boeapps/database/", + "has_api": true, + "file_path": "countries/europe/bank-of-england-statistics.json", + "geographic_scope": "national" + }, + { + "id": "uk-boe", + "name": { + "en": "Bank of England Statistical Interactive Database", + "zh": "英格兰银行统计数据库" + }, + "authority_level": "government", + "data_url": "https://www.bankofengland.co.uk/boeapps/database/", + "has_api": false, + "file_path": "countries/europe/uk/bank-of-england.json", + "geographic_scope": "national" + }, + { + "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", + "geographic_scope": "national" + }, + { + "id": "uk-met-office", + "name": { + "en": "UK Met Office", + "zh": "英国气象局" + }, + "authority_level": "government", + "data_url": "https://www.metoffice.gov.uk/research/climate/maps-and-data", + "has_api": true, + "file_path": "countries/europe/uk/uk-met-office.json", + "geographic_scope": "national" + }, + { + "id": "uk-ons-cpi-rpi", + "name": { + "en": "UK Office for National Statistics - Consumer Price Index and Retail Prices Index", + "zh": "英国国家统计局 - 消费者价格指数和零售价格指数" + }, + "authority_level": "government", + "data_url": "https://www.ons.gov.uk/economy/inflationandpriceindices", + "has_api": false, + "file_path": "countries/europe/uk-ons-cpi-rpi.json", + "geographic_scope": "national" + } + ], + "GH": [ + { + "id": "ghana-gss", + "name": { + "en": "Ghana Statistical Service", + "zh": "加纳统计局" + }, + "authority_level": "government", + "data_url": "https://statsghana.gov.gh/data-statistics/economic-statistics", + "has_api": false, + "file_path": "countries/africa/ghana/ghana-gss.json", + "geographic_scope": "national" + } + ], + "GR": [ + { + "id": "greece-elstat", + "name": { + "en": "Hellenic Statistical Authority (ELSTAT)", + "zh": "希腊统计局", + "native": "Ελληνική Στατιστική Αρχή (ΕΛΣΤΑΤ)" + }, + "authority_level": "government", + "data_url": "https://www.statistics.gr/en/statistics", + "has_api": false, + "file_path": "countries/europe/greece/greece-elstat.json", + "geographic_scope": "national" + } + ], + "HK": [ + { + "id": "hk-companies-registry", + "name": { + "en": "Hong Kong Companies Registry", + "zh": "香港公司注册处" + }, + "authority_level": "government", + "data_url": "https://www.cr.gov.hk/en/services/obtain-company-info.htm", + "has_api": false, + "file_path": "countries/asia/hk-companies-registry.json", + "geographic_scope": "national" + }, + { + "id": "hk-sfc", + "name": { + "en": "Securities and Futures Commission of Hong Kong", + "zh": "香港证券及期货事务监察委员会" + }, + "authority_level": "government", + "data_url": "https://www.sfc.hk/en/Regulatory-functions/Products", + "has_api": false, + "file_path": "countries/asia/hk-sfc.json", + "geographic_scope": "national" + }, + { + "id": "hkma", + "name": { + "en": "Hong Kong Monetary Authority", + "zh": "香港金融管理局" + }, + "authority_level": "government", + "data_url": "https://www.hkma.gov.hk/eng/data-publications-and-research/data-and-statistics/", + "has_api": true, + "file_path": "countries/asia/hkma.json", + "geographic_scope": "national" + } + ], + "HR": [ + { + "id": "croatia-dzs", + "name": { + "en": "Croatian Bureau of Statistics (DZS)", + "zh": "克罗地亚统计局" + }, + "authority_level": "government", + "data_url": "https://dzs.gov.hr/en/data-and-statistics", + "has_api": false, + "file_path": "countries/europe/croatia/croatia-dzs.json", + "geographic_scope": "national" + } + ], + "HU": [ + { + "id": "hungary-ksh", + "name": { + "en": "Hungarian Central Statistical Office", + "zh": "匈牙利中央统计局" + }, + "authority_level": "government", + "data_url": "https://www.ksh.hu/engstadat", + "has_api": true, + "file_path": "countries/europe/hungary/hungary-ksh.json", + "geographic_scope": "national" + } + ], + "ID": [ + { + "id": "indonesia-bps", + "name": { + "en": "Statistics Indonesia (BPS)", + "zh": "印度尼西亚中央统计局", + "native": "Badan Pusat Statistik" + }, + "authority_level": "government", + "data_url": "https://www.bps.go.id/en/statistics-table", + "has_api": true, + "file_path": "countries/asia/indonesia/indonesia-bps.json", + "geographic_scope": "national" + } + ], + "IE": [ + { + "id": "ireland-cso", + "name": { + "en": "Central Statistics Office (CSO)", + "zh": "爱尔兰中央统计局" + }, + "authority_level": "government", + "data_url": "https://data.cso.ie", + "has_api": true, + "file_path": "countries/europe/ireland/ireland-cso.json", + "geographic_scope": "national" + } + ], + "IN": [ + { + "id": "india-dgcis", + "name": { + "en": "Directorate General of Commercial Intelligence and Statistics", + "zh": "印度商业情报与统计总局" + }, + "authority_level": "government", + "data_url": "https://www.commerce.gov.in/trade-statistics/", + "has_api": false, + "file_path": "countries/asia/india/india-dgcis.json", + "geographic_scope": "national" + }, + { + "id": "india-mospi", + "name": { + "en": "Ministry of Statistics and Programme Implementation (MoSPI)", + "zh": "印度统计与计划实施部", + "native": "सांख्यिकी और कार्यक्रम कार्यान्वयन मंत्रालय" + }, + "authority_level": "government", + "data_url": "https://mospi.gov.in/data", + "has_api": false, + "file_path": "countries/asia/india/india-mospi.json", + "geographic_scope": "national" + }, + { + "id": "india-rbi", + "name": { + "en": "Reserve Bank of India", + "zh": "印度储备银行", + "native": "भारतीय रिज़र्व बैंक" + }, + "authority_level": "government", + "data_url": "https://www.rbi.org.in/Scripts/Statistics.aspx", + "has_api": true, + "file_path": "countries/asia/india/india-rbi.json", + "geographic_scope": "national" + }, + { + "id": "india-meity", + "name": { + "en": "Ministry of Electronics and Information Technology of India", + "zh": "印度电子和信息技术部" + }, + "authority_level": "government", + "data_url": "https://www.meity.gov.in/content/annual-report", + "has_api": false, + "file_path": "india/technology/india-meity.json", + "geographic_scope": "national" + } + ], + "IT": [ + { + "id": "italy-istat", + "name": { + "en": "Italian National Institute of Statistics", + "zh": "意大利国家统计局" + }, + "authority_level": "government", + "data_url": "https://esploradati.istat.it/databrowser/", + "has_api": true, + "file_path": "countries/europe/italy/italy-istat.json", + "geographic_scope": "national" + } + ], + "JP": [ + { + "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", + "geographic_scope": "national" + }, + { + "id": "japan-esri", + "name": { + "en": "Economic and Social Research Institute, Cabinet Office of Japan", + "zh": "日本内阁府经济社会综合研究所" + }, + "authority_level": "government", + "data_url": "https://www.esri.cao.go.jp/en/sna/menu.html", + "has_api": false, + "file_path": "countries/asia/japan/japan-esri.json", + "geographic_scope": "national" + }, + { + "id": "japan-estat", + "name": { + "en": "Japan e-Stat (Portal Site of Official Statistics)", + "zh": "日本统计局 e-Stat(政府统计综合窗口)", + "native": "政府統計の総合窓口 e-Stat" + }, + "authority_level": "government", + "data_url": "https://www.e-stat.go.jp/en/stat-search", + "has_api": true, + "file_path": "countries/asia/japan/japan-estat.json", + "geographic_scope": "national" + }, + { + "id": "japan-fsa", + "name": { + "en": "Japan Financial Services Agency", + "zh": "日本金融厅" + }, + "authority_level": "government", + "data_url": "https://www.fsa.go.jp/en/refer/index.html", + "has_api": false, + "file_path": "countries/asia/japan/japan-fsa.json", + "geographic_scope": "national" + }, + { + "id": "japan-gpif", + "name": { + "en": "Government Pension Investment Fund", + "zh": "日本政府养老投资基金" + }, + "authority_level": "government", + "data_url": "https://www.gpif.go.jp/en/performance/", + "has_api": false, + "file_path": "countries/asia/japan/japan-gpif.json", + "geographic_scope": "national" + }, + { + "id": "japan-jetro", + "name": { + "en": "Japan External Trade Organization", + "zh": "日本贸易振兴机构", + "native": "日本貿易振興機構" + }, + "authority_level": "government", + "data_url": "https://www.jetro.go.jp/en/reports/statistics.html", + "has_api": false, + "file_path": "countries/asia/japan/japan-jetro.json", + "geographic_scope": "national" + }, + { + "id": "japan-jma", + "name": { + "en": "Japan Meteorological Agency", + "zh": "日本气象厅" + }, + "authority_level": "government", + "data_url": "https://www.data.jma.go.jp/risk/obsdl/index.php", + "has_api": false, + "file_path": "countries/asia/japan/japan-jma.json", + "geographic_scope": "national" + }, + { + "id": "japan-meti", + "name": { + "en": "Ministry of Economy, Trade and Industry (Japan)", + "zh": "日本经济产业省", + "native": "経済産業省" + }, + "authority_level": "government", + "data_url": "https://www.meti.go.jp/english/statistics/index.html", + "has_api": false, + "file_path": "countries/asia/japan/japan-meti.json", + "geographic_scope": "national" + }, + { + "id": "japan-mof", + "name": { + "en": "Ministry of Finance Japan", + "zh": "日本财务省" + }, + "authority_level": "government", + "data_url": "https://www.customs.go.jp/toukei/info/index_e.htm", + "has_api": false, + "file_path": "countries/asia/japan/japan-mof.json", + "geographic_scope": "national" + }, + { + "id": "jpx", + "name": { + "en": "Japan Exchange Group", + "zh": "日本交易所集团" + }, + "authority_level": "market", + "data_url": "https://www.jpx.co.jp/english/markets/statistics-equities/index.html", + "has_api": false, + "file_path": "countries/asia/japan/jpx.json", + "geographic_scope": "national" + }, + { + "id": "japan-customs", + "name": { + "en": "Japan Customs Trade Statistics", + "zh": "日本财务省贸易统计", + "native": "貿易統計" + }, + "authority_level": "government", + "data_url": "https://www.customs.go.jp/toukei/info/index_e.htm", + "has_api": true, + "file_path": "japan/trade/japan-customs.json", + "geographic_scope": "national" + } + ], + "KE": [ + { + "id": "kenya-knbs", + "name": { + "en": "Kenya National Bureau of Statistics", + "zh": "肯尼亚国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.knbs.or.ke/publications/", + "has_api": false, + "file_path": "countries/africa/kenya/kenya-knbs.json", + "geographic_scope": "national" + } + ], + "KH": [ + { + "id": "cambodia-nis", + "name": { + "en": "National Institute of Statistics of Cambodia (NIS)", + "zh": "柬埔寨国家统计局" + }, + "authority_level": "government", + "data_url": "https://camstat.nis.gov.kh/", + "has_api": false, + "file_path": "countries/asia/cambodia/cambodia-nis.json", + "geographic_scope": "national" + } + ], + "KR": [ + { + "id": "korea-bok", + "name": { + "en": "Bank of Korea", + "zh": "韩国银行", + "native": "한국은행" + }, + "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", + "geographic_scope": "national" + }, + { + "id": "kostat-cpi", + "name": { + "en": "Statistics Korea (KOSTAT) - Consumer Price Index", + "zh": "韩国统计局 - 消费者物价指数", + "ko": "통계청 - 소비자물가지수" + }, + "authority_level": "government", + "data_url": "https://kosis.kr/eng/", + "has_api": true, + "file_path": "countries/asia/kostat-cpi.json", + "geographic_scope": "national" + }, + { + "id": "kostat", + "name": { + "en": "Statistics Korea (KOSTAT)", + "zh": "韩国统计厅" + }, + "authority_level": "government", + "data_url": "https://kosis.kr/eng/", + "has_api": true, + "file_path": "countries/asia/kostat.json", + "geographic_scope": "national" + }, + { + "id": "korea-kostat", + "name": { + "en": "Statistics Korea (KOSTAT)", + "zh": "韩国统计厅" + }, + "authority_level": "government", + "data_url": "https://kosis.kr/eng/", + "has_api": true, + "file_path": "countries/asia/south-korea/korea-kostat.json", + "geographic_scope": "national" + } + ], + "LA": [ + { + "id": "laos-lsb", + "name": { + "en": "Lao Statistics Bureau (LSB)", + "zh": "老挝统计局" + }, + "authority_level": "government", + "data_url": "https://laosis.lsb.gov.la/", + "has_api": false, + "file_path": "countries/asia/laos/laos-lsb.json", + "geographic_scope": "national" + } + ], + "MM": [ + { + "id": "myanmar-cso", + "name": { + "en": "Central Statistical Organization (Myanmar)", + "zh": "缅甸中央统计局" + }, + "authority_level": "government", + "data_url": "https://www.csostat.gov.mm", + "has_api": false, + "file_path": "countries/asia/myanmar/myanmar-cso.json", + "geographic_scope": "national" + } + ], + "MX": [ + { + "id": "mx-banxico", + "name": { + "en": "Bank of Mexico Economic Information System", + "zh": "墨西哥银行经济信息系统", + "native": "Sistema de Información Económica - Banco de México" + }, + "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": "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" + }, + { + "id": "mexico-inegi", + "name": { + "en": "National Institute of Statistics and Geography (INEGI)", + "zh": "墨西哥国家统计和地理研究所", + "native": "Instituto Nacional de Estadística y Geografía (INEGI)" + }, + "authority_level": "government", + "data_url": "https://www.inegi.org.mx/datos/", + "has_api": true, + "file_path": "countries/north-america/mexico/mexico-inegi.json", + "geographic_scope": "national" + } + ], + "MY": [ + { + "id": "dosm", + "name": { + "en": "Department of Statistics Malaysia", + "zh": "马来西亚统计局" + }, + "authority_level": "government", + "data_url": "https://open.dosm.gov.my/", + "has_api": true, + "file_path": "countries/asia/dosm.json", + "geographic_scope": "national" + }, + { + "id": "malaysia-dosm", + "name": { + "en": "Department of Statistics Malaysia (DOSM)", + "zh": "马来西亚统计局" + }, + "authority_level": "government", + "data_url": "https://open.dosm.gov.my/", + "has_api": true, + "file_path": "countries/asia/malaysia/malaysia-dosm.json", + "geographic_scope": "national" + } + ], + "NG": [ + { + "id": "nigeria-nbs", + "name": { + "en": "National Bureau of Statistics Nigeria (NBS)", + "zh": "尼日利亚国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.nigerianstat.gov.ng/elibrary", + "has_api": false, + "file_path": "countries/africa/nigeria/nigeria-nbs.json", + "geographic_scope": "national" + } + ], + "NL": [ + { + "id": "netherlands-cbs", + "name": { + "en": "Statistics Netherlands (CBS)", + "zh": "荷兰统计局" + }, + "authority_level": "government", + "data_url": "https://opendata.cbs.nl/statline/", + "has_api": true, + "file_path": "countries/europe/netherlands/netherlands-cbs.json", + "geographic_scope": "national" + } + ], + "NO": [ + { + "id": "norway-ssb", + "name": { + "en": "Statistics Norway (SSB)", + "zh": "挪威统计局", + "native": "Statistisk sentralbyrå (SSB)" + }, + "authority_level": "government", + "data_url": "https://www.ssb.no/en/statbank", + "has_api": true, + "file_path": "countries/europe/norway/norway-ssb.json", + "geographic_scope": "national" + } + ], + "NZ": [ + { + "id": "nz-stats", + "name": { + "en": "Statistics New Zealand (Stats NZ)", + "zh": "新西兰统计局" + }, + "authority_level": "government", + "data_url": "https://infoshare.stats.govt.nz", + "has_api": false, + "file_path": "countries/oceania/new-zealand/nz-stats.json", + "geographic_scope": "national" + } + ], + "PE": [ + { + "id": "peru-inei", + "name": { + "en": "National Institute of Statistics and Informatics of Peru (INEI)", + "zh": "秘鲁国家统计和信息学研究所" + }, + "authority_level": "government", + "data_url": "https://www.inei.gob.pe/estadisticas/", + "has_api": false, + "file_path": "countries/south-america/peru/peru-inei.json", + "geographic_scope": "national" + } + ], + "PH": [ + { + "id": "philippines-psa", + "name": { + "en": "Philippine Statistics Authority", + "zh": "菲律宾统计局" + }, + "authority_level": "government", + "data_url": "https://openstat.psa.gov.ph", + "has_api": false, + "file_path": "countries/asia/philippines/psa.json", + "geographic_scope": "national" + } + ], + "PL": [ + { + "id": "poland-gus", + "name": { + "en": "Statistics Poland (GUS)", + "zh": "波兰中央统计局", + "native": "Główny Urząd Statystyczny" + }, + "authority_level": "government", + "data_url": "https://bdl.stat.gov.pl/BDL/start", + "has_api": true, + "file_path": "countries/europe/poland/poland-gus.json", + "geographic_scope": "national" + } + ], + "PT": [ + { + "id": "portugal-ine", + "name": { + "en": "Statistics Portugal (INE)", + "zh": "葡萄牙国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.ine.pt/xportal/xmain?xpid=INE&xpgid=ine_base_dados", + "has_api": true, + "file_path": "countries/europe/portugal/portugal-ine.json", + "geographic_scope": "national" + } + ], + "RO": [ + { + "id": "romania-bnr", + "name": { + "en": "National Bank of Romania (BNR)", + "zh": "罗马尼亚国家银行" + }, + "authority_level": "government", + "data_url": "https://www.bnr.ro/Statistics-702.aspx", + "has_api": true, + "file_path": "countries/europe/romania/romania-bnr.json", "geographic_scope": "national" }, { - "id": "china-software-association", + "id": "romania-bvb", "name": { - "en": "China Software Industry Association", - "zh": "中国软件行业协会" + "en": "Bucharest Stock Exchange", + "zh": "布加勒斯特证券交易所" }, "authority_level": "market", - "data_url": "https://www.csia.org.cn/", + "data_url": "https://www.bvb.ro/FinancialInstruments/Markets/Shares", "has_api": false, - "file_path": "sectors/J-information-communication/china-software-association.json", + "file_path": "countries/europe/romania/romania-bvb.json", "geographic_scope": "national" }, { - "id": "china-instrument-society", + "id": "romania-ins", "name": { - "en": "China Instrument and Control Society", - "zh": "中国仪器仪表学会" + "en": "National Institute of Statistics (Romania)", + "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", + "authority_level": "government", + "data_url": "https://insse.ro/cms/en/statistici-2", + "has_api": true, + "file_path": "countries/europe/romania/romania-ins.json", "geographic_scope": "national" } ], - "GB": [ + "RU": [ { - "id": "uk-biobank", + "id": "russia-rosstat", "name": { - "en": "UK Biobank", - "zh": "英国生物样本库" + "en": "Federal State Statistics Service (Rosstat)", + "zh": "俄罗斯联邦统计局", + "native": "Федеральная служба государственной статистики (Росстат)" }, - "authority_level": "research", - "data_url": "https://www.ukbiobank.ac.uk/", + "authority_level": "government", + "data_url": "https://rosstat.gov.ru/statistics", "has_api": true, - "file_path": "academic/biology/uk-biobank.json", + "file_path": "countries/europe/russia/russia-rosstat.json", "geographic_scope": "national" - }, + } + ], + "SA": [ { - "id": "uk-boe", + "id": "saudi-gastat", "name": { - "en": "Bank of England Statistical Interactive Database", - "zh": "英格兰银行统计数据库" + "en": "General Authority for Statistics (GASTAT)", + "zh": "沙特阿拉伯统计总局" }, "authority_level": "government", - "data_url": "https://www.bankofengland.co.uk/boeapps/database/", + "data_url": "https://www.stats.gov.sa/statistics", "has_api": false, - "file_path": "countries/europe/uk/bank-of-england.json", + "file_path": "countries/asia/saudi-arabia/saudi-gastat.json", + "geographic_scope": "national" + } + ], + "SE": [ + { + "id": "sweden-scb", + "name": { + "en": "Statistics Sweden (SCB)", + "zh": "瑞典统计局" + }, + "authority_level": "government", + "data_url": "https://www.statistikdatabasen.scb.se", + "has_api": true, + "file_path": "countries/europe/sweden/sweden-scb.json", + "geographic_scope": "national" + } + ], + "SG": [ + { + "id": "singapore-singstat", + "name": { + "en": "Singapore Department of Statistics (SingStat)", + "zh": "新加坡统计局", + "native": "Department of Statistics Singapore" + }, + "authority_level": "government", + "data_url": "https://tablebuilder.singstat.gov.sg", + "has_api": true, + "file_path": "countries/asia/singapore/singapore-singstat.json", "geographic_scope": "national" }, { - "id": "uk-data-gov", + "id": "singapore-dos", "name": { - "en": "Data.gov.uk", - "zh": "英国政府开放数据平台" + "en": "Department of Statistics Singapore", + "zh": "新加坡统计局" }, "authority_level": "government", - "data_url": "https://www.data.gov.uk", + "data_url": "https://tablebuilder.singstat.gov.sg", "has_api": true, - "file_path": "countries/europe/uk/uk-data-gov.json", + "file_path": "singapore/national/singapore-dos.json", "geographic_scope": "national" } ], - "IN": [ + "SI": [ { - "id": "india-dgcis", + "id": "slovenia-surs", "name": { - "en": "Directorate General of Commercial Intelligence and Statistics", - "zh": "印度商业情报与统计总局" + "en": "Statistical Office of the Republic of Slovenia (SURS)", + "zh": "斯洛文尼亚共和国统计局" }, "authority_level": "government", - "data_url": "https://www.commerce.gov.in/trade-statistics/", - "has_api": false, - "file_path": "countries/asia/india/india-dgcis.json", + "data_url": "https://www.stat.si/StatWeb/en", + "has_api": true, + "file_path": "countries/europe/slovenia/slovenia-surs.json", "geographic_scope": "national" } ], - "JP": [ + "SK": [ { - "id": "boj-statistics", + "id": "slovakia-susr", "name": { - "en": "Bank of Japan Statistics", - "zh": "日本银行统计数据", - "native": "日本銀行統計" + "en": "Statistical Office of the Slovak Republic (SUSR)", + "zh": "斯洛伐克共和国统计局" }, "authority_level": "government", - "data_url": "https://www.boj.or.jp/en/statistics/index.htm", + "data_url": "https://datacube.statistics.sk", "has_api": false, - "file_path": "countries/asia/japan/boj-statistics.json", + "file_path": "countries/europe/slovakia/slovakia-susr.json", "geographic_scope": "national" } ], - "KR": [ + "TH": [ { - "id": "korea-bok", + "id": "thailand-nso", "name": { - "en": "Bank of Korea", - "zh": "韩国银行", - "native": "한국은행" + "en": "National Statistical Office of Thailand", + "zh": "泰国国家统计局", + "native": "สำนักงานสถิติแห่งชาติ" }, "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", + "data_url": "https://www.nso.go.th/nsoweb/officialStatistics", + "has_api": false, + "file_path": "thailand/national/thailand-nso.json", "geographic_scope": "national" } ], - "MX": [ + "TR": [ { - "id": "mx-banxico", + "id": "turkey-tuik", "name": { - "en": "Bank of Mexico Economic Information System", - "zh": "墨西哥银行经济信息系统", - "native": "Sistema de Información Económica - Banco de México" + "en": "Turkish Statistical Institute (TurkStat)", + "zh": "土耳其统计局", + "native": "Türkiye İstatistik Kurumu (TÜİK)" }, "authority_level": "government", - "data_url": "https://www.banxico.org.mx", + "data_url": "https://data.tuik.gov.tr", "has_api": true, - "file_path": "countries/north-america/mexico/banxico.json", + "file_path": "countries/europe/turkey/turkey-tuik.json", "geographic_scope": "national" - }, + } + ], + "TW": [ { - "id": "mexico-coneval", + "id": "taiwan-dgbas", "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": "Directorate-General of Budget, Accounting and Statistics (DGBAS)", + "zh": "台湾主计总处" }, "authority_level": "government", - "data_url": "https://www.coneval.org.mx", + "data_url": "https://eng.stat.gov.tw/", "has_api": false, - "file_path": "countries/north-america/mexico/coneval.json", + "file_path": "countries/asia/taiwan/taiwan-dgbas.json", "geographic_scope": "national" } ], @@ -750,18 +6386,6 @@ "file_path": "academic/health/tcga.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": "usa-eia", "name": { @@ -778,7 +6402,7 @@ "id": "us-bea", "name": { "en": "Bureau of Economic Analysis", - "zh": "美国经济分析局" + "zh": "经济分析局" }, "authority_level": "government", "data_url": "https://www.bea.gov/data", @@ -790,7 +6414,7 @@ "id": "us-bls", "name": { "en": "Bureau of Labor Statistics", - "zh": "美国劳工统计局" + "zh": "劳工统计局" }, "authority_level": "government", "data_url": "https://www.bls.gov/data/", @@ -801,15 +6425,27 @@ { "id": "us-cdc", "name": { - "en": "CDC Data & Statistics", - "zh": "美国疾控中心数据与统计" + "en": "Centers for Disease Control and Prevention", + "zh": "美国疾病控制与预防中心" }, "authority_level": "government", - "data_url": "https://data.cdc.gov/", + "data_url": "https://wonder.cdc.gov/", "has_api": true, "file_path": "countries/north-america/usa/us-cdc.json", "geographic_scope": "national" }, + { + "id": "us-census", + "name": { + "en": "U.S. Census Bureau", + "zh": "美国人口普查局" + }, + "authority_level": "government", + "data_url": "https://data.census.gov", + "has_api": true, + "file_path": "countries/north-america/usa/us-census.json", + "geographic_scope": "national" + }, { "id": "us-data-gov", "name": { @@ -822,11 +6458,84 @@ "file_path": "countries/north-america/usa/us-data-gov.json", "geographic_scope": "national" }, + { + "id": "us-federalreserve", + "name": { + "en": "Federal Reserve Board", + "zh": "美联储理事会" + }, + "authority_level": "government", + "data_url": "https://www.federalreserve.gov/data.htm", + "has_api": false, + "file_path": "countries/north-america/usa/us-federalreserve.json", + "geographic_scope": "national" + }, + { + "id": "us-treasury", + "name": { + "en": "U.S. Department of the Treasury", + "zh": "美国财政部" + }, + "authority_level": "government", + "data_url": "https://fiscaldata.treasury.gov", + "has_api": true, + "file_path": "countries/north-america/usa/us-treasury.json", + "geographic_scope": "national" + }, + { + "id": "usaid-ddl", + "name": { + "en": "USAID Development Data Library", + "zh": "美国国际开发署发展数据库" + }, + "authority_level": "government", + "data_url": "https://data.usaid.gov", + "has_api": true, + "file_path": "countries/north-america/usa/usaid-ddl.json", + "geographic_scope": "global" + }, + { + "id": "usda-fas", + "name": { + "en": "USDA Foreign Agricultural Service", + "zh": "美国农业部对外农业局" + }, + "authority_level": "government", + "data_url": "https://apps.fas.usda.gov/psdonline/app/index.html", + "has_api": true, + "file_path": "countries/north-america/usa/usda-fas.json", + "geographic_scope": "national" + }, + { + "id": "usgs", + "name": { + "en": "U.S. Geological Survey (USGS)", + "zh": "美国地质调查局" + }, + "authority_level": "government", + "data_url": "https://www.usgs.gov/products/data", + "has_api": true, + "file_path": "countries/us/geology/usgs.json", + "geographic_scope": "national" + }, + { + "id": "us-hud", + "name": { + "en": "U.S. Department of Housing and Urban Development", + "zh": "美国住房和城市发展部", + "native": "U.S. Department of Housing and Urban Development" + }, + "authority_level": "government", + "data_url": "https://www.huduser.gov/portal/datasets/", + "has_api": true, + "file_path": "international/construction/us-hud.json", + "geographic_scope": "national" + }, { "id": "bea-international-trade", "name": { - "en": "BEA International Trade in Goods and Services", - "zh": "美国经济分析局国际贸易数据" + "en": "BEA Interactive Data - International Trade", + "zh": "美国经济分析局国际贸易互动数据" }, "authority_level": "government", "data_url": "https://apps.bea.gov/iTable/index_ita.cfm", @@ -845,9 +6554,166 @@ "has_api": true, "file_path": "sectors/K-finance-insurance/crsp.json", "geographic_scope": "national" + }, + { + "id": "aws-open-data-registry", + "name": { + "en": "Registry of Open Data on AWS", + "zh": "AWS开放数据注册表" + }, + "authority_level": "commercial", + "data_url": "https://registry.opendata.aws/", + "has_api": false, + "file_path": "sectors/computer_science_ai/aws-open-data-registry.json", + "geographic_scope": "global" + }, + { + "id": "us-fred", + "name": { + "en": "FRED - Federal Reserve Economic Data", + "zh": "美联储经济数据库" + }, + "authority_level": "government", + "data_url": "https://fred.stlouisfed.org", + "has_api": true, + "file_path": "us/economics/us-fred.json", + "geographic_scope": "national" + }, + { + "id": "sec-edgar", + "name": { + "en": "SEC EDGAR", + "zh": "美国证券交易委员会EDGAR系统" + }, + "authority_level": "government", + "data_url": "https://www.sec.gov/cgi-bin/browse-edgar?action=getcompany", + "has_api": true, + "file_path": "usa/finance/sec-edgar.json", + "geographic_scope": "national" } ], "VN": [ + { + "id": "fia-fdi", + "name": { + "en": "Foreign Investment Agency - FDI Statistics", + "zh": "越南外国投资局 - FDI统计数据" + }, + "authority_level": "government", + "data_url": "https://www.mpi.gov.vn/en/Pages/FDI-1637.aspx", + "has_api": false, + "file_path": "countries/asia/vietnam/fia-fdi.json", + "geographic_scope": "national" + }, + { + "id": "gdvc", + "name": { + "en": "General Department of Vietnam Customs", + "zh": "越南海关总局" + }, + "authority_level": "government", + "data_url": "https://www.customs.gov.vn", + "has_api": false, + "file_path": "countries/asia/vietnam/gdvc.json", + "geographic_scope": "national" + }, + { + "id": "gso-vietnam", + "name": { + "en": "General Statistics Office of Vietnam", + "zh": "越南国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.gso.gov.vn/en/data-and-statistics/", + "has_api": false, + "file_path": "countries/asia/vietnam/gso-vietnam.json", + "geographic_scope": "national" + }, + { + "id": "vietnam-gso", + "name": { + "en": "General Statistics Office of Vietnam", + "zh": "越南统计总局" + }, + "authority_level": "government", + "data_url": "https://www.nso.gov.vn/en/statistical-data/", + "has_api": false, + "file_path": "countries/asia/vietnam/gso.json", + "geographic_scope": "national" + }, + { + "id": "mpi-fdi", + "name": { + "en": "Ministry of Planning and Investment - FDI Statistics", + "zh": "越南计划投资部 - 外国直接投资统计", + "vi": "Bộ Kế hoạch và Đầu tư - Thống kê FDI" + }, + "authority_level": "government", + "data_url": "https://www.mpi.gov.vn/en/Pages/Report-on-Foreign-Direct-Investment-1740.aspx", + "has_api": false, + "file_path": "countries/asia/vietnam/mpi-fdi.json", + "geographic_scope": "national" + }, + { + "id": "sbv", + "name": { + "en": "State Bank of Vietnam", + "zh": "越南国家银行" + }, + "authority_level": "government", + "data_url": "https://www.sbv.gov.vn/webcenter/portal/en/home/rm/public", + "has_api": false, + "file_path": "countries/asia/vietnam/sbv.json", + "geographic_scope": "national" + }, + { + "id": "vicofa", + "name": { + "en": "Vietnam Coffee and Cocoa Association", + "zh": "越南咖啡与可可协会" + }, + "authority_level": "market", + "data_url": "https://vicofa.org.vn/", + "has_api": false, + "file_path": "countries/asia/vietnam/vicofa.json", + "geographic_scope": "national" + }, + { + "id": "vietnam-fia", + "name": { + "en": "Foreign Investment Agency - Ministry of Planning and Investment", + "zh": "越南计划投资部外国投资局" + }, + "authority_level": "government", + "data_url": "https://www.mpi.gov.vn/en/Pages/FDI-1637.aspx", + "has_api": false, + "file_path": "countries/asia/vietnam/vietnam-fia.json", + "geographic_scope": "national" + }, + { + "id": "vietnam-mof", + "name": { + "en": "Ministry of Finance of Vietnam", + "zh": "越南财政部" + }, + "authority_level": "government", + "data_url": "https://www.mof.gov.vn/webcenter/portal/btcen/pages_r/m/statistics", + "has_api": false, + "file_path": "countries/asia/vietnam/vietnam-mof.json", + "geographic_scope": "national" + }, + { + "id": "adb-vietnam-data", + "name": { + "en": "Asian Development Bank - Vietnam Country Data", + "zh": "亚洲开发银行越南国别数据" + }, + "authority_level": "international", + "data_url": "https://www.adb.org/countries/viet-nam/data", + "has_api": false, + "file_path": "international/economics/adb-vietnam-data.json", + "geographic_scope": "national" + }, { "id": "adb-vietnam", "name": { @@ -872,6 +6738,33 @@ "file_path": "international/economics/ceic-vietnam.json", "geographic_scope": "national" } + ], + "ZA": [ + { + "id": "south-africa-statssa", + "name": { + "en": "Statistics South Africa (Stats SA)", + "zh": "南非统计局" + }, + "authority_level": "government", + "data_url": "https://www.statssa.gov.za/?page_id=1854", + "has_api": false, + "file_path": "countries/africa/south-africa/south-africa-statssa.json", + "geographic_scope": "national" + }, + { + "id": "stats-sa", + "name": { + "en": "Statistics South Africa (Stats SA)", + "zh": "南非统计局", + "native": "Statistics South Africa (Stats SA)" + }, + "authority_level": "government", + "data_url": "https://www.statssa.gov.za/?page_id=1521", + "has_api": false, + "file_path": "countries/africa/south-africa/stats-sa.json", + "geographic_scope": "national" + } ] } } diff --git a/firstdata/indexes/statistics.json b/firstdata/indexes/statistics.json index b2613133..14056060 100644 --- a/firstdata/indexes/statistics.json +++ b/firstdata/indexes/statistics.json @@ -1,674 +1,767 @@ { "metadata": { - "generated_at": "2026-03-02T08:05:03.494144+00:00", + "generated_at": "2026-05-04T06:42:43.195561+00:00", "version": "2.0" }, "overview": { - "total_sources": 156, - "sources_with_api": 79, - "last_updated": "2026-03-02" + "total_sources": 679, + "sources_with_api": 154, + "last_updated": "2026-05-04" }, "by_authority_level": { - "research": 28, - "international": 44, - "government": 59, - "commercial": 10, - "market": 14, - "other": 1 + "research": 123, + "international": 77, + "government": 348, + "other": 61, + "market": 43, + "commercial": 27 }, "by_geographic_scope": { - "global": 67, - "national": 69, - "regional": 20 + "global": 114, + "national": 481, + "regional": 27, + "subnational": 57 }, "by_update_frequency": { - "irregular": 36, - "daily": 32, - "weekly": 6, - "quarterly": 15, - "monthly": 29, - "annual": 31, - "real-time": 7 + "irregular": 127, + "daily": 94, + "weekly": 11, + "quarterly": 51, + "monthly": 214, + "annual": 164, + "real-time": 18 }, "by_domain": { - "economics": 33, - "trade": 16, - "finance": 15, - "education": 15, - "health": 13, - "technology": 12, - "social": 11, - "environment": 11, - "demographics": 10, - "development": 10, - "Agriculture": 10, - "agriculture": 8, - "Education": 8, - "Health": 8, - "industry": 7, - "Environment": 7, - "Machine Learning": 6, - "Infrastructure": 6, - "energy": 6, - "manufacturing": 6, - "Monetary Policy": 6, - "Finance": 6, - "Climate Change": 6, - "Drug Discovery": 5, - "Materials Science": 5, - "Economics": 5, - "climate": 5, - "housing": 5, - "Financial Markets": 5, - "Banking": 5, - "Exchange Rates": 5, - "Energy": 5, - "Development Finance": 5, - "Social Development": 5, - "Molecular Biology": 4, - "Bioinformatics": 4, - "Pharmaceutical Sciences": 4, - "Chemistry": 4, - "Derivatives": 4, - "Payment Systems": 4, - "labor": 4, - "population": 4, - "banking": 4, - "monetary_policy": 4, - "innovation": 4, - "International Trade": 4, - "Prices": 4, - "Balance of Payments": 4, - "Food Security": 4, - "Nutrition": 4, - "Transportation": 4, - "genomics": 3, - "Biotechnology": 3, - "Genomics": 3, - "epidemiology": 3, - "Pharmacology": 3, - "Toxicology": 3, - "Foreign Exchange": 3, - "Employment": 3, - "productivity": 3, + "economics": 268, + "trade": 118, + "environment": 117, + "social": 114, + "finance": 105, + "industry": 94, + "demographics": 89, + "statistics": 85, + "agriculture": 82, + "health": 71, + "technology": 67, + "energy": 62, + "governance": 58, + "education": 53, + "science": 45, + "infrastructure": 45, + "employment": 44, + "climate": 41, + "manufacturing": 28, + "transportation": 26, + "research": 25, + "prices": 22, + "housing": 21, + "development": 17, + "real-estate": 17, + "banking": 17, + "monetary-policy": 17, + "securities": 15, + "labor": 14, + "standards": 13, + "capital-markets": 13, + "construction": 12, + "food-security": 12, + "culture": 10, + "earth-science": 10, + "population": 9, + "investment": 9, + "resources": 9, + "public-health": 9, + "innovation": 9, + "financial-markets": 9, + "biodiversity": 8, + "epidemiology": 8, + "law": 8, + "telecommunications": 8, + "balance-of-payments": 8, + "commodities": 8, + "social-development": 8, + "genomics": 7, + "biology": 7, + "derivatives": 7, + "ocean": 7, + "machine-learning": 7, + "urban-development": 7, + "business": 7, + "pharmaceuticals": 7, + "logistics": 7, + "meteorology": 7, + "geography": 7, + "geology": 7, + "water": 7, + "exchange-rates": 7, + "climate-change": 7, + "bioinformatics": 6, + "chemistry": 6, + "payment-systems": 6, + "engineering": 6, + "land-use": 6, + "digital-economy": 6, + "higher-education": 6, + "international-trade": 6, + "remote-sensing": 6, + "ecology": 6, + "government-finance": 6, + "interest-rates": 6, + "inflation": 6, + "financial-stability": 6, + "drug-discovery": 5, + "molecular-biology": 5, + "materials-science": 5, + "foreign-exchange": 5, + "gender-equality": 5, + "automotive": 5, + "regulation": 5, + "media": 5, + "fiscal-policy": 5, + "public-safety": 5, + "intellectual-property": 5, + "aerospace": 5, + "safety": 5, + "artificial-intelligence": 5, + "sustainability": 5, + "electronics": 5, + "national-accounts": 5, + "economic-indicators": 5, + "development-finance": 5, + "healthcare": 4, + "pharmaceutical-sciences": 4, + "pharmacology": 4, + "productivity": 4, + "poverty": 4, + "economic-development": 4, + "judicial-auction": 4, + "consumer": 4, + "food-safety": 4, + "commerce": 4, + "government": 4, + "insurance": 4, + "legal": 4, + "astronomy": 4, + "petroleum": 4, + "renewable-energy": 4, + "economic-statistics": 4, + "public-finance": 4, + "stock-market": 4, + "esg-data": 4, + "genetics": 3, + "proteomics": 3, + "biotechnology": 3, + "medical-imaging": 3, + "toxicology": 3, "atmosphere": 3, - "Economic Development": 3, - "infrastructure": 3, - "investment": 3, - "higher-education": 3, - "employment": 3, - "telecommunications": 3, - "electronics": 3, - "exchange_rates": 3, - "Interest Rates": 3, - "Credit": 3, - "Financial Stability": 3, - "business": 3, - "Manufacturing": 3, - "Trade": 3, - "Central Banking": 3, - "Industrial Statistics": 3, - "Natural Language Processing": 3, - "Deep Learning": 3, - "Artificial Intelligence": 3, - "genetics": 2, - "bioinformatics": 2, - "Structural Biology": 2, - "Proteomics": 2, - "Biodiversity": 2, - "Biochemistry": 2, - "Medicinal Chemistry": 2, - "Agrochemical Research": 2, - "Organic Chemistry": 2, - "Inorganic Chemistry": 2, - "Drug Development": 2, - "Labor Markets": 2, - "Economic Forecasting": 2, + "mortality": 3, + "computer-science": 3, + "political-science": 3, + "urban-planning": 3, + "asset-disposal": 3, + "tourism": 3, + "consumer-goods": 3, + "social-security": 3, + "macroeconomics": 3, + "market-research": 3, + "bonds": 3, + "taxation": 3, + "international-relations": 3, + "policy": 3, + "regulatory": 3, + "history": 3, + "sports": 3, + "environmental-science": 3, + "space": 3, + "natural-resources": 3, + "geospatial": 3, + "hydrology": 3, + "electricity": 3, + "mining": 3, + "social-statistics": 3, + "banking-statistics": 3, + "foreign-direct-investment": 3, + "society": 3, + "transport": 3, + "disease-surveillance": 3, + "commodity-markets": 3, + "nutrition": 3, + "industrial-statistics": 3, + "natural-language-processing": 3, + "deep-learning": 3, + "computer-vision": 3, + "equities": 3, + "structural-biology": 2, + "biochemistry": 2, + "medicinal-chemistry": 2, + "agrochemical-research": 2, + "organic-chemistry": 2, + "inorganic-chemistry": 2, + "drug-development": 2, + "consumer-prices": 2, + "labor-markets": 2, "inequality": 2, - "ocean": 2, - "Data Science": 2, - "Crystallography": 2, - "Governance": 2, - "statistics": 2, - "insurance": 2, - "securities": 2, - "capital_markets": 2, + "health-financing": 2, + "health-systems": 2, + "life-sciences": 2, + "data-science": 2, + "crystallography": 2, + "democracy-and-governance": 2, + "public-services": 2, + "youth-development": 2, + "new-energy-vehicles": 2, + "aviation": 2, + "public-resource-trading": 2, + "economy": 2, + "materials": 2, + "regional-development": 2, + "poverty-reduction": 2, + "social-policy": 2, + "education-statistics": 2, + "credit": 2, + "asset-management": 2, + "indices": 2, + "esg": 2, + "fintech": 2, + "markets": 2, + "government-budget": 2, + "corporate-governance": 2, + "emergency-management": 2, + "quality": 2, + "international": 2, + "arts": 2, + "defense": 2, + "industrial-equipment": 2, + "urbanization": 2, "services": 2, - "resources": 2, + "social-sciences": 2, + "weather": 2, + "maritime": 2, + "natural-gas": 2, + "coal": 2, + "robotics": 2, + "information-technology": 2, "scientific-instruments": 2, - "Public Finance": 2, - "balance_of_payments": 2, - "interest_rates": 2, - "Land Use": 2, - "Agricultural Economics": 2, - "inflation": 2, - "financial_markets": 2, - "Renewable Energy": 2, - "Energy Trade": 2, - "income": 2, - "geography": 2, - "meteorology": 2, - "National Accounts": 2, - "Regional Economics": 2, - "Inflation": 2, - "Industry Statistics": 2, - "Public Health": 2, - "Infectious Diseases": 2, - "Mortality": 2, - "Disease Surveillance": 2, - "Epidemiology": 2, - "commodities": 2, - "Forestry": 2, - "Regional Integration": 2, - "Government Finance": 2, - "Energy Transition": 2, - "Innovation": 2, - "Environmental Sustainability": 2, - "Climate Resilience": 2, - "Securities": 2, - "Liquidity": 2, - "Real Estate": 2, - "Payments": 2, - "Energy Statistics": 2, - "Automotive": 2, - "Computational Linguistics": 2, - "Computer Vision": 2, - "Image Classification": 2, - "Object Recognition": 2, - "Stock Markets": 2, - "Commodities": 2, - "Equities": 2, - "Higher Education": 2, - "University Rankings": 2, - "Education Assessment": 2, - "human genetic variation": 1, - "population genetics": 1, - "evolutionary biology": 1, - "Transcriptomics": 1, - "Metagenomics": 1, - "Environmental Sciences": 1, - "Healthcare": 1, - "Pathogen Surveillance": 1, - "Genetics": 1, - "Computational Biology": 1, - "Protein Science": 1, + "flow-of-funds": 2, + "financial-statistics": 2, + "price-indices": 2, + "customs": 2, + "financial-sector": 2, + "mineral-resources": 2, + "crime-and-justice": 2, + "environmental-monitoring": 2, + "agricultural-economics": 2, + "mental-health": 2, + "population-health": 2, + "energy-trade": 2, + "labor-market": 2, + "welfare": 2, + "atmospheric-science": 2, + "industry-statistics": 2, + "infectious-diseases": 2, + "earth-observation": 2, + "livestock": 2, + "water-resources": 2, + "forestry": 2, + "reproductive-health": 2, + "regional-integration": 2, + "energy-transition": 2, + "environmental-sustainability": 2, + "climate-resilience": 2, + "energy-statistics": 2, + "central-banking": 2, + "immunization": 2, + "humanitarian": 2, + "patents": 2, + "paleontology": 2, + "semiconductors": 2, + "industrial-automation": 2, + "computational-linguistics": 2, + "image-classification": 2, + "object-recognition": 2, + "futures": 2, + "funds": 2, + "financial-data": 2, + "stock-markets": 2, + "ipo": 2, + "investment-banking": 2, + "fixed-income": 2, + "economic-data": 2, + "university-rankings": 2, + "education-assessment": 2, + "sports-statistics": 2, + "tennis": 2, + "human-genetic-variation": 1, + "population-genetics": 1, + "evolutionary-biology": 1, + "transcriptomics": 1, + "metagenomics": 1, + "environmental-sciences": 1, + "pathogen-surveillance": 1, + "computational-biology": 1, + "protein-science": 1, "biomarkers": 1, - "medical imaging": 1, "lifestyle": 1, - "proteomics": 1, "metabolomics": 1, - "Chemical Biology": 1, - "Bioactivity": 1, - "ADMET": 1, - "Chemical Structures": 1, - "Molecular Properties": 1, - "Chemical Information": 1, - "Cheminformatics": 1, - "Clinical Pharmacology": 1, - "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, + "chemical-biology": 1, + "bioactivity": 1, + "admet": 1, + "chemical-structures": 1, + "molecular-properties": 1, + "chemical-information": 1, + "cheminformatics": 1, + "clinical-pharmacology": 1, + "drug-metabolism": 1, + "medicine": 1, + "international-banking": 1, + "debt-securities": 1, + "credit-markets": 1, + "property-prices": 1, + "global-liquidity": 1, + "central-bank-statistics": 1, + "business-cycles": 1, + "consumer-confidence": 1, + "economic-forecasting": 1, "structural-change": 1, "land": 1, - "disaster_management": 1, - "clinical_research": 1, - "medical_trials": 1, - "mortality": 1, - "disease burden": 1, - "health financing": 1, - "risk factors": 1, - "health systems": 1, + "disaster-management": 1, + "clinical-research": 1, + "medical-trials": 1, + "disease-burden": 1, + "risk-factors": 1, "biomedical": 1, - "life_sciences": 1, - "cancer genomics": 1, + "cancer-genomics": 1, "oncology": 1, - "molecular biology": 1, - "precision medicine": 1, - "biomedical research": 1, - "Particle Physics": 1, - "High Energy Physics": 1, - "Nuclear Physics": 1, - "Experimental Physics": 1, - "Computational Physics": 1, - "Physics": 1, - "Mineralogy": 1, - "Democracy and Governance": 1, - "Political Participation": 1, - "Elections and Electoral Systems": 1, - "Social Issues": 1, - "Public Services": 1, - "Citizen Engagement": 1, - "Human Rights": 1, - "Gender Equality": 1, - "Corruption and Accountability": 1, - "Security and Conflict": 1, - "Youth Development": 1, - "Health and Education": 1, - "Environmental Issues": 1, - "Political Science": 1, - "Democracy Studies": 1, - "Public Opinion": 1, - "Political Values": 1, - "Electoral Studies": 1, - "Social Science": 1, - "prices": 1, - "international_commerce": 1, - "commerce": 1, + "precision-medicine": 1, + "biomedical-research": 1, + "global-development": 1, + "particle-physics": 1, + "high-energy-physics": 1, + "nuclear-physics": 1, + "experimental-physics": 1, + "computational-physics": 1, + "physics": 1, + "mineralogy": 1, + "political-participation": 1, + "elections-and-electoral-systems": 1, + "social-issues": 1, + "citizen-engagement": 1, + "human-rights": 1, + "corruption-and-accountability": 1, + "security-and-conflict": 1, + "health-and-education": 1, + "environmental-issues": 1, + "democracy-studies": 1, + "public-opinion": 1, + "political-values": 1, + "electoral-studies": 1, + "social-science": 1, + "building-standards": 1, + "foreign-trade": 1, + "plastics": 1, + "food-beverage": 1, + "economic-policy": 1, + "industry-analysis": 1, + "policy-research": 1, + "rural-development": 1, + "international-cooperation": 1, + "development-planning": 1, + "price-monitoring": 1, + "internet": 1, + "government-procurement": 1, + "urban-management": 1, + "international-commerce": 1, "international-exchange": 1, "credential-verification": 1, "academic-degrees": 1, "graduate-education": 1, "postgraduate-admissions": 1, - "higher_education": 1, - "education-statistics": 1, "education-policy": 1, "basic-education": 1, "admissions": 1, - "regulation": 1, - "derivatives": 1, - "urbanization": 1, - "digital-economy": 1, + "fund-management": 1, + "bond-market": 1, + "debt-financing": 1, + "clearing": 1, + "diplomacy": 1, + "anti-corruption": 1, + "transparency": 1, + "development-aid": 1, + "judicial-execution": 1, + "credit-risk": 1, + "social-credit": 1, + "crime": 1, + "public-funding": 1, + "heritage": 1, + "traditional-medicine": 1, + "health-policy": 1, + "health-economics": 1, + "urban": 1, + "rail": 1, + "consumer-behavior": 1, + "migration": 1, + "disaster-prevention": 1, "cloud-computing": 1, - "artificial-intelligence": 1, + "science-technology": 1, + "natural-history": 1, + "urban-studies": 1, + "life-science": 1, + "glaciology": 1, + "land-resources": 1, + "petrochemical": 1, + "earth-sciences": 1, + "circular-economy": 1, + "pollution": 1, + "soil-pollution": 1, + "rural-environment": 1, + "chemical-safety": 1, + "hazardous-waste": 1, "mineral": 1, "minerals": 1, - "digital_economy": 1, - "data_governance": 1, - "digital_infrastructure": 1, - "intellectual_property": 1, + "data-governance": 1, + "digital-infrastructure": 1, + "geographic-information": 1, + "industry-associations": 1, + "semiconductor-materials": 1, + "electronic-materials": 1, + "photovoltaic-materials": 1, + "security": 1, "research-infrastructure": 1, - "science": 1, - "research": 1, "software": 1, - "standards": 1, "quality-management": 1, - "Foreign Trade Statistics": 1, - "Inland Trade": 1, - "Customs Statistics": 1, - "Export Statistics": 1, - "Import Statistics": 1, - "Shipping Statistics": 1, - "Coastal Trade": 1, - "Inter-State Trade": 1, - "Excise Revenue": 1, - "Flow of Funds": 1, - "Economic Surveys": 1, - "financial_statistics": 1, - "national_accounts": 1, - "price_indices": 1, - "business_surveys": 1, - "consumer_surveys": 1, - "flow_of_funds": 1, - "banking_statistics": 1, - "Regulatory Capital": 1, - "Business and economy": 1, - "Crime and justice": 1, - "Defence": 1, - "Government": 1, - "Government spending": 1, - "Mapping": 1, - "Society": 1, - "Towns and cities": 1, - "Transport": 1, - "Digital service performance": 1, - "Crop Production": 1, - "Geospatial Data": 1, - "Environmental Monitoring": 1, - "Agricultural Research": 1, - "Market Information": 1, - "economic_indicators": 1, - "health_care": 1, - "hospital_services": 1, - "pharmaceuticals": 1, - "medical_imaging": 1, - "emergency_care": 1, - "mental_health": 1, - "continuing_care": 1, - "health_spending": 1, - "health_workforce": 1, - "population_health": 1, - "patient_outcomes": 1, - "health_system_performance": 1, - "Energy Infrastructure": 1, - "Pipeline Regulation": 1, - "Electricity Transmission": 1, - "Oil and Gas": 1, - "Energy Safety": 1, - "Energy Markets": 1, + "demographic-statistics": 1, + "population-and-census": 1, + "labour-market": 1, + "prices-and-inflation": 1, + "manufacturing-and-industry": 1, + "external-trade": 1, + "household-income-and-expenditure": 1, + "corporate-registry": 1, + "foreign-trade-statistics": 1, + "inland-trade": 1, + "customs-statistics": 1, + "export-statistics": 1, + "import-statistics": 1, + "shipping-statistics": 1, + "coastal-trade": 1, + "inter-state-trade": 1, + "excise-revenue": 1, + "economic-surveys": 1, + "pension": 1, + "fdi": 1, + "geoscience": 1, + "business-surveys": 1, + "consumer-surveys": 1, + "consumer-price-index": 1, + "household": 1, + "civil-registration": 1, + "international-investment": 1, + "investment-statistics": 1, + "import-export": 1, + "tariffs": 1, + "revenue": 1, + "border-control": 1, + "population-and-employment": 1, + "agriculture-and-rural-development": 1, + "industry-and-construction": 1, + "trade-and-services": 1, + "investment-and-finance": 1, + "education-and-health": 1, + "transport-and-telecommunications": 1, + "environmental-statistics": 1, + "money-supply": 1, + "credit-growth": 1, + "coffee": 1, + "cocoa": 1, + "investment-policy": 1, + "business-registration": 1, + "national-accounting": 1, + "state-assets": 1, + "hydrogeology": 1, + "geological-hazards": 1, + "marine-geology": 1, + "regulatory-capital": 1, + "business-and-economy": 1, + "defence": 1, + "government-spending": 1, + "mapping": 1, + "towns-and-cities": 1, + "digital-service-performance": 1, + "price-statistics": 1, + "crop-production": 1, + "geospatial-data": 1, + "agricultural-research": 1, + "market-information": 1, + "health-care": 1, + "hospital-services": 1, + "emergency-care": 1, + "continuing-care": 1, + "health-spending": 1, + "health-workforce": 1, + "patient-outcomes": 1, + "health-system-performance": 1, + "energy-infrastructure": 1, + "pipeline-regulation": 1, + "electricity-transmission": 1, + "oil-and-gas": 1, + "energy-safety": 1, + "energy-markets": 1, "labour": 1, "justice": 1, - "culture": 1, - "payment_systems": 1, - "public_finance": 1, "production": 1, - "labor_market": 1, - "poverty": 1, - "social-development": 1, - "social-policy": 1, - "welfare": 1, - "food-security": 1, "social-services": 1, - "government": 1, - "petroleum": 1, - "natural gas": 1, - "coal": 1, - "electricity": 1, - "nuclear energy": 1, - "renewable energy": 1, - "markets": 1, - "environmental_science": 1, - "atmospheric_science": 1, - "GDP": 1, - "Foreign Direct Investment": 1, - "Personal Income": 1, - "Consumer Spending": 1, - "Corporate Profits": 1, - "Industry Economics": 1, - "Input-Output Tables": 1, - "Fixed Assets": 1, - "Unemployment": 1, - "Labor Force": 1, - "Wages": 1, - "Earnings": 1, - "Consumer Expenditures": 1, - "Productivity": 1, - "Workplace Safety": 1, - "Occupational Statistics": 1, - "Health Statistics": 1, - "Chronic Diseases": 1, - "Vital Statistics": 1, - "Natality": 1, - "Environmental Health": 1, - "Cancer": 1, - "Tuberculosis": 1, - "Sexually Transmitted Diseases": 1, - "Vaccine Safety": 1, - "Population Health": 1, - "Health Equity": 1, - "Healthcare Access": 1, - "Business": 1, - "Climate": 1, - "Consumer": 1, - "Public Safety": 1, - "Science & Research": 1, - "Ocean": 1, - "Local Government": 1, - "Maritime": 1, - "Ecosystems": 1, - "earth-observation": 1, - "remote-sensing": 1, - "geospatial": 1, - "environmental-monitoring": 1, + "income": 1, + "nuclear-energy": 1, + "gdp": 1, + "personal-income": 1, + "consumer-spending": 1, + "corporate-profits": 1, + "regional-economics": 1, + "industry-economics": 1, + "unemployment": 1, + "labor-force": 1, + "wages": 1, + "earnings": 1, + "consumer-expenditures": 1, + "workplace-safety": 1, + "occupational-statistics": 1, + "chronic-diseases": 1, + "vital-statistics": 1, + "natality": 1, + "environmental-health": 1, + "cancer": 1, + "tuberculosis": 1, + "sexually-transmitted-diseases": 1, + "vaccine-safety": 1, + "health-equity": 1, + "retail": 1, + "science-and-research": 1, + "local-government": 1, + "ecosystems": 1, + "consumer-credit": 1, + "government-debt": 1, + "treasury-securities": 1, + "international-capital-flows": 1, + "sanctions": 1, + "international-development": 1, + "foreign-aid": 1, + "economic-growth": 1, + "humanitarian-assistance": 1, "land-cover": 1, - "government-finance": 1, - "Welfare": 1, - "Hospitals": 1, - "Mental health": 1, - "Aged care": 1, - "Disability": 1, - "Child protection": 1, - "Homelessness": 1, - "Housing": 1, - "Indigenous health": 1, - "Alcohol and drugs": 1, - "Disease and injury": 1, - "weather": 1, - "water": 1, + "hospitals": 1, + "aged-care": 1, + "disability": 1, + "child-protection": 1, + "homelessness": 1, + "indigenous-health": 1, + "alcohol-and-drugs": 1, + "disease-and-injury": 1, "oceans": 1, - "space weather": 1, - "hydrology": 1, + "space-weather": 1, "oceanography": 1, - "Financial Statistics": 1, - "Credit Data": 1, - "Currency and Coins": 1, + "credit-data": 1, + "currency-and-coins": 1, "exports": 1, "food-supply": 1, "cartography": 1, "census": 1, - "Climate Change Adaptation": 1, - "Agricultural Biodiversity": 1, - "Crop Science": 1, - "Livestock Systems": 1, - "Water Resources Management": 1, - "Soil Science": 1, - "Genetics and Genomics": 1, - "Sustainable Intensification": 1, - "Agricultural Policy": 1, - "Agroforestry": 1, - "Fisheries": 1, - "Livestock": 1, - "Crops": 1, - "Investment": 1, - "Social Statistics": 1, - "Labor Market": 1, - "Poverty and Inequality": 1, - "Demographics": 1, - "Communications": 1, - "Sustainable Development Goals": 1, - "governance": 1, - "Economic Statistics": 1, - "Climate Finance": 1, - "Water Resources": 1, - "Digital Transformation": 1, - "Urban Development": 1, - "Poverty Reduction": 1, - "Macroeconomic Statistics": 1, - "Fiscal Policy": 1, - "Trade and Integration": 1, - "Public Sector": 1, - "Financial Sector": 1, - "Earth Observation": 1, - "Remote Sensing": 1, - "Land Monitoring": 1, - "Ocean Monitoring": 1, - "Atmosphere Monitoring": 1, - "Emergency Management": 1, - "earth-science": 1, + "earthquakes": 1, + "volcanoes": 1, + "natural-hazards": 1, + "climate-change-adaptation": 1, + "agricultural-biodiversity": 1, + "crop-science": 1, + "livestock-systems": 1, + "water-resources-management": 1, + "soil-science": 1, + "genetics-and-genomics": 1, + "sustainable-intensification": 1, + "agricultural-policy": 1, + "agroforestry": 1, + "fisheries": 1, + "crops": 1, + "food-and-beverage": 1, + "energy-efficiency": 1, + "sustainable-development": 1, + "population-development": 1, + "slums": 1, + "poverty-and-inequality": 1, + "communications": 1, + "sustainable-development-goals": 1, + "climate-finance": 1, + "digital-transformation": 1, + "macroeconomic-statistics": 1, + "trade-and-integration": 1, + "public-sector": 1, + "land-monitoring": 1, + "ocean-monitoring": 1, + "atmosphere-monitoring": 1, "land-surface": 1, "cryosphere": 1, "biosphere": 1, - "Macroeconomics": 1, - "Development Economics": 1, - "GDP Growth": 1, - "Poverty Analysis": 1, - "Public Sector Management": 1, - "Banking Statistics": 1, - "Banking Supervision": 1, + "regional-cooperation": 1, + "digital-technology": 1, + "banking-supervision": 1, "international-assessment": 1, "student-achievement": 1, - "Student Assessment": 1, - "Reading Literacy": 1, - "Mathematical Literacy": 1, - "Scientific Literacy": 1, - "Financial Literacy": 1, - "Creative Thinking": 1, - "Global Competence": 1, + "student-assessment": 1, + "reading-literacy": 1, + "mathematical-literacy": 1, + "scientific-literacy": 1, + "financial-literacy": 1, + "creative-thinking": 1, + "global-competence": 1, + "communication": 1, "nuclear-power": 1, - "Waste Management": 1, - "Hazardous Materials": 1, - "Environmental Law": 1, - "Carbon Emissions": 1, - "Atmospheric Science": 1, - "Greenhouse Gases": 1, - "Wildlife Conservation": 1, - "Endangered Species": 1, - "Environmental Protection": 1, - "Foreign Exchange Reserves": 1, - "International Finance": 1, - "financial-stability": 1, + "waste-management": 1, + "hazardous-materials": 1, + "environmental-law": 1, + "carbon-emissions": 1, + "greenhouse-gases": 1, + "wildlife-conservation": 1, + "endangered-species": 1, + "environmental-protection": 1, + "air-quality": 1, + "foreign-exchange-reserves": 1, + "international-finance": 1, "regulatory-standards": 1, - "public health": 1, - "disease surveillance": 1, - "outbreak response": 1, - "laboratory systems": 1, - "health security": 1, - "Antimicrobial Resistance": 1, - "Immunization": 1, - "Healthcare-Associated Infections": 1, - "Vector-Borne Diseases": 1, - "Food and Waterborne Diseases": 1, - "Respiratory Diseases": 1, - "intellectual property": 1, - "patents": 1, + "outbreak-response": 1, + "laboratory-systems": 1, + "health-security": 1, + "antimicrobial-resistance": 1, + "healthcare-associated-infections": 1, + "vector-borne-diseases": 1, + "food-and-waterborne-diseases": 1, + "respiratory-diseases": 1, + "vaccines": 1, + "global-health": 1, + "water-utilities": 1, + "ict": 1, "trademarks": 1, - "Metrology": 1, - "Measurement Standards": 1, - "International System of Units (SI)": 1, - "Time and Frequency": 1, - "Mass and Related Quantities": 1, - "Length": 1, - "Thermometry": 1, - "Electricity and Magnetism": 1, - "Photometry and Radiometry": 1, - "Ionizing Radiation": 1, - "Chemistry and Biology": 1, - "Acoustics, Ultrasound and Vibration": 1, - "Food Safety": 1, - "Food Standards": 1, - "Food Labeling": 1, - "Food Hygiene": 1, - "Food Additives": 1, - "Pesticide Residues": 1, - "Veterinary Drug Residues": 1, - "Contaminants": 1, - "Food Inspection": 1, - "Certification Systems": 1, - "Food Quality": 1, - "international": 1, - "transportation": 1, - "aviation": 1, - "safety": 1, - "Commodity Markets": 1, - "Agricultural Trade": 1, - "Food Prices": 1, - "Market Transparency": 1, - "Policy Coordination": 1, - "Mining": 1, - "Rare Earth Industry": 1, - "Metal Materials": 1, - "Resource Management": 1, - "Industrial Economics": 1, - "Commodity Price": 1, - "Additive Manufacturing": 1, - "3D Printing": 1, - "Advanced Manufacturing": 1, - "Manufacturing Technology": 1, - "Equipment Manufacturing": 1, - "New Energy Vehicles": 1, - "automotive": 1, - "Chemical Industry": 1, - "Petroleum Industry": 1, - "Catalysts": 1, - "Chemical Materials": 1, - "Petrochemicals": 1, - "Industry Standards": 1, - "Economic Analysis": 1, - "market-research": 1, + "conservation": 1, + "evolution": 1, + "metrology": 1, + "measurement-standards": 1, + "international-system-of-units": 1, + "time-and-frequency": 1, + "mass-and-related-quantities": 1, + "length": 1, + "thermometry": 1, + "electricity-and-magnetism": 1, + "photometry-and-radiometry": 1, + "ionizing-radiation": 1, + "chemistry-and-biology": 1, + "acoustics-ultrasound-and-vibration": 1, + "food-standards": 1, + "food-labeling": 1, + "food-hygiene": 1, + "food-additives": 1, + "pesticide-residues": 1, + "veterinary-drug-residues": 1, + "contaminants": 1, + "food-inspection": 1, + "certification-systems": 1, + "food-quality": 1, + "agricultural-trade": 1, + "food-prices": 1, + "market-transparency": 1, + "policy-coordination": 1, + "rare-earth-industry": 1, + "metal-materials": 1, + "resource-management": 1, + "industrial-economics": 1, + "commodity-price": 1, + "additive-manufacturing": 1, + "3d-printing": 1, + "advanced-manufacturing": 1, + "manufacturing-technology": 1, + "equipment-manufacturing": 1, + "chemical-industry": 1, + "petroleum-industry": 1, + "catalysts": 1, + "chemical-materials": 1, + "petrochemicals": 1, + "industry-standards": 1, + "economic-analysis": 1, "optics": 1, "optoelectronics": 1, "photonics": 1, - "semiconductors": 1, "integrated-circuits": 1, "electronics-manufacturing": 1, "machinery": 1, - "industrial-equipment": 1, - "Robotics": 1, - "Industrial Automation": 1, - "Technology Standards": 1, - "Energy Economics": 1, - "Energy Production": 1, - "Energy Consumption": 1, - "Fossil Fuels": 1, - "Text Mining": 1, + "technology-standards": 1, + "energy-economics": 1, + "energy-production": 1, + "energy-consumption": 1, + "fossil-fuels": 1, + "text-mining": 1, "wireless-communication": 1, "6g-technology": 1, "technology-research": 1, "network-architecture": 1, - "information-technology": 1, - "Web Crawling": 1, - "Information Retrieval": 1, - "Web Analytics": 1, - "Research": 1, - "Large Language Models": 1, - "Named Entity Recognition": 1, - "Parsing": 1, - "Semantic Analysis": 1, - "Stock Market": 1, - "Futures": 1, - "Options": 1, - "Funds": 1, - "Bonds": 1, - "Indices": 1, - "Cryptocurrency": 1, - "Macroeconomic Data": 1, - "Quantitative Finance": 1, - "Cryptocurrencies": 1, - "Economic Indicators": 1, - "Technical Analysis": 1, - "IPO": 1, - "Equity Offerings": 1, - "Capital Markets": 1, - "Investment Banking": 1, - "Securities Issuance": 1, - "Fixed Income": 1, - "Currencies": 1, - "Economic Data": 1, - "Financial News": 1, - "Corporate Fundamentals": 1, - "ESG Data": 1, - "Market Indices": 1, - "Corporate Actions": 1, - "Investment Research": 1, - "Asset Pricing": 1, - "Cryptocurrency Markets": 1, - "Blockchain Analytics": 1, - "Digital Assets": 1, - "DeFi (Decentralized Finance)": 1, - "NFT Markets": 1, - "Trading Data": 1, - "Financial Technology": 1, - "Structural Chemistry": 1, - "Metal-Organic Frameworks": 1, - "Catalysis": 1, - "Functional Materials": 1, + "web-crawling": 1, + "information-retrieval": 1, + "web-analytics": 1, + "large-language-models": 1, + "named-entity-recognition": 1, + "parsing": 1, + "semantic-analysis": 1, + "options": 1, + "cryptocurrency": 1, + "cryptocurrencies": 1, + "technical-analysis": 1, + "equity-markets": 1, + "corporate-finance": 1, + "equity-offerings": 1, + "securities-issuance": 1, + "currencies": 1, + "financial-news": 1, + "corporate-fundamentals": 1, + "market-indices": 1, + "corporate-actions": 1, + "investment-research": 1, + "asset-pricing": 1, + "cryptocurrency-markets": 1, + "blockchain-analytics": 1, + "digital-assets": 1, + "defi": 1, + "nft-markets": 1, + "trading-data": 1, + "financial-technology": 1, + "market-data": 1, + "trading": 1, + "risk-management": 1, + "investment-analysis": 1, + "alternative-data": 1, + "structural-chemistry": 1, + "metal-organic-frameworks": 1, + "catalysis": 1, + "functional-materials": 1, "instrumentation": 1, "measurement-control": 1, - "industrial-automation": 1, - "Patents": 1, - "Intellectual Property": 1, - "Pharmaceuticals": 1, - "Electronics": 1, - "Engineering": 1, - "Telecommunications": 1, - "Medical Technology": 1, - "Mechanical Engineering": 1, - "Computer Science": 1, - "Aerospace": 1, - "Research Performance": 1, - "Academic Excellence": 1, - "Education Quality": 1, - "Academic Research": 1, - "Student Outcomes": 1, - "Education Statistics": 1, - "Global Education": 1, - "Cultural Heritage": 1, - "Archaeology": 1, - "Art History": 1, - "Anthropology": 1, - "Ancient Civilizations": 1, - "Museum Studies": 1, - "Sports Statistics": 1, - "Tennis": 1, - "Professional Sports Data": 1, - "Player Performance Analytics": 1 + "medical-technology": 1, + "mechanical-engineering": 1, + "research-performance": 1, + "academic-excellence": 1, + "education-quality": 1, + "academic-research": 1, + "student-outcomes": 1, + "global-education": 1, + "cultural-heritage": 1, + "archaeology": 1, + "art-history": 1, + "anthropology": 1, + "ancient-civilizations": 1, + "museum-studies": 1, + "professional-sports-data": 1, + "player-performance-analytics": 1, + "climate-science": 1, + "imaging": 1, + "disaster-response": 1, + "quantitative-trading": 1, + "sports-analytics": 1, + "player-performance": 1, + "tournament-data": 1, + "athletics": 1 } } diff --git a/firstdata/schemas/datasource-schema.json b/firstdata/schemas/datasource-schema.json index 29b67b4f..5d761577 100644 --- a/firstdata/schemas/datasource-schema.json +++ b/firstdata/schemas/datasource-schema.json @@ -20,12 +20,18 @@ "type": "string", "description": "Unique identifier (lowercase, hyphen-separated)", "pattern": "^[a-z0-9-]+$", - "examples": ["china-nbs", "worldbank-open-data", "hkex"] + "examples": [ + "china-nbs", + "worldbank-open-data", + "hkex" + ] }, "name": { "type": "object", "description": "Data source name in multiple languages", - "required": ["en"], + "required": [ + "en" + ], "properties": { "en": { "type": "string", @@ -40,7 +46,9 @@ "description": { "type": "object", "description": "Detailed description of the data source", - "required": ["en"], + "required": [ + "en" + ], "properties": { "en": { "type": "string", @@ -63,7 +71,10 @@ "description": "Direct URL to data access page (not organization homepage - should point to data query/download interface)" }, "api_url": { - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "uri", "description": "API documentation or endpoint URL. Set to null if no API is available." }, @@ -80,28 +91,52 @@ ] }, "country": { - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "description": "ISO 3166-1 alpha-2 country code. Only use this field when the data source clearly belongs to a specific country AND geographic_scope is 'national' or 'subnational'. MUST be null when geographic_scope is 'global' or 'regional'.", "pattern": "^[A-Z]{2}$", - "examples": ["CN", "US", "HK", "JP", null] + "examples": [ + "CN", + "US", + "HK", + "JP", + null + ] }, "domains": { "type": "array", "description": "Data domains covered by this source", "items": { - "type": "string" + "type": "string", + "pattern": "^[a-z0-9]+(-[a-z0-9]+)*$" }, "minItems": 1, "examples": [ - ["finance", "economics"], - ["health", "social"], - ["environment", "climate"] + [ + "finance", + "economics" + ], + [ + "health", + "social" + ], + [ + "environment", + "climate" + ] ] }, "geographic_scope": { "type": "string", "description": "Geographic coverage level", - "enum": ["global", "regional", "national", "subnational"] + "enum": [ + "global", + "regional", + "national", + "subnational" + ] }, "update_frequency": { "type": "string", @@ -118,14 +153,24 @@ }, "tags": { "type": "array", - "description": "Search tags - mixed Chinese/English keywords, synonyms, data types, and related terms for improved discoverability", + "description": "Search tags - mixed Chinese/English keywords, synonyms, data types, and related terms for improved discoverability. Must not contain whitespace; use hyphens for multi-word English phrases (e.g., 'economic-growth' not 'economic growth'). Convention: new ASCII-only entries SHOULD be lowercase (gdp/ipo); mixed CJK+ASCII acronyms (AI产业/3C认证/A股) MUST preserve ASCII case.", "items": { - "type": "string" + "type": "string", + "pattern": "^\\S+$" }, "minItems": 1, "examples": [ - ["gdp", "经济增长", "economic-growth"], - ["ipo", "招股书", "prospectus", "上市公司"] + [ + "gdp", + "经济增长", + "economic-growth" + ], + [ + "ipo", + "招股书", + "prospectus", + "上市公司" + ] ] }, "data_content": { @@ -148,5 +193,6 @@ } } } - } + }, + "additionalProperties": false } diff --git a/firstdata/sources/academic/biology/1000-genomes.json b/firstdata/sources/academic/biology/1000-genomes.json index c947dbe9..3b81756e 100644 --- a/firstdata/sources/academic/biology/1000-genomes.json +++ b/firstdata/sources/academic/biology/1000-genomes.json @@ -15,9 +15,9 @@ "domains": [ "genomics", "genetics", - "human genetic variation", - "population genetics", - "evolutionary biology", + "human-genetic-variation", + "population-genetics", + "evolutionary-biology", "bioinformatics" ], "geographic_scope": "global", @@ -25,22 +25,22 @@ "tags": [ "genomics", "genetics", - "whole genome sequencing", - "human genetics", - "population genetics", - "genetic variation", - "SNP", - "variant calling", - "reference genome", - "allele frequency", + "whole-genome-sequencing", + "human-genetics", + "population-genetics", + "genetic-variation", + "snp", + "variant-calling", + "reference-genome", + "allele-frequency", "haplotype", - "VCF", - "BAM", - "open data", - "international collaboration", - "evolutionary biology", + "vcf", + "bam", + "open-data", + "international-collaboration", + "evolutionary-biology", "bioinformatics", - "precision medicine" + "precision-medicine" ], "data_content": { "en": [ @@ -69,4 +69,4 @@ ] }, "authority_level": "research" -} \ No newline at end of file +} diff --git a/firstdata/sources/academic/biology/alphafold-db.json b/firstdata/sources/academic/biology/alphafold-db.json index f05f6b3d..23180912 100644 --- a/firstdata/sources/academic/biology/alphafold-db.json +++ b/firstdata/sources/academic/biology/alphafold-db.json @@ -13,29 +13,29 @@ "api_url": "https://alphafold.com/api-docs", "country": null, "domains": [ - "structural biology", + "structural-biology", "proteomics", - "drug discovery", - "molecular biology", + "drug-discovery", + "molecular-biology", "biotechnology", "bioinformatics" ], "geographic_scope": "global", "update_frequency": "irregular", "tags": [ - "protein structure", - "structural biology", - "AI prediction", - "machine learning", + "protein-structure", + "structural-biology", + "ai-prediction", + "machine-learning", "proteomics", - "drug discovery", + "drug-discovery", "bioinformatics", - "AlphaFold", - "DeepMind", - "EMBL-EBI", - "computational biology", - "3D structure", - "protein folding" + "alphafold", + "deepmind", + "embl-ebi", + "computational-biology", + "3d-structure", + "protein-folding" ], "data_content": { "en": [ diff --git a/firstdata/sources/academic/biology/ena.json b/firstdata/sources/academic/biology/ena.json index 59a7d7dd..b0a0e444 100644 --- a/firstdata/sources/academic/biology/ena.json +++ b/firstdata/sources/academic/biology/ena.json @@ -16,31 +16,31 @@ "genomics", "transcriptomics", "metagenomics", - "molecular biology", + "molecular-biology", "bioinformatics", "biodiversity", - "environmental sciences", + "environmental-sciences", "healthcare", - "pathogen surveillance" + "pathogen-surveillance" ], "geographic_scope": "global", "update_frequency": "daily", "tags": [ - "nucleotide sequences", - "DNA", - "RNA", + "nucleotide-sequences", + "dna", + "rna", "genomics", "sequencing", "bioinformatics", - "INSDC", - "EMBL-EBI", - "genome assembly", + "insdc", + "embl-ebi", + "genome-assembly", "metagenomics", "transcriptomics", "biodiversity", - "pathogen surveillance", - "open data", - "life sciences" + "pathogen-surveillance", + "open-data", + "life-sciences" ], "data_content": { "en": [ diff --git a/firstdata/sources/academic/biology/genbank.json b/firstdata/sources/academic/biology/genbank.json index d325c7e7..4112cebc 100644 --- a/firstdata/sources/academic/biology/genbank.json +++ b/firstdata/sources/academic/biology/genbank.json @@ -14,7 +14,7 @@ "country": null, "domains": [ "genomics", - "molecular biology", + "molecular-biology", "genetics", "bioinformatics" ], @@ -22,16 +22,16 @@ "update_frequency": "daily", "tags": [ "genomics", - "DNA sequences", - "nucleotide database", - "molecular biology", + "dna-sequences", + "nucleotide-database", + "molecular-biology", "genetics", "bioinformatics", - "genome assembly", - "NCBI", - "NIH", - "INSDC", - "sequence database" + "genome-assembly", + "ncbi", + "nih", + "insdc", + "sequence-database" ], "data_content": { "en": [ diff --git a/firstdata/sources/academic/biology/pdb.json b/firstdata/sources/academic/biology/pdb.json index 5c52a8a2..7bbd70e4 100644 --- a/firstdata/sources/academic/biology/pdb.json +++ b/firstdata/sources/academic/biology/pdb.json @@ -13,30 +13,30 @@ "api_url": "https://data.rcsb.org", "country": null, "domains": [ - "structural biology", + "structural-biology", "biochemistry", - "molecular biology", - "computational biology", - "drug discovery", + "molecular-biology", + "computational-biology", + "drug-discovery", "biotechnology", - "protein science" + "protein-science" ], "geographic_scope": "global", "update_frequency": "weekly", "tags": [ - "protein structures", - "structural biology", - "3D structures", - "molecular biology", - "drug discovery", + "protein-structures", + "structural-biology", + "3d-structures", + "molecular-biology", + "drug-discovery", "biotechnology", - "open science", + "open-science", "bioinformatics", "crystallography", - "cryo-EM", - "NMR", - "PDB", - "macromolecular structures" + "cryo-em", + "nmr", + "pdb", + "macromolecular-structures" ], "data_content": { "en": [ diff --git a/firstdata/sources/academic/biology/uk-biobank.json b/firstdata/sources/academic/biology/uk-biobank.json index c34324f8..08b46d26 100644 --- a/firstdata/sources/academic/biology/uk-biobank.json +++ b/firstdata/sources/academic/biology/uk-biobank.json @@ -18,7 +18,7 @@ "genomics", "epidemiology", "biomarkers", - "medical imaging", + "medical-imaging", "demographics", "lifestyle", "proteomics", @@ -30,21 +30,21 @@ "biobank", "genomics", "genetics", - "medical imaging", + "medical-imaging", "proteomics", "metabolomics", "epidemiology", - "UK", - "longitudinal study", - "precision medicine", - "whole genome sequencing", + "uk", + "longitudinal-study", + "precision-medicine", + "whole-genome-sequencing", "biomarkers", - "healthcare data", - "cohort study", - "personalized medicine", - "disease prevention", - "clinical research", - "population health" + "healthcare-data", + "cohort-study", + "personalized-medicine", + "disease-prevention", + "clinical-research", + "population-health" ], "data_content": { "en": [ @@ -73,4 +73,4 @@ ] }, "authority_level": "research" -} \ No newline at end of file +} diff --git a/firstdata/sources/academic/chemistry/chembl.json b/firstdata/sources/academic/chemistry/chembl.json index 4a69b57e..2fca6385 100644 --- a/firstdata/sources/academic/chemistry/chembl.json +++ b/firstdata/sources/academic/chemistry/chembl.json @@ -13,15 +13,15 @@ "api_url": "https://www.ebi.ac.uk/chembl/api/data/docs", "country": null, "domains": [ - "drug discovery", - "pharmaceutical sciences", - "medicinal chemistry", - "chemical biology", + "drug-discovery", + "pharmaceutical-sciences", + "medicinal-chemistry", + "chemical-biology", "bioactivity", "pharmacology", "toxicology", "admet", - "agrochemical research", + "agrochemical-research", "genomics", "proteomics" ], diff --git a/firstdata/sources/academic/chemistry/chemspider.json b/firstdata/sources/academic/chemistry/chemspider.json index 0a658ed1..dac6dca2 100644 --- a/firstdata/sources/academic/chemistry/chemspider.json +++ b/firstdata/sources/academic/chemistry/chemspider.json @@ -14,13 +14,13 @@ "country": null, "domains": [ "chemistry", - "chemical structures", - "molecular properties", - "pharmaceutical sciences", - "materials science", - "organic chemistry", - "inorganic chemistry", - "chemical information" + "chemical-structures", + "molecular-properties", + "pharmaceutical-sciences", + "materials-science", + "organic-chemistry", + "inorganic-chemistry", + "chemical-information" ], "geographic_scope": "global", "update_frequency": "daily", diff --git a/firstdata/sources/academic/chemistry/drugbank.json b/firstdata/sources/academic/chemistry/drugbank.json index 5ccd1ec7..dd40c09a 100644 --- a/firstdata/sources/academic/chemistry/drugbank.json +++ b/firstdata/sources/academic/chemistry/drugbank.json @@ -13,15 +13,15 @@ "api_url": "https://docs.drugbank.com", "country": null, "domains": [ - "pharmaceutical sciences", - "drug discovery", - "drug development", + "pharmaceutical-sciences", + "drug-discovery", + "drug-development", "pharmacology", - "medicinal chemistry", + "medicinal-chemistry", "bioinformatics", "cheminformatics", - "clinical pharmacology", - "drug metabolism", + "clinical-pharmacology", + "drug-metabolism", "toxicology" ], "geographic_scope": "global", diff --git a/firstdata/sources/academic/economics/bis-statistics.json b/firstdata/sources/academic/economics/bis-statistics.json index caefa25a..d442b606 100644 --- a/firstdata/sources/academic/economics/bis-statistics.json +++ b/firstdata/sources/academic/economics/bis-statistics.json @@ -13,16 +13,16 @@ "api_url": "https://stats.bis.org/api-doc/v2/", "country": null, "domains": [ - "international banking", - "debt securities", - "credit markets", - "foreign exchange", + "international-banking", + "debt-securities", + "credit-markets", + "foreign-exchange", "derivatives", - "property prices", - "consumer prices", - "global liquidity", - "payment systems", - "central bank statistics" + "property-prices", + "consumer-prices", + "global-liquidity", + "payment-systems", + "central-bank-statistics" ], "geographic_scope": "global", "update_frequency": "quarterly", diff --git a/firstdata/sources/academic/economics/conference-board.json b/firstdata/sources/academic/economics/conference-board.json index f7b2084d..3f2b8f2c 100644 --- a/firstdata/sources/academic/economics/conference-board.json +++ b/firstdata/sources/academic/economics/conference-board.json @@ -14,11 +14,11 @@ "country": null, "domains": [ "economics", - "business cycles", - "consumer confidence", - "labor markets", + "business-cycles", + "consumer-confidence", + "labor-markets", "employment", - "economic forecasting" + "economic-forecasting" ], "geographic_scope": "global", "update_frequency": "monthly", diff --git a/firstdata/sources/academic/environment/copernicus-open-access-hub.json b/firstdata/sources/academic/environment/copernicus-open-access-hub.json index fd09766f..d17d2aaf 100644 --- a/firstdata/sources/academic/environment/copernicus-open-access-hub.json +++ b/firstdata/sources/academic/environment/copernicus-open-access-hub.json @@ -18,7 +18,7 @@ "ocean", "land", "atmosphere", - "disaster_management" + "disaster-management" ], "geographic_scope": "global", "update_frequency": "daily", @@ -28,7 +28,7 @@ "remote_sensing", "sentinel", "copernicus", - "ESA", + "esa", "radar", "optical", "atmospheric", @@ -52,4 +52,4 @@ ] }, "authority_level": "international" -} \ No newline at end of file +} diff --git a/firstdata/sources/academic/health/clinicaltrials-gov.json b/firstdata/sources/academic/health/clinicaltrials-gov.json index d7b40a4f..14e57ff7 100644 --- a/firstdata/sources/academic/health/clinicaltrials-gov.json +++ b/firstdata/sources/academic/health/clinicaltrials-gov.json @@ -14,25 +14,25 @@ "country": null, "domains": [ "health", - "clinical_research", - "medical_trials" + "clinical-research", + "medical-trials" ], "geographic_scope": "global", "update_frequency": "daily", "tags": [ - "clinical trials", - "medical research", - "NIH", - "NLM", - "drug trials", - "patient recruitment", - "NCT number", - "clinical research", - "medical studies", - "FDA", - "public health", - "evidence-based medicine", - "API" + "clinical-trials", + "medical-research", + "nih", + "nlm", + "drug-trials", + "patient-recruitment", + "nct-number", + "clinical-research", + "medical-studies", + "fda", + "public-health", + "evidence-based-medicine", + "api" ], "data_content": { "en": [ @@ -57,4 +57,4 @@ ] }, "authority_level": "government" -} \ No newline at end of file +} diff --git a/firstdata/sources/academic/health/dhs.json b/firstdata/sources/academic/health/dhs.json index 4ed97bc8..64f3caa5 100644 --- a/firstdata/sources/academic/health/dhs.json +++ b/firstdata/sources/academic/health/dhs.json @@ -20,19 +20,19 @@ "geographic_scope": "regional", "update_frequency": "irregular", "tags": [ - "demographic surveys", - "health surveys", - "DHS", - "USAID", - "developing countries", - "maternal health", - "child health", - "HIV/AIDS", - "family planning", + "demographic-surveys", + "health-surveys", + "dhs", + "usaid", + "developing-countries", + "maternal-health", + "child-health", + "hiv/aids", + "family-planning", "fertility", "nutrition", - "household surveys", - "STATcompiler" + "household-surveys", + "statcompiler" ], "data_content": { "en": [ @@ -57,4 +57,4 @@ ] }, "authority_level": "international" -} \ No newline at end of file +} diff --git a/firstdata/sources/academic/health/ghdx.json b/firstdata/sources/academic/health/ghdx.json index e56d62b0..ef4c76a4 100644 --- a/firstdata/sources/academic/health/ghdx.json +++ b/firstdata/sources/academic/health/ghdx.json @@ -17,29 +17,29 @@ "demographics", "epidemiology", "mortality", - "disease burden", - "health financing", - "risk factors", - "health systems" + "disease-burden", + "health-financing", + "risk-factors", + "health-systems" ], "geographic_scope": "global", "update_frequency": "irregular", "tags": [ - "global health", - "disease burden", - "GBD", - "IHME", + "global-health", + "disease-burden", + "gbd", + "ihme", "mortality", "epidemiology", - "health metrics", - "DALYs", - "life expectancy", - "health financing", - "risk factors", + "health-metrics", + "dalys", + "life-expectancy", + "health-financing", + "risk-factors", "vaccination", - "health surveys", - "vital statistics", - "demographic data" + "health-surveys", + "vital-statistics", + "demographic-data" ], "data_content": { "en": [ @@ -68,4 +68,4 @@ ] }, "authority_level": "research" -} \ No newline at end of file +} diff --git a/firstdata/sources/academic/health/pubmed.json b/firstdata/sources/academic/health/pubmed.json index be67868f..e59279a1 100644 --- a/firstdata/sources/academic/health/pubmed.json +++ b/firstdata/sources/academic/health/pubmed.json @@ -15,24 +15,24 @@ "domains": [ "health", "biomedical", - "life_sciences" + "life-sciences" ], "geographic_scope": "global", "update_frequency": "daily", "tags": [ - "biomedical literature", - "MEDLINE", + "biomedical-literature", + "medline", "citations", "abstracts", - "life sciences", - "medical research", - "public health", - "clinical trials", - "MeSH", - "NIH", - "NLM", - "NCBI", - "E-utilities API" + "life-sciences", + "medical-research", + "public-health", + "clinical-trials", + "mesh", + "nih", + "nlm", + "ncbi", + "e-utilities-api" ], "data_content": { "en": [ @@ -57,4 +57,4 @@ ] }, "authority_level": "government" -} \ No newline at end of file +} diff --git a/firstdata/sources/academic/health/tcga.json b/firstdata/sources/academic/health/tcga.json index 8935ca57..2309d1c3 100644 --- a/firstdata/sources/academic/health/tcga.json +++ b/firstdata/sources/academic/health/tcga.json @@ -13,35 +13,35 @@ "api_url": "https://gdc.cancer.gov/developers/gdc-application-programming-interface-api", "country": "US", "domains": [ - "cancer genomics", + "cancer-genomics", "oncology", - "molecular biology", + "molecular-biology", "genomics", "bioinformatics", - "precision medicine", - "biomedical research" + "precision-medicine", + "biomedical-research" ], "geographic_scope": "national", "update_frequency": "irregular", "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", + "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" + "biomarker-discovery", + "pan-cancer-analysis", + "molecular-characterization", + "tumor-genomics" ], "data_content": { "en": [ @@ -74,4 +74,4 @@ ] }, "authority_level": "government" -} \ No newline at end of file +} diff --git a/firstdata/sources/academic/ieee-xplore.json b/firstdata/sources/academic/ieee-xplore.json new file mode 100644 index 00000000..6fe2ac28 --- /dev/null +++ b/firstdata/sources/academic/ieee-xplore.json @@ -0,0 +1,55 @@ +{ + "id": "ieee-xplore", + "name": { + "en": "IEEE Xplore Digital Library", + "zh": "IEEE Xplore数字图书馆" + }, + "description": { + "en": "IEEE Xplore is a research database providing access to scientific and technical content published by IEEE (Institute of Electrical and Electronics Engineers) and its publishing partners. It contains over 6 million documents including journal articles, conference proceedings, technical standards, and books covering electrical engineering, computer science, electronics, and related fields.", + "zh": "IEEE Xplore是一个科研数据库,提供IEEE(电气和电子工程师协会)及其合作出版方发布的科学技术内容。收录超过600万篇文献,包括期刊论文、会议论文、技术标准和专著,覆盖电气工程、计算机科学、电子学等相关领域。" + }, + "website": "https://www.ieee.org", + "data_url": "https://ieeexplore.ieee.org", + "api_url": "https://developer.ieee.org/docs/read/IEEE_Xplore_Metadata_API", + "authority_level": "research", + "country": null, + "domains": [ + "science", + "technology", + "engineering", + "computer-science" + ], + "geographic_scope": "global", + "update_frequency": "daily", + "tags": [ + "ieee", + "ieee-xplore", + "学术论文", + "research-papers", + "conference-proceedings", + "technical-standards", + "电气工程", + "计算机科学", + "半导体", + "semiconductor", + "artificial-intelligence", + "academic", + "peer-reviewed" + ], + "data_content": { + "en": [ + "Journal Articles - Peer-reviewed research papers from over 200 IEEE journals and magazines", + "Conference Proceedings - Papers from over 2,000 annual IEEE conferences worldwide", + "Technical Standards - IEEE standards documents covering electronics, computing, power, and telecommunications", + "Books and eBooks - Technical reference books and educational materials", + "Early Access Articles - Pre-publication versions of accepted journal articles" + ], + "zh": [ + "期刊论文 - 来自200多种IEEE期刊和杂志的同行评审研究论文", + "会议论文 - 来自全球2000多个IEEE年度会议的论文", + "技术标准 - 覆盖电子、计算、电力和电信领域的IEEE标准文件", + "书籍和电子书 - 技术参考书和教育材料", + "早期访问论文 - 已接受期刊论文的预出版版本" + ] + } +} diff --git a/firstdata/sources/academic/multidisciplinary/owid.json b/firstdata/sources/academic/multidisciplinary/owid.json new file mode 100644 index 00000000..d4ba4e21 --- /dev/null +++ b/firstdata/sources/academic/multidisciplinary/owid.json @@ -0,0 +1,64 @@ +{ + "id": "owid", + "name": { + "en": "Our World in Data", + "zh": "用数据看世界" + }, + "description": { + "en": "Our World in Data (OWID) is a scientific online publication by the University of Oxford that presents research and data on the world's largest problems — poverty, disease, hunger, climate change, war, existential risks, and inequality. All visualizations, data, and code are open-source and freely accessible. OWID aggregates data from authoritative sources (UN, World Bank, WHO, etc.) and presents it through interactive charts and downloadable datasets, making complex global data accessible to everyone.", + "zh": "Our World in Data(OWID)是牛津大学的科学在线出版物,提供关于全球最大挑战的研究和数据——贫困、疾病、饥饿、气候变化、战争、生存风险和不平等。所有可视化、数据和代码均为开源且免费访问。OWID汇集来自权威来源(联合国、世界银行、世卫组织等)的数据,通过交互式图表和可下载数据集呈现,使复杂的全球数据人人可及。" + }, + "website": "https://ourworldindata.org", + "data_url": "https://github.com/owid/owid-datasets", + "api_url": "https://docs.owid.io/projects/etl/api/", + "country": null, + "domains": [ + "global-development", + "health", + "energy", + "environment", + "education", + "poverty", + "demographics", + "economics" + ], + "geographic_scope": "global", + "update_frequency": "daily", + "tags": [ + "owid", + "our-world-in-data", + "global-development", + "oxford", + "open-data", + "covid-19", + "vaccination", + "poverty", + "climate-change", + "全球发展", + "数据可视化", + "开放数据" + ], + "data_content": { + "en": [ + "Health - COVID-19 vaccinations, disease burden, life expectancy, causes of death", + "Energy - Energy mix, renewable energy, fossil fuels, CO2 emissions", + "Environment - Climate change, air pollution, deforestation, biodiversity", + "Population - Demographics, fertility, migration, urbanization", + "Poverty - Extreme poverty, inequality, economic development", + "Education - Literacy, school enrollment, educational attainment", + "Technology - Internet access, technology adoption", + "Food - Hunger, agricultural production, food supply" + ], + "zh": [ + "健康 - COVID-19疫苗接种、疾病负担、预期寿命、死亡原因", + "能源 - 能源结构、可再生能源、化石燃料、碳排放", + "环境 - 气候变化、空气污染、森林砍伐、生物多样性", + "人口 - 人口统计、生育率、移民、城市化", + "贫困 - 极端贫困、不平等、经济发展", + "教育 - 识字率、入学率、教育程度", + "技术 - 互联网接入、技术采用", + "食品 - 饥饿、农业生产、食品供应" + ] + }, + "authority_level": "research" +} diff --git a/firstdata/sources/academic/physics/cern-open-data.json b/firstdata/sources/academic/physics/cern-open-data.json index fbfc39bc..8bf9957d 100644 --- a/firstdata/sources/academic/physics/cern-open-data.json +++ b/firstdata/sources/academic/physics/cern-open-data.json @@ -13,13 +13,13 @@ "api_url": "https://github.com/cernopendata/opendata.cern.ch", "country": null, "domains": [ - "particle physics", - "high energy physics", - "nuclear physics", - "experimental physics", - "computational physics", - "data science", - "machine learning" + "particle-physics", + "high-energy-physics", + "nuclear-physics", + "experimental-physics", + "computational-physics", + "data-science", + "machine-learning" ], "geographic_scope": "global", "update_frequency": "irregular", diff --git a/firstdata/sources/academic/physics/crystallography-open-database.json b/firstdata/sources/academic/physics/crystallography-open-database.json index 895cc9cb..0e6d9bb6 100644 --- a/firstdata/sources/academic/physics/crystallography-open-database.json +++ b/firstdata/sources/academic/physics/crystallography-open-database.json @@ -14,7 +14,7 @@ "country": null, "domains": [ "crystallography", - "materials science", + "materials-science", "chemistry", "physics", "mineralogy" @@ -23,15 +23,15 @@ "update_frequency": "daily", "tags": [ "crystallography", - "crystal structures", - "materials science", + "crystal-structures", + "materials-science", "chemistry", "physics", "mineralogy", - "open access", - "CIF", - "atomic structures", - "research data" + "open-access", + "cif", + "atomic-structures", + "research-data" ], "data_content": { "en": [ diff --git a/firstdata/sources/academic/social/afrobarometer.json b/firstdata/sources/academic/social/afrobarometer.json index e1058456..5edc0af8 100644 --- a/firstdata/sources/academic/social/afrobarometer.json +++ b/firstdata/sources/academic/social/afrobarometer.json @@ -13,21 +13,21 @@ "api_url": null, "country": null, "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", + "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" + "environmental-issues" ], "geographic_scope": "regional", "update_frequency": "irregular", diff --git a/firstdata/sources/academic/social/asian-barometer.json b/firstdata/sources/academic/social/asian-barometer.json index 30d491ca..f56aa836 100644 --- a/firstdata/sources/academic/social/asian-barometer.json +++ b/firstdata/sources/academic/social/asian-barometer.json @@ -13,29 +13,29 @@ "api_url": null, "country": null, "domains": [ - "political science", - "democracy studies", - "public opinion", + "political-science", + "democracy-studies", + "public-opinion", "governance", - "political values", - "electoral studies", - "social science" + "political-values", + "electoral-studies", + "social-science" ], "geographic_scope": "regional", "update_frequency": "irregular", "tags": [ - "political science", + "political-science", "democracy", "survey", - "public opinion", - "Asia", + "public-opinion", + "asia", "governance", - "electoral studies", - "political values", - "comparative politics", - "social science", - "Taiwan", - "academia sinica" + "electoral-studies", + "political-values", + "comparative-politics", + "social-science", + "taiwan", + "academia-sinica" ], "data_content": { "en": [ diff --git a/firstdata/sources/china/README.md b/firstdata/sources/china/README.md index 7df1cb0e..8018391b 100644 --- a/firstdata/sources/china/README.md +++ b/firstdata/sources/china/README.md @@ -183,7 +183,7 @@ ## 🏆 项目亮点 ### 全球领先的深度覆盖 -FirstData 提供**全球最全面**的中国官方数据源知识库: +FirstData 提供**全球最全面**的中国官方外部事实上下文层: - **覆盖深度**: 国家级 + 省级 + 行业 - **元数据详细度**: 40+字段专业级 diff --git a/firstdata/sources/china/china-csdc.json b/firstdata/sources/china/china-csdc.json new file mode 100644 index 00000000..8b84ae0c --- /dev/null +++ b/firstdata/sources/china/china-csdc.json @@ -0,0 +1,44 @@ +{ + "id": "china-csdc", + "name": { + "en": "China Securities Depository and Clearing Corporation", + "zh": "中国证券登记结算有限公司" + }, + "description": { + "en": "China's central securities depository providing investor account statistics, settlement data, and securities registration services.", + "zh": "中国中央证券存管机构,提供投资者账户统计、清算结算数据和证券登记服务。" + }, + "website": "https://www.chinaclear.cn", + "data_url": "https://www.chinaclear.cn/zdjs/tjyb/center_tjbg.shtml", + "api_url": null, + "data_content": { + "en": [ + "Investor account statistics", + "Securities settlement data", + "Market capitalization reports", + "Bond custody data", + "Monthly statistical bulletins" + ], + "zh": [ + "投资者账户统计", + "证券结算数据", + "市值报告", + "债券托管数据", + "月度统计公报" + ] + }, + "authority_level": "other", + "update_frequency": "monthly", + "domains": [ + "finance" + ], + "tags": [ + "securities", + "clearing", + "settlement", + "investor", + "china" + ], + "country": "CN", + "geographic_scope": "national" +} diff --git a/firstdata/sources/china/china-nea.json b/firstdata/sources/china/china-nea.json new file mode 100644 index 00000000..2324e769 --- /dev/null +++ b/firstdata/sources/china/china-nea.json @@ -0,0 +1,40 @@ +{ + "id": "china-nea", + "name": { + "en": "National Energy Administration of China", + "zh": "国家能源局" + }, + "description": { + "en": "China's National Energy Administration publishes energy production, consumption, and renewable energy statistics.", + "zh": "中国国家能源局发布能源生产、消费和可再生能源统计数据。" + }, + "website": "https://www.nea.gov.cn", + "data_url": "https://www.nea.gov.cn/sjzz/", + "api_url": null, + "data_content": { + "en": [ + "Electricity generation", + "energy consumption", + "renewable energy capacity", + "power grid statistics", + "oil and gas production" + ], + "zh": [ + "发电量、能源消费、可再生能源装机、电网统计、油气生产" + ] + }, + "authority_level": "government", + "update_frequency": "monthly", + "domains": [ + "energy" + ], + "tags": [ + "energy", + "electricity", + "renewable", + "power", + "china" + ], + "country": "CN", + "geographic_scope": "national" +} diff --git a/firstdata/sources/china/china-sac.json b/firstdata/sources/china/china-sac.json new file mode 100644 index 00000000..3e4fb912 --- /dev/null +++ b/firstdata/sources/china/china-sac.json @@ -0,0 +1,44 @@ +{ + "id": "china-sac", + "name": { + "en": "Securities Association of China", + "zh": "中国证券业协会" + }, + "description": { + "en": "China's self-regulatory organization for the securities industry, publishing broker rankings, industry statistics, and member data.", + "zh": "中国证券行业自律组织,发布券商排名、行业统计和会员数据。" + }, + "website": "https://www.sac.net.cn", + "data_url": "https://www.sac.net.cn/hysj/", + "api_url": null, + "data_content": { + "en": [ + "Securities broker rankings", + "Industry revenue statistics", + "Member firm data", + "Practitioner registration", + "Securities market overview" + ], + "zh": [ + "券商排名", + "行业营收统计", + "会员公司数据", + "从业人员注册", + "证券市场概览" + ] + }, + "authority_level": "other", + "update_frequency": "quarterly", + "domains": [ + "finance" + ], + "tags": [ + "securities", + "broker", + "china", + "sac", + "ranking" + ], + "country": "CN", + "geographic_scope": "national" +} diff --git a/firstdata/sources/china/cninfo.json b/firstdata/sources/china/cninfo.json new file mode 100644 index 00000000..fdd5e4ab --- /dev/null +++ b/firstdata/sources/china/cninfo.json @@ -0,0 +1,44 @@ +{ + "id": "cninfo", + "name": { + "en": "CNINFO (Shenzhen Stock Exchange Information)", + "zh": "巨潮资讯网" + }, + "description": { + "en": "CSRC-designated information disclosure platform for listed companies on Shenzhen and Shanghai exchanges, providing financial reports, announcements, and market data.", + "zh": "证监会指定信息披露平台,提供深沪上市公司财务报告、公告和市场数据。" + }, + "website": "https://www.cninfo.com.cn", + "data_url": "https://www.cninfo.com.cn/new/commonUrl?url=disclosure/list/search", + "api_url": "https://www.cninfo.com.cn/new/hisAnnouncement/query", + "data_content": { + "en": [ + "Listed company financial reports", + "Regulatory announcements", + "IPO prospectuses", + "Bond information", + "Market statistics" + ], + "zh": [ + "上市公司财务报告", + "监管公告", + "IPO招股说明书", + "债券信息", + "市场统计" + ] + }, + "authority_level": "government", + "update_frequency": "daily", + "domains": [ + "finance" + ], + "tags": [ + "cninfo", + "disclosure", + "listed-company", + "financial-report", + "china" + ], + "country": "CN", + "geographic_scope": "national" +} diff --git a/firstdata/sources/china/construction/china-beike-research.json b/firstdata/sources/china/construction/china-beike-research.json new file mode 100644 index 00000000..265e98fd --- /dev/null +++ b/firstdata/sources/china/construction/china-beike-research.json @@ -0,0 +1,51 @@ +{ + "id": "china-beike-research", + "name": { + "en": "Beike Research Institute", + "zh": "贝壳研究院" + }, + "description": { + "en": "Beike Research Institute (贝壳研究院) is the research arm of KE Holdings Inc. (Beike / Lianjia 链家), one of China's largest housing transaction and services platforms. Leveraging Beike's nationwide network of brokerages and transaction records, the institute publishes widely cited second-hand housing price indices, rental market reports, city housing market monitors, and consumer housing demand research. Coverage includes new home sales, second-hand transactions, and rental listings across 100+ Chinese cities.", + "zh": "贝壳研究院是贝壳找房(链家)旗下的研究机构。贝壳找房是中国最大的居住服务平台之一。依托贝壳全国经纪门店网络和交易数据,研究院发布广泛引用的二手房价格指数、租赁市场报告、城市房地产市场监测报告及购房者需求研究。覆盖100多个中国城市的新房销售、二手房交易和租赁市场数据。" + }, + "website": "https://research.ke.com", + "data_url": "https://research.ke.com", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "real-estate", + "economics" + ], + "update_frequency": "monthly", + "tags": [ + "real-estate", + "贝壳研究院", + "beike", + "二手房", + "second-hand-housing", + "rental-market", + "租赁", + "price-index", + "housing-demand" + ], + "data_content": { + "en": [ + "Beike Second-hand Housing Price Index - Monthly second-hand housing price index across major Chinese cities", + "Rental Market Reports - Rental price trends, vacancy rates and tenant behavior analysis", + "New Home Sales Data - Monthly new home sales volume and price data from Beike platform", + "City Real Estate Monitors - City-level housing market monitoring reports", + "Housing Demand Research - Consumer housing purchase intention and demand surveys", + "Agency Industry Reports - Real estate brokerage industry data and research" + ], + "zh": [ + "贝壳二手房价格指数 - 覆盖主要城市的月度二手房价格指数", + "租赁市场报告 - 租金价格走势、空置率及租客行为分析", + "新房销售数据 - 贝壳平台月度新房销售量和价格数据", + "城市房地产监测 - 城市层级的房地产市场监测报告", + "购房需求研究 - 消费者购房意向和需求调研", + "经纪行业报告 - 房地产经纪行业数据与研究" + ] + } +} diff --git a/firstdata/sources/china/construction/china-caupd.json b/firstdata/sources/china/construction/china-caupd.json new file mode 100644 index 00000000..488d0919 --- /dev/null +++ b/firstdata/sources/china/construction/china-caupd.json @@ -0,0 +1,76 @@ +{ + "id": "china-caupd", + "name": { + "en": "China Academy of Urban Planning and Design", + "zh": "中国城市规划设计研究院" + }, + "description": { + "en": "The China Academy of Urban Planning and Design (CAUPD), established in 1954 and operating under the Ministry of Natural Resources, is China's foremost national-level research institute for urban and rural planning. CAUPD plays a central role in formulating China's urban planning standards, national spatial planning strategies, and major city and regional development plans. The academy has led planning work for hundreds of Chinese cities, key national development zones, and major infrastructure corridors. CAUPD publishes authoritative urban development research including annual urban-rural development reports, housing market analysis, transportation planning studies, and regional spatial planning guidelines. Its data and expertise directly inform the National Five-Year Plans, city master plans, and national policies on urbanization, land use, and sustainable urban development.", + "zh": "中国城市规划设计研究院(中规院)成立于1954年,隶属于自然资源部,是中国最权威的国家级城乡规划研究机构。中规院在制定中国城乡规划标准、国土空间规划战略和重大城市及区域发展规划方面发挥核心作用,主导了数百个城市、国家重点开发区和重大基础设施廊道的规划工作。院所发布权威城市发展研究成果,包括年度城乡发展报告、住房市场分析、交通规划研究和区域国土空间规划指南,其数据和专业知识直接支撑国家五年规划、城市总体规划及城镇化、土地利用和可持续城市发展相关国家政策的制定。" + }, + "website": "https://www.caupd.com/", + "data_url": "https://www.caupd.com/", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "urban-development", + "land-use", + "transportation", + "demographics" + ], + "update_frequency": "annual", + "tags": [ + "城市规划", + "urban-planning", + "城乡规划", + "urban-rural-planning", + "国土空间规划", + "national-spatial-planning", + "城镇化", + "urbanization", + "住房", + "housing", + "交通规划", + "transportation-planning", + "区域规划", + "regional-planning", + "城市发展", + "urban-development", + "城市群", + "city-cluster", + "中规院", + "caupd", + "城市总体规划", + "city-master-plan", + "土地利用", + "land-use", + "可持续城市", + "sustainable-urban" + ], + "data_content": { + "en": [ + "China Urban-Rural Development Annual Report: comprehensive statistics on urbanization rate, urban construction land expansion, population migration, and city infrastructure investment", + "National spatial planning research: analysis of national territorial spatial planning frameworks, land use optimization, and ecological red line delineation", + "Housing market research: housing supply and demand statistics, affordability indices, and rental market analysis for major Chinese cities", + "Urban transportation planning studies: data on urban rail transit development, road network density, traffic congestion indices, and public transit ridership", + "City cluster development reports: planning data and demographic-economic analysis for Beijing-Tianjin-Hebei, Yangtze River Delta, Pearl River Delta, and Chengdu-Chongqing city clusters", + "Urban renewal and brownfield data: statistics on old city renovation projects, urban village redevelopment, and heritage preservation", + "Municipal infrastructure capacity analysis: water supply, wastewater treatment, solid waste management, and utility coverage in Chinese cities", + "Rural settlement planning: data on rural land consolidation, village relocation, and rural infrastructure improvement programs", + "Smart city and digital urban management research: data on city brain systems, digital twin pilots, and urban data platform deployment" + ], + "zh": [ + "中国城乡发展年度报告:城镇化率、城市建设用地扩张、人口迁移和城市基础设施投资综合统计", + "国土空间规划研究:国家国土空间规划框架、土地利用优化和生态保护红线划定分析", + "住房市场研究:主要城市住房供需统计、可负担性指数和租赁市场分析", + "城市交通规划研究:城市轨道交通建设、路网密度、交通拥堵指数和公共交通客运量数据", + "城市群发展报告:京津冀、长三角、珠三角和成渝城市群规划数据和人口经济分析", + "城市更新和棕地数据:老旧城区改造项目、城中村改造和历史文化保护统计", + "市政基础设施能力分析:中国城市供水、污水处理、固体废弃物管理和公用事业覆盖情况", + "乡村定居点规划:农村土地整治、村庄搬迁和农村基础设施改善项目数据", + "智慧城市和数字城市管理研究:城市大脑系统、数字孪生试点和城市数据平台部署数据" + ] + } +} diff --git a/firstdata/sources/china/construction/china-ccia.json b/firstdata/sources/china/construction/china-ccia.json new file mode 100644 index 00000000..2be34896 --- /dev/null +++ b/firstdata/sources/china/construction/china-ccia.json @@ -0,0 +1,72 @@ +{ + "id": "china-ccia", + "name": { + "en": "China Construction Industry Association", + "zh": "中国建筑业协会" + }, + "description": { + "en": "The China Construction Industry Association (CCIA) is the national industry organization representing China's construction and contracting enterprises. As the world's largest construction market, China's building sector contributes roughly 7% of GDP and employs tens of millions of workers. CCIA publishes the Annual Statistical Report on China's Construction Industry, which provides comprehensive data on total output value, number of enterprises, workforce, contract value, housing construction area, and safety incidents. It also releases rankings of China's top construction enterprises, construction technology innovation data, and industry development reports. CCIA data is essential for tracking infrastructure investment execution, real estate development activity, and the competitiveness of Chinese construction firms in domestic and overseas markets.", + "zh": "中国建筑业协会(中建协)是代表中国建筑和承包企业的全国性行业组织。中国是全球最大的建筑市场,建筑业约占GDP的7%,吸纳数千万就业人员。中建协发布《建筑业统计年报》,提供建筑业总产值、企业数量、从业人数、合同额、房屋建筑面积及安全生产事故等综合数据。协会同时发布中国建筑业综合实力百强企业排名、建筑技术创新数据及行业发展报告。中建协数据对追踪基础设施投资执行情况、房地产开发活动以及中国建筑企业在国内外市场竞争力具有重要参考价值。" + }, + "website": "https://www.zgjzy.org.cn", + "data_url": "http://www.zgjzy.org.cn/newsList/11/1.html", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "economics", + "industry", + "infrastructure", + "statistics" + ], + "update_frequency": "annual", + "tags": [ + "中国建筑业", + "china-construction-industry", + "中建协", + "ccia", + "建筑业统计年报", + "construction-statistical-report", + "建筑业总产值", + "construction-output-value", + "建筑企业", + "construction-enterprises", + "百强建筑企业", + "top-100-contractors", + "房屋建筑面积", + "building-construction-area", + "基础设施投资", + "infrastructure-investment", + "工程承包", + "engineering-contracting", + "建筑业就业", + "construction-employment", + "安全生产", + "safety-production", + "海外工程", + "overseas-construction" + ], + "data_content": { + "en": [ + "Annual construction industry statistics: total output value, number of enterprises, workforce size, and contract value by province", + "Enterprise rankings: China's top 100 construction enterprises by revenue, including state-owned and private contractors", + "Housing construction area: floor space under construction, completed, and newly started by building type", + "Overseas contracting: Chinese construction companies' overseas project contract value and completion by region", + "Safety statistics: construction site accidents, fatalities, and safety compliance metrics", + "Technology and innovation: adoption of BIM, green building, and prefabrication in China's construction sector", + "Workforce data: employment, wages, and migrant worker statistics in the construction industry", + "Industry development reports: analysis of construction market trends, policy impact, and enterprise competitiveness" + ], + "zh": [ + "建筑业年度统计:按省份分类的总产值、企业数量、从业人数及合同额", + "企业排名:按营业收入排列的中国建筑业综合实力百强企业,含国有和民营承包商", + "房屋建筑面积:按建筑类型分类的在建、竣工及新开工面积", + "海外承包工程:中国建筑企业按地区分类的海外工程合同额和完成额", + "安全生产统计:建筑工地事故、死亡人数及安全合规指标", + "技术与创新:BIM、绿色建筑和装配式建筑在中国建筑业的应用情况", + "从业人员数据:建筑业就业人数、工资及农民工统计", + "行业发展报告:建筑市场趋势、政策影响及企业竞争力分析" + ] + } +} diff --git a/firstdata/sources/china/construction/china-cih-index.json b/firstdata/sources/china/construction/china-cih-index.json new file mode 100644 index 00000000..1be6c71a --- /dev/null +++ b/firstdata/sources/china/construction/china-cih-index.json @@ -0,0 +1,52 @@ +{ + "id": "china-cih-index", + "name": { + "en": "China Index Academy (CIH Cloud)", + "zh": "中指研究院(中指云)" + }, + "description": { + "en": "China Index Academy (CIH, 中指研究院) is one of China's leading independent real estate research institutions. Its 'CIH Cloud' (中指云) platform publishes the widely referenced China Real Estate Index System (CREIS), including the 100-City Price Index, land auction (招拍挂) transaction data, top developer sales rankings (TOP100 房企销售榜), and monthly / annual real estate market monitoring reports covering residential, commercial, and land markets across Chinese cities.", + "zh": "中指研究院(CIH)是中国领先的独立房地产研究机构之一。其旗下的中指云平台发布广泛引用的中国房地产指数系统(CREIS),包括百城价格指数、土地招拍挂交易数据、房企销售TOP100排行榜,以及覆盖中国各城市住宅、商业和土地市场的月度/年度房地产市场监测报告。" + }, + "website": "https://www.cih-index.com", + "data_url": "https://www.cih-index.com", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "real-estate", + "economics" + ], + "update_frequency": "monthly", + "tags": [ + "real-estate", + "房地产", + "中指研究院", + "CREIS", + "百城价格指数", + "land-market", + "土地招拍挂", + "房企排名", + "TOP100", + "price-index" + ], + "data_content": { + "en": [ + "100-City Price Index - Monthly new and second-hand housing price index covering 100 Chinese cities", + "CREIS Land Market Data - Land auction transaction data including premium rates, supply, and takeup", + "TOP100 Developer Sales Rankings - Monthly and annual sales rankings of Chinese real estate developers", + "Real Estate Market Monitoring Reports - Monthly and annual market monitoring covering residential and commercial markets", + "City Research Reports - In-depth market research reports for major Chinese cities", + "Developer Financial & Operating Data - Quarterly operating and financial metrics for major listed and unlisted developers" + ], + "zh": [ + "百城价格指数 - 覆盖中国100个城市的月度新房和二手房价格指数", + "CREIS土地市场数据 - 土地招拍挂交易数据,包括溢价率、供应量和去化率", + "TOP100房企销售排行榜 - 中国房地产开发商月度和年度销售排名", + "房地产市场监测报告 - 覆盖住宅和商业市场的月度和年度市场监测", + "城市研究报告 - 中国主要城市的深度市场研究报告", + "房企财务与经营数据 - 主要上市及非上市房企的季度经营和财务指标" + ] + } +} diff --git a/firstdata/sources/china/construction/china-construction-standards.json b/firstdata/sources/china/construction/china-construction-standards.json new file mode 100644 index 00000000..ebe30438 --- /dev/null +++ b/firstdata/sources/china/construction/china-construction-standards.json @@ -0,0 +1,45 @@ +{ + "id": "china-construction-standards", + "name": { + "en": "China Engineering Construction Standardization Association", + "zh": "中国工程建设标准化协会", + "native": "中国工程建设标准化协会" + }, + "description": { + "en": "The China Engineering Construction Standardization Association (CECS) is responsible for developing and managing engineering construction standards in China. It provides access to national and industry construction standards, technical specifications, and standard revision information.", + "zh": "中国工程建设标准化协会负责制定和管理中国工程建设标准。提供国家和行业建设标准、技术规范和标准修订信息。" + }, + "website": "https://www.cecs.org.cn", + "data_url": "https://www.cecs.org.cn/biaozhun/", + "api_url": null, + "country": "CN", + "domains": [ + "construction", + "standards", + "engineering" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "china", + "construction-standards", + "engineering", + "building-codes", + "technical-specifications" + ], + "data_content": { + "en": [ + "National Construction Standards - Mandatory and recommended national standards for construction", + "Industry Standards - Sector-specific construction and engineering standards", + "Technical Specifications - Detailed technical guidelines for construction processes", + "Standard Revisions - Updates and revisions to existing construction standards" + ], + "zh": [ + "国家建设标准 - 建设工程强制性和推荐性国家标准", + "行业标准 - 建筑和工程行业专项标准", + "技术规范 - 施工工艺详细技术指南", + "标准修订 - 现有建设标准的更新和修订" + ] + }, + "authority_level": "government" +} diff --git a/firstdata/sources/china/construction/china-creprice.json b/firstdata/sources/china/construction/china-creprice.json new file mode 100644 index 00000000..475ece12 --- /dev/null +++ b/firstdata/sources/china/construction/china-creprice.json @@ -0,0 +1,47 @@ +{ + "id": "china-creprice", + "name": { + "en": "China Real Estate Price Information Network", + "zh": "中国房价行情网" + }, + "description": { + "en": "China Real Estate Price Information Network (中国房价行情, creprice.cn) is a real estate price data platform operated by Soufun/Fang.com Holdings, widely used by Chinese financial institutions for housing collateral valuation and address standardization. The platform publishes monthly residential and rental price data at the district, community, and compound level across more than 300 Chinese cities, as well as price trend analysis and market monitoring reports.", + "zh": "中国房价行情(creprice.cn)是由搜房/房天下集团运营的房地产价格数据平台,广泛用于中国金融机构的住房抵押估值和地址标准化。该平台发布覆盖300多个中国城市的月度住宅和租赁价格数据,精细到区、小区和楼盘层级,并提供价格走势分析和市场监测报告。" + }, + "website": "http://www.creprice.cn", + "data_url": "http://www.creprice.cn", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "real-estate" + ], + "update_frequency": "monthly", + "tags": [ + "real-estate", + "房价行情", + "residential-price", + "rental-price", + "房价指数", + "housing-valuation", + "搜房", + "price-index" + ], + "data_content": { + "en": [ + "City Housing Price Rankings - Monthly residential price rankings across 300+ Chinese cities", + "Community-Level Price Data - Detailed price data at community (xiaoqu) and compound level", + "Rental Price Data - Monthly rental price data with city and district breakdowns", + "Price Trend Analysis - Year-on-year and month-on-month price movement analysis", + "Housing Market Monitoring Reports - Market monitoring reports focused on price dynamics" + ], + "zh": [ + "城市房价排行榜 - 覆盖300多个中国城市的月度住宅价格排名", + "小区层级价格数据 - 精细到小区和楼盘层级的价格数据", + "租金价格数据 - 月度租金价格数据,含城市和区级别细分", + "价格走势分析 - 同比和环比的价格变动分析", + "房地产市场监测报告 - 以价格动态为核心的市场监测报告" + ] + } +} diff --git a/firstdata/sources/china/construction/china-cric.json b/firstdata/sources/china/construction/china-cric.json new file mode 100644 index 00000000..c8ff39b9 --- /dev/null +++ b/firstdata/sources/china/construction/china-cric.json @@ -0,0 +1,51 @@ +{ + "id": "china-cric", + "name": { + "en": "China Real Estate Information Corporation (CRIC)", + "zh": "克而瑞研究中心(CRIC)" + }, + "description": { + "en": "China Real Estate Information Corporation (CRIC, 克而瑞), a subsidiary of E-House (China) Enterprise Holdings Limited, is one of China's most cited commercial real estate research providers. CRIC publishes monthly top developer sales rankings (房企销售榜), developer financing monitors (房企融资监测), debt-maturity analyses for listed and unlisted developers, land market data, and city-level housing market reports. Data sources include CRIC's proprietary transaction database covering 300+ Chinese cities.", + "zh": "克而瑞(CRIC)是易居(中国)企业控股有限公司旗下机构,是中国被引用最多的商业房地产研究机构之一。克而瑞发布月度房企销售榜、房企融资监测、上市及非上市房企债务到期分析、土地市场数据和城市层级的房地产市场报告。数据来源包括克而瑞自有的、覆盖300多个中国城市的交易数据库。" + }, + "website": "https://www.cric.com", + "data_url": "https://www.cric.com/newhouse/", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "real-estate", + "finance" + ], + "update_frequency": "monthly", + "tags": [ + "real-estate", + "房地产", + "克而瑞", + "CRIC", + "房企销售榜", + "developer-ranking", + "房企融资", + "debt-maturity", + "land-market" + ], + "data_content": { + "en": [ + "Developer Sales Rankings - Monthly TOP200 Chinese real estate developer sales rankings", + "Developer Financing Monitor - Monthly tracking of developer bond issuance and financing activities", + "Debt Maturity Analysis - Debt maturity and liquidity risk analysis for major Chinese developers", + "Land Market Reports - Monthly land auction data across 300+ Chinese cities", + "City Housing Market Reports - City-level new home sales, inventory, and takeup cycle analysis", + "Industry Benchmark Reports - Annual China real estate industry benchmark and forecasting reports" + ], + "zh": [ + "房企销售排行榜 - 月度中国房地产开发商TOP200销售排名", + "房企融资监测 - 房企债券发行和融资活动月度跟踪", + "债务到期分析 - 主要中国房企的债务到期及流动性风险分析", + "土地市场报告 - 覆盖300多个中国城市的月度土地招拍挂数据", + "城市房地产市场报告 - 城市层级的新房销售、库存和去化周期分析", + "行业研究报告 - 中国房地产行业年度基准与预测报告" + ] + } +} diff --git a/firstdata/sources/china/construction/china-cscec.json b/firstdata/sources/china/construction/china-cscec.json new file mode 100644 index 00000000..de0a7aff --- /dev/null +++ b/firstdata/sources/china/construction/china-cscec.json @@ -0,0 +1,57 @@ +{ + "id": "china-cscec", + "name": { + "en": "China State Construction Engineering Corporation", + "zh": "中国建筑集团有限公司" + }, + "description": { + "en": "China State Construction Engineering Corporation (CSCEC) is the world's largest construction conglomerate and a central state-owned enterprise under SASAC. It is the primary executor of China's major infrastructure and construction projects, including highways, railways, bridges, urban development, and real estate. CSCEC publishes annual reports, ESG and sustainability reports, project completion statistics, housing delivery data, and financial disclosures, offering key indicators on China's construction industry scale, technological advancement, and green building adoption.", + "zh": "中国建筑集团有限公司(中国建筑)是全球最大的投资建设集团,国务院国资委直属中央企业。主要承担国家重大基础设施及建设项目,涵盖公路、铁路、桥梁、城镇化开发及房地产。中国建筑发布年度报告、ESG与可持续发展报告、项目竣工统计、住房交付数据及财务披露,为中国建筑行业规模、技术进步和绿色建筑发展提供核心指标。" + }, + "website": "https://www.cscec.com", + "data_url": "https://www.cscec.com", + "api_url": null, + "authority_level": "commercial", + "country": "CN", + "geographic_scope": "national", + "update_frequency": "annual", + "domains": [ + "construction", + "infrastructure", + "real-estate", + "urban-development" + ], + "tags": [ + "china", + "cscec", + "中国建筑", + "construction", + "建筑工程", + "infrastructure", + "基础设施", + "real-estate", + "房地产", + "state-owned-enterprise", + "央企", + "green-building", + "绿色建筑", + "annual-report", + "工程建设" + ], + "data_content": { + "en": [ + "Annual Reports - Revenue, profit, new contract signings, and project completion statistics by business segment", + "ESG & Sustainability Reports - Carbon emissions, energy consumption, green building certifications, and safety indicators", + "Housing Delivery Data - Residential units completed and delivered, housing area by province", + "Major Project Statistics - Key infrastructure projects undertaken including airports, stadiums, and urban complexes", + "Financial Disclosures - Audited financial statements, capital expenditure, and debt structure data" + ], + "zh": [ + "年度报告 - 按业务板块分类的营收、利润、新签合同及竣工统计", + "ESG与可持续发展报告 - 碳排放、能源消耗、绿色建筑认证及安全指标", + "住房交付数据 - 各省住宅竣工和交付套数及建筑面积", + "重大项目统计 - 机场、体育场馆、城市综合体等重点基础设施项目", + "财务信息披露 - 经审计财务报表、资本支出及债务结构数据" + ] + } +} diff --git a/firstdata/sources/china/construction/china-fangjia.json b/firstdata/sources/china/construction/china-fangjia.json new file mode 100644 index 00000000..a164e5d0 --- /dev/null +++ b/firstdata/sources/china/construction/china-fangjia.json @@ -0,0 +1,47 @@ +{ + "id": "china-fangjia", + "name": { + "en": "Fangjia.com - China Housing Price Network", + "zh": "房价网(fangjia.com)" + }, + "description": { + "en": "Fangjia.com (房价网) is a specialized Chinese housing price data platform that compiles residential transaction and listing data across major Chinese cities. The platform is widely adopted by financial institutions for address standardization of housing collateral and publishes monthly housing price indices at the city, district, and community level. Fangjia claims over 90% address-standardization coverage, making it a reference dataset for mortgage valuation and housing risk analysis.", + "zh": "房价网(fangjia.com)是专业的中国房价数据平台,汇总中国主要城市的住宅成交和挂牌数据。该平台被金融机构广泛用于住房抵押物的地址标准化,并发布城市、区县和小区层级的月度房价指数。房价网宣称地址治理率高达90%,是抵押估值和住房风险分析的参考数据集。" + }, + "website": "https://www.fangjia.com", + "data_url": "https://www.fangjia.com", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "real-estate", + "finance" + ], + "update_frequency": "monthly", + "tags": [ + "real-estate", + "房价网", + "housing-price", + "address-standardization", + "mortgage-valuation", + "price-index", + "小区房价" + ], + "data_content": { + "en": [ + "City Housing Price Index - Monthly housing price index for major Chinese cities", + "District Housing Price - District-level monthly housing price data", + "Community Housing Price - Community (xiaoqu) level housing price data for valuation", + "Address Standardization Data - Normalized address and community identifier dataset used by financial institutions", + "Housing Transaction References - Reference transaction and listing records used for mortgage valuation" + ], + "zh": [ + "城市房价指数 - 中国主要城市的月度房价指数", + "区县房价 - 区县层级的月度房价数据", + "小区房价 - 用于估值的小区层级房价数据", + "地址标准化数据 - 被金融机构使用的地址和小区标识化数据集", + "成交参考记录 - 用于抵押估值的参考成交和挂牌记录" + ] + } +} diff --git a/firstdata/sources/china/construction/china-gd-housing.json b/firstdata/sources/china/construction/china-gd-housing.json new file mode 100644 index 00000000..550492a0 --- /dev/null +++ b/firstdata/sources/china/construction/china-gd-housing.json @@ -0,0 +1,48 @@ +{ + "id": "china-gd-housing", + "name": { + "en": "Guangdong Provincial Department of Housing and Urban-Rural Development", + "zh": "广东省住房和城乡建设厅" + }, + "description": { + "en": "The Guangdong Provincial Department of Housing and Urban-Rural Development is the provincial government authority responsible for housing policies, urban-rural construction management, real estate market regulation, and building industry oversight in Guangdong Province, China's most populous province and largest provincial economy. It publishes provincial housing market data, construction industry statistics, affordable housing program progress, and urban development policies covering all 21 prefecture-level cities including Guangzhou, Shenzhen, Dongguan, and Foshan.", + "zh": "广东省住房和城乡建设厅是广东省住房政策、城乡建设管理、房地产市场监管和建筑行业监管的省级政府部门。广东省是中国人口最多、经济总量最大的省份,该厅发布全省住房市场数据、建筑行业统计、保障性住房建设进展和城市发展政策,覆盖广州、深圳、东莞、佛山等21个地级市。" + }, + "website": "https://zfcxjst.gd.gov.cn", + "data_url": "https://zfcxjst.gd.gov.cn/xxgk/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "housing", + "construction", + "urban-planning", + "real-estate" + ], + "geographic_scope": "subnational", + "update_frequency": "monthly", + "tags": [ + "guangdong", + "housing", + "construction", + "urban-rural-development" + ], + "data_content": { + "en": [ + "Provincial Housing Market Data - Real estate market statistics across Guangdong's 21 prefecture-level cities", + "Construction Industry Statistics - Provincial construction output value, enterprise data, and workforce statistics", + "Affordable Housing Programs - Provincial public rental housing, talent housing, and subsidized housing construction data", + "Urban-Rural Development Policies - Provincial housing purchase policies, market regulation measures", + "Building Quality Supervision - Construction project quality inspection and safety supervision data", + "Property Management - Residential property management regulations and industry data" + ], + "zh": [ + "全省住房市场数据 - 广东省21个地级市房地产市场统计", + "建筑行业统计 - 全省建筑业总产值、企业数据和从业人员统计", + "保障性住房建设 - 全省公共租赁住房、人才住房和共有产权住房建设数据", + "城乡发展政策 - 全省住房限购政策和市场调控措施", + "建筑质量监督 - 建设工程质量检查和安全监督数据", + "物业管理 - 住宅物业管理法规和行业数据" + ] + } +} diff --git a/firstdata/sources/china/construction/china-mohurd.json b/firstdata/sources/china/construction/china-mohurd.json new file mode 100644 index 00000000..f5c0d1b0 --- /dev/null +++ b/firstdata/sources/china/construction/china-mohurd.json @@ -0,0 +1,60 @@ +{ + "id": "china-mohurd", + "name": { + "en": "Ministry of Housing and Urban-Rural Development", + "zh": "住房和城乡建设部", + "native": "住房和城乡建设部" + }, + "description": { + "en": "The Ministry of Housing and Urban-Rural Development (MOHURD) is China's primary regulatory authority for the construction industry, housing, and urban-rural development. It provides data on construction industry regulations, building quality standards, green building certification, building energy efficiency standards, housing market policies, and urban planning.", + "zh": "住房和城乡建设部是中国建筑行业、住房和城乡发展的主要监管部门。提供建筑行业法规、建筑工程质量标准、绿色建筑认证政策、建筑节能标准、住房市场政策和城市规划等数据。" + }, + "website": "https://www.mohurd.gov.cn", + "data_url": "https://www.mohurd.gov.cn/gongkai/zhengce/", + "api_url": null, + "country": "CN", + "domains": [ + "construction", + "housing", + "urban-planning", + "building-standards" + ], + "geographic_scope": "national", + "update_frequency": "weekly", + "tags": [ + "china", + "mohurd", + "construction", + "housing", + "building-standards", + "green-building", + "urban-planning", + "policy", + "regulation" + ], + "data_content": { + "en": [ + "Construction Industry Regulations - National construction industry policies and management regulations", + "Building Quality Standards - Engineering quality supervision and inspection standards", + "Green Building Certification - Green building evaluation standards and certification policies", + "Building Energy Efficiency - Building energy conservation standards and implementation guidelines", + "Housing Market Policies - Housing purchase regulations, provident fund policies, and market monitoring", + "Urban Planning - City development planning and land use regulations", + "Construction Permits - Qualification management and market access policies", + "Building Materials Standards - Building material quality standards and testing requirements", + "BIM Policies - Building Information Modeling implementation guidelines and standards" + ], + "zh": [ + "建筑行业法规 - 全国建筑行业政策和管理条例", + "建筑工程质量标准 - 工程质量监督和检验标准", + "绿色建筑认证 - 绿色建筑评价标准和认证政策", + "建筑节能标准 - 建筑节能标准和实施指南", + "住房市场政策 - 限购政策、公积金政策和市场监测", + "城市规划 - 城市发展规划和土地使用法规", + "建筑施工许可 - 资质管理和市场准入政策", + "建筑材料标准 - 建筑材料质量标准和检测要求", + "BIM相关政策 - 建筑信息模型实施指南和标准" + ] + }, + "authority_level": "government" +} diff --git a/firstdata/sources/china/construction/china-shenzhen-housing.json b/firstdata/sources/china/construction/china-shenzhen-housing.json new file mode 100644 index 00000000..050be9e4 --- /dev/null +++ b/firstdata/sources/china/construction/china-shenzhen-housing.json @@ -0,0 +1,47 @@ +{ + "id": "china-shenzhen-housing", + "name": { + "en": "Shenzhen Municipal Housing and Construction Bureau", + "zh": "深圳市住房和建设局" + }, + "description": { + "en": "The Shenzhen Municipal Housing and Construction Bureau is the local government authority responsible for housing administration, real estate market regulation, construction industry management, and affordable housing programs in Shenzhen. It publishes housing transaction data, new housing supply statistics, commercial housing sales figures, construction permits, affordable housing progress, and real estate market monitoring reports for one of China's most dynamic property markets.", + "zh": "深圳市住房和建设局是深圳市负责住房管理、房地产市场监管、建筑行业管理和保障性住房建设的地方政府部门。发布住房交易数据、新建住房供应统计、商品房销售数据、建设许可证、保障性住房建设进展以及房地产市场监测报告,是中国最活跃房地产市场之一的权威数据来源。" + }, + "website": "https://zjj.sz.gov.cn", + "data_url": "https://zjj.sz.gov.cn/xxgk/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "housing", + "real-estate", + "construction" + ], + "geographic_scope": "subnational", + "update_frequency": "monthly", + "tags": [ + "shenzhen", + "housing", + "real-estate", + "construction" + ], + "data_content": { + "en": [ + "Commercial Housing Sales - Monthly new housing transaction volume and prices in Shenzhen", + "Affordable Housing Programs - Public rental housing, talent housing, and subsidized housing construction progress", + "Real Estate Market Monitoring - Market trend analysis and regulatory measures", + "Construction Permits - Building construction permits and project approvals", + "Housing Supply Statistics - New housing supply and inventory data", + "Property Registration - Real estate registration and transfer records" + ], + "zh": [ + "商品房销售数据 - 深圳市每月新建住房成交量和成交价格", + "保障性住房建设 - 公共租赁住房、人才住房和共有产权住房建设进度", + "房地产市场监测 - 市场趋势分析和调控措施", + "建设许可 - 建筑施工许可和项目审批数据", + "住房供应统计 - 新增住房供应量和库存数据", + "房产登记 - 不动产登记和交易过户记录" + ] + } +} diff --git a/firstdata/sources/china/construction/china-urban-planning.json b/firstdata/sources/china/construction/china-urban-planning.json new file mode 100644 index 00000000..fd9a1cec --- /dev/null +++ b/firstdata/sources/china/construction/china-urban-planning.json @@ -0,0 +1,62 @@ +{ + "id": "china-urban-planning", + "name": { + "en": "Chinese Society for Urban Studies", + "zh": "中国城市规划学会" + }, + "description": { + "en": "The Chinese Society for Urban Studies (CSUS), also known as the Urban Planning Society of China, is the national academic and professional organization for urban planning research and practice in China. Founded in 1956 and under the Ministry of Natural Resources, CSUS publishes research papers, planning standards, and urban development reports. The society's journal Urban Planning Forum and its annual conference proceedings are key references for China's urban development policies, spatial planning methodologies, housing statistics, and smart city development. CSUS data and publications inform national urban planning strategies, land use policies, and city cluster development plans.", + "zh": "中国城市规划学会是中国城市规划研究与实践领域的全国性学术团体,成立于1956年,主管单位为自然资源部。学会出版学术论文、规划标准和城市发展报告,旗下《城市规划》学术期刊及年会论文集是了解中国城市发展政策、空间规划方法、住房统计和智慧城市发展的重要参考资料,为国家城市规划战略、土地利用政策和城市群发展规划提供研究支撑。" + }, + "website": "https://www.planning.org.cn", + "data_url": "https://www.planning.org.cn/paper", + "api_url": null, + "country": "CN", + "domains": [ + "urban-development", + "land-use", + "demographics", + "governance" + ], + "geographic_scope": "national", + "update_frequency": "irregular", + "tags": [ + "china", + "urban-planning", + "城市规划", + "中国城市规划学会", + "urbanization", + "城镇化", + "land-use", + "土地利用", + "housing", + "住房", + "smart-city", + "智慧城市", + "spatial-planning", + "国土空间规划", + "city-cluster", + "城市群" + ], + "data_content": { + "en": [ + "Urban Planning Research Papers - Peer-reviewed research on Chinese urban development and planning", + "National Urban Development Reports - Annual and special reports on China's urbanization progress", + "Planning Standards and Guidelines - Technical standards for urban and rural planning practice", + "City Case Studies - Detailed spatial planning studies for cities across China", + "Smart City Research - Data and analysis on China's smart city development initiatives", + "Urban Housing Studies - Research on housing policy, affordability, and market dynamics", + "Annual Conference Proceedings - Research outputs from China's leading urban planning symposium" + ], + "zh": [ + "城市规划学术论文 - 中国城市发展与规划经同行评审的研究成果", + "国家城市发展报告 - 中国城镇化进程年度及专题报告", + "规划标准与指南 - 城乡规划实践技术标准", + "城市案例研究 - 全国各地城市空间规划详细研究", + "智慧城市研究 - 中国智慧城市建设数据与分析", + "城市住房研究 - 住房政策、可负担性和市场动态研究", + "年会论文集 - 中国城市规划领域年度学术会议研究成果" + ] + }, + "authority_level": "research" +} diff --git a/firstdata/sources/china/economy/agriculture/china-agri.json b/firstdata/sources/china/economy/agriculture/china-agri.json new file mode 100644 index 00000000..57163a39 --- /dev/null +++ b/firstdata/sources/china/economy/agriculture/china-agri.json @@ -0,0 +1,75 @@ +{ + "id": "china-agri", + "name": { + "en": "China Agricultural and Rural Information Network", + "zh": "中国农业农村信息网" + }, + "description": { + "en": "The China Agricultural and Rural Information Network (AGRI, agri.cn) is the official information platform operated by the Agricultural Information Center of the Ministry of Agriculture and Rural Affairs of China. Launched in 1995, AGRI is the most comprehensive national portal for agricultural information, rural economic statistics, crop production data, agricultural price monitoring, and rural policy. The platform aggregates data from the Ministry's departmental systems covering crop planting, livestock and aquaculture production, agricultural machinery, agricultural inputs (fertilizers and pesticides), rural household income, and food security indicators. AGRI's price monitoring system tracks wholesale and retail prices for hundreds of agricultural commodities across major markets nationwide. It is the authoritative primary source for China's agricultural statistical releases and is used by agricultural producers, commodity traders, policy analysts, international agricultural organizations, and food security researchers.", + "zh": "中国农业农村信息网(agri.cn)是由农业农村部农业信息中心运营的官方信息平台,于1995年上线,是覆盖农业信息、农村经济统计、农作物生产数据、农业价格监测和农村政策的最全面国家级门户。平台汇聚来自农业农村部各司局系统的数据,涵盖农作物种植面积、畜牧水产养殖、农业机械化、农业投入品(化肥和农药)、农村居民收入和粮食安全指标。农业农村信息网的价格监测体系追踪全国主要市场数百种农产品批发和零售价格,是中国农业统计数据发布的权威一手来源,被农业生产者、大宗商品交易商、政策分析师、国际农业组织和粮食安全研究人员广泛使用。" + }, + "website": "https://www.agri.cn/", + "data_url": "https://www.agri.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "agriculture", + "statistics", + "economics", + "food-security" + ], + "update_frequency": "daily", + "tags": [ + "农业", + "agriculture", + "农村经济", + "rural-economy", + "农产品价格", + "agricultural-commodity-prices", + "粮食安全", + "food-security", + "农作物", + "crop-production", + "畜牧业", + "livestock", + "水产养殖", + "aquaculture", + "农业机械化", + "agricultural-mechanization", + "化肥", + "fertilizer", + "农村居民收入", + "rural-household-income", + "农业农村部", + "ministry-of-agriculture-and-rural-affairs", + "mara", + "农业信息中心", + "agricultural-information" + ], + "data_content": { + "en": [ + "Crop production statistics: planting area, yield, and output data for major grain crops (rice, wheat, corn, soybeans) and cash crops by province and season", + "Agricultural commodity price monitoring: daily and weekly wholesale and retail price indices for hundreds of agricultural products across national, provincial, and county-level market networks", + "Livestock and aquaculture production: quarterly data on pig, poultry, cattle, and sheep inventories, as well as fishery catch and aquaculture output", + "Agricultural input statistics: annual data on chemical fertilizer production, consumption, and application rates by crop type and region", + "Rural household income and expenditure surveys: per capita disposable income, consumption patterns, and poverty incidence for rural Chinese households", + "Agricultural machinery data: statistics on tractors, harvesters, and other farm machinery ownership and mechanization coverage rates", + "Food security indicators: grain reserve levels, self-sufficiency ratios for major staple crops, and caloric supply data", + "Rural land and land reform data: contracted rural land area, land transfer rates, and land registration statistics", + "Agricultural trade statistics: China's imports and exports of major agricultural commodities including soybeans, pork, corn, and cotton" + ], + "zh": [ + "农作物生产统计:主要粮食作物(水稻、小麦、玉米、大豆)和经济作物的分省季度播种面积、产量和产出数据", + "农产品价格监测:全国省市县三级市场数百种农产品日度和周度批发及零售价格指数", + "畜牧水产生产:生猪、禽类、牛羊存栏量季度数据,以及渔业捕捞产量和水产养殖产出", + "农业投入品统计:按作物类型和地区分类的化学肥料生产、消费和施用量年度数据", + "农村居民收入和支出调查:农村居民人均可支配收入、消费结构和贫困发生率", + "农业机械数据:拖拉机、收割机等农用机械拥有量和机械化作业覆盖率统计", + "粮食安全指标:粮食储备水平、主要口粮自给率和热量供给数据", + "农村土地和土地改革数据:农村承包地面积、土地流转率和土地确权登记统计", + "农业贸易统计:中国大豆、猪肉、玉米、棉花等主要农产品进出口数据" + ] + } +} diff --git a/firstdata/sources/china/economy/agriculture/china-catas.json b/firstdata/sources/china/economy/agriculture/china-catas.json new file mode 100644 index 00000000..8141d24d --- /dev/null +++ b/firstdata/sources/china/economy/agriculture/china-catas.json @@ -0,0 +1,74 @@ +{ + "id": "china-catas", + "name": { + "en": "Chinese Academy of Tropical Agricultural Sciences", + "zh": "中国热带农业科学院" + }, + "description": { + "en": "The Chinese Academy of Tropical Agricultural Sciences (CATAS) is China's only national-level research institution dedicated to tropical and subtropical agriculture. Founded in 1954 and headquartered in Danzhou, Hainan Province, CATAS operates research centers and experiment stations across Hainan, Yunnan, Guangdong, Guangxi, and Fujian. The academy focuses on natural rubber, tropical fruits, spice crops, tropical cash crops, and livestock production systems suited to China's tropical zones. CATAS publishes research findings on rubber tree genetics, coconut, palm oil, pepper, tea, tropical vegetables, and integrated pest management. It maintains germplasm banks for tropical crop varieties and provides data on tropical agricultural resources, yields, and crop improvement programs. CATAS plays a central role in China's agricultural development strategy for Hainan Free Trade Port and tropical regions.", + "zh": "中国热带农业科学院是中国唯一的国家级热带农业综合性科研机构,1954年成立,总部设在海南省儋州市,并在海南、云南、广东、广西、福建等地设有研究中心和试验站。该院重点研究天然橡胶、热带水果、香料作物、热带经济作物和适合中国热区的畜牧生产系统,发布橡胶树遗传育种、椰子、棕榈油、胡椒、茶叶、热带蔬菜和病虫害综合防控等领域的研究成果,保存热带作物种质资源库,并提供热带农业资源、产量及作物改良计划相关数据。热科院在中国海南自由贸易港和热带地区农业发展战略中居核心地位。" + }, + "website": "https://www.catas.cn", + "data_url": "https://www.catas.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "agriculture", + "science", + "environment" + ], + "update_frequency": "irregular", + "tags": [ + "中国热带农业科学院", + "catas", + "chinese-academy-of-tropical-agricultural-sciences", + "热带农业", + "tropical-agriculture", + "天然橡胶", + "natural-rubber", + "橡胶树", + "rubber-tree", + "热带作物", + "tropical-crops", + "椰子", + "coconut", + "棕榈油", + "palm-oil", + "胡椒", + "pepper", + "香料作物", + "spice-crops", + "热带水果", + "tropical-fruits", + "种质资源", + "germplasm-resources", + "海南", + "hainan", + "热区农业", + "tropical-zone-agriculture", + "作物改良", + "crop-improvement" + ], + "data_content": { + "en": [ + "Natural rubber production data: annual planting area, yield per hectare, total output, and quality grading statistics for rubber trees in China's tropical regions", + "Tropical crop germplasm resources: catalog and genetic data for preserved accessions of rubber, coconut, palm, pepper, spice, and tropical fruit varieties", + "Tropical agricultural research publications: peer-reviewed findings on crop genetics, pest resistance, soil management, and cultivation techniques for tropical crops", + "Crop disease and pest monitoring: surveillance data on major diseases and pests affecting rubber, tropical fruits, and cash crops in China's tropical zones", + "Hainan agricultural development data: statistics and assessments on tropical agriculture development in Hainan Free Trade Port zone", + "Tropical livestock data: research on animal husbandry systems adapted to tropical climates including cattle, goats, and poultry breeds", + "Agrometeorological data: climate suitability assessments and agroclimatic monitoring for tropical agricultural regions of China" + ], + "zh": [ + "天然橡胶生产数据:中国热区橡胶树年度种植面积、单产、总产量及质量分级统计", + "热带作物种质资源:橡胶、椰子、棕榈、胡椒、香料和热带水果品种保存目录及遗传数据", + "热带农业研究出版物:热带作物遗传育种、抗病性、土壤管理和栽培技术同行评审研究成果", + "作物病虫害监测:中国热区橡胶、热带水果和经济作物主要病虫害监测数据", + "海南农业发展数据:海南自由贸易港热带农业发展统计与评估", + "热带畜牧数据:适应热带气候的牛、羊、家禽品种畜牧系统研究", + "农业气象数据:中国热带农业区气候适宜性评估和农业气候监测" + ] + } +} diff --git a/firstdata/sources/china/economy/agriculture/china-cfeed.json b/firstdata/sources/china/economy/agriculture/china-cfeed.json new file mode 100644 index 00000000..fcc0742b --- /dev/null +++ b/firstdata/sources/china/economy/agriculture/china-cfeed.json @@ -0,0 +1,81 @@ +{ + "id": "china-cfeed", + "name": { + "en": "China Feed Industry Association", + "zh": "中国饲料工业协会" + }, + "description": { + "en": "The China Feed Industry Association (CFIA) is the national industry organization representing China's animal feed manufacturing, feed additive, and veterinary pharmaceutical sectors, supervised by the Ministry of Agriculture and Rural Affairs. China is the world's second-largest feed producer, with annual output exceeding 300 million tonnes. CFIA publishes monthly production statistics on compound feed, concentrated feed, and premix feed by animal type (poultry, swine, aquaculture, ruminants), as well as feed price indices and raw material (corn, soybean meal, fishmeal) supply-demand balances. Its data is essential for tracking livestock sector dynamics, agricultural input costs, food security assessments, and commodity market analysis in the world's largest producer of pork and farmed fish.", + "zh": "中国饲料工业协会(中国饲料协会)是代表中国配合饲料生产、饲料添加剂和兽药行业的全国性行业组织,主管单位为农业农村部。中国是全球第二大饲料生产国,年产量超过3亿吨。协会发布按动物类别(家禽、猪、水产、反刍动物)分类的配合饲料、浓缩饲料和预混合饲料月度产量统计,以及饲料价格指数和原料(玉米、豆粕、鱼粉)供需平衡数据。这些数据是追踪畜牧业动态、农业投入成本、粮食安全评估,以及分析全球最大猪肉和养殖鱼类生产国大宗商品市场的重要依据。" + }, + "website": "https://www.chinafeed.org.cn", + "data_url": "https://www.chinafeed.org.cn/hyfx/", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "agriculture", + "economics", + "industry", + "food-security" + ], + "update_frequency": "monthly", + "tags": [ + "中国饲料工业协会", + "cfia", + "china-feed-industry-association", + "饲料产量", + "feed-production", + "配合饲料", + "compound-feed", + "浓缩饲料", + "concentrated-feed", + "预混合饲料", + "premix-feed", + "饲料价格", + "feed-prices", + "豆粕", + "soybean-meal", + "玉米", + "corn", + "鱼粉", + "fishmeal", + "猪饲料", + "swine-feed", + "禽类饲料", + "poultry-feed", + "水产饲料", + "aquaculture-feed", + "饲料添加剂", + "feed-additives", + "畜牧业", + "livestock-industry", + "农业投入", + "agricultural-inputs", + "粮食安全", + "food-security" + ], + "data_content": { + "en": [ + "Monthly feed production by type: output volumes of compound feed, concentrated feed, and premix feed broken down by animal category (poultry, swine, aquaculture, ruminants, other)", + "Feed price indices: monthly price trends for major feed products and key raw materials including corn, soybean meal, wheat bran, rapeseed meal, and fishmeal", + "Raw material supply-demand balance: monthly assessment of corn and soybean meal availability, import dependency, and price drivers", + "Industry enterprise data: annual statistics on number of licensed feed enterprises, production capacity, employment, and output by province", + "Feed additive production: annual output of amino acids (lysine, methionine, threonine), vitamins, enzymes, and other feed additives by type", + "Aquaculture feed statistics: production volumes segmented by fish species and shrimp/shellfish categories, tracking China's dominant role in global aquaculture", + "Monthly production situation reports: narrative analysis of feed industry performance, raw material market conditions, and policy impacts", + "Annual China feed industry report: comprehensive review of sector development, capacity changes, technological advances, and regulatory environment" + ], + "zh": [ + "月度饲料分类产量:按动物类别(家禽、猪、水产、反刍动物、其他)细分的配合饲料、浓缩饲料和预混合饲料产量", + "饲料价格指数:主要饲料产品及玉米、豆粕、麦麸、菜粕、鱼粉等主要原料月度价格走势", + "原料供需平衡:玉米和豆粕月度供应量、进口依存度及价格驱动因素评估", + "行业企业数据:按省份分类的持证饲料企业数量、生产能力、从业人员及产量年度统计", + "饲料添加剂产量:氨基酸(赖氨酸、蛋氨酸、苏氨酸)、维生素、酶制剂等各类添加剂年度产量", + "水产饲料统计:按鱼类品种和虾贝类别细分的产量,追踪中国在全球水产养殖中的主导地位", + "月度生产形势报告:饲料行业运行、原料市场行情及政策影响的叙述性分析", + "中国饲料工业年度报告:行业发展、产能变化、技术进步和监管环境综合述评" + ] + } +} diff --git a/firstdata/sources/china/economy/agriculture/china-cofco.json b/firstdata/sources/china/economy/agriculture/china-cofco.json new file mode 100644 index 00000000..5c515cda --- /dev/null +++ b/firstdata/sources/china/economy/agriculture/china-cofco.json @@ -0,0 +1,70 @@ +{ + "id": "china-cofco", + "name": { + "en": "COFCO Corporation", + "zh": "中粮集团有限公司" + }, + "description": { + "en": "COFCO Corporation (中粮集团) is a central state-owned enterprise directly under the State Council and China's largest agri-food conglomerate, ranking among the world's top four global grain traders alongside ADM, Bunge, and Cargill. Established in 1949 and restructured multiple times, COFCO operates integrated supply chains covering grain, oilseeds, sugar, cotton, meat, dairy, wine, and processed food products. The group encompasses key listed subsidiaries including COFCO Sugar, COFCO Capital, China Foods, and Mengniu Dairy, and operates the strategic Dalian Commodity Exchange warehouse network. COFCO publishes annual reports, operational statistics on grain trading volumes, agricultural product processing output, international trade flows, and commodity procurement data. The group's disclosures provide authoritative insights into China's agricultural supply chain, food security strategy, international commodity markets, and rural revitalization initiatives.", + "zh": "中粮集团有限公司是国务院直属的中央国有企业,中国最大的农业食品企业,与ADM、邦吉、嘉吉并称全球四大粮商。成立于1949年,历经多次重组改革。中粮集团业务覆盖粮食、油料、食糖、棉花、肉类、乳制品、酒类和加工食品的全产业链整合供应链。集团包括中粮糖业、中粮资本、中国食品、蒙牛乳业等重点上市子公司,并运营大连商品交易所战略性仓储网络。中粮集团发布年度报告、粮食贸易量、农产品加工产量、国际贸易流量和大宗商品采购数据等运营统计,为了解中国农业供应链、粮食安全战略、国际大宗商品市场及乡村振兴举措提供权威参考。" + }, + "website": "https://www.cofco.com", + "data_url": "https://www.cofco.com", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "global", + "domains": [ + "agriculture", + "food-security", + "economics", + "trade" + ], + "update_frequency": "annual", + "tags": [ + "cofco", + "中粮集团", + "粮油贸易", + "grain-trading", + "食品加工", + "food-processing", + "粮食安全", + "food-security", + "大宗农产品", + "agricultural-commodities", + "食用油", + "edible-oil", + "白糖", + "sugar", + "棉花", + "cotton", + "央企", + "central-soe", + "四大粮商", + "abcd-traders" + ], + "data_content": { + "en": [ + "Annual reports - consolidated financial statements, revenue, profit, and operating highlights across COFCO's agricultural business lines", + "Grain trading volumes - procurement and distribution data for wheat, corn, rice, soybeans, and other grains", + "Oilseed processing output - soybean crushing volumes, edible oil production, and protein meal output", + "Sugar and cotton operations - national sugar refining capacity, cotton procurement volumes, and inventory data via listed subsidiary COFCO Sugar", + "Meat and dairy data - pork, beef, and dairy processing output through subsidiaries including COFCO Meat and Mengniu Dairy", + "International trade flows - global procurement, bulk commodity shipments, and overseas trading operations", + "Listed subsidiary disclosures - financial and operational data from China Foods, COFCO Sugar, COFCO Capital, and Mengniu Dairy", + "Rural revitalization and poverty alleviation - agricultural sourcing programs in rural areas and smallholder procurement data", + "Food safety and traceability - quality control and traceability data for COFCO-branded food products" + ], + "zh": [ + "年度报告 - 中粮集团各农业业务板块的合并财务报表、营业收入、利润及运营要点", + "粮食贸易量 - 小麦、玉米、水稻、大豆等粮食品种的采购和分销数据", + "油料加工产量 - 大豆压榨量、食用油产量及蛋白粕产量", + "食糖和棉花业务 - 通过上市子公司中粮糖业披露的全国食糖加工能力、棉花采购量及库存数据", + "肉类与乳品数据 - 通过中粮肉食和蒙牛乳业等子公司发布的猪肉、牛肉和乳制品加工产量", + "国际贸易流量 - 全球采购、大宗商品海运及海外贸易运营数据", + "上市子公司披露 - 中国食品、中粮糖业、中粮资本和蒙牛乳业的财务和运营数据", + "乡村振兴和扶贫 - 乡村地区农产品采购项目和小农户收购数据", + "食品安全与溯源 - 中粮品牌食品的质量控制和溯源数据" + ] + } +} diff --git a/firstdata/sources/china/economy/agriculture/china-moa.json b/firstdata/sources/china/economy/agriculture/china-moa.json new file mode 100644 index 00000000..3b9e87a4 --- /dev/null +++ b/firstdata/sources/china/economy/agriculture/china-moa.json @@ -0,0 +1,88 @@ +{ + "id": "china-moa", + "name": { + "en": "Ministry of Agriculture and Rural Affairs of China - Agricultural Statistics", + "zh": "中华人民共和国农业农村部农业统计" + }, + "description": { + "en": "Official agricultural statistics and rural economy data published by China's Ministry of Agriculture and Rural Affairs (MARA), covering crop production, livestock and aquaculture, agricultural inputs, rural household income, and agricultural mechanization. Includes annual China Agricultural Development Reports and statistical yearbooks on agriculture and rural development.", + "zh": "中华人民共和国农业农村部发布的官方农业统计和农村经济数据,涵盖农作物产量、畜牧水产、农业投入品、农村居民收入及农业机械化水平。包括年度《中国农业发展报告》和农业农村统计年报。" + }, + "website": "https://www.moa.gov.cn/", + "data_url": "https://www.moa.gov.cn/nybgb/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "agriculture", + "economics", + "statistics" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "农业农村部", + "农业统计", + "agriculture-statistics", + "ministry-of-agriculture-and-rural-affairs", + "mara", + "粮食产量", + "grain-production", + "农业发展报告", + "agricultural-development-report", + "农村经济", + "rural-economy", + "农作物", + "crops", + "畜牧业", + "livestock", + "水产品", + "aquaculture", + "农民收入", + "farmer-income", + "化肥", + "fertilizer", + "农药", + "pesticides", + "农业机械化", + "agricultural-mechanization", + "耕地面积", + "arable-land", + "农业生产", + "agricultural-production", + "乡村振兴", + "rural-revitalization", + "农业年报", + "agricultural-yearbook" + ], + "data_content": { + "en": [ + "Annual crop production data - grain, cotton, oilseeds, vegetables, fruits by province", + "Livestock statistics - pigs, cattle, sheep, poultry breeding and slaughter data", + "Aquaculture and fishery production statistics", + "Agricultural input usage - fertilizers, pesticides, seeds, agricultural film", + "Agricultural mechanization - tractor and machinery ownership and usage", + "Rural household income and expenditure statistics", + "Arable land and cultivated area by crop type", + "Agricultural disaster and crop loss statistics", + "Rural labor force and agricultural employment data", + "Agricultural product prices and market monitoring", + "China Agricultural Development Report (annual)", + "Agricultural and Rural Statistics Annual Report" + ], + "zh": [ + "年度农作物产量数据 - 粮食、棉花、油料、蔬菜、水果分省统计", + "畜牧业统计 - 生猪、牛、羊、禽类存栏和出栏数据", + "水产养殖和捕捞产量统计", + "农业投入品使用 - 化肥、农药、种子、农膜", + "农业机械化 - 拖拉机和农机拥有量及使用情况", + "农村居民收入与支出统计", + "耕地面积和分作物播种面积", + "农业灾害和农作物损失统计", + "农村劳动力和农业就业数据", + "农产品价格和市场监测", + "年度《中国农业发展报告》", + "农业农村统计年报" + ] + } +} diff --git a/firstdata/sources/china/economy/agriculture/china-natesc.json b/firstdata/sources/china/economy/agriculture/china-natesc.json new file mode 100644 index 00000000..2aaf6024 --- /dev/null +++ b/firstdata/sources/china/economy/agriculture/china-natesc.json @@ -0,0 +1,73 @@ +{ + "id": "china-natesc", + "name": { + "en": "National Agro-Tech Extension and Service Center", + "zh": "全国农业技术推广服务中心" + }, + "description": { + "en": "The National Agro-Tech Extension and Service Center (NATESC) is a national public institution under China's Ministry of Agriculture and Rural Affairs (MARA), responsible for organizing and guiding agricultural technology extension, crop disease and pest monitoring, seed quality testing, and soil fertility assessment across China. Established in 1994, NATESC coordinates the national agricultural extension network linking central, provincial, and county-level stations, managing information systems on crop growth monitoring, pest and disease surveillance, fertilizer usage, and agricultural inputs. It publishes annual crop pest early-warning bulletins, soil fertility surveys, agricultural technology adoption statistics, and farm input data that support agricultural production planning and food security policy formulation.", + "zh": "全国农业技术推广服务中心(全国农技推广中心)是农业农村部下属全国性公益性机构,负责组织和指导全国农业技术推广、农作物病虫害监测、种子质量检测和土壤肥力评估工作。中心成立于1994年,协调贯通县、省、部三级农业技术推广网络,管理作物生长监测、病虫害监测、化肥施用和农业投入品等信息系统。中心发布年度作物病虫害早期预警公告、土壤肥力调查报告、农业技术应用统计和农资数据,支撑农业生产计划和粮食安全政策制定。" + }, + "website": "https://www.natesc.org.cn", + "data_url": "https://www.natesc.org.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "agriculture", + "technology", + "environment", + "social" + ], + "update_frequency": "irregular", + "tags": [ + "全国农业技术推广服务中心", + "全国农技推广", + "natesc", + "national-agro-tech-extension-and-service-center", + "农业技术推广", + "agricultural-technology-extension", + "病虫害监测", + "pest-and-disease-monitoring", + "农作物病虫害", + "crop-pests-and-diseases", + "土壤肥力", + "soil-fertility", + "化肥", + "fertilizer", + "种子质量", + "seed-quality", + "农业投入品", + "agricultural-inputs", + "粮食安全", + "food-security", + "农技推广网络", + "agro-tech-extension-network", + "作物生长监测", + "crop-growth-monitoring", + "农业部", + "mara", + "农业农村部" + ], + "data_content": { + "en": [ + "Crop pest and disease monitoring: national surveillance data on major crop pests (locusts, aphids, etc.) and diseases across China's farming regions", + "Early-warning bulletins: seasonal and annual early-warning reports on crop pest outbreaks and disease epidemics", + "Soil fertility surveys: periodic national soil nutrient status assessments and fertilizer recommendation data", + "Fertilizer usage statistics: annual data on fertilizer application rates, types, and trends across China's agricultural regions", + "Seed quality testing reports: inspection results for crop seed varieties on germination rates, purity, and moisture content", + "Agricultural technology adoption statistics: data on diffusion of new crop varieties, farming techniques, and mechanization", + "Crop growth monitoring bulletins: periodic crop condition assessments and yield forecast data during growing seasons" + ], + "zh": [ + "农作物病虫害监测:中国农业区主要作物病虫害(蝗虫、蚜虫等)全国监测数据", + "早期预警公告:作物病虫害暴发和疫情的季节性和年度早期预警报告", + "土壤肥力调查:定期全国土壤养分状况评估和化肥施用建议数据", + "化肥施用统计:中国各农业区化肥施用量、种类和趋势年度数据", + "种子质量检测报告:作物种子品种发芽率、纯度和水分含量检测结果", + "农业技术应用统计:新品种、农业技术和机械化推广应用数据", + "作物生长监测公告:生长季节定期作物长势评估和产量预报数据" + ] + } +} diff --git a/firstdata/sources/china/economy/agriculture/china-nfsra.json b/firstdata/sources/china/economy/agriculture/china-nfsra.json new file mode 100644 index 00000000..b4012aa2 --- /dev/null +++ b/firstdata/sources/china/economy/agriculture/china-nfsra.json @@ -0,0 +1,78 @@ +{ + "id": "china-nfsra", + "name": { + "en": "National Food and Strategic Reserves Administration of China", + "zh": "国家粮食和物资储备局" + }, + "description": { + "en": "The National Food and Strategic Reserves Administration (NFSRA) is the central government body responsible for overseeing China's national food security, grain storage, and strategic material reserves. Established under the National Development and Reform Commission in 2018 through institutional reform, NFSRA manages the world's largest grain reserves, oversees grain quality and food safety supervision, regulates the grain market, and manages emergency material reserves for disaster response. NFSRA publishes data on national grain production procurement, storage capacity and warehouse inventory levels, grain market price monitoring, food quality inspection results, and strategic reserve stock rotation. Its data is critical for understanding China's food security strategy, domestic grain market dynamics, and national emergency preparedness.", + "zh": "国家粮食和物资储备局是负责全国粮食安全、粮食储存和物资储备的中央政府机构,2018年通过机构改革在国家发展和改革委员会框架下组建。国家粮食和物资储备局管理着全球最大规模的粮食储备,监管粮食质量和食品安全,调控粮食市场,并管理用于灾害应急的国家物资储备。局方发布粮食收购情况、仓储能力和库存水平、粮食市场价格监测、粮食质量检测结果及战略储备轮换数据,是了解中国粮食安全战略、国内粮食市场动态和应急保障体系的重要数据来源。" + }, + "website": "https://lswz.gov.cn/", + "data_url": "https://lswz.gov.cn/html/xwzx/sjfb/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "economics", + "agriculture", + "governance", + "statistics" + ], + "update_frequency": "monthly", + "tags": [ + "国家粮食和物资储备局", + "nfsra", + "粮食储备", + "grain-reserves", + "粮食安全", + "food-security", + "粮食收购", + "grain-procurement", + "库存水平", + "inventory-levels", + "粮食价格", + "grain-prices", + "物资储备", + "strategic-material-reserves", + "粮食质量", + "grain-quality", + "国家战略储备", + "national-strategic-reserves", + "粮食市场", + "grain-market", + "仓储能力", + "storage-capacity", + "应急储备", + "emergency-reserves", + "粮食流通", + "grain-circulation" + ], + "data_content": { + "en": [ + "Grain procurement statistics: annual and seasonal data on government grain purchases by variety (rice, wheat, corn, soybeans) across provinces", + "National grain reserve inventory: warehouse inventory levels for state grain reserves, including reserve turnover and rotation records", + "Storage capacity data: total and available grain warehouse capacity by region, including data on modern storage facility construction progress", + "Grain market price monitoring: weekly and monthly price indices for major grain varieties at key wholesale markets and production areas", + "Grain quality inspection: annual national grain quality survey results, covering protein content, moisture, impurity rates, and safety indicators", + "Strategic material reserves: stock levels and rotation plans for emergency material reserves including pharmaceuticals, energy materials, and industrial supplies", + "Grain and oil processing: statistical data on grain and oil processing enterprises, output volumes, and capacity utilization", + "Loss reduction and storage technology: data on grain loss rates, storage technology adoption, and post-harvest loss prevention programs", + "Emergency reserve deployment: records of strategic reserve releases and deployments during price spikes or disaster events", + "Grain security assessment: annual reports on China's food security status, self-sufficiency rates, and import dependency indicators" + ], + "zh": [ + "粮食收购统计:分省分品种(水稻、小麦、玉米、大豆)年度和季节性政策性粮食收购数据", + "国家粮食储备库存:国家粮食储备仓库库存水平,包括储备周转和轮换记录", + "仓储能力数据:分地区粮食仓库总容量和可用容量,包括现代化仓储设施建设进展", + "粮食市场价格监测:主要粮食品种在主要批发市场和产地的周报和月报价格指数", + "粮食质量检测:全国粮食质量调查年度结果,涵盖蛋白质含量、水分、杂质率及安全指标", + "物资储备:应急物资储备(含药品、能源材料、工业用品)库存水平和轮换计划", + "粮油加工:粮油加工企业统计数据、产量及产能利用率", + "节粮减损与仓储技术:粮食损耗率、仓储技术推广及产后损耗防控项目数据", + "应急储备动用:价格异常波动或灾害事件期间战略储备动用和投放记录", + "粮食安全评估:中国粮食安全状况、自给率及进口依赖度指标年度报告" + ] + } +} diff --git a/firstdata/sources/china/economy/agriculture/china-sinograin.json b/firstdata/sources/china/economy/agriculture/china-sinograin.json new file mode 100644 index 00000000..6bcc6d79 --- /dev/null +++ b/firstdata/sources/china/economy/agriculture/china-sinograin.json @@ -0,0 +1,65 @@ +{ + "id": "china-sinograin", + "name": { + "en": "Sinograin - China Grain Reserves Corporation", + "zh": "中国储备粮管理集团有限公司" + }, + "description": { + "en": "Sinograin (China Grain Reserves Corporation, 中储粮) is the central state-owned enterprise directly under the State Council responsible for managing China's national strategic grain reserves. Established in 2003, Sinograin oversees the storage, rotation, and distribution of grain and edible oil reserves across more than 900 storage facilities and affiliated enterprises nationwide. As the world's largest grain reserve manager, Sinograin plays a pivotal role in China's food security strategy, price stabilization, and emergency supply response. The company publishes annual reports, grain reserve operation data, rotation and procurement announcements, and food security-related disclosures that serve as authoritative indicators of China's strategic food stockpile levels and grain supply chain management.", + "zh": "中国储备粮管理集团有限公司(中储粮集团)是国务院直属的中央国有企业,负责管理国家战略粮食储备。成立于2003年,中储粮负责全国900余个储备库及下属企业的粮食和食用油储备的储存、轮换和动用工作。作为全球最大的粮食储备管理机构,中储粮在中国粮食安全战略、价格调控和应急供应响应中发挥关键作用。公司发布年度报告、粮食储备运营数据、轮换和收购公告及粮食安全相关信息,是中国战略粮食储备规模和粮食供应链管理的权威数据来源。" + }, + "website": "https://www.sinograin.com.cn", + "data_url": "https://www.sinograin.com.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "agriculture", + "food-security", + "economics" + ], + "update_frequency": "annual", + "tags": [ + "中储粮", + "sinograin", + "粮食储备", + "grain-reserves", + "国家战略储备", + "strategic-reserves", + "粮食安全", + "food-security", + "食用油储备", + "edible-oil-reserves", + "粮食轮换", + "grain-rotation", + "央企", + "central-soe", + "粮食供应链", + "grain-supply-chain" + ], + "data_content": { + "en": [ + "Annual reports - financial performance, grain reserve volumes, and operational overview of Sinograin and its subsidiaries", + "Grain reserve inventory data - stored volumes of rice, wheat, corn, and soybeans at national reserve facilities", + "Grain procurement announcements - minimum purchase price policies, procurement volumes, and regional acquisition plans", + "Grain rotation records - regular reserve rotation schedules, auction results, and grain quality monitoring", + "Edible oil reserves - stored volumes of soybean oil, rapeseed oil, palm oil, and other strategic edible oils", + "Logistics and storage network - capacity data for over 900 state-owned grain storage facilities nationwide", + "Emergency reserve deployment - activation records and grain release data during food security emergencies", + "Corporate governance disclosures - management structure, subsidiary profiles, and compliance reports", + "Grain price stabilization operations - market intervention records and policy-driven procurement activities" + ], + "zh": [ + "年度报告 - 中储粮集团及下属企业的财务业绩、粮食储备规模及运营概况", + "粮食储备库存数据 - 全国储备库水稻、小麦、玉米和大豆的储存量", + "粮食收购公告 - 最低收购价政策、收购数量及分地区收购计划", + "粮食轮换记录 - 定期轮换计划、竞价销售结果和粮食质量监测", + "食用油储备 - 大豆油、菜籽油、棕榈油等战略性食用油的储备数量", + "物流和储存网络 - 全国900余家国有粮食仓储设施的容量数据", + "应急储备动用 - 粮食安全应急状态下的启动记录和粮食出库数据", + "公司治理披露 - 管理架构、下属企业情况及合规报告", + "粮食价格调控操作 - 市场干预记录及政策性收购活动" + ] + } +} diff --git a/firstdata/sources/china/economy/agriculture/fishery/china-bof.json b/firstdata/sources/china/economy/agriculture/fishery/china-bof.json new file mode 100644 index 00000000..3b2d3658 --- /dev/null +++ b/firstdata/sources/china/economy/agriculture/fishery/china-bof.json @@ -0,0 +1,67 @@ +{ + "id": "china-bof", + "name": { + "en": "Bureau of Fisheries, Ministry of Agriculture and Rural Affairs", + "zh": "农业农村部渔业渔政管理局" + }, + "description": { + "en": "The Bureau of Fisheries (BOF) under China's Ministry of Agriculture and Rural Affairs (MARA) is the central government authority responsible for managing and supervising fishery production, aquaculture, fishing vessel administration, and fishery law enforcement across China. China is the world's largest fishery producer, accounting for approximately one-third of global fish production, and BOF publishes the authoritative China Fishery Statistical Yearbook with comprehensive data on aquaculture output, marine and inland capture fisheries, fish species production, fishery employment, fishing vessel registrations, and aquatic product trade. BOF data is essential for understanding China's food security related to protein supply, coastal and rural livelihoods, and the management of China's vast marine and freshwater fishery resources.", + "zh": "农业农村部渔业渔政管理局是负责全国渔业生产、水产养殖、渔船管理和渔政执法的中央政府机构。中国是全球最大的渔业生产国,约占全球水产品总产量的三分之一。渔业渔政管理局发布权威的《中国渔业统计年鉴》,提供养殖产量、海洋和内陆捕捞渔业、主要鱼类产量、渔业从业人员、渔船登记和水产品贸易等全面数据。渔业局数据是了解中国蛋白质供应安全、沿海和农村生计以及海洋和淡水渔业资源管理的重要依据。" + }, + "website": "https://yyj.moa.gov.cn", + "data_url": "https://yyj.moa.gov.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "agriculture", + "food-security", + "environment" + ], + "update_frequency": "annual", + "tags": [ + "渔业", + "fishery", + "水产养殖", + "aquaculture", + "捕捞渔业", + "capture-fisheries", + "水产品产量", + "fish-production", + "渔船管理", + "fishing-vessel", + "渔业统计年鉴", + "fishery-yearbook", + "海洋渔业", + "marine-fishery", + "内陆渔业", + "inland-fishery", + "bof", + "mara" + ], + "data_content": { + "en": [ + "China Fishery Statistical Yearbook - comprehensive annual data on national fishery output, aquaculture, and capture production", + "Aquaculture production statistics - total output by species category including fish, shrimp, crab, shellfish, and algae", + "Marine capture fisheries - offshore and coastal catch data by sea area and major commercial species", + "Inland fishery data - freshwater lake, river, and reservoir fishery production statistics", + "Fishing vessel registry - number of registered fishing vessels by type, size, and coastal province", + "Fishery employment - workforce engaged in aquaculture, capture fishing, and fishery processing", + "Aquatic product trade - imports and exports of fish, seafood, and processed aquatic products", + "Aquaculture area - total area of aquaculture ponds, cages, and coastal farming facilities", + "Fishery policy announcements - fishing moratorium periods, quota allocations, and stock conservation measures" + ], + "zh": [ + "中国渔业统计年鉴 - 全国渔业产量、养殖和捕捞生产的综合年度数据", + "水产养殖产量统计 - 按鱼、虾、蟹、贝、藻类等分类的总产量", + "海洋捕捞渔业 - 按海区和主要经济鱼类分类的近海和沿海捕捞数据", + "内陆渔业数据 - 淡水湖泊、河流和水库的渔业产量统计", + "渔船登记 - 按类型、大小和沿海省份分类的注册渔船数量", + "渔业从业人员 - 从事水产养殖、捕捞和水产品加工的劳动力数据", + "水产品贸易 - 鱼类、海鲜和水产品加工品的进出口数据", + "养殖面积 - 养殖池塘、网箱和沿海养殖设施的总面积", + "渔业政策公告 - 伏季休渔期、捕捞配额分配和渔业资源养护措施" + ] + } +} diff --git a/firstdata/sources/china/economy/automotive/china-passenger-car-association.json b/firstdata/sources/china/economy/automotive/china-passenger-car-association.json new file mode 100644 index 00000000..639761f8 --- /dev/null +++ b/firstdata/sources/china/economy/automotive/china-passenger-car-association.json @@ -0,0 +1,54 @@ +{ + "id": "china-passenger-car-association", + "name": { + "en": "China Passenger Car Association", + "zh": "全国乘用车市场信息联席会" + }, + "description": { + "en": "The China Passenger Car Association (CPCA) is China's leading automotive industry data provider, publishing monthly retail and wholesale sales data for passenger vehicles. CPCA is the primary source for new energy vehicle (NEV) market data in China, providing brand-level sales rankings, market share analysis, and industry trend reports.", + "zh": "全国乘用车市场信息联席会(乘联会)是中国领先的汽车行业数据发布机构,每月发布乘用车零售和批发销量数据。乘联会是中国新能源汽车市场数据的核心来源,提供品牌销量排名、市场份额分析及行业趋势报告。" + }, + "website": "https://www.cpcaauto.com", + "data_url": "https://www.cpcaauto.com/newslist.php?types=csjd", + "api_url": null, + "authority_level": "research", + "country": "CN", + "domains": [ + "automotive", + "new-energy-vehicles", + "transportation" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "cpca", + "乘联会", + "乘用车", + "passenger-car", + "汽车销量", + "新能源汽车", + "nev", + "电动车", + "ev", + "汽车市场", + "销量排名", + "market-share", + "auto-sales" + ], + "data_content": { + "en": [ + "Monthly Retail Sales - Passenger vehicle retail sales data by brand, segment, and powertrain type", + "Wholesale Sales Data - Factory wholesale delivery volumes for passenger car manufacturers", + "NEV Market Data - New energy vehicle sales, market penetration rates, and technology mix (BEV/PHEV)", + "Export Statistics - Chinese passenger car export volumes by brand and destination", + "Market Analysis Reports - Industry trend analysis, market forecasts, and policy impact assessments" + ], + "zh": [ + "月度零售销量 - 按品牌、细分市场及动力类型的乘用车零售销量数据", + "批发销量数据 - 乘用车厂商批发交付量", + "新能源汽车数据 - 新能源车销量、市场渗透率及技术结构(纯电/插混)", + "出口统计 - 中国乘用车按品牌和目的地的出口量", + "市场分析报告 - 行业趋势分析、市场预测及政策影响评估" + ] + } +} diff --git a/firstdata/sources/china/economy/china-acfic.json b/firstdata/sources/china/economy/china-acfic.json new file mode 100644 index 00000000..ec7df844 --- /dev/null +++ b/firstdata/sources/china/economy/china-acfic.json @@ -0,0 +1,78 @@ +{ + "id": "china-acfic", + "name": { + "en": "All-China Federation of Industry and Commerce", + "zh": "中华全国工商业联合会" + }, + "description": { + "en": "The All-China Federation of Industry and Commerce (ACFIC), also known as the China Chamber of Commerce, is the national organization representing non-public economic entities — primarily private enterprises and self-employed businesses — in China. Founded in 1953, ACFIC serves as a bridge between the government and China's vast private sector, which accounts for over 60% of GDP, 70% of technological innovation, 80% of urban employment, and 90% of new businesses. ACFIC publishes influential research reports on China's private economy development, annual surveys of private enterprise business conditions, the prestigious China Top 500 Private Enterprises ranking, and policy research on private sector competitiveness, innovation capacity, and domestic market dynamics. Its data and rankings are among the most authoritative sources for understanding China's private business sector.", + "zh": "中华全国工商业联合会(全国工商联)是代表非公有制经济主体——以民营企业和个体工商户为主——的全国性组织,又称中国工商业联合会。全国工商联成立于1953年,是政府与中国庞大民营经济之间的纽带。民营经济贡献了超过60%的GDP、70%的技术创新、80%的城镇就业和90%的新增企业。全国工商联发布具有重要影响力的中国民营经济发展研究报告、民营企业经营状况年度调查、中国民营企业500强榜单,以及民营经济竞争力、创新能力和国内市场动态政策研究,是了解中国民营经济的最权威数据来源之一。" + }, + "website": "https://www.acfic.org.cn/", + "data_url": "https://www.acfic.org.cn/myjjsj/", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "economics", + "industry", + "statistics", + "governance" + ], + "update_frequency": "annual", + "tags": [ + "全国工商联", + "acfic", + "中华全国工商业联合会", + "all-china-federation-of-industry-and-commerce", + "民营经济", + "private-economy", + "民营企业500强", + "china-top-500-private-enterprises", + "非公有制经济", + "non-public-economy", + "民营企业", + "private-enterprises", + "商业环境", + "business-environment", + "民营经济调查", + "private-enterprise-survey", + "中小企业", + "smes", + "个体工商户", + "self-employed-businesses", + "民营经济发展", + "private-economy-development", + "企业竞争力", + "enterprise-competitiveness", + "产业投资", + "industrial-investment" + ], + "data_content": { + "en": [ + "China Top 500 Private Enterprises ranking: annual list of the 500 largest private companies in China by revenue, with financial performance data", + "Private enterprise business survey: annual nationwide survey of tens of thousands of private enterprises covering business confidence, financing conditions, operating costs, and employment expectations", + "Private economy development report: comprehensive annual analysis of the contribution, structure, and development trends of China's non-public economy", + "Private enterprise financing data: SME loan availability, credit conditions, financing costs, and alternative financing channel usage", + "Innovation and R&D investment: private enterprise R&D spending, patent applications, and technology adoption statistics", + "Employment and labor: private sector employment volumes, wage levels, and labor market conditions across industries", + "Industry structure of private economy: breakdown of private enterprise activity by sector, region, and enterprise scale", + "Private enterprise operating costs: data on land costs, labor costs, tax burdens, and regulatory compliance costs facing private businesses", + "Policy response tracking: surveys on private business response to government policies including tax cuts, financial support, and regulatory reforms", + "Cross-regional competitiveness: provincial and city-level rankings of private economy development based on output, growth, and business environment indicators" + ], + "zh": [ + "中国民营企业500强:按营业收入排列的500强民营企业年度榜单及财务绩效数据", + "民营企业经营状况年度调查:覆盖数万家民营企业的全国年度调查,涵盖经营信心、融资状况、运营成本及用工预期", + "民营经济发展报告:中国非公有制经济贡献、结构和发展趋势的综合年度分析", + "民营企业融资数据:中小企业贷款可得性、信贷条件、融资成本及替代融资渠道使用情况", + "创新与研发投入:民营企业研发支出、专利申请及技术采用统计数据", + "就业与劳动力:分行业民营部门就业规模、工资水平及劳动力市场状况", + "民营经济行业结构:按领域、地区和企业规模分类的民营经济活动分布", + "民营企业运营成本:民营企业面临的土地成本、人工成本、税负及监管合规成本数据", + "政策响应追踪:民营企业对减税降费、金融支持和监管改革等政府政策响应情况调查", + "跨区域竞争力:基于产出、增长和营商环境指标的省市民营经济发展水平排名" + ] + } +} diff --git a/firstdata/sources/china/economy/china-alibaba-auction.json b/firstdata/sources/china/economy/china-alibaba-auction.json new file mode 100644 index 00000000..2f44b7c9 --- /dev/null +++ b/firstdata/sources/china/economy/china-alibaba-auction.json @@ -0,0 +1,34 @@ +{ + "id": "china-alibaba-auction", + "name": { + "en": "Alibaba Judicial Auction Platform", + "zh": "阿里拍卖·司法" + }, + "description": { + "en": "Alibaba Judicial Auction (sf.taobao.com) is the largest online judicial auction platform in China, designated by the Supreme People's Court as an authorized network judicial auction platform. It hosts court-ordered auctions of seized assets including residential and commercial real estate, vehicles, land use rights, equity stakes, machinery, and other properties. The platform provides detailed property information, auction schedules, reserve prices, assessment reports, and real-time bidding. It covers auctions from courts at all levels across all provinces, making it the most comprehensive source for judicial auction market data in China.", + "zh": "阿里拍卖·司法(sf.taobao.com)是中国最大的网络司法拍卖平台,经最高人民法院指定为网络司法拍卖平台。平台承载法院裁定的查封资产拍卖,包括住宅和商业房产、车辆、土地使用权、股权、机械设备等。提供详细的标的物信息、拍卖时间、起拍价、评估报告和实时竞价。覆盖全国各省各级法院拍卖,是中国司法拍卖市场数据最全面的来源。" + }, + "website": "https://sf.taobao.com", + "data_url": "https://sf.taobao.com", + "api_url": null, + "authority_level": "commercial", + "country": "CN", + "domains": ["judicial-auction", "real-estate", "asset-disposal"], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": ["judicial-auction", "real-estate", "property", "alibaba", "court-auction"], + "data_content": { + "en": [ + "Court-ordered auction listings for real estate, vehicles, land, equity, and other seized assets", + "Property details, assessment reports, reserve prices, and real-time bidding data", + "Auction results and transaction records from courts across all provinces", + "Market statistics on judicial auction volumes, categories, and price trends" + ], + "zh": [ + "法院裁定的房产、车辆、土地、股权等查封资产拍卖信息", + "标的物详情、评估报告、起拍价和实时竞价数据", + "全国各省法院拍卖结果和成交记录", + "司法拍卖成交量、品类和价格趋势等市场统计" + ] + } +} diff --git a/firstdata/sources/china/economy/china-caac.json b/firstdata/sources/china/economy/china-caac.json new file mode 100644 index 00000000..037e9a21 --- /dev/null +++ b/firstdata/sources/china/economy/china-caac.json @@ -0,0 +1,62 @@ +{ + "id": "china-caac", + "name": { + "en": "Civil Aviation Administration of China", + "zh": "中国民用航空局", + "native": "中国民用航空局" + }, + "description": { + "en": "The Civil Aviation Administration of China (CAAC) is the government body responsible for civil aviation regulation and oversight in China. It publishes comprehensive civil aviation statistics including passenger and freight traffic, airline operations, airport throughput, flight safety records, and industry development data.", + "zh": "中国民用航空局(CAAC)是负责中国民用航空监管和管理的政府机构。发布全面的民航统计数据,包括旅客和货邮运输量、航空公司运营、机场吞吐量、飞行安全记录和行业发展数据。" + }, + "website": "https://www.caac.gov.cn", + "data_url": "https://www.caac.gov.cn/XXGK/XXGK/TJSJ/index.html", + "api_url": null, + "country": "CN", + "authority_level": "government", + "domains": [ + "transportation", + "aviation", + "statistics", + "economics" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "china", + "civil-aviation", + "caac", + "民航", + "航空统计", + "passenger-traffic", + "freight-traffic", + "airport", + "airline", + "aviation-safety", + "government" + ], + "data_content": { + "en": [ + "Passenger Traffic - Total civil aviation passenger volume, load factor, and passenger kilometers", + "Freight and Mail Traffic - Air cargo and mail transport volumes and ton-kilometers", + "Airport Throughput - Passenger, cargo, and aircraft movements at major airports", + "Airline Operations - Fleet size, routes, flight frequency, and on-time performance", + "Flight Safety - Accident and incident statistics, safety inspection records", + "Civil Aviation Industry Statistics - Revenue, investment, and employment in the sector", + "International Routes - Cross-border passenger and cargo traffic by country", + "General Aviation - Non-commercial aviation operations and fleet data", + "Annual Civil Aviation Development Statistics Bulletin - comprehensive yearly report" + ], + "zh": [ + "旅客运输 - 民航旅客总运输量、客座率和旅客周转量", + "货邮运输 - 航空货物和邮件运输量及货邮周转量", + "机场吞吐量 - 主要机场旅客、货物和飞机起降量", + "航空公司运营 - 机队规模、航线、航班频次和正点率", + "飞行安全 - 事故和事件统计、安全检查记录", + "民航行业统计 - 行业营收、投资和就业情况", + "国际航线 - 按国家分类的跨境旅客和货运交通", + "通用航空 - 非商业性航空运营和机队数据", + "民航发展统计公报 - 综合年度报告" + ] + } +} diff --git a/firstdata/sources/china/economy/china-cada.json b/firstdata/sources/china/economy/china-cada.json new file mode 100644 index 00000000..5a24ec4d --- /dev/null +++ b/firstdata/sources/china/economy/china-cada.json @@ -0,0 +1,81 @@ +{ + "id": "china-cada", + "name": { + "en": "China Automobile Dealers Association", + "zh": "中国汽车流通协会" + }, + "description": { + "en": "The China Automobile Dealers Association (CADA) is the national trade organization representing China's automobile dealerships, used-car dealers, and automotive retail sector, supervised by the Ministry of Commerce. China is the world's largest auto market, with annual retail sales exceeding 25 million vehicles. CADA operates a comprehensive statistical system tracking monthly new-vehicle retail sales by brand, segment, and region through its network of over 10,000 dealer members. The association publishes the CADA Dealer Confidence Index (DCI) and the China Used Car Market Report, providing authoritative demand-side data that complements supply-side data from the China Association of Automobile Manufacturers (CAAM). CADA also monitors dealer profitability, inventory levels, financing penetration rates, and consumer satisfaction, making it essential for automotive industry analysis, investment research, and consumer trend studies.", + "zh": "中国汽车流通协会(中汽协流通)是代表中国整车经销商、二手车经销商和汽车零售行业的全国性行业组织,主管单位为商务部。中国是全球最大的汽车市场,年零售销量超过2500万辆。协会通过10000余家经销商会员网络,构建了完整的统计体系,按品牌、细分市场和地区追踪月度新车零售销量。协会发布经销商信心指数(DCI)和中国二手车市场报告,提供权威的需求侧数据,与中国汽车工业协会(中汽协)的供给侧数据形成互补。协会还监测经销商盈利能力、库存系数、金融服务渗透率和消费者满意度,是汽车行业分析、投资研究和消费趋势研究的重要数据来源。" + }, + "website": "http://www.cada.cn", + "data_url": "http://data.cada.cn/main/overview.do", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "economics", + "industry", + "trade", + "consumer" + ], + "update_frequency": "monthly", + "tags": [ + "中国汽车流通协会", + "cada", + "china-automobile-dealers-association", + "汽车零售", + "automobile-retail-sales", + "新车销量", + "new-vehicle-sales", + "二手车", + "used-car-market", + "经销商信心指数", + "dealer-confidence-index", + "dci", + "库存系数", + "dealer-inventory", + "汽车金融", + "auto-financing", + "消费者满意度", + "consumer-satisfaction", + "乘用车", + "passenger-vehicles", + "商用车", + "commercial-vehicles", + "新能源汽车", + "new-energy-vehicles", + "nev", + "品牌销量", + "brand-sales", + "汽车市场", + "auto-market", + "经销商盈利", + "dealer-profitability" + ], + "data_content": { + "en": [ + "Monthly new vehicle retail sales: passenger car and commercial vehicle retail volumes by brand, model segment (sedan, SUV, MPV), and province/city", + "CADA Dealer Confidence Index (DCI): monthly survey-based sentiment indicator covering dealer expectations for sales, inventory, and profitability across vehicle segments", + "Used car market statistics: monthly transaction volumes, average transaction prices, and regional distribution of used vehicle sales in China", + "Dealer inventory index: monthly days-of-supply and stock-to-sales ratio by brand and dealership tier, indicating supply-demand balance in the retail channel", + "Auto financing penetration: monthly share of vehicle purchases financed, average loan-to-value ratios, and financing product mix by brand tier", + "Consumer satisfaction survey: annual JD Power-style satisfaction rankings for dealership sales, service quality, and after-sales experience by brand", + "Dealership financial health: quarterly survey of dealer profitability, revenue per unit, and profit margin by brand authorization tier", + "New energy vehicle retail tracking: monthly battery electric vehicle (BEV) and plug-in hybrid (PHEV) retail sales with charging infrastructure data", + "Annual China auto dealer blue book: comprehensive review of retail market trends, dealer network changes, and outlook for the coming year" + ], + "zh": [ + "月度新车零售销量:按品牌、车型细分(轿车、SUV、MPV)和省市分类的乘用车和商用车零售量", + "经销商信心指数(DCI):月度调查型情绪指标,涵盖各细分市场销量预期、库存及盈利能力", + "二手车市场统计:中国二手车月度交易量、平均成交价格和区域分布", + "库存系数:按品牌和经销商层级的月度库存销售天数和库存销售比,反映零售渠道供需平衡状况", + "汽车金融渗透率:月度融资购车占比、平均贷款价值比和按品牌层级的金融产品结构", + "消费者满意度调查:各品牌经销商销售、服务质量和售后体验的年度JD Power式满意度排名", + "经销商财务健康状况:按品牌授权层级的经销商盈利能力、单车收益和利润率季度调查", + "新能源汽车零售追踪:纯电动汽车(BEV)和插电混合动力汽车(PHEV)月度零售量及充电基础设施数据", + "中国汽车流通蓝皮书:年度零售市场趋势、经销商网络变化及下一年度展望综合述评" + ] + } +} diff --git a/firstdata/sources/china/economy/china-gpai.json b/firstdata/sources/china/economy/china-gpai.json new file mode 100644 index 00000000..75311582 --- /dev/null +++ b/firstdata/sources/china/economy/china-gpai.json @@ -0,0 +1,34 @@ +{ + "id": "china-gpai", + "name": { + "en": "China Public Auction Network", + "zh": "公拍网" + }, + "description": { + "en": "The China Public Auction Network (gpai.net) is a comprehensive online auction platform for judicial auctions, public resource transactions, and government asset disposals. Designated by the Supreme People's Court as an authorized network judicial auction platform, it handles court-ordered property auctions alongside public resource trading including state-owned asset transfers, bankruptcy asset disposals, and government procurement auctions. The platform serves as both a judicial auction channel and a public resource transaction hub, particularly active in eastern China regions.", + "zh": "公拍网(gpai.net)是综合性网络拍卖平台,涵盖司法拍卖、公共资源交易和政府资产处置。经最高人民法院指定为网络司法拍卖平台,承载法院裁定的财产拍卖,同时处理国有资产转让、破产资产处置和政府采购拍卖等公共资源交易。平台兼具司法拍卖渠道和公共资源交易枢纽功能,在华东地区尤为活跃。" + }, + "website": "https://www.gpai.net", + "data_url": "https://www.gpai.net/sf/", + "api_url": null, + "authority_level": "commercial", + "country": "CN", + "domains": ["judicial-auction", "real-estate", "public-resource-trading"], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": ["judicial-auction", "public-auction", "real-estate", "state-asset", "property"], + "data_content": { + "en": [ + "Judicial auction listings for court-ordered property disposals", + "Public resource transaction records including state-owned asset transfers", + "Bankruptcy asset disposal and government procurement auction data", + "Auction results, bidding statistics, and property valuation records" + ], + "zh": [ + "法院裁定的司法拍卖标的信息", + "国有资产转让等公共资源交易记录", + "破产资产处置和政府采购拍卖数据", + "拍卖结果、竞价统计和资产评估记录" + ] + } +} diff --git a/firstdata/sources/china/economy/china-jd-auction.json b/firstdata/sources/china/economy/china-jd-auction.json new file mode 100644 index 00000000..96614c29 --- /dev/null +++ b/firstdata/sources/china/economy/china-jd-auction.json @@ -0,0 +1,32 @@ +{ + "id": "china-jd-auction", + "name": { + "en": "JD.com Judicial Auction Platform", + "zh": "京东拍卖·司法" + }, + "description": { + "en": "JD.com Judicial Auction (auction.jd.com) is one of China's major online judicial auction platforms, designated by the Supreme People's Court as an authorized network judicial auction platform. It hosts court-ordered auctions of seized assets including real estate, vehicles, land use rights, and equity stakes. The platform leverages JD.com's e-commerce infrastructure to provide property listings, auction schedules, bidding services, and transaction records. It serves as a significant supplementary channel to Alibaba's judicial auction platform for court-ordered asset dispositions.", + "zh": "京东拍卖·司法(auction.jd.com)是中国主要的网络司法拍卖平台之一,经最高人民法院指定为网络司法拍卖平台。平台承载法院裁定的查封资产拍卖,包括房产、车辆、土地使用权和股权等。依托京东电商基础设施,提供标的物展示、拍卖安排、竞价服务和成交记录。是阿里司法拍卖之外法院资产处置的重要补充渠道。" + }, + "website": "https://auction.jd.com", + "data_url": "https://auction.jd.com/sifa.html", + "api_url": null, + "authority_level": "commercial", + "country": "CN", + "domains": ["judicial-auction", "real-estate", "asset-disposal"], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": ["judicial-auction", "real-estate", "property", "jd", "court-auction"], + "data_content": { + "en": [ + "Court-ordered auction listings for real estate, vehicles, land use rights, and equity", + "Property information, auction schedules, reserve prices, and bidding records", + "Transaction results and auction statistics by region and asset category" + ], + "zh": [ + "法院裁定的房产、车辆、土地使用权、股权等拍卖信息", + "标的物信息、拍卖安排、起拍价和竞价记录", + "按地区和资产类别分类的成交结果和拍卖统计" + ] + } +} diff --git a/firstdata/sources/china/economy/china-mct.json b/firstdata/sources/china/economy/china-mct.json new file mode 100644 index 00000000..9d4067c8 --- /dev/null +++ b/firstdata/sources/china/economy/china-mct.json @@ -0,0 +1,44 @@ +{ + "id": "china-mct", + "name": { + "en": "Ministry of Culture and Tourism of China", + "zh": "中华人民共和国文化和旅游部", + "native": "中华人民共和国文化和旅游部" + }, + "description": { + "en": "The Ministry of Culture and Tourism publishes statistics on domestic and international tourism, cultural industry development, and online travel market regulation in China.", + "zh": "文化和旅游部发布国内外旅游统计、文化产业发展和在线旅游市场监管数据。" + }, + "website": "https://www.mct.gov.cn", + "data_url": "https://www.mct.gov.cn/zwgk/tjsj/", + "country": "CN", + "domains": [ + "tourism", + "culture", + "economics" + ], + "tags": [ + "tourism-statistics", + "cultural-industry", + "inbound-tourism", + "outbound-tourism" + ], + "authority_level": "government", + "update_frequency": "annual", + "geographic_scope": "national", + "data_content": { + "en": [ + "Tourism Statistics - Domestic and international tourist arrivals, revenue, and expenditure", + "Cultural Industry - Cultural enterprise statistics, revenue, and employment", + "Online Travel - Online travel market regulation and platform data", + "Heritage Sites - Cultural heritage and scenic area visitor statistics" + ], + "zh": [ + "旅游统计 - 国内外游客人次、收入和支出", + "文化产业 - 文化企业统计、营收和就业", + "在线旅游 - 在线旅游市场监管和平台数据", + "文化遗产 - 文化遗产和景区游客统计" + ] + }, + "api_url": null +} diff --git a/firstdata/sources/china/economy/china-miit-sme.json b/firstdata/sources/china/economy/china-miit-sme.json new file mode 100644 index 00000000..ffff9450 --- /dev/null +++ b/firstdata/sources/china/economy/china-miit-sme.json @@ -0,0 +1,81 @@ +{ + "id": "china-miit-sme", + "name": { + "en": "China Center for Promotion of SME Development (MIIT)", + "zh": "中国中小企业发展促进中心(工业和信息化部中小企业发展促进中心)" + }, + "description": { + "en": "The China Center for Promotion of SME Development, directly subordinate to the Ministry of Industry and Information Technology (MIIT), is the central government body responsible for supporting small and medium-sized enterprise (SME) development in China. Established to implement national SME policies, the Center conducts research and analysis on SME development trends, tracks SME operational data, manages SME-related public service platforms, and provides policy advisory, financing support, innovation promotion, and international cooperation services. The Center publishes regular SME development index reports, manages China's national SME information and public service platform, compiles SME statistical data, and coordinates specialized SME programs such as the 'Specialized, Refined, Differentiated, and Innovative' (专精特新) enterprise certification. Its data is critical for understanding the health of China's SME sector which accounts for over 50% of tax revenue, 60% of GDP, 70% of innovation, 80% of employment, and 90% of enterprises nationwide.", + "zh": "中国中小企业发展促进中心是工业和信息化部直属事业单位,是负责支持中国中小企业发展的中央政府机构。中心成立的目的是落实国家中小企业政策,开展中小企业发展趋势研究分析,跟踪中小企业经营数据,管理中小企业相关公共服务平台,并提供政策咨询、融资支持、创新促进及国际合作服务。中心定期发布中小企业发展指数报告,管理中国中小企业信息网及公共服务平台,编制中小企业统计数据,并协调“专精特新”企业认定等专项中小企业计划。其数据对了解占全国50%以上税收、60%以上GDP、70%以上创新、80%以上就业和90%以上企业数量的中小企业部门健康状况至关重要。" + }, + "website": "https://www.chinasme.org.cn/", + "data_url": "https://www.chinasme.org.cn/html/mcms/daohang/tongzhigonggao/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "economics", + "business", + "governance", + "statistics" + ], + "update_frequency": "monthly", + "tags": [ + "中国中小企业发展促进中心", + "china-sme-development-center", + "工业和信息化部", + "miit", + "中小企业", + "sme", + "small-and-medium-enterprises", + "专精特新", + "specialized-refined-differentiated-innovative", + "中小企业发展指数", + "sme-development-index", + "中小企业政策", + "sme-policy", + "中小企业融资", + "sme-financing", + "企业创新", + "enterprise-innovation", + "公共服务平台", + "public-service-platform", + "企业服务", + "enterprise-services", + "中小企业统计", + "sme-statistics", + "小微企业", + "micro-and-small-enterprises", + "创业创新", + "entrepreneurship-and-innovation", + "制造业中小企业", + "manufacturing-smes" + ], + "data_content": { + "en": [ + "SME development index: quarterly composite index tracking SME operating conditions across sectors including market demand, profitability, costs, financing, and confidence", + "SME statistical data: aggregated statistics on SME count, employment, revenue, value added, by industry and region", + "Specialized and sophisticated SMEs ('Little Giants') database: certified lists of 'Specialized, Refined, Differentiated, and Innovative' (专精特新) enterprises at national and provincial levels", + "SME policy documents: national and local policy announcements on SME taxation, financing, innovation, digital transformation", + "Financing service data: SME credit and loan statistics, guarantee data, direct financing trends", + "SME public service platform data: resources from the national SME information network covering training, consulting, technology transfer", + "Sectoral analysis reports: industry-specific SME development trends in manufacturing, services, and emerging industries", + "International cooperation projects: SME cooperation programs with EU, ASEAN, Japan, Korea, and Belt and Road countries", + "Enterprise service center directory: nationwide network of SME service organizations and their capabilities", + "Conference and exhibition data: China International SME Expo and related event information" + ], + "zh": [ + "中小企业发展指数:跟踪中小企业经营状况的季度综合指数,涵盖市场需求、盈利能力、成本、融资及信心等维度", + "中小企业统计数据:分行业、分地区的中小企业数量、就业、营收、增加值等汇总统计", + "专精特新\"小巨人\"企业数据库:国家级和省级“专精特新”企业认定名单", + "中小企业政策文件:国家和地方关于中小企业税收、融资、创新、数字化转型的政策公告", + "融资服务数据:中小企业信贷及贷款统计、担保数据、直接融资趋势", + "中小企业公共服务平台数据:国家中小企业信息网资源,涵盖培训、咨询、技术转让", + "行业分析报告:制造业、服务业及新兴产业中小企业发展趋势研究", + "国际合作项目:与欧盟、东盟、日本、韩国及一带一路国家的中小企业合作计划", + "企业服务中心目录:全国中小企业服务机构网络及其服务能力", + "会议展览数据:中国国际中小企业博览会及相关活动信息" + ] + } +} diff --git a/firstdata/sources/china/economy/industry_associations/china-cansi.json b/firstdata/sources/china/economy/industry_associations/china-cansi.json new file mode 100644 index 00000000..24b71c17 --- /dev/null +++ b/firstdata/sources/china/economy/industry_associations/china-cansi.json @@ -0,0 +1,81 @@ +{ + "id": "china-cansi", + "name": { + "en": "China Association of the National Shipbuilding Industry", + "zh": "中国船舶工业行业协会" + }, + "description": { + "en": "The China Association of the National Shipbuilding Industry (CANSI) is the national industry organization representing China's shipbuilding sector. China is the world's largest shipbuilding nation by output, consistently accounting for over 50% of global new ship orders (by compensated gross tonnage). CANSI publishes monthly and annual statistics on vessel completions, new orders, and the orderbook backlog across all major vessel types including bulk carriers, tankers, container ships, LNG carriers, and naval vessels. The association also releases data on steel consumption by shipbuilders, employment in the sector, and shipyard-level performance. CANSI data is the primary reference for global shipping market participants, port operators, financial analysts, and trade economists tracking China's maritime industrial capacity.", + "zh": "中国船舶工业行业协会(中船协)是代表中国船舶工业的全国性行业组织。中国是全球最大的造船国,按修正总吨计新接订单长期占全球50%以上。中船协发布散货船、油船、集装箱船、LNG船及军船等各类船型的月度和年度完工量、新接订单量及手持订单统计数据,同时发布造船业钢材消耗量、行业从业人员规模及船厂经营情况数据。中船协数据是全球航运市场参与者、港口运营商、金融分析师和贸易经济学家追踪中国船舶工业产能的主要数据来源。" + }, + "website": "https://www.cansi.org.cn/", + "data_url": "https://www.cansi.org.cn/cms/document/show/43.html", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "industry", + "trade", + "economics", + "infrastructure" + ], + "update_frequency": "monthly", + "tags": [ + "中国船舶工业行业协会", + "cansi", + "china-shipbuilding", + "造船", + "船舶工业", + "shipbuilding-industry", + "新船订单", + "new-ship-orders", + "手持订单", + "orderbook", + "完工量", + "vessel-completions", + "散货船", + "bulk-carrier", + "油船", + "tanker", + "集装箱船", + "container-ship", + "LNG船", + "lng-carrier", + "cgt", + "修正总吨", + "compensated-gross-tonnage", + "全球造船市场", + "global-shipbuilding-market", + "航运", + "shipping", + "造船产能", + "shipbuilding-capacity", + "船厂", + "shipyard" + ], + "data_content": { + "en": [ + "Monthly shipbuilding completions: total vessel output by tonnage (DWT, CGT) and number of ships, broken down by vessel type", + "New orders received: monthly new shipbuilding contracts by vessel type, tonnage, and value", + "Orderbook backlog: total outstanding orders at Chinese shipyards by vessel type and delivery schedule", + "Market share data: China's share of global shipbuilding output versus South Korea, Japan, and other major shipbuilding nations", + "Vessel type breakdown: detailed statistics for bulk carriers, crude/product tankers, container ships, LNG carriers, and other specialized vessels", + "Steel consumption: steel plate and section consumption by major shipyards, linking shipbuilding to steel industry demand", + "Industry employment: total workforce in China's shipbuilding and ship repair sector", + "Annual industry report: comprehensive overview of China's shipbuilding industry performance, technology, and market outlook", + "Export data: vessels built in China for foreign buyers and export value" + ], + "zh": [ + "月度造船完工量:按载重吨(DWT)、修正总吨(CGT)和艘数统计的船舶总产量,并按船型细分", + "新接订单:按船型、吨位和金额统计的月度新增造船合同", + "手持订单:按船型和交付计划统计的中国各船厂未完工订单合计", + "市场份额:中国造船产量在全球的占比及与韩国、日本等主要造船国的对比", + "船型细分:散货船、原油/成品油船、集装箱船、LNG船及其他特种船详细统计", + "钢材消耗:主要船厂船用钢板和型钢消耗量,体现造船业对钢铁行业的拉动", + "行业就业:中国造船和船舶修理业从业人员总规模", + "年度行业报告:中国船舶工业经营状况、技术进展和市场展望综合报告", + "出口数据:中国为境外买家建造的船舶及出口金额" + ] + } +} diff --git a/firstdata/sources/china/economy/industry_associations/china-cantonfair.json b/firstdata/sources/china/economy/industry_associations/china-cantonfair.json new file mode 100644 index 00000000..278a89c5 --- /dev/null +++ b/firstdata/sources/china/economy/industry_associations/china-cantonfair.json @@ -0,0 +1,59 @@ +{ + "id": "china-cantonfair", + "name": { + "en": "China Import and Export Fair (Canton Fair)", + "zh": "中国进出口商品交易会(广交会)" + }, + "description": { + "en": "The China Import and Export Fair, commonly known as the Canton Fair, is the oldest, largest, and most comprehensive international trade fair in China. Hosted biannually in spring and autumn in Guangzhou since 1957, it is jointly organized by the Ministry of Commerce of China (MOFCOM) and the Guangdong Provincial People's Government, and implemented by the China Foreign Trade Centre. The Canton Fair publishes authoritative trade data covering exhibitor enterprise counts, overseas buyer visits by country, on-site transaction turnover by product category and region, new product and green product showcases, cross-border e-commerce statistics, and trade trend analyses. As a key barometer of China's foreign trade, its statistics are widely referenced by economists, policy researchers, and exporters to gauge global demand, supply chain shifts, and the competitiveness of Chinese manufacturing across 16 major product categories including electronics, machinery, textiles, household products, and food.", + "zh": "中国进出口商品交易会(简称广交会)是中国规模最大、历史最悠久、商品种类最全、到会采购商最多的综合性国际贸易盛会。广交会自1957年起每年春秋两季在广州举办,由商务部和广东省人民政府联合主办,中国对外贸易中心承办。广交会发布权威的贸易数据,涵盖参展企业数量、境外采购商到会国别分布、按商品类别和地区统计的现场成交额、新产品和绿色产品展示、跨境电商专区数据,以及贸易趋势分析。作为中国外贸的晴雨表,其统计数据被经济学家、政策研究者和出口商广泛引用,用于观察全球需求、供应链变化以及中国制造业在电子电器、机械、纺织服装、家居用品、食品等16大类商品上的竞争力。" + }, + "website": "https://www.cantonfair.org.cn", + "data_url": "https://www.cantonfair.org.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "economics", + "trade", + "foreign-trade" + ], + "update_frequency": "irregular", + "tags": [ + "canton-fair", + "广交会", + "中国进出口商品交易会", + "外贸", + "进出口", + "foreign-trade", + "import-export", + "trade-fair", + "mofcom", + "guangzhou", + "exhibition", + "overseas-buyers", + "trade-statistics", + "成交额" + ], + "data_content": { + "en": [ + "Biannual exhibitor counts and participating enterprise statistics", + "Overseas buyer attendance by country and region", + "On-site transaction turnover by product category", + "Export trade data for 16 major product categories", + "Cross-border e-commerce pilot zone statistics", + "Green and new product showcase data", + "Foreign trade trend analyses and enterprise surveys" + ], + "zh": [ + "春秋两届参展商数量及参展企业统计", + "按国家和地区分布的境外采购商到会数据", + "按商品类别的现场成交额统计", + "16大类商品的出口贸易数据", + "跨境电商专区统计数据", + "绿色产品和新产品展示数据", + "外贸趋势分析与企业调查报告" + ] + } +} diff --git a/firstdata/sources/china/economy/industry_associations/china-caq.json b/firstdata/sources/china/economy/industry_associations/china-caq.json new file mode 100644 index 00000000..ea7039e7 --- /dev/null +++ b/firstdata/sources/china/economy/industry_associations/china-caq.json @@ -0,0 +1,65 @@ +{ + "id": "china-caq", + "name": { + "en": "China Association for Quality", + "zh": "中国质量协会" + }, + "description": { + "en": "The China Association for Quality (CAQ) is the national professional organization for quality management in China, founded in 1979. Operating under the State Administration for Market Regulation (SAMR), CAQ promotes quality improvement across Chinese industries through research, training, certification, and awards programs. CAQ publishes China's authoritative quality statistics including the China Quality Report, enterprise quality benchmark data, and consumer satisfaction indices. The association administers the China Quality Award (中国质量奖), the nation's highest quality honor modeled on the Baldrige Award framework. CAQ also manages China's official user satisfaction surveys covering major product and service categories, providing data essential for understanding quality trends, product recalls, and corporate quality performance across Chinese manufacturing and service industries.", + "zh": "中国质量协会(CAQ)是全国性质量管理专业组织,成立于1979年,隶属国家市场监督管理总局。协会通过研究、培训、认证和奖励项目推动中国各行业质量提升,发布中国权威质量统计数据,包括中国质量报告、企业质量标杆数据及消费者满意度指数。协会负责管理中国质量奖(全国最高质量荣誉,参照波多里奇奖框架设立),并组织开展主要产品和服务类别的中国用户满意度官方调查,为了解中国制造业和服务业质量趋势、产品召回及企业质量绩效提供重要数据支撑。" + }, + "website": "https://www.caq.org.cn/", + "data_url": "https://www.caq.org.cn/html/zltj", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "economy", + "governance", + "social" + ], + "update_frequency": "annual", + "tags": [ + "质量管理", + "quality-management", + "消费者满意度", + "consumer-satisfaction", + "产品质量", + "product-quality", + "质量奖", + "quality-award", + "中国质量报告", + "china-quality-report", + "用户满意度", + "user-satisfaction", + "质量标准", + "quality-standards", + "质量认证", + "quality-certification", + "企业质量", + "enterprise-quality", + "产品召回", + "product-recall" + ], + "data_content": { + "en": [ + "China Quality Report: annual comprehensive assessment of quality conditions across industries and regions", + "Consumer satisfaction index: national survey results by product category (electronics, automobiles, household goods, etc.)", + "Enterprise quality benchmarks: performance data for China Quality Award applicants and winners", + "Quality training statistics: certification exam pass rates and professional qualification data", + "Product complaint and recall data: quality incident reports from member organizations", + "Quality cost surveys: industry-level data on internal and external quality failure costs", + "Service quality index: satisfaction scores for financial, telecoms, logistics, and healthcare services" + ], + "zh": [ + "中国质量报告:各行业及地区质量状况年度综合评估", + "消费者满意度指数:各品类(电子产品、汽车、家居用品等)全国调查结果", + "企业质量标杆:中国质量奖申请单位及获奖单位绩效数据", + "质量培训统计:认证考试通过率及专业资格数据", + "产品投诉及召回数据:成员单位质量事件报告", + "质量成本调查:各行业内外部质量损失成本数据", + "服务质量指数:金融、电信、物流及医疗服务满意度评分" + ] + } +} diff --git a/firstdata/sources/china/economy/industry_associations/china-cbea.json b/firstdata/sources/china/economy/industry_associations/china-cbea.json new file mode 100644 index 00000000..15afa73b --- /dev/null +++ b/firstdata/sources/china/economy/industry_associations/china-cbea.json @@ -0,0 +1,60 @@ +{ + "id": "china-cbea", + "name": { + "en": "China Beverage Association", + "zh": "中国饮料工业协会" + }, + "description": { + "en": "The China Beverage Association (CBA) is the national industry organization representing China's beverage industry, covering carbonated drinks, bottled water, fruit and vegetable juices, tea beverages, dairy-based drinks, sports and energy drinks, and plant protein beverages. Established in 1981 under the guidance of the Ministry of Industry and Information Technology, the association publishes authoritative annual statistics on China's beverage production volume, market size, major product category breakdown, enterprise revenue and profitability, import and export data, and industry concentration ratios. CBA's Annual Report on China's Beverage Industry is the primary reference for tracking the world's second-largest beverage market, consumer health trends driving product reformulation, and competitive landscape among domestic and international brands. The association also publishes safety standards, quality benchmarks, and industry technical guidelines.", + "zh": "中国饮料工业协会(中饮协)是代表中国饮料行业的全国性行业组织,涵盖碳酸饮料、瓶装水、果蔬汁、茶饮料、乳饮料、运动功能饮料和植物蛋白饮料等品类。协会于1981年在工业和信息化部指导下成立,发布中国饮料产量、市场规模、主要产品品类构成、企业收入与盈利情况、进出口数据及行业集中度等权威年度统计。《中国饮料行业年度报告》是追踪全球第二大饮料市场、消费者健康趋势推动产品配方革新以及国内外品牌竞争格局的主要参考依据。协会同时发布安全标准、质量基准和行业技术指南。" + }, + "website": "https://www.chinabeverage.org", + "data_url": "https://www.chinabeverage.org", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "food-safety", + "economics", + "consumer-goods" + ], + "update_frequency": "annual", + "tags": [ + "cbea", + "中国饮料工业协会", + "饮料行业", + "碳酸饮料", + "瓶装水", + "茶饮料", + "果汁", + "beverage-industry", + "food-beverage", + "consumer-goods", + "bottled-water", + "energy-drinks", + "market-statistics", + "food-safety", + "饮料产量" + ], + "data_content": { + "en": [ + "Annual beverage production volume by product category (carbonated, water, juice, tea, dairy, sports/energy)", + "Total industry market size and revenue data", + "Enterprise profitability and top company rankings", + "Import and export statistics for beverage products", + "Industry concentration ratios and market share analysis", + "Consumer health trend impacts on product reformulation", + "Beverage product quality and safety standards" + ], + "zh": [ + "按品类(碳酸、水、果汁、茶、乳饮料、运动功能饮料)分类的年度饮料产量", + "行业市场规模及营业收入数据", + "企业盈利情况及头部企业排名", + "饮料产品进出口统计", + "行业集中度与市场份额分析", + "消费者健康趋势对产品配方革新的影响", + "饮料产品质量与安全标准" + ] + } +} diff --git a/firstdata/sources/china/economy/industry_associations/china-cbmf.json b/firstdata/sources/china/economy/industry_associations/china-cbmf.json new file mode 100644 index 00000000..aea94c60 --- /dev/null +++ b/firstdata/sources/china/economy/industry_associations/china-cbmf.json @@ -0,0 +1,83 @@ +{ + "id": "china-cbmf", + "name": { + "en": "China Building Materials Federation", + "zh": "中国建筑材料联合会" + }, + "description": { + "en": "The China Building Materials Federation (CBMF) is the national industry organization representing China's building materials manufacturing sector. China is the world's largest producer and consumer of construction materials, including cement, flat glass, ceramics, stone products, waterproofing materials, insulation materials, and composite panels. The building materials industry is a foundational input for China's massive infrastructure and real estate development, and its production data closely tracks fixed asset investment cycles. CBMF publishes monthly and annual statistics on cement production, plate glass output, ceramic tile and sanitary ware manufacturing, stone processing, and other building material categories. The association also releases industry development reports, energy consumption data, export statistics, and policy analysis relevant to China's construction and green building transition. CBMF data is essential for construction industry supply chain analysis, commodity market research, and tracking China's urbanization and infrastructure build-out.", + "zh": "中国建筑材料联合会(中国建材联合会)是代表中国建筑材料制造行业的全国性行业组织。中国是全球最大的建筑材料生产国和消费国,产品涵盖水泥、平板玻璃、陶瓷、石材、防水材料、绝热材料和复合板材等。建材行业是中国大规模基础设施和房地产开发建设的基础投入,其产量数据与固定资产投资周期紧密相关。联合会发布水泥、平板玻璃、陶瓷砖和卫生洁具、石材加工等各建材品类的月度和年度统计数据,同时发布行业发展报告、能源消耗数据、出口统计及与中国建筑业绿色转型相关的政策分析。联合会数据对建筑行业供应链分析、大宗商品市场研究和追踪中国城镇化与基础设施建设进程具有重要价值。" + }, + "website": "https://www.cbmf.org/", + "data_url": "https://www.cbmf.org/yxjc/", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "industry", + "economics", + "infrastructure", + "environment" + ], + "update_frequency": "monthly", + "tags": [ + "中国建筑材料联合会", + "cbmf", + "china-building-materials", + "建筑材料", + "building-materials", + "水泥", + "cement", + "平板玻璃", + "flat-glass", + "陶瓷", + "ceramics", + "陶瓷砖", + "ceramic-tile", + "卫生洁具", + "sanitary-ware", + "石材", + "stone-products", + "防水材料", + "waterproofing", + "建材产量", + "building-materials-production", + "建材出口", + "building-materials-exports", + "绿色建材", + "green-building-materials", + "建筑业", + "construction-industry", + "房地产材料", + "real-estate-materials", + "基础设施建设", + "infrastructure-construction" + ], + "data_content": { + "en": [ + "Cement production: monthly and annual cement output by province and major enterprise group, including clinker and finished cement", + "Flat glass: monthly production of float glass, processed glass, and specialty glass by thickness and product category", + "Ceramic tile and sanitary ware: output statistics for floor tiles, wall tiles, polished tiles, and bathroom fixtures", + "Stone products: production of granite, marble, and engineered stone slabs by major producing region", + "Waterproofing and insulation: production data for waterproofing membranes, thermal insulation boards, and related products", + "Composite panels: output of fiber cement boards, calcium silicate boards, and gypsum board", + "Export statistics: monthly export volume and value for cement, glass, ceramics, and stone products by destination", + "Energy consumption: industry energy intensity data supporting green building materials and carbon reduction policy analysis", + "Enterprise performance: production, revenue, and profit data for major listed and unlisted building materials companies", + "Industry development report: annual overview of China's building materials sector covering production, trade, technology, and policy" + ], + "zh": [ + "水泥产量:按省份和主要企业集团统计的月度和年度水泥产量,包含熟料和成品水泥", + "平板玻璃:按厚度和产品类别统计的浮法玻璃、深加工玻璃和特种玻璃月度产量", + "陶瓷砖和卫生洁具:地砖、墙砖、抛光砖及卫浴洁具产量统计", + "石材制品:主要产区花岗岩、大理石和工程石板材产量", + "防水与绝热材料:防水卷材、保温板及相关产品产量", + "复合板材:纤维水泥板、硅钙板和石膏板产量", + "出口统计:水泥、玻璃、陶瓷和石材按目的地统计的月度出口量和出口额", + "能耗数据:行业能耗强度数据,支撑绿色建材和碳减排政策分析", + "企业经营数据:主要上市和非上市建材企业的产量、营收和利润", + "行业发展报告:涵盖产量、贸易、技术和政策的中国建材行业年度综合报告" + ] + } +} diff --git a/firstdata/sources/china/economy/industry_associations/china-ccfa.json b/firstdata/sources/china/economy/industry_associations/china-ccfa.json new file mode 100644 index 00000000..b883773b --- /dev/null +++ b/firstdata/sources/china/economy/industry_associations/china-ccfa.json @@ -0,0 +1,80 @@ +{ + "id": "china-ccfa", + "name": { + "en": "China Chemical Fiber Industry Association", + "zh": "中国化学纤维工业协会" + }, + "description": { + "en": "The China Chemical Fiber Industry Association (CCFA) is the national industry organization representing China's chemical fiber sector. China is by far the world's largest producer of chemical fibers, accounting for approximately 70% of global output. Chemical fibers—including polyester, nylon, acrylic, spandex, viscose, and lyocell—are foundational inputs for textiles, apparel, automotive interiors, construction composites, and industrial applications. CCFA publishes monthly and annual production statistics for all major fiber categories, as well as data on capacity additions, enterprise performance, import/export volumes, and fiber price trends. The association also releases industry development reports, technology roadmaps, and data on emerging sustainable fibers. CCFA data is essential for textile supply chain analysis, fashion industry forecasting, raw material pricing, and trade policy research.", + "zh": "中国化学纤维工业协会(中国化纤协会)是代表中国化学纤维行业的全国性行业组织。中国是全球最大的化学纤维生产国,产量约占全球总产量的70%。化学纤维涵盖涤纶、锦纶、腈纶、氨纶、粘胶纤维和莱赛尔纤维等,是纺织服装、汽车内饰、建筑复合材料和工业用材的基础原料。协会发布各主要纤维品种的月度和年度产量统计,以及产能扩张、企业经营、进出口量和纤维价格走势数据,同时发布行业发展报告、技术路线图和新兴可持续纤维数据。中国化纤协会的数据对纺织供应链分析、时尚行业预测、原料定价研究和贸易政策研究具有重要价值。" + }, + "website": "https://www.ccfa.com.cn/", + "data_url": "https://www.ccfa.com.cn/19/index.html", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "industry", + "economics", + "trade" + ], + "update_frequency": "monthly", + "tags": [ + "中国化学纤维工业协会", + "ccfa", + "china-chemical-fiber", + "化学纤维", + "chemical-fiber", + "涤纶", + "polyester", + "锦纶", + "nylon", + "腈纶", + "acrylic", + "氨纶", + "spandex", + "粘胶纤维", + "viscose", + "莱赛尔", + "lyocell", + "纤维产量", + "fiber-production", + "化纤工业", + "chemical-fiber-industry", + "纺织原料", + "textile-raw-materials", + "化纤进出口", + "fiber-trade", + "化纤价格", + "fiber-prices", + "可持续纤维", + "sustainable-fibers", + "纺织供应链", + "textile-supply-chain" + ], + "data_content": { + "en": [ + "Monthly fiber production: output statistics for all major chemical fiber categories (polyester filament and staple, nylon, acrylic, spandex, viscose/modal/lyocell, and others)", + "Annual capacity data: total installed capacity by fiber type and major production enterprise", + "Price indices: monthly price trends for key chemical fiber products and their upstream raw materials (PTA, MEG, caprolactam, acrylonitrile)", + "Import and export volumes: monthly trade data for chemical fiber products by type and destination country", + "Enterprise performance: production, revenue, profit, and export data for major chemical fiber companies", + "Industry investment: annual fixed asset investment in chemical fiber sector and new capacity additions", + "Fiber flow trend report: annual report on fashion and color trends driving demand for specific fiber types", + "Sustainability data: production statistics for bio-based, recycled, and functional high-performance fibers", + "Industry development report: annual overview of China's chemical fiber industry performance and outlook" + ], + "zh": [ + "月度纤维产量:涤纶长丝和短纤、锦纶、腈纶、氨纶、粘胶/莫代尔/莱赛尔等各主要化纤品种产量统计", + "年度产能数据:按纤维品种和主要生产企业统计的在产产能", + "价格指数:主要化纤产品及上游原料(PTA、MEG、己内酰胺、丙烯腈)月度价格走势", + "进出口量:按品种和目的地国家统计的化纤产品月度贸易数据", + "企业经营数据:主要化纤企业的产量、营收、利润和出口数据", + "行业投资:化纤行业年度固定资产投资及新增产能", + "中国纤维流行趋势报告:驱动特定纤维品种需求的年度时尚与色彩趋势报告", + "可持续发展数据:生物基、再生和功能性高性能纤维的产量统计", + "行业发展报告:中国化纤工业年度运行情况及展望" + ] + } +} diff --git a/firstdata/sources/china/economy/industry_associations/china-cheaa.json b/firstdata/sources/china/economy/industry_associations/china-cheaa.json new file mode 100644 index 00000000..39884f9c --- /dev/null +++ b/firstdata/sources/china/economy/industry_associations/china-cheaa.json @@ -0,0 +1,82 @@ +{ + "id": "china-cheaa", + "name": { + "en": "China Household Electrical Appliances Association", + "zh": "中国家用电器协会" + }, + "description": { + "en": "The China Household Electrical Appliances Association (CHEAA) is the national industry organization representing China's home appliance manufacturing sector. China is the world's largest producer and exporter of household electrical appliances, manufacturing over 60% of global appliance output including air conditioners, refrigerators, washing machines, televisions, kitchen appliances, and small household devices. CHEAA publishes monthly and annual production and sales statistics for all major appliance categories, export data by product and destination market, energy efficiency compliance data, and enterprise performance metrics. The association produces the authoritative annual China Household Appliance Industry Development Report and conducts joint research on smart home and IoT appliance trends. CHEAA data is the primary reference for global consumer electronics supply chain analysis, trade policy research, and retail market forecasting.", + "zh": "中国家用电器协会(家电协会)是代表中国家电制造行业的全国性行业组织。中国是全球最大的家用电器生产和出口国,生产的空调、冰箱、洗衣机、电视机、厨房电器和小家电占全球产量60%以上。家电协会发布各主要家电品类的月度和年度产销统计数据、按产品和目的地市场分类的出口数据、节能合规数据及企业经营指标,出版权威的年度《中国家用电器行业发展报告》,并开展智能家居和物联网家电趋势联合研究。家电协会数据是全球消费电子供应链分析、贸易政策研究和零售市场预测的主要参考来源。" + }, + "website": "https://www.cheaa.org/", + "data_url": "https://www.cheaa.org/channels/116.html", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "industry", + "economics", + "trade", + "technology" + ], + "update_frequency": "monthly", + "tags": [ + "中国家用电器协会", + "cheaa", + "china-home-appliances", + "家用电器", + "household-appliances", + "空调", + "air-conditioner", + "冰箱", + "refrigerator", + "洗衣机", + "washing-machine", + "电视机", + "television", + "tv", + "小家电", + "small-appliances", + "家电产量", + "appliance-production", + "家电出口", + "appliance-exports", + "家电销售", + "appliance-sales", + "节能家电", + "energy-efficient-appliances", + "智能家居", + "smart-home", + "家电行业", + "appliance-industry", + "消费电子", + "consumer-electronics", + "家电供应链", + "appliance-supply-chain" + ], + "data_content": { + "en": [ + "Monthly production statistics: output for all major appliance categories including air conditioners, refrigerators, washing machines, televisions, and range hoods", + "Domestic sales data: monthly retail sales volume and value for major appliance categories in China", + "Export statistics: monthly export volume and value by appliance type and destination country/region", + "Energy efficiency data: production share of high-efficiency (energy-star equivalent) appliances by category", + "Enterprise performance: production, revenue, and profit data for major listed and unlisted appliance manufacturers", + "Small appliance data: production and sales statistics for cooking appliances, floor care, personal care, and seasonal products", + "Smart home data: production and shipment statistics for connected/IoT-enabled appliance categories", + "Annual industry development report: comprehensive review of China's household appliance industry covering production, trade, technology, and company rankings", + "Market analysis: domestic market penetration rates, urban vs. rural appliance ownership, and replacement demand trends" + ], + "zh": [ + "月度产量统计:空调、冰箱、洗衣机、电视机、吸油烟机等主要家电品类产量", + "国内销售数据:主要家电品类月度零售量和零售额", + "出口统计:按家电品类和目的地国家/地区统计的月度出口量和出口额", + "节能数据:各品类高能效家电(相当于能源之星级别)在产品中的占比", + "企业经营数据:主要上市和非上市家电制造商的产量、营收和利润", + "小家电数据:烹饪电器、地面清洁、个人护理和季节性产品的产销统计", + "智能家居数据:联网/物联网家电品类的产量和出货统计", + "年度行业发展报告:涵盖产量、贸易、技术和企业排名的中国家电行业综合报告", + "市场分析:国内市场普及率、城乡家电拥有量及更新换代需求趋势" + ] + } +} diff --git a/firstdata/sources/china/economy/industry_associations/china-cnea.json b/firstdata/sources/china/economy/industry_associations/china-cnea.json new file mode 100644 index 00000000..5e68ce16 --- /dev/null +++ b/firstdata/sources/china/economy/industry_associations/china-cnea.json @@ -0,0 +1,74 @@ +{ + "id": "china-cnea", + "name": { + "en": "China Nuclear Energy Association", + "zh": "中国核能行业协会" + }, + "description": { + "en": "The China Nuclear Energy Association (CNEA) is the national industry organization representing China's nuclear energy sector, covering nuclear power generation, nuclear fuel cycle, radiation technology, and nuclear equipment manufacturing. China operates the world's largest nuclear power expansion program and is the dominant force in global nuclear construction. CNEA publishes annual reports, monthly operating statistics, and industry development data on nuclear power installed capacity, electricity generation, reactor construction progress, fuel consumption, safety performance, and workforce figures. It also tracks China's nuclear equipment exports, international cooperation, and the development of advanced reactor technologies including Generation III and IV designs. CNEA data is indispensable for energy analysts, investors, and policymakers tracking China's low-carbon energy transition and global nuclear industry trends.", + "zh": "中国核能行业协会(CNEA)是代表中国核能行业的全国性行业组织,涵盖核电发电、核燃料循环、辐射技术和核设备制造等领域。中国拥有全球最大规模的核电扩张计划,是全球核电建设的主导力量。中国核能行业协会发布核电装机容量、发电量、反应堆建设进度、燃料消耗、安全业绩及从业人员等年度报告、月度运行统计和行业发展数据,同时追踪中国核设备出口、国际合作及三代、四代反应堆技术研发进展。协会数据是能源分析师、投资者和政策制定者追踪中国低碳能源转型及全球核能行业趋势的重要参考。" + }, + "website": "https://www.china-nea.cn/", + "data_url": "https://www.china-nea.cn/", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "energy", + "industry", + "economics" + ], + "update_frequency": "monthly", + "tags": [ + "核能", + "nuclear-energy", + "核电", + "nuclear-power", + "核电站", + "nuclear-power-plant", + "装机容量", + "installed-capacity", + "发电量", + "electricity-generation", + "反应堆", + "reactor", + "核燃料", + "nuclear-fuel", + "铀", + "uranium", + "cnea", + "核安全", + "nuclear-safety", + "碳中和", + "carbon-neutrality", + "清洁能源", + "clean-energy", + "华龙一号", + "hualong-one", + "核设备", + "nuclear-equipment" + ], + "data_content": { + "en": [ + "Nuclear power installed capacity: operational, under-construction, and planned reactor units with MW capacity by plant", + "Monthly electricity generation: nuclear power output (TWh) and share of national power mix", + "Reactor construction progress: new unit groundbreaking, grid connection milestones, and construction timelines", + "Nuclear fuel cycle data: uranium ore production, enrichment capacity, and fuel fabrication volumes", + "Safety performance indicators: unplanned shutdowns, radiation exposure, and WANO performance index", + "Annual nuclear energy development report: comprehensive sector overview including investment, employment, and technology progress", + "Nuclear equipment manufacturing: domestic content ratios, key component production, and export statistics", + "Advanced reactor development: status of Gen III+ (Hualong One, CAP1400) and Gen IV (HTR, CFETR) programs" + ], + "zh": [ + "核电装机容量:按电站统计的在役、在建及规划机组数量及MW容量", + "月度发电量:核电发电量(TWh)及占全国电力结构的比例", + "反应堆建设进度:新机组开工、并网里程碑及建设时间进度", + "核燃料循环数据:铀矿石产量、浓缩能力和燃料组件制造量", + "安全业绩指标:非计划停机次数、辐射剂量和WANO性能指数", + "核能年度发展报告:包括投资、从业人员和技术进展的行业综合概述", + "核设备制造:国产化率、关键部件产量和出口统计", + "先进堆型研发:三代及三代+(华龙一号、CAP1400)和四代堆(高温气冷堆、聚变堆)项目进展" + ] + } +} diff --git a/firstdata/sources/china/economy/industry_associations/china-cppia.json b/firstdata/sources/china/economy/industry_associations/china-cppia.json new file mode 100644 index 00000000..6db22482 --- /dev/null +++ b/firstdata/sources/china/economy/industry_associations/china-cppia.json @@ -0,0 +1,66 @@ +{ + "id": "china-cppia", + "name": { + "en": "China Plastics Processing Industry Association", + "zh": "中国塑料加工工业协会" + }, + "description": { + "en": "The China Plastics Processing Industry Association (CPPIA) is the national industry organization representing China's plastics processing sector. It covers manufacturers of plastic products, packaging materials, pipes, films, profiles, and engineering plastics. CPPIA publishes authoritative industry statistics, operational reports, market analysis, and technical standards covering the full plastics processing value chain including production output, consumption, imports/exports, and enterprise performance.", + "zh": "中国塑料加工工业协会(CPPIA)是代表中国塑料加工行业的全国性行业组织,成员涵盖塑料制品、包装材料、管材、薄膜、型材、工程塑料等制造企业。协会发布权威的行业统计数据、运行报告、市场分析和技术标准,内容涵盖塑料加工全产业链,包括产量、消费量、进出口及企业经营状况。" + }, + "website": "http://www.cppia.com.cn", + "data_url": "http://www.cppia.com.cn", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "manufacturing", + "industry", + "plastics", + "materials" + ], + "update_frequency": "annual", + "tags": [ + "塑料", + "plastics", + "塑料加工", + "plastics-processing", + "塑料制品", + "plastic-products", + "包装材料", + "packaging-materials", + "工程塑料", + "engineering-plastics", + "行业统计", + "industry-statistics", + "产量", + "production-output", + "进出口", + "imports-exports", + "cppia", + "中国塑料" + ], + "data_content": { + "en": [ + "Annual plastics processing industry operational statistics: total output, production volume by product category", + "Plastics consumption data: domestic demand breakdown by end-use sector (packaging, construction, automotive, agriculture)", + "Import and export statistics: plastic raw materials and finished products trade volume and value", + "Enterprise performance: revenue, profit margin, employment data across plastics processing sub-sectors", + "Market price indices: key plastic resin and product prices (PE, PP, PVC, PET)", + "Industry concentration and enterprise scale distribution data", + "Technical standards and quality certifications for plastics products", + "Annual China Plastics Industry Development Report: comprehensive industry trend analysis" + ], + "zh": [ + "塑料加工行业年度运行统计:总产量及按产品类别的生产量", + "塑料消费数据:按终端用途(包装、建筑、汽车、农业)分类的国内需求", + "进出口统计:塑料原料及制品的贸易量和贸易额", + "企业经营数据:塑料加工各细分行业的收入、利润率、就业情况", + "市场价格指数:主要塑料树脂和制品价格(PE、PP、PVC、PET)", + "行业集中度及企业规模分布数据", + "塑料制品技术标准与质量认证", + "中国塑料工业发展年度报告:全面的行业趋势分析" + ] + } +} diff --git a/firstdata/sources/china/economy/industry_associations/china-cria.json b/firstdata/sources/china/economy/industry_associations/china-cria.json new file mode 100644 index 00000000..cc016b57 --- /dev/null +++ b/firstdata/sources/china/economy/industry_associations/china-cria.json @@ -0,0 +1,79 @@ +{ + "id": "china-cria", + "name": { + "en": "China Rubber Industry Association", + "zh": "中国橡胶工业协会" + }, + "description": { + "en": "The China Rubber Industry Association (CRIA) is the national industry organization representing China's rubber manufacturing sector. China is the world's largest consumer and producer of rubber products, including tires, industrial rubber goods, rubber belts, hoses, seals, and latex products. As the backbone of the automotive, construction, and industrial machinery supply chains, China's rubber industry data is critical for global commodity market analysis. CRIA publishes monthly and annual production statistics for all major rubber product categories, tire production and export data, natural and synthetic rubber consumption, enterprise performance metrics, and industry development reports. The association also maintains a dedicated statistical platform providing detailed industry data accessible to members and researchers.", + "zh": "中国橡胶工业协会(中橡协)是代表中国橡胶制造行业的全国性行业组织。中国是全球最大的橡胶产品消费和生产国,产品涵盖轮胎、工业橡胶制品、橡胶输送带、胶管、密封件和乳胶制品。作为汽车、建筑和工业机械供应链的重要支撑,中国橡胶工业数据对全球大宗商品市场分析具有关键价值。中橡协发布各主要橡胶产品类别的月度和年度产量统计、轮胎产量和出口数据、天然橡胶和合成橡胶消耗量、企业经营指标及行业发展报告,并维护统计平台,向会员和研究人员提供详细行业数据。" + }, + "website": "https://www.cria.org.cn/", + "data_url": "https://www.cria.org.cn/c/id/1760910256413655041", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "industry", + "economics", + "trade" + ], + "update_frequency": "monthly", + "tags": [ + "中国橡胶工业协会", + "cria", + "china-rubber-industry", + "橡胶工业", + "rubber-industry", + "轮胎", + "tire", + "tyre", + "橡胶产量", + "rubber-production", + "天然橡胶", + "natural-rubber", + "合成橡胶", + "synthetic-rubber", + "橡胶消耗", + "rubber-consumption", + "轮胎出口", + "tire-exports", + "工业橡胶", + "industrial-rubber", + "橡胶带", + "rubber-belt", + "胶管", + "rubber-hose", + "乳胶", + "latex", + "汽车配套", + "automotive-supply-chain", + "橡胶价格", + "rubber-prices" + ], + "data_content": { + "en": [ + "Tire production: monthly and annual output of all tire categories including passenger car tires, truck and bus tires, motorcycle tires, agricultural tires, and specialty tires", + "Tire exports: monthly export volume and value by product type and destination country", + "Natural rubber consumption: domestic consumption of natural rubber by end-use sector", + "Synthetic rubber data: production and consumption of major synthetic rubber types (SBR, BR, NBR, EPDM, CR, etc.)", + "Rubber product production: output of industrial rubber goods, conveyor belts, hoses, seals, and latex products", + "Enterprise performance: revenue, profit, and production data for major rubber manufacturing enterprises", + "Industry investment: fixed asset investment in rubber sector and capacity changes", + "Raw material price data: price trends for natural rubber, carbon black, and key synthetic rubber monomers", + "Annual industry report: comprehensive overview of China's rubber industry development, technology trends, and market outlook" + ], + "zh": [ + "轮胎产量:乘用车轮胎、卡客车轮胎、摩托车轮胎、农用轮胎及特种轮胎的月度和年度产量", + "轮胎出口:按产品类别和目的地国家统计的月度出口量和出口额", + "天然橡胶消耗:按下游行业分类的国内天然橡胶消耗量", + "合成橡胶数据:SBR、BR、NBR、EPDM、CR等主要合成橡胶品种产量与消耗量", + "橡胶制品产量:工业橡胶制品、输送带、胶管、密封件和乳胶制品产量", + "企业经营数据:主要橡胶制造企业的营收、利润和产量数据", + "行业投资:橡胶行业固定资产投资及产能变化", + "原料价格数据:天然橡胶、炭黑和主要合成橡胶单体价格走势", + "年度行业报告:中国橡胶行业发展、技术趋势和市场展望综合报告" + ] + } +} diff --git a/firstdata/sources/china/economy/industry_associations/china-ctic.json b/firstdata/sources/china/economy/industry_associations/china-ctic.json new file mode 100644 index 00000000..0ca1ac08 --- /dev/null +++ b/firstdata/sources/china/economy/industry_associations/china-ctic.json @@ -0,0 +1,23 @@ +{ + "id": "china-ctic", + "name": { + "en": "China Textile Information Center", + "zh": "中国纺织信息中心" + }, + "description": { + "en": "The China Textile Information Center (CTIC) is a public institution under the China National Textile and Apparel Council, responsible for textile industry information services, trend research, and standard testing. It publishes textile market data, fashion trend reports, and industry statistics.", + "zh": "中国纺织信息中心是中国纺织工业联合会下属事业单位,负责纺织行业信息服务、趋势研究和标准检测。发布纺织市场数据、时尚趋势报告和行业统计。" + }, + "data_content": { + "en": ["textile market statistics", "fashion trend reports", "industry production data", "trade statistics", "standard testing results"], + "zh": ["纺织市场统计", "时尚趋势报告", "行业生产数据", "贸易统计", "标准检测结果"] + }, + "country": "CN", + "authority_level": "other", + "geographic_scope": "national", + "website": "https://www.ctic.org.cn", + "data_url": "https://www.ctic.org.cn", + "domains": ["manufacturing", "trade"], + "tags": ["textile", "fashion", "manufacturing", "trade", "industry-data"], + "update_frequency": "irregular" +} diff --git a/firstdata/sources/china/economy/industry_associations/china-furniture-association.json b/firstdata/sources/china/economy/industry_associations/china-furniture-association.json new file mode 100644 index 00000000..4c094005 --- /dev/null +++ b/firstdata/sources/china/economy/industry_associations/china-furniture-association.json @@ -0,0 +1,64 @@ +{ + "id": "china-furniture-association", + "name": { + "en": "China National Furniture Association", + "zh": "中国家具协会" + }, + "description": { + "en": "The China National Furniture Association (CNFA) is the national industry organization representing China's furniture manufacturing sector, covering residential furniture, office furniture, kitchen furniture, outdoor furniture, and related components. CNFA publishes industry statistics, market reports, trade data, and standards covering production output, domestic market sales, export performance, material consumption, and enterprise operations in China's furniture industry.", + "zh": "中国家具协会(CNFA)是代表中国家具制造业的全国性行业组织,涵盖住宅家具、办公家具、厨房家具、户外家具及相关零部件。协会发布行业统计数据、市场报告、贸易数据和标准,内容涵盖中国家具行业的产量、国内市场销售、出口表现、原材料消费及企业运营情况。" + }, + "website": "https://www.cnfa.com.cn", + "data_url": "https://www.cnfa.com.cn", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "manufacturing", + "industry", + "consumer-goods", + "trade" + ], + "update_frequency": "annual", + "tags": [ + "家具", + "furniture", + "家具制造", + "furniture-manufacturing", + "住宅家具", + "residential-furniture", + "办公家具", + "office-furniture", + "厨房家具", + "kitchen-furniture", + "家具出口", + "furniture-export", + "行业统计", + "industry-statistics", + "cnfa", + "中国家具" + ], + "data_content": { + "en": [ + "Annual furniture industry economic operation report: total output value, revenue and profit", + "Production statistics: furniture output by category (residential, office, kitchen, outdoor furniture)", + "Export performance: furniture export volume and value by product type, destination country, and province", + "Import data: imported furniture products volume, value, and source countries", + "Domestic market sales: retail sales of furniture by channel and region", + "Enterprise data: number of manufacturers, employment, fixed asset investment by scale", + "Material consumption: wood, metal, fabric, and other raw material usage statistics", + "Furniture quality standards and certification data" + ], + "zh": [ + "家具行业经济运行年度报告:总产值、收入及利润", + "生产统计:按类别(住宅、办公、厨房、户外家具)的家具产量", + "出口表现:按产品类型、目的地国家和省份的家具出口量和出口额", + "进口数据:进口家具产品的数量、金额及来源国", + "国内市场销售:按渠道和地区的家具零售销售数据", + "企业数据:按规模分类的制造商数量、就业人数、固定资产投资", + "原材料消耗:木材、金属、布料及其他原材料用量统计", + "家具质量标准和认证数据" + ] + } +} diff --git a/firstdata/sources/china/economy/industry_associations/china-gas-association.json b/firstdata/sources/china/economy/industry_associations/china-gas-association.json new file mode 100644 index 00000000..9c38deb9 --- /dev/null +++ b/firstdata/sources/china/economy/industry_associations/china-gas-association.json @@ -0,0 +1,69 @@ +{ + "id": "china-gas-association", + "name": { + "en": "China Gas Association", + "zh": "中国燃气协会" + }, + "description": { + "en": "The China Gas Association (CGA) is the national industry organization representing China's gas sector, including natural gas, liquefied petroleum gas (LPG), and liquefied natural gas (LNG) distribution enterprises. It publishes industry statistics, market reports, safety data, and policy research covering gas consumption, urban gas infrastructure, pipeline networks, gas supply enterprises, and end-user distribution across China. Its data are key references for energy planning, market analysis, and regulatory policy in the gas sector.", + "zh": "中国燃气协会是代表中国燃气行业的全国性行业组织,成员涵盖天然气、液化石油气(LPG)和液化天然气(LNG)配送企业。协会发布行业统计、市场报告、安全数据和政策研究,内容涉及全国燃气消费量、城市燃气基础设施、管道网络、燃气供应企业和终端用户配送情况,是燃气行业能源规划、市场分析和监管政策的重要数据参考。" + }, + "website": "https://www.chinagas.org.cn", + "data_url": "https://www.chinagas.org.cn", + "api_url": null, + "authority_level": "other", + "country": "CN", + "domains": [ + "energy", + "industry", + "infrastructure" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "燃气", + "natural-gas", + "gas-industry", + "天然气", + "液化石油气", + "lpg", + "lng", + "液化天然气", + "城市燃气", + "urban-gas", + "管道燃气", + "pipeline-gas", + "燃气消费", + "gas-consumption", + "能源", + "energy", + "燃气安全", + "gas-safety", + "燃气企业", + "gas-enterprises", + "中国燃气协会", + "cga" + ], + "data_content": { + "en": [ + "Annual China Gas Industry Development Report: comprehensive industry statistics and trend analysis", + "Urban gas supply: number of gas users, pipeline network length, coverage rates by city and province", + "Gas consumption data: total consumption by end-use sector (residential, commercial, industrial, power generation)", + "LNG and LPG market: import volumes, spot prices, storage capacity statistics", + "Gas enterprise data: number of licensed operators, business scale, market concentration", + "Gas safety statistics: accident reports, inspection outcomes, safety compliance rates", + "Infrastructure investment: new pipeline construction, gas station development data", + "Policy and standards: industry standards, regulatory compliance updates" + ], + "zh": [ + "中国燃气行业发展年度报告:全面的行业统计数据与趋势分析", + "城市燃气供应:分城市和省份的燃气用户数量、管道长度、覆盖率", + "燃气消费数据:按终端用途(居民、商业、工业、发电)分类的总消费量", + "LNG和LPG市场:进口量、现货价格、储气能力统计", + "燃气企业数据:持证运营商数量、经营规模、市场集中度", + "燃气安全统计:事故报告、检查结果、安全合规率", + "基础设施投资:新建管道、加气站发展数据", + "政策与标准:行业标准、监管合规动态" + ] + } +} diff --git a/firstdata/sources/china/economy/industry_associations/china-light-industry-council.json b/firstdata/sources/china/economy/industry_associations/china-light-industry-council.json new file mode 100644 index 00000000..3a74a9f6 --- /dev/null +++ b/firstdata/sources/china/economy/industry_associations/china-light-industry-council.json @@ -0,0 +1,66 @@ +{ + "id": "china-light-industry-council", + "name": { + "en": "China National Light Industry Council", + "zh": "中国轻工业联合会" + }, + "description": { + "en": "The China National Light Industry Council (CNLIC) is the national federation representing China's light industry sector, encompassing food processing, beverages, household appliances, leather goods, paper, ceramics, clocks, bicycles, sewing machines, and other consumer goods manufacturing industries. CNLIC publishes authoritative industry statistics, development reports, economic analyses, and policy recommendations covering production, sales, exports, and enterprise operations across China's light industry.", + "zh": "中国轻工业联合会是代表中国轻工行业的全国性联合组织,涵盖食品加工、饮料、家用电器、皮革制品、造纸、陶瓷、钟表、自行车、缝纫机等消费品制造行业。联合会发布权威的行业统计数据、发展报告、经济分析和政策建议,内容涵盖中国轻工业的生产、销售、出口及企业运营情况。" + }, + "website": "http://www.cnlic.org.cn", + "data_url": "http://www.cnlic.org.cn", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "manufacturing", + "industry", + "consumer-goods", + "trade" + ], + "update_frequency": "annual", + "tags": [ + "轻工业", + "light-industry", + "消费品", + "consumer-goods", + "食品加工", + "food-processing", + "家用电器", + "household-appliances", + "皮革", + "leather", + "造纸", + "paper", + "陶瓷", + "ceramics", + "行业统计", + "industry-statistics", + "cnlic", + "中国轻工" + ], + "data_content": { + "en": [ + "Annual light industry economic operation report: total output value, revenue and profit by sub-sector", + "Production statistics: output data for major light industry product categories (food, beverages, appliances, leather, paper)", + "Export data: light industry products trade volume and value broken down by product type and destination", + "Enterprise data: number of enterprises, employment, investment in fixed assets across light industry sectors", + "Market concentration and leading enterprise performance analysis", + "Import substitution and export competitiveness analysis for key light industry products", + "Light industry development plans and policy research reports", + "Industry standards and quality data for consumer products" + ], + "zh": [ + "轻工业经济运行年度报告:总产值、各细分行业收入及利润", + "生产统计:主要轻工产品类别(食品、饮料、电器、皮革、纸张)产量数据", + "出口数据:按产品类型和目的地细分的轻工产品贸易量和贸易额", + "企业数据:轻工各行业企业数量、就业人数、固定资产投资", + "市场集中度及龙头企业经营状况分析", + "主要轻工产品进口替代和出口竞争力分析", + "轻工业发展规划和政策研究报告", + "消费品行业标准和质量数据" + ] + } +} diff --git a/firstdata/sources/china/economy/industry_associations/china-tea-marketing-association.json b/firstdata/sources/china/economy/industry_associations/china-tea-marketing-association.json new file mode 100644 index 00000000..1805818c --- /dev/null +++ b/firstdata/sources/china/economy/industry_associations/china-tea-marketing-association.json @@ -0,0 +1,69 @@ +{ + "id": "china-tea-marketing-association", + "name": { + "en": "China Tea Marketing Association", + "zh": "中国茶叶流通协会" + }, + "description": { + "en": "The China Tea Marketing Association (CTMA), also known as 中国茶叶流通协会 or 中茶协, is the national industry organization representing China's tea production, processing, and marketing sector. As the world's largest tea producer and exporter, China's tea industry statistics published by CTMA are key references for agricultural economics, commodity trade, and consumer market analysis. CTMA provides authoritative data on tea production, market prices, trade volumes, quality standards, and enterprise operations across China's major tea-producing regions.", + "zh": "中国茶叶流通协会(CTMA,又称中茶协)是代表中国茶叶生产、加工和流通行业的全国性行业组织。作为全球最大的茶叶生产国和出口国,中国茶叶流通协会发布的行业统计数据是农业经济、大宗商品贸易和消费市场分析的重要参考依据。协会提供权威的茶叶产量、市场价格、贸易量、质量标准及企业运营数据,覆盖中国各大茶叶产区。" + }, + "website": "https://www.ctma.com.cn", + "data_url": "https://www.ctma.com.cn", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "agriculture", + "food-beverage", + "trade", + "industry" + ], + "update_frequency": "annual", + "tags": [ + "茶叶", + "tea", + "茶叶市场", + "tea-market", + "茶叶产量", + "tea-production", + "茶叶出口", + "tea-export", + "茶叶价格", + "tea-price", + "绿茶", + "green-tea", + "红茶", + "black-tea", + "普洱茶", + "pu-erh-tea", + "茶产业", + "tea-industry", + "ctma", + "中茶协", + "中国茶叶流通" + ], + "data_content": { + "en": [ + "Annual tea production statistics: total output by tea type (green tea, black tea, oolong, white tea, pu-erh) and by province", + "Tea market price indices: wholesale and retail prices for major tea varieties by producing region", + "Export data: tea export volume and value broken down by type, destination country, and province", + "Import statistics: imported tea product volume, value, and source countries", + "Domestic consumption data: per capita tea consumption, retail channel distribution, urban vs rural", + "Tea enterprise performance: revenue, employment, and market share of major tea companies", + "Tea quality and safety standards: pesticide residue testing, grading standards, certification data", + "Annual China Tea Industry Development Report: comprehensive production, trade, and market trend analysis" + ], + "zh": [ + "茶叶年度产量统计:按茶类(绿茶、红茶、乌龙茶、白茶、普洱茶)和省份的总产量", + "茶叶市场价格指数:各主产区主要茶叶品种批发和零售价格", + "出口数据:按茶类、目的地国家和省份分类的茶叶出口量和出口额", + "进口统计:进口茶叶产品的数量、金额及来源国", + "国内消费数据:人均茶叶消费量、零售渠道分布、城乡对比", + "茶叶企业经营:主要茶企收入、就业和市场份额", + "茶叶质量和安全标准:农药残留检测、等级标准、认证数据", + "中国茶叶产业发展年度报告:全面的生产、贸易和市场趋势分析" + ] + } +} diff --git a/firstdata/sources/china/economy/labor/china-acftu.json b/firstdata/sources/china/economy/labor/china-acftu.json new file mode 100644 index 00000000..804996fe --- /dev/null +++ b/firstdata/sources/china/economy/labor/china-acftu.json @@ -0,0 +1,66 @@ +{ + "id": "china-acftu", + "name": { + "en": "All-China Federation of Trade Unions", + "zh": "中华全国总工会" + }, + "description": { + "en": "The All-China Federation of Trade Unions (ACFTU) is the sole national trade union federation in China, representing over 300 million union members across all industries and sectors. As the world's largest trade union organization, ACFTU publishes annual reports, survey data, and statistical information on labor relations, workers' rights, collective bargaining, wage levels, occupational safety, and union membership across China's workforce.", + "zh": "中华全国总工会(全总)是中国唯一的全国性工会联合组织,代表全国各行各业逾3亿工会会员。作为全球规模最大的工会组织,全总发布有关劳动关系、工人权益、集体协商、工资水平、劳动安全及全国工会会员情况的年度报告、调查数据和统计资料。" + }, + "website": "https://www.acftu.org", + "data_url": "https://www.acftu.org", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "labor", + "social", + "employment", + "economics" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "工会", + "trade-union", + "labor", + "劳动关系", + "labor-relations", + "工资", + "wages", + "集体协商", + "collective-bargaining", + "劳动安全", + "occupational-safety", + "工会会员", + "union-membership", + "职工", + "workers", + "全总", + "acftu", + "china-labor" + ], + "data_content": { + "en": [ + "Union membership statistics: total union members by province, industry, and enterprise type", + "Labor relations: collective contract coverage rates, labor dispute arbitration data", + "Wage and income: average wages by industry, minimum wage standards across regions", + "Occupational safety: workplace accident statistics, occupational disease data", + "Workers' rights: labor inspection outcomes, rights protection cases", + "Trade union organization: number of primary-level trade unions, union establishment rates", + "Annual survey on workers' living conditions and job satisfaction", + "Reports on new forms of employment and platform economy workers" + ], + "zh": [ + "工会会员统计:按省份、行业和企业类型分类的工会会员总数", + "劳动关系:集体合同覆盖率、劳动争议仲裁数据", + "工资与收入:各行业平均工资、各地区最低工资标准", + "劳动安全:工作场所事故统计、职业病数据", + "工人权益:劳动监察成果、权益保障案例", + "工会组织建设:基层工会数量、工会组建率", + "职工生活状况与工作满意度年度调查", + "新就业形态和平台经济从业者相关报告" + ] + } +} diff --git a/firstdata/sources/china/economy/labor/china-mohrss.json b/firstdata/sources/china/economy/labor/china-mohrss.json new file mode 100644 index 00000000..4e2b845c --- /dev/null +++ b/firstdata/sources/china/economy/labor/china-mohrss.json @@ -0,0 +1,84 @@ +{ + "id": "china-mohrss", + "name": { + "en": "Ministry of Human Resources and Social Security of China - Employment and Social Security Statistics", + "zh": "人力资源和社会保障部统计数据" + }, + "description": { + "en": "Official employment, labor market, and social security statistics from China's Ministry of Human Resources and Social Security (MOHRSS). Covers national employment and unemployment data, labor force surveys, social insurance (pension, medical, unemployment, work injury, maternity), vocational training, civil servant management, labor dispute resolution, and wage statistics. Publishes quarterly statistical bulletins, annual human resources and social security development reports, and specialized survey results.", + "zh": "中国人力资源和社会保障部发布的官方就业、劳动力市场和社会保障统计数据。涵盖全国就业与失业数据、劳动力调查、社会保险(养老、医疗、失业、工伤、生育)、职业培训、公务员管理、劳动争议处理和工资统计。发布季度统计公报、年度人力资源和社会保障事业发展统计公报及专项调查结果。" + }, + "website": "https://www.mohrss.gov.cn/", + "data_url": "https://www.mohrss.gov.cn/SYrlzyhshbzb/zwgk/szrs/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "employment", + "social-security", + "economics" + ], + "update_frequency": "quarterly", + "tags": [ + "就业", + "employment", + "失业率", + "unemployment-rate", + "社会保障", + "social-security", + "养老保险", + "pension-insurance", + "医疗保险", + "medical-insurance", + "工伤保险", + "work-injury-insurance", + "失业保险", + "unemployment-insurance", + "劳动力市场", + "labor-market", + "职业培训", + "vocational-training", + "工资", + "wage", + "salary", + "劳动争议", + "labor-dispute", + "公务员", + "civil-servant", + "人力资源", + "human-resources", + "人社部", + "mohrss" + ], + "data_content": { + "en": [ + "National urban employment and registered unemployment statistics", + "Urban labor force survey unemployment rate (monthly/quarterly)", + "Social insurance coverage data: pension, medical, unemployment, work injury, and maternity insurance participants", + "Social insurance fund revenues, expenditures, and accumulated balances", + "Vocational skills training and certification statistics", + "Labor dispute arbitration and mediation case statistics", + "Average wage statistics by sector and region", + "Minimum wage standards by province and city", + "Civil servant recruitment and management statistics", + "Migrant worker employment monitoring survey results", + "Human resources service industry development statistics", + "Annual Human Resources and Social Security Development Statistical Bulletin" + ], + "zh": [ + "全国城镇就业和登记失业统计数据", + "城镇调查失业率(月度/季度)", + "社会保险参保人数:养老、医疗、失业、工伤、生育保险", + "社会保险基金收入、支出和累计结余", + "职业技能培训和职业资格认证统计", + "劳动争议仲裁和调解案件统计", + "分行业分地区平均工资统计", + "各省市最低工资标准", + "公务员录用和管理统计", + "农民工就业监测调查结果", + "人力资源服务业发展统计", + "年度人力资源和社会保障事业发展统计公报" + ] + } +} diff --git a/firstdata/sources/china/economy/labor/china-shenzhen-hrss.json b/firstdata/sources/china/economy/labor/china-shenzhen-hrss.json new file mode 100644 index 00000000..7d03acd7 --- /dev/null +++ b/firstdata/sources/china/economy/labor/china-shenzhen-hrss.json @@ -0,0 +1,65 @@ +{ + "id": "china-shenzhen-hrss", + "name": { + "en": "Shenzhen Municipal Human Resources and Social Security Bureau", + "zh": "深圳市人力资源和社会保障局" + }, + "description": { + "en": "The Shenzhen Municipal Human Resources and Social Security Bureau is the city government agency responsible for employment, labor market regulation, social insurance, and talent policies in Shenzhen. As China's leading technology hub, Shenzhen's labor market data provides key insights into high-tech talent demand, salary trends, and employment dynamics. The bureau publishes labor market wage guidance prices, employment statistics, social insurance participation data, work injury compensation standards, and talent introduction policies. Its data is particularly valuable for understanding employment patterns in China's innovation economy and the Greater Bay Area labor market.", + "zh": "深圳市人力资源和社会保障局是负责深圳市就业、劳动力市场管理、社会保险和人才政策的市级政府部门。深圳作为中国领先的科技创新中心,其劳动力市场数据为了解高科技人才需求、薪资趋势和就业动态提供了重要洞察。该局发布劳动力市场工资指导价位、就业统计数据、社会保险参保数据、工伤赔偿标准和人才引进政策等信息,其数据对了解中国创新经济就业模式和粤港澳大湾区劳动力市场具有重要参考价值。" + }, + "website": "https://hrss.sz.gov.cn", + "data_url": "https://hrss.sz.gov.cn/xxgk/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "employment", + "social-security", + "labor" + ], + "update_frequency": "quarterly", + "tags": [ + "深圳人力资源", + "shenzhen-human-resources", + "深圳就业", + "shenzhen-employment", + "深圳社保", + "shenzhen-social-security", + "工资指导价", + "wage-guidance", + "劳动力市场", + "labor-market", + "人才引进", + "talent-introduction", + "社会保险", + "social-insurance", + "最低工资", + "minimum-wage", + "深圳薪资", + "shenzhen-salary", + "粤港澳大湾区", + "greater-bay-area" + ], + "data_content": { + "en": [ + "Wage guidance: annual labor market wage guidance prices by occupation, industry, and education level", + "Employment statistics: employment and unemployment statistics, job market supply and demand data", + "Social insurance: participation numbers and contribution rates for pension, medical, unemployment, work injury, and maternity insurance", + "Talent policies: talent introduction quotas, high-level talent recognition data, and overseas returnee employment statistics", + "Labor relations: labor dispute arbitration case statistics, collective contract coverage data", + "Vocational training: skills training program enrollment, certification pass rates, and vocational qualification data", + "Minimum wage standards: annual minimum wage adjustments and compliance data" + ], + "zh": [ + "工资指导:按职业、行业和学历分类的年度劳动力市场工资指导价位", + "就业统计:就业和失业统计数据、人才市场供求信息", + "社会保险:养老、医疗、失业、工伤和生育保险参保人数及缴费比例", + "人才政策:人才引进配额、高层次人才认定数据和海归就业统计", + "劳动关系:劳动争议仲裁案件统计、集体合同覆盖数据", + "职业培训:技能培训项目招生、认证通过率和职业资格数据", + "最低工资标准:年度最低工资调整及执行数据" + ] + } +} diff --git a/firstdata/sources/china/economy/macro/china-cei.json b/firstdata/sources/china/economy/macro/china-cei.json new file mode 100644 index 00000000..d889f7a0 --- /dev/null +++ b/firstdata/sources/china/economy/macro/china-cei.json @@ -0,0 +1,70 @@ +{ + "id": "china-cei", + "name": { + "en": "China Economic Information Service", + "zh": "中国经济信息社" + }, + "description": { + "en": "The China Economic Information Service (CEI) is a subsidiary of Xinhua News Agency, China's official state news agency, providing authoritative economic data, analysis, and information services. Founded in 1988, CEI operates as a central information hub for macroeconomic indicators, industry statistics, commodity prices, and financial market data. CEI publishes the Xinhua Finance indices, commodity price indices for key bulk materials (crude oil, natural gas, coal, steel, agricultural products), and real estate price monitoring data. The service compiles China's New Economy Index (NEI) and regularly produces economic forecasts, industry analysis reports, and regional economic assessments. CEI data is widely used by government policy analysts, financial institutions, researchers, and international organizations monitoring China's economic performance.", + "zh": "中国经济信息社(CEI)是中国官方通讯社新华社旗下子机构,提供权威经济数据、分析及信息服务。CEI成立于1988年,是宏观经济指标、行业统计、大宗商品价格及金融市场数据的核心信息枢纽,发布新华财经指数及主要大宗商品(原油、天然气、煤炭、钢铁、农产品)价格指数,并提供房地产价格监测数据。该机构编制中国新经济指数(NEI),定期发布经济预测报告、行业分析及区域经济评估。CEI数据广泛应用于政府政策分析、金融机构、科研机构及监测中国经济表现的国际组织。" + }, + "website": "https://www.cei.cn/", + "data_url": "https://www.cei.cn/category/", + "api_url": null, + "authority_level": "commercial", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "economics", + "finance", + "energy", + "agriculture" + ], + "update_frequency": "daily", + "tags": [ + "宏观经济", + "macroeconomics", + "大宗商品价格", + "commodity-prices", + "新华财经", + "xinhua-finance", + "新经济指数", + "new-economy-index", + "经济预测", + "economic-forecast", + "行业分析", + "industry-analysis", + "钢铁价格", + "steel-prices", + "煤炭价格", + "coal-prices", + "农产品", + "agricultural-products", + "房地产", + "real-estate", + "经济信息", + "economic-information", + "新华社", + "xinhua" + ], + "data_content": { + "en": [ + "Xinhua commodity price indices: daily and weekly prices for crude oil, coal, steel, copper, agricultural products", + "China New Economy Index (NEI): monthly composite index tracking digital economy transition", + "Real estate market data: residential and commercial property price trends by city and region", + "Macroeconomic forecasting: quarterly GDP growth projections and economic indicator forecasts", + "Industry economic analysis: sector-level performance data for manufacturing, services, and agriculture", + "Import and export price indices: trade-weighted price changes for major commodities", + "Regional economic assessments: provincial economic performance comparisons and investment climate reports" + ], + "zh": [ + "新华大宗商品价格指数:原油、煤炭、钢铁、铜、农产品日度及周度价格", + "中国新经济指数(NEI):跟踪数字经济转型的月度综合指数", + "房地产市场数据:各城市及地区住宅和商业地产价格趋势", + "宏观经济预测:季度GDP增长预测及经济指标展望", + "行业经济分析:制造业、服务业及农业各行业绩效数据", + "进出口价格指数:主要大宗商品贸易加权价格变动", + "区域经济评估:省级经济绩效比较及投资环境报告" + ] + } +} diff --git a/firstdata/sources/china/economy/macro/china-drcnet.json b/firstdata/sources/china/economy/macro/china-drcnet.json new file mode 100644 index 00000000..a4ea85fc --- /dev/null +++ b/firstdata/sources/china/economy/macro/china-drcnet.json @@ -0,0 +1,68 @@ +{ + "id": "china-drcnet", + "name": { + "en": "DRCNET - Development Research Center Network", + "zh": "国研网" + }, + "description": { + "en": "DRCNET (Development Research Center Network, 国研网) is an authoritative economic research and data service platform operated by the Development Research Center of the State Council (DRC), China's premier government economic policy research institution. Launched in 1998, DRCNET provides comprehensive coverage of China's macroeconomic policy research, statistical databases, industry analyses, regional economic studies, and international comparative data. The platform hosts an extensive repository of DRC research reports, policy briefs, and analytical products that directly inform State Council decision-making. Subscribers include government agencies, financial institutions, universities, and multinational corporations who rely on DRCNET for authoritative Chinese economic policy intelligence, industry statistics, legal and regulatory databases, and cross-country comparison data.", + "zh": "国研网(DRCNET)是由国务院发展研究中心(DRC,中国首屈一指的政府经济政策研究机构)运营的权威经济研究和数据服务平台,创办于1998年。国研网全面覆盖中国宏观经济政策研究、统计数据库、行业分析、区域经济研究和国际比较数据,是国务院发展研究中心研究报告、政策简报和分析产品的庞大资料库,直接服务国务院决策。订阅用户包括政府机构、金融机构、高校和跨国公司,依赖国研网获取权威的中国经济政策情报、行业统计、法律法规数据库和跨国比较数据。" + }, + "website": "https://www.drcnet.com.cn", + "data_url": "https://www.drcnet.com.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "macroeconomics", + "economic-policy", + "industry-analysis", + "regional-development", + "policy-research", + "statistics" + ], + "update_frequency": "daily", + "tags": [ + "国研网", + "drcnet", + "development-research-center-network", + "国务院发展研究中心", + "drc", + "development-research-center", + "宏观经济", + "macroeconomics", + "经济政策", + "economic-policy", + "行业分析", + "industry-analysis", + "区域经济", + "regional-economy", + "政策研究", + "policy-research", + "智库", + "think-tank", + "统计数据", + "statistical-data" + ], + "data_content": { + "en": [ + "DRC research reports: full-text repository of policy research reports, working papers, and analytical briefs produced by DRC's research institutes covering economic forecasting, industrial policy, and institutional reform", + "Macroeconomic databases: time-series data on GDP, fixed asset investment, consumption, trade, inflation, and fiscal-monetary indicators at national and provincial levels", + "Industry statistics: vertical industry databases covering automotive, energy, finance, real estate, telecom, agriculture, and manufacturing with production, sales, and pricing data", + "Regional economic data: province-level and city-level economic indicators, industrial structure analyses, and regional comparison reports", + "Legal and regulatory database: Chinese laws, regulations, and policy documents organized by topic with full-text search and historical versions", + "Industry research reports: analyst-produced deep-dive reports on key industries, competitive landscapes, and market trends", + "International comparative data: cross-country economic indicators for benchmarking China against OECD countries and emerging markets" + ], + "zh": [ + "国研报告:国务院发展研究中心各研究所出品的政策研究报告、工作论文和分析简报全文库,涵盖经济预测、产业政策和体制改革", + "宏观经济数据库:国家和省级GDP、固定资产投资、消费、贸易、通胀、财政货币指标的时间序列数据", + "行业统计:汽车、能源、金融、房地产、电信、农业、制造业等纵向行业数据库,含生产、销售、价格数据", + "区域经济数据:省级和市级经济指标、产业结构分析和区域比较报告", + "法律法规数据库:按主题组织的中国法律、法规和政策文件全文检索,含历史版本", + "行业研究报告:分析师对重点行业、竞争格局和市场趋势的深度研究报告", + "国际比较数据:对标OECD国家和新兴市场的跨国经济指标" + ] + } +} diff --git a/firstdata/sources/china/economy/macro/china-iprcc.json b/firstdata/sources/china/economy/macro/china-iprcc.json new file mode 100644 index 00000000..a63e9238 --- /dev/null +++ b/firstdata/sources/china/economy/macro/china-iprcc.json @@ -0,0 +1,65 @@ +{ + "id": "china-iprcc", + "name": { + "en": "International Poverty Reduction Center in China", + "zh": "中国国际减贫中心" + }, + "description": { + "en": "The International Poverty Reduction Center in China (IPRCC) is an international organization jointly initiated, funded and established by the Government of the People's Republic of China and the United Nations Development Programme (UNDP) along with other international organizations. Established in 2005 and housed under the State Council Leading Group Office of Poverty Alleviation and Development, IPRCC conducts research and knowledge exchange on poverty reduction theory, policy innovation, and South-South cooperation. IPRCC publishes authoritative poverty reduction reports, rural development research, and case studies documenting China's poverty alleviation experience—widely referenced by multilateral development agencies, policy researchers, and governments seeking to replicate China's anti-poverty successes. The center also maintains databases on international poverty indicators, training programs, and bilateral poverty reduction cooperation projects across Asia, Africa and Latin America.", + "zh": "中国国际减贫中心(IPRCC)是中华人民共和国政府与联合国开发计划署等国际组织共同发起、资助并组建的国际机构,成立于2005年,挂靠国务院扶贫开发领导小组办公室。中心以创新扶贫理论、促进政策转换、增强国际互动、推动南南合作为宗旨,开展减贫研究和知识交流,发布权威减贫报告、乡村发展研究和中国扶贫经验案例,被多边发展机构、政策研究者和致力于复制中国反贫困经验的各国政府广泛引用。中心还维护国际贫困指标、培训项目和亚非拉各国双边减贫合作项目的数据库。" + }, + "website": "https://www.iprcc.org.cn", + "data_url": "https://www.iprcc.org.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "poverty-reduction", + "rural-development", + "development", + "international-cooperation", + "social-policy" + ], + "update_frequency": "irregular", + "tags": [ + "中国国际减贫中心", + "iprcc", + "international-poverty-reduction-center", + "减贫", + "poverty-reduction", + "扶贫", + "poverty-alleviation", + "脱贫", + "poverty-eradication", + "乡村振兴", + "rural-revitalization", + "南南合作", + "south-south-cooperation", + "国务院扶贫办", + "leading-group-on-poverty-alleviation", + "减贫案例", + "poverty-case-studies", + "undp" + ], + "data_content": { + "en": [ + "Poverty reduction reports: flagship publications documenting China's poverty alleviation progress, methodology, and lessons learned since reform and opening-up", + "Rural development case studies: detailed village-level and county-level case studies of successful poverty reduction programs across China's provinces", + "South-South cooperation project data: records of IPRCC training programs, bilateral technical cooperation, and knowledge exchange with Asian, African, and Latin American countries", + "International poverty indicators: comparative statistics on multidimensional poverty, rural income, and human development across developing countries", + "Policy research papers: analytical papers on targeted poverty alleviation (精准扶贫), industrial poverty alleviation, relocation-based poverty alleviation, and post-2020 rural revitalization strategy", + "Training program records: participant data and curriculum materials for international poverty reduction training seminars hosted by IPRCC", + "Conference proceedings: output from the annual Global Poverty Reduction and Development Forum and related international events" + ], + "zh": [ + "减贫报告:记录改革开放以来中国扶贫进程、方法论和经验教训的旗舰出版物", + "乡村发展案例:中国各省成功扶贫项目的村级和县级详细案例研究", + "南南合作项目数据:IPRCC培训项目、双边技术合作及与亚非拉国家知识交流记录", + "国际贫困指标:发展中国家多维贫困、农村收入和人类发展的比较统计", + "政策研究论文:精准扶贫、产业扶贫、易地搬迁扶贫及2020年后乡村振兴战略的分析论文", + "培训项目记录:IPRCC主办的国际减贫培训研讨会参与者数据和课程材料", + "会议成果:年度全球减贫与发展论坛及相关国际活动的成果输出" + ] + } +} diff --git a/firstdata/sources/china/economy/macro/china-ndrc-computing.json b/firstdata/sources/china/economy/macro/china-ndrc-computing.json index 32d4b6e0..4b80880a 100644 --- a/firstdata/sources/china/economy/macro/china-ndrc-computing.json +++ b/firstdata/sources/china/economy/macro/china-ndrc-computing.json @@ -45,7 +45,7 @@ "数字基础设施", "digital-infrastructure", "国家发展改革委", - "NDRC", + "ndrc", "国家数据局", "national-data-bureau" ], diff --git a/firstdata/sources/china/economy/macro/china-sasac.json b/firstdata/sources/china/economy/macro/china-sasac.json new file mode 100644 index 00000000..525f8a17 --- /dev/null +++ b/firstdata/sources/china/economy/macro/china-sasac.json @@ -0,0 +1,76 @@ +{ + "id": "china-sasac", + "name": { + "en": "State-owned Assets Supervision and Administration Commission of the State Council", + "zh": "国务院国有资产监督管理委员会" + }, + "description": { + "en": "The State-owned Assets Supervision and Administration Commission (SASAC) is the central government body responsible for managing and supervising China's central state-owned enterprises (central SOEs). Established in 2003, SASAC oversees approximately 98 central SOEs across strategic sectors including energy, telecommunications, transportation, aviation, aerospace, finance, and heavy industry. SASAC publishes quarterly and annual operational performance reports for central SOEs, covering total assets, revenue, profit, tax contributions, employee numbers, and investment in fixed assets. These publications are the authoritative source for understanding the scale and performance of China's state-owned economy, which accounts for a major share of national economic output. SASAC also releases data on SOE reform progress, mixed-ownership reform pilots, and state capital allocation statistics.", + "zh": "国务院国有资产监督管理委员会(国资委)是负责管理和监督中央国有企业的国家政府机构,于2003年正式组建。国资委监管约98家中央企业,涵盖能源、电信、交通、航空、航天、金融、重工业等战略性领域。国资委定期发布中央企业运营绩效季报和年报,内容包括资产总量、营业收入、利润总额、税收贡献、用工人数及固定资产投资等数据,是了解中国国有经济规模和绩效的权威数据来源。国有经济在全国经济总量中占有重要比重。国资委还发布国企改革进展、混合所有制改革试点情况及国有资本布局优化统计数据。" + }, + "website": "https://www.sasac.gov.cn/", + "data_url": "https://www.sasac.gov.cn/n2588030/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "economics", + "industry", + "governance", + "statistics" + ], + "update_frequency": "quarterly", + "tags": [ + "国资委", + "sasac", + "央企", + "central-soes", + "国有企业", + "state-owned-enterprises", + "央企运营数据", + "central-enterprise-performance", + "国有资产", + "state-owned-assets", + "企业利润", + "enterprise-profit", + "混合所有制", + "mixed-ownership-reform", + "国企改革", + "soe-reform", + "国有资本", + "state-capital", + "央企收入", + "central-enterprise-revenue", + "资产总量", + "total-assets", + "经济统计", + "economic-statistics" + ], + "data_content": { + "en": [ + "Central SOE operational performance: quarterly and annual total assets, operating revenue, total profit, and tax contributions of central enterprises as a group", + "Enterprise-level data: individual performance indicators for major central SOEs including SINOPEC, CNPC, SGCC, and other key groups", + "Employment statistics: total workforce of central SOEs, new recruitment, and labor productivity metrics", + "Fixed asset investment: annual capital expenditure and investment data across central SOE sectors", + "Mixed-ownership reform: progress reports on pilot programs introducing private capital into state-owned enterprises", + "State capital allocation: data on strategic restructuring of central SOE portfolios, mergers, and asset disposals", + "SOE reform progress: annual reports on reform implementation under the State-owned Enterprise Reform Deepening Action Plan", + "Industry breakdown: performance data disaggregated by sector including energy, telecommunications, manufacturing, and services", + "Financial indicators: return on equity, asset-liability ratios, and other financial health metrics for central SOEs", + "Innovation investment: R&D expenditure and technology investment statistics for central SOEs" + ], + "zh": [ + "央企运营绩效:中央企业整体季度和年度资产总量、营业收入、利润总额及税收贡献", + "企业个体数据:中石化、中石油、国家电网等主要央企的单项绩效指标", + "用工统计:央企职工总数、新增招录及劳动生产率指标", + "固定资产投资:央企各领域年度资本支出和投资数据", + "混合所有制改革:引入民间资本的国企改革试点进展报告", + "国有资本布局:中央企业战略性重组、合并及资产处置相关数据", + "国企改革进展:国有企业改革深化提升行动年度报告", + "行业分类数据:能源、电信、制造业、服务业等各领域绩效分类统计", + "财务指标:央企净资产收益率、资产负债率及其他财务健康指标", + "创新投入:央企研发投入和科技投资统计数据" + ] + } +} diff --git a/firstdata/sources/china/economy/macro/china-shenzhen-drc.json b/firstdata/sources/china/economy/macro/china-shenzhen-drc.json new file mode 100644 index 00000000..a9705aad --- /dev/null +++ b/firstdata/sources/china/economy/macro/china-shenzhen-drc.json @@ -0,0 +1,48 @@ +{ + "id": "china-shenzhen-drc", + "name": { + "en": "Shenzhen Municipal Development and Reform Commission", + "zh": "深圳市发展和改革委员会" + }, + "description": { + "en": "The Shenzhen Municipal Development and Reform Commission is the local government authority responsible for economic and social development planning, macroeconomic regulation, price monitoring, and investment project management in Shenzhen. It publishes economic development plans, price monitoring data, major project approvals, industrial policy documents, and socioeconomic development reports for one of China's leading innovation hubs and special economic zones.", + "zh": "深圳市发展和改革委员会是深圳市负责经济和社会发展规划、宏观经济调控、价格监测和投资项目管理的地方政府部门。发布经济发展规划、价格监测数据、重大项目审批、产业政策文件和社会经济发展报告,是中国领先的创新中心和经济特区的权威数据来源。" + }, + "website": "http://fgw.sz.gov.cn", + "data_url": "http://fgw.sz.gov.cn/zwgk/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "economics", + "development-planning", + "price-monitoring" + ], + "geographic_scope": "subnational", + "update_frequency": "monthly", + "tags": [ + "shenzhen", + "development", + "reform", + "economics", + "planning" + ], + "data_content": { + "en": [ + "Economic Development Plans - Five-year plans and annual economic development targets for Shenzhen", + "Price Monitoring Data - Consumer price index monitoring and commodity price data", + "Investment Project Approvals - Major fixed asset investment project review and approval records", + "Industrial Policies - Strategic emerging industry development policies and support measures", + "Socioeconomic Development Reports - Annual national economic and social development statistical bulletins", + "Energy and Resource Management - Energy consumption targets and resource allocation plans" + ], + "zh": [ + "经济发展规划 - 深圳市五年规划和年度经济发展目标", + "价格监测数据 - 居民消费价格指数监测和商品价格数据", + "投资项目审批 - 重大固定资产投资项目审核和审批记录", + "产业政策 - 战略性新兴产业发展政策和扶持措施", + "社会经济发展报告 - 年度国民经济和社会发展统计公报", + "能源资源管理 - 能源消费目标和资源配置计划" + ] + } +} diff --git a/firstdata/sources/china/economy/macro/china-sic.json b/firstdata/sources/china/economy/macro/china-sic.json new file mode 100644 index 00000000..9d60f62b --- /dev/null +++ b/firstdata/sources/china/economy/macro/china-sic.json @@ -0,0 +1,73 @@ +{ + "id": "china-sic", + "name": { + "en": "State Information Center of China", + "zh": "国家信息中心" + }, + "description": { + "en": "The State Information Center (SIC) of China is a government think tank directly under the National Development and Reform Commission (NDRC). Established in 1987, SIC plays a central role in macroeconomic monitoring, forecasting, and policy research for the Chinese government. It publishes authoritative economic analysis including the China Macroeconomic Outlook reports, the China Big Data Index on Economic Conditions, monthly economic situation analyses, and the Sharing Economy Development Report. SIC operates the National Comprehensive Information Platform for Economic Decision-Making and contributes to the government's five-year planning process. Its data and analysis are widely cited by Chinese policymakers, central government agencies, and international researchers studying China's economy.", + "zh": "国家信息中心是国家发展和改革委员会直属的政府智库,成立于1987年,在宏观经济监测、预测和政策研究方面发挥核心作用。国家信息中心发布权威经济分析报告,包括《中国宏观经济形势分析与预测》、中国经济景气监测及大数据指数、月度经济形势分析和《中国分享经济发展报告》。信息中心运营国家经济决策综合信息平台,并参与政府五年规划的编制工作,其数据和分析被中国政策制定者、中央政府各部门及国际经济研究机构广泛引用。" + }, + "website": "https://www.sic.gov.cn/", + "data_url": "https://www.sic.gov.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "economics", + "statistics", + "research" + ], + "update_frequency": "monthly", + "tags": [ + "宏观经济", + "macroeconomics", + "经济预测", + "economic-forecast", + "景气监测", + "economic-monitoring", + "经济形势分析", + "economic-situation-analysis", + "大数据指数", + "big-data-index", + "分享经济", + "sharing-economy", + "政策研究", + "policy-research", + "五年规划", + "five-year-plan", + "国家信息中心", + "sic", + "ndrc", + "发改委", + "经济决策", + "economic-decision-making", + "GDP预测", + "gdp-forecast" + ], + "data_content": { + "en": [ + "China Macroeconomic Outlook: semi-annual forecast reports on GDP growth, inflation, investment, and consumption trends", + "Monthly economic situation analysis: near-real-time monitoring of key economic indicators including industrial output, retail sales, and fixed-asset investment", + "China Big Data Economic Conditions Index: data-driven composite index tracking economic sentiment from online and administrative data", + "Sharing Economy Development Report: annual statistics on platform economy scale, participants, and transaction volumes across ride-hailing, housing, finance, and knowledge sharing sectors", + "Price monitoring data: producer price index (PPI), consumer price index (CPI), and commodity price trend analysis", + "Regional economic analysis: comparative economic performance assessments across China's provinces and major city clusters", + "Five-year plan monitoring: progress tracking and evaluation data on national development targets and key indicator achievement", + "Energy and resource consumption forecasts: projections for coal, oil, gas, and electricity demand under different economic scenarios", + "Poverty alleviation and rural development statistics: rural income growth, poverty headcount reduction, and regional development gap data" + ], + "zh": [ + "中国宏观经济展望:GDP增长、通货膨胀、投资和消费趋势半年度预测报告", + "月度经济形势分析:工业产出、零售额和固定资产投资等关键经济指标的近实时监测", + "中国大数据经济景气指数:基于网络和行政数据的经济景气复合追踪指数", + "分享经济发展报告:网约车、住宿、金融、知识共享等领域平台经济规模、参与人数和交易额年度统计", + "价格监测数据:生产者价格指数(PPI)、消费者价格指数(CPI)及大宗商品价格趋势分析", + "区域经济分析:全国各省份及主要城市群经济表现比较评估", + "五年规划监测:国家发展目标和关键指标完成情况的进展跟踪与评估数据", + "能源资源消耗预测:不同经济情景下煤炭、石油、天然气和电力需求预测", + "脱贫攻坚和农村发展统计:农村居民收入增长、贫困人口减少及区域发展差距数据" + ] + } +} diff --git a/firstdata/sources/china/economy/market/china-cgcc.json b/firstdata/sources/china/economy/market/china-cgcc.json new file mode 100644 index 00000000..528422cb --- /dev/null +++ b/firstdata/sources/china/economy/market/china-cgcc.json @@ -0,0 +1,78 @@ +{ + "id": "china-cgcc", + "name": { + "en": "China General Chamber of Commerce", + "zh": "中国商业联合会" + }, + "description": { + "en": "The China General Chamber of Commerce (CGCC), also known as the China Commercial Federation, is the national industry organization representing China's commercial and retail sector, supervised by the Ministry of Commerce. China is the world's second-largest retail market, with total retail sales of consumer goods exceeding 47 trillion yuan annually, and is rapidly approaching the United States as the world's largest consumer market. CGCC represents department stores, supermarkets, specialty retailers, wholesale markets, and modern logistics operators, covering both traditional brick-and-mortar and integrated online-offline retail formats. The chamber publishes the China Retail Industry Prosperity Index (中国零售业景气指数), which provides monthly survey-based sentiment data on sales performance, inventory levels, employment trends, and business confidence across the retail sector. CGCC also releases annual retail industry development reports, consumer spending trend analysis, and data on the transformation of China's commercial districts and shopping center ecosystems. Its research on the integration of online and offline retail (新零售 / New Retail) is widely cited in studies of China's consumer economy and digital commerce evolution.", + "zh": "中国商业联合会(中国商联)是代表中国商业零售行业的全国性行业组织,主管单位为商务部。中国是全球第二大零售市场,社会消费品零售总额年超47万亿元,正快速向全球最大消费市场迈进。商联会员涵盖百货商场、超市、专卖店、批发市场和现代物流运营商,覆盖传统实体和线上线下融合零售业态。商联发布中国零售业景气指数,基于月度调查提供零售行业销售业绩、库存水平、从业人员趋势和企业信心等情绪数据,同时发布零售行业年度发展报告、消费趋势分析,以及商业街区和购物中心生态系统演变数据。商联关于线上线下融合(新零售)的研究,在中国消费经济和数字商业演进研究领域被广泛引用。" + }, + "website": "https://www.cgcc.org.cn/", + "data_url": "https://www.cgcc.org.cn/hyfz/zglsyfzzs/", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "economics", + "consumer", + "industry", + "trade" + ], + "update_frequency": "monthly", + "tags": [ + "中国商业联合会", + "cgcc", + "china-general-chamber-of-commerce", + "china-commercial-federation", + "零售业", + "retail-industry", + "中国零售业景气指数", + "china-retail-industry-prosperity-index", + "社会消费品零售总额", + "total-retail-sales-of-consumer-goods", + "消费市场", + "consumer-market", + "百货商场", + "department-stores", + "超市", + "supermarkets", + "购物中心", + "shopping-centers", + "新零售", + "new-retail", + "线上线下融合", + "online-offline-integration", + "批发市场", + "wholesale-markets", + "商业地产", + "commercial-real-estate", + "消费升级", + "consumption-upgrade", + "商业景气", + "commercial-prosperity" + ], + "data_content": { + "en": [ + "China Retail Industry Prosperity Index: monthly survey-based composite indicator measuring sales performance, order volumes, inventory levels, employment conditions, and forward-looking business confidence across retail sub-sectors", + "Annual retail market report: comprehensive overview of China's commercial and retail sector performance, consumer spending patterns, channel shift dynamics, and competitive landscape", + "Department store and shopping center data: operating metrics including footfall, tenant mix, vacancy rates, and average transaction values for China's major commercial real estate formats", + "Supermarket and hypermarket statistics: sales volumes, SKU turnover, fresh food penetration, and supply chain efficiency for grocery retail chains", + "Wholesale market monitoring: commodity prices, transaction volumes, and operational data from China's major agricultural and industrial wholesale market hubs", + "Online-offline integration (New Retail): tracking the hybridization of physical and digital retail formats, including click-and-collect adoption, live commerce penetration, and private label growth", + "Consumer spending trend analysis: purchasing power changes, discretionary vs. essential spending ratios, regional consumption disparities, and emerging consumer segments", + "Commercial district health index: foot traffic, vacancy, new opening, and closure data for major commercial street zones and city-center retail districts across China" + ], + "zh": [ + "中国零售业景气指数:月度综合调查指标,衡量零售各子行业的销售业绩、订单量、库存水平、就业状况和前瞻性经营信心", + "零售市场年度报告:中国商业零售行业运行全面述评,涵盖消费支出格局、渠道转移动态和竞争格局", + "百货商场和购物中心数据:客流量、租户结构、空置率和主要商业地产业态的平均交易价值等经营指标", + "超市和大型卖场统计:连锁超市的销售量、SKU周转率、生鲜渗透率和供应链效率", + "批发市场监测:中国主要农业和工业批发市场的商品价格、成交量和运营数据", + "线上线下融合(新零售):实体与数字零售业态融合追踪,包括到店自提、直播电商渗透率和自有品牌增长", + "消费趋势分析:购买力变化、可选与必选消费占比、区域消费差异及新兴消费群体", + "商业街区健康指数:中国主要商业街区和城市核心商业区的客流量、空置率、新开业和关闭数据" + ] + } +} diff --git a/firstdata/sources/china/economy/market/china-gsxt.json b/firstdata/sources/china/economy/market/china-gsxt.json new file mode 100644 index 00000000..73ae11ab --- /dev/null +++ b/firstdata/sources/china/economy/market/china-gsxt.json @@ -0,0 +1,66 @@ +{ + "id": "china-gsxt", + "name": { + "en": "National Enterprise Credit Information Publicity System", + "zh": "国家企业信用信息公示系统" + }, + "description": { + "en": "The National Enterprise Credit Information Publicity System (GSXT) is the official government platform operated by the State Administration for Market Regulation (SAMR) of China. It is the authoritative public database for enterprise registration information, credit records, and regulatory compliance data for all enterprises registered in China. The system discloses enterprise basic registration data, annual report filings, administrative penalties, court judgments, business license information, equity structure, and credit ratings. It covers all types of enterprises, individual business entities, and other market entities registered across all provinces and cities in China.", + "zh": "国家企业信用信息公示系统(GSXT)是国家市场监督管理总局运营的官方政府平台,是中国境内所有注册企业的工商登记信息、信用记录和监管合规数据的权威公共数据库。系统公示企业基本注册数据、年报信息、行政处罚、法院判决、营业执照信息、股权结构及信用评级,覆盖全国各省市注册的企业、个体工商户及其他市场主体。" + }, + "data_content": { + "en": [ + "enterprise registration and basic information", + "annual report filings", + "administrative penalty records", + "court judgment and enforcement records", + "business license and qualification data", + "equity structure and shareholder information", + "enterprise credit ratings and black lists", + "operating status and change history", + "branch and subsidiary information", + "market entity credit compliance data" + ], + "zh": [ + "企业注册与基本信息", + "年报信息", + "行政处罚记录", + "法院判决与执行记录", + "营业执照与资质数据", + "股权结构与股东信息", + "企业信用评级与黑名单", + "经营状态与变更历史", + "分支机构与子公司信息", + "市场主体信用合规数据" + ] + }, + "country": "CN", + "authority_level": "government", + "geographic_scope": "national", + "website": "https://www.gsxt.gov.cn", + "data_url": "https://www.gsxt.gov.cn", + "api_url": null, + "domains": [ + "economy", + "governance" + ], + "tags": [ + "enterprise-credit", + "business-registration", + "market-supervision", + "corporate-data", + "credit-system", + "企业信用", + "工商登记", + "市场监管", + "信用信息", + "营业执照", + "股权", + "年报", + "行政处罚", + "samr", + "市场监管总局", + "国家企业信用" + ], + "update_frequency": "daily" +} diff --git a/firstdata/sources/china/economy/market/china-iresearch.json b/firstdata/sources/china/economy/market/china-iresearch.json new file mode 100644 index 00000000..3737749c --- /dev/null +++ b/firstdata/sources/china/economy/market/china-iresearch.json @@ -0,0 +1,59 @@ +{ + "id": "china-iresearch", + "name": { + "en": "iResearch Consulting Group", + "zh": "艾瑞咨询" + }, + "description": { + "en": "iResearch Consulting Group is China's leading internet and technology market research firm. It provides authoritative data, industry reports, and market sizing on China's digital economy, internet industries, e-commerce, fintech, digital advertising, and consumer behavior. iResearch is widely cited by government agencies, investors, and corporations as a primary source for China's digital market intelligence.", + "zh": "艾瑞咨询是中国领先的互联网与科技市场研究机构,提供中国数字经济、互联网行业、电商、金融科技、数字广告及消费者行为的权威数据、行业报告和市场规模分析,被政府机构、投资者和企业广泛引用。" + }, + "website": "https://www.iresearch.com.cn", + "data_url": "https://www.iresearch.com.cn/report.shtml", + "api_url": null, + "country": "CN", + "domains": [ + "market-research", + "digital-economy", + "internet", + "consumer" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "china", + "艾瑞咨询", + "iresearch", + "market-research", + "market-size", + "互联网", + "internet", + "e-commerce", + "电商", + "fintech", + "金融科技", + "digital-advertising", + "数字广告", + "consumer-behavior", + "消费者研究", + "industry-report", + "行业报告" + ], + "data_content": { + "en": [ + "Industry Reports - In-depth research reports on China's internet, e-commerce, fintech, and digital sectors", + "Market Sizing Data - Total addressable market (TAM) estimates for major Chinese digital industries", + "User Behavior Analysis - Consumer behavior surveys and digital usage statistics", + "Digital Advertising Market - China online advertising spend and market share data", + "Quarterly Trackers - Ongoing tracking data for key metrics in mobile, social, and e-commerce" + ], + "zh": [ + "行业深度报告 - 中国互联网、电商、金融科技和数字行业的深度研究报告", + "市场规模数据 - 中国主要数字行业的市场规模测算", + "用户行为分析 - 消费者行为调研与数字化使用统计", + "数字广告市场 - 中国网络广告投入和市场份额数据", + "季度追踪 - 移动、社交和电商核心指标的持续跟踪数据" + ] + }, + "authority_level": "market" +} diff --git a/firstdata/sources/china/economy/market/china-samr.json b/firstdata/sources/china/economy/market/china-samr.json new file mode 100644 index 00000000..b3b9ff72 --- /dev/null +++ b/firstdata/sources/china/economy/market/china-samr.json @@ -0,0 +1,62 @@ +{ + "id": "china-samr", + "name": { + "en": "State Administration for Market Regulation", + "zh": "国家市场监督管理总局", + "native": "国家市场监督管理总局" + }, + "description": { + "en": "The State Administration for Market Regulation (SAMR) is China's primary market regulator responsible for business registration, anti-monopoly enforcement, product quality supervision, food safety, and consumer protection. It publishes statistics on enterprise registration, market supervision, quality certification, and food and drug safety across China.", + "zh": "国家市场监督管理总局是中国主要的市场监管机构,负责企业登记注册、反垄断执法、产品质量监督、食品安全和消费者保护。发布全国企业登记注册、市场监管、质量认证、食品药品安全等统计数据。" + }, + "website": "https://www.samr.gov.cn", + "data_url": "https://www.samr.gov.cn/zw/sj/sjzx/", + "api_url": null, + "country": "CN", + "domains": [ + "economics", + "industry", + "social", + "trade" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "china", + "samr", + "market-regulation", + "enterprise-registration", + "business-registration", + "quality", + "food-safety", + "anti-monopoly", + "consumer-protection", + "市场监管", + "市场监管总局", + "企业登记", + "质量统计", + "食品安全", + "工商登记" + ], + "data_content": { + "en": [ + "Enterprise Registration Statistics - Number of registered businesses by type, industry, and region", + "Market Supervision Reports - Annual reports on market order and law enforcement", + "Product Quality Statistics - Quality inspection results, certification data", + "Food Safety Annual Report - Food safety supervision and sampling statistics", + "Anti-Monopoly Enforcement - Merger reviews and monopoly case statistics", + "Consumer Complaint Statistics - Consumer rights protection and complaint resolution data", + "Special Equipment Safety - Statistics on boilers, pressure vessels, lifts, and other special equipment" + ], + "zh": [ + "企业登记注册统计 - 按类型、行业和地区分类的注册企业数量", + "市场监管报告 - 市场秩序和执法年度报告", + "产品质量统计 - 质量检验结果、认证数据", + "食品安全年报 - 食品安全监督和抽检统计", + "反垄断执法 - 经营者集中审查和垄断案件统计", + "消费者投诉统计 - 消费者权益保护和投诉处理数据", + "特种设备安全 - 锅炉、压力容器、电梯等特种设备统计" + ] + }, + "authority_level": "government" +} diff --git a/firstdata/sources/china/economy/market/china-shenzhen-prtc.json b/firstdata/sources/china/economy/market/china-shenzhen-prtc.json new file mode 100644 index 00000000..7ab0f7be --- /dev/null +++ b/firstdata/sources/china/economy/market/china-shenzhen-prtc.json @@ -0,0 +1,48 @@ +{ + "id": "china-shenzhen-prtc", + "name": { + "en": "Shenzhen Public Resource Trading Center", + "zh": "深圳市公共资源交易中心" + }, + "description": { + "en": "The Shenzhen Public Resource Trading Center is the municipal government platform for unified public resource transactions in Shenzhen. It provides centralized data on government procurement, construction project bidding, land use rights auctions, state-owned asset transfers, and pharmaceutical procurement. As a key transparency platform for one of China's largest municipal economies, it publishes real-time transaction records, bidding results, and procurement announcements across all categories of public resource trading.", + "zh": "深圳市公共资源交易中心是深圳市公共资源统一交易的市级政府平台。提供政府采购、建设工程招投标、土地使用权出让、国有资产转让和药品采购等集中交易数据。作为中国最大城市经济体之一的透明交易平台,发布各类公共资源交易的实时成交记录、中标结果和采购公告。" + }, + "website": "https://www.szggzy.com", + "data_url": "https://www.szggzy.com/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "government-procurement", + "public-resource-trading", + "real-estate" + ], + "geographic_scope": "subnational", + "update_frequency": "daily", + "tags": [ + "shenzhen", + "public-resource", + "procurement", + "bidding", + "land-auction" + ], + "data_content": { + "en": [ + "Government Procurement - Centralized government procurement bidding and results", + "Construction Project Bidding - Public construction project tender announcements and awards", + "Land Use Rights Auctions - Land parcel auction records including prices and conditions", + "State-Owned Asset Transfers - SOE asset disposal transactions and transfer records", + "Pharmaceutical Procurement - Drug and medical device centralized procurement data", + "Transaction Statistics - Aggregate trading volume and value statistics by category" + ], + "zh": [ + "政府采购 - 集中政府采购招标和中标结果", + "建设工程招投标 - 公共建设项目招标公告和中标公告", + "土地使用权出让 - 土地出让成交记录包括价格和条件", + "国有资产转让 - 国有企业资产处置和转让记录", + "药品采购 - 药品和医疗器械集中采购数据", + "交易统计 - 按类别汇总的交易数量和金额统计" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-ah-stats.json b/firstdata/sources/china/economy/provincial/china-ah-stats.json new file mode 100644 index 00000000..42d51906 --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-ah-stats.json @@ -0,0 +1,72 @@ +{ + "id": "china-ah-stats", + "name": { + "en": "Anhui Bureau of Statistics", + "zh": "安徽省统计局" + }, + "description": { + "en": "The Anhui Bureau of Statistics is the official statistical authority for Anhui Province, a central-eastern China province experiencing rapid economic transformation driven by emerging industries, high-tech manufacturing, and its integration into the Yangtze River Delta economic region. It publishes comprehensive socioeconomic statistics including GDP, industrial output, agricultural production, population, employment, and consumer prices for Anhui. The bureau releases the Anhui Statistical Yearbook and regular economic bulletins, serving as the authoritative data source for one of China's fastest-growing provincial economies.", + "zh": "安徽省统计局是安徽省官方统计机构,安徽是中国中东部省份,正经历以新兴产业、高新技术制造业和长三角一体化为驱动的快速经济转型。统计局发布安徽省GDP、工业产值、农业生产、人口、就业和居民消费价格指数等全面的社会经济统计数据,并出版《安徽统计年鉴》及定期经济运行情况报告,是了解中国增速最快省级经济体之一的权威数据来源。" + }, + "website": "https://tjj.ah.gov.cn", + "data_url": "https://tjj.ah.gov.cn/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "social", + "industry" + ], + "update_frequency": "monthly", + "tags": [ + "安徽统计", + "anhui-statistics", + "安徽GDP", + "anhui-gdp", + "长三角一体化", + "yangtze-river-delta-integration", + "省级统计", + "provincial-statistics", + "新兴产业", + "emerging-industries", + "高新技术", + "high-tech-manufacturing", + "工业产值", + "industrial-output", + "人口统计", + "population-statistics", + "统计年鉴", + "statistical-yearbook", + "新能源汽车", + "new-energy-vehicles" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Anhui Province", + "Industrial production: output value by industry, major products output, industrial enterprise performance including emerging industries", + "High-tech and strategic industries: new energy vehicles, semiconductor, artificial intelligence, quantum computing output data", + "Agricultural statistics: crop output, livestock, tea production — Anhui is a major agricultural province", + "Fixed asset investment: total investment, real estate development, infrastructure construction", + "Population statistics: census data, household registration, urbanization — significant labor-exporting province", + "Employment and wages: employed persons, migrant labor statistics, average wages by sector", + "Consumer prices: CPI, PPI for Anhui Province and Hefei metropolitan area", + "Foreign trade and investment: import/export, utilized foreign direct investment", + "Anhui Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:安徽省季度和年度GDP数据,按产业分类", + "工业生产:各行业工业产值、主要产品产量、工业企业经营情况,包括新兴产业", + "高新技术与战略性新兴产业:新能源汽车、半导体、人工智能、量子计算产值数据", + "农业统计:粮食产量、畜牧业、茶叶产量——安徽是重要农业大省", + "固定资产投资:全省投资总额、房地产开发、基础设施建设", + "人口统计:人口普查数据、户籍人口、城镇化率——重要劳动力输出省份", + "就业与工资:从业人员数、外出务工统计、各行业平均工资", + "消费价格:安徽省及合肥都市圈居民消费价格指数、工业品出厂价格", + "对外贸易与投资:进出口统计、实际利用外资", + "安徽统计年鉴:全省各类统计数据的综合年度汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-beijing-stats.json b/firstdata/sources/china/economy/provincial/china-beijing-stats.json new file mode 100644 index 00000000..1fe97b6f --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-beijing-stats.json @@ -0,0 +1,72 @@ +{ + "id": "china-beijing-stats", + "name": { + "en": "Beijing Bureau of Statistics", + "zh": "北京市统计局" + }, + "description": { + "en": "The Beijing Bureau of Statistics is the official statistical authority for Beijing Municipality, China's capital and one of the world's largest metropolitan economies. It collects, processes, and publishes comprehensive socioeconomic statistics for Beijing, including GDP, industrial output, fixed asset investment, retail sales, consumer prices, population, employment, and household income. The bureau releases the Beijing Statistical Yearbook and regular monthly and quarterly economic bulletins, serving as the authoritative source for tracking the performance of China's political and cultural center.", + "zh": "北京市统计局是北京市官方统计机构,北京是中国首都,也是全球最大都市经济体之一。统计局负责收集、处理和发布北京市全面的社会经济统计数据,涵盖GDP、工业产值、固定资产投资、社会消费品零售总额、居民消费价格指数、人口、就业和居民收入等。统计局定期发布《北京统计年鉴》及月度、季度经济运行情况报告,是追踪中国政治文化中心经济社会发展的权威数据来源。" + }, + "website": "https://tjj.beijing.gov.cn/", + "data_url": "https://tjj.beijing.gov.cn/tjsj_31433/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "social", + "demographics" + ], + "update_frequency": "monthly", + "tags": [ + "北京统计", + "beijing-statistics", + "北京GDP", + "beijing-gdp", + "首都经济", + "capital-economy", + "市级统计", + "municipal-statistics", + "固定资产投资", + "fixed-asset-investment", + "居民消费", + "consumer-spending", + "人口普查", + "population-census", + "居民收入", + "household-income", + "统计年鉴", + "statistical-yearbook", + "城市化", + "urbanization", + "就业", + "employment" + ], + "data_content": { + "en": [ + "GDP and economic growth: annual and quarterly gross domestic product by industry sector for Beijing Municipality", + "Industrial output: production data for major industries including high-tech, manufacturing, and services", + "Fixed asset investment: total investment by sector, region, and ownership type", + "Retail sales and consumption: total retail sales, e-commerce data, household consumption expenditure", + "Consumer prices: CPI, PPI, and housing price indices for Beijing and its districts", + "Population statistics: census results, household registration data, migrant population, birth and death rates", + "Employment and wages: employed persons by sector, unemployment rate, average wages across industries", + "Social development: education enrollment, healthcare resources, social security coverage, cultural services", + "Beijing Statistical Yearbook: annual comprehensive compilation of all municipal statistical data" + ], + "zh": [ + "GDP与经济增长:北京市按产业分类的年度及季度地区生产总值", + "工业产值:高新技术、制造业和服务业等主要行业生产数据", + "固定资产投资:按行业、地区和所有制类型分类的投资总额", + "零售与消费:社会消费品零售总额、电商数据、居民消费支出", + "消费价格:北京市及各区的居民消费价格指数、工业品出厂价格和房价指数", + "人口统计:普查结果、户籍人口、流动人口、出生率和死亡率", + "就业与工资:各行业从业人员数、失业率、各行业平均工资", + "社会发展:教育招生情况、医疗卫生资源、社会保障覆盖率、文化服务", + "北京统计年鉴:北京市各类统计数据的综合年度汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-chengdu-stats.json b/firstdata/sources/china/economy/provincial/china-chengdu-stats.json new file mode 100644 index 00000000..816d1ab5 --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-chengdu-stats.json @@ -0,0 +1,76 @@ +{ + "id": "china-chengdu-stats", + "name": { + "en": "Chengdu Bureau of Statistics", + "zh": "成都市统计局" + }, + "description": { + "en": "The Chengdu Bureau of Statistics is the official statistical authority for Chengdu, the capital of Sichuan Province and the economic hub of western China. Chengdu is one of China's four first-tier cities by influence and a major center for electronics manufacturing, aerospace, finance, and the digital economy. The bureau publishes comprehensive socioeconomic statistics covering GDP, industrial output, fixed asset investment, retail sales, foreign trade, population, and employment for Chengdu municipality. It releases the Chengdu Statistical Yearbook, monthly economic bulletins, and thematic reports on the city's development as a national center city and New Economy hub in China's western development strategy.", + "zh": "成都市统计局是成都市的官方统计机构,成都是四川省省会、中国西部地区经济中心,也是中国新一线城市之一,是电子制造、航空航天、金融和数字经济的重要基地。统计局发布成都市GDP、工业产值、固定资产投资、社会消费品零售总额、对外贸易、人口和就业等全面的社会经济统计数据,出版《成都统计年鉴》、月度经济简报及成都作为国家中心城市、新经济之都和西部大开发重要节点城市的专题报告。" + }, + "website": "http://cdstats.chengdu.gov.cn/", + "data_url": "http://cdstats.chengdu.gov.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "industry", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "成都统计", + "chengdu-statistics", + "成都GDP", + "chengdu-gdp", + "西部大开发", + "western-china-development", + "四川经济", + "sichuan-economy", + "成都统计年鉴", + "chengdu-statistical-yearbook", + "数字经济", + "digital-economy", + "新经济", + "new-economy", + "电子制造", + "electronics-manufacturing", + "航空航天", + "aerospace", + "国家中心城市", + "national-center-city", + "消费城市", + "consumer-city", + "成都新区", + "chengdu-new-area" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Chengdu municipality", + "Industrial production: output from key industries including electronics, auto parts, food processing, and aerospace", + "Digital and new economy: software revenue, digital industry output, and new economy enterprise data", + "Fixed asset investment: total investment, real estate development, infrastructure, and industrial projects", + "Retail and consumption: total retail sales, consumer price index, and e-commerce data", + "Foreign trade and investment: export/import volumes, actually utilized FDI by source country", + "Employment and wages: employed persons, urban unemployment rate, and average wages by sector", + "Population: resident population, household registration, migration, and urbanization indicators", + "Chengdu Statistical Yearbook: comprehensive annual compilation of all municipal statistics across economic and social domains", + "Monthly economic briefings: short-term economic performance indicators and trend analysis" + ], + "zh": [ + "GDP与经济增长:成都市按产业分类的季度和年度GDP数据", + "工业生产:电子、汽车零部件、食品加工和航空航天等重点产业产值", + "数字经济与新经济:软件业营业收入、数字产业产值和新经济企业数据", + "固定资产投资:全市总投资额、房地产开发、基础设施和工业项目投资", + "消费与零售:社会消费品零售总额、居民消费价格指数和电子商务数据", + "对外贸易与投资:进出口总额、按来源地统计的实际利用外商直接投资", + "就业与工资:从业人员数、城镇登记失业率和各行业平均工资", + "人口:常住人口、户籍人口、人口迁移和城镇化指标", + "成都统计年鉴:经济和社会各领域全市统计数据综合年度汇编", + "月度经济简报:短期经济运行指标和趋势分析" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-cq-stats.json b/firstdata/sources/china/economy/provincial/china-cq-stats.json new file mode 100644 index 00000000..364628a9 --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-cq-stats.json @@ -0,0 +1,68 @@ +{ + "id": "china-cq-stats", + "name": { + "en": "Chongqing Bureau of Statistics", + "zh": "重庆市统计局" + }, + "description": { + "en": "The Chongqing Bureau of Statistics is the official statistical authority for Chongqing, China's largest municipality by area and a major economic hub in the upper Yangtze River region. It publishes comprehensive socioeconomic data covering GDP, industrial output, fixed asset investment, retail sales, population, and employment for Chongqing Municipality. As one of China's four direct-controlled municipalities and a key node in the Chengdu-Chongqing Economic Circle, Chongqing's statistical data is critical for understanding western China's economic development and urbanization trends. The bureau releases monthly economic bulletins, quarterly reports, and the annual Chongqing Statistical Yearbook.", + "zh": "重庆市统计局是重庆市官方统计机构。重庆是中国面积最大的直辖市,也是长江上游地区重要的经济中心。统计局发布涵盖重庆市GDP、工业产值、固定资产投资、社会消费品零售总额、人口及就业等全面社会经济数据。作为中国四个直辖市之一及成渝地区双城经济圈的重要节点,重庆统计数据对于了解西部地区经济发展与城镇化进程具有重要价值。统计局定期发布月度经济运行情况、季度统计公报及年度《重庆统计年鉴》。" + }, + "website": "https://tjj.cq.gov.cn/", + "data_url": "https://tjj.cq.gov.cn/zwgk_233040/zfxxgkml/tjxx/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "social", + "infrastructure" + ], + "update_frequency": "monthly", + "tags": [ + "重庆统计", + "chongqing-statistics", + "重庆GDP", + "chongqing-gdp", + "成渝经济圈", + "chengdu-chongqing-economic-circle", + "省级统计", + "provincial-statistics", + "工业产值", + "industrial-output", + "固定资产投资", + "fixed-asset-investment", + "西部开发", + "western-development", + "城镇化", + "urbanization", + "统计年鉴", + "statistical-yearbook", + "直辖市", + "municipality" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Chongqing Municipality", + "Industrial production: output value by sector, major products, automobile manufacturing output (Chongqing is a major auto hub)", + "Fixed asset investment: total investment by sector, real estate development, infrastructure projects", + "Consumer prices: CPI and PPI data for Chongqing and major districts", + "Population statistics: permanent resident population, urbanization rate, migration data", + "Employment and wages: employed persons by sector, unemployment rate, average wages", + "Retail and services: total retail sales, e-commerce data, service industry growth", + "Chongqing Statistical Yearbook: comprehensive annual compilation covering all socioeconomic statistics" + ], + "zh": [ + "GDP与经济增长:重庆市季度和年度GDP数据,按产业分类", + "工业生产:各行业工业产值、主要产品产量(重庆是重要汽车制造基地)", + "固定资产投资:按行业分类的投资总额、房地产开发、基础设施项目", + "消费价格:重庆市及主要区县的居民消费价格指数和工业品出厂价格", + "人口统计:常住人口、城镇化率、人口流动数据", + "就业与工资:各行业从业人员数、失业率、平均工资水平", + "零售与服务:社会消费品零售总额、电子商务数据、服务业增长情况", + "重庆统计年鉴:涵盖所有社会经济统计的综合年度汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-fj-stats.json b/firstdata/sources/china/economy/provincial/china-fj-stats.json new file mode 100644 index 00000000..ed3acaaa --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-fj-stats.json @@ -0,0 +1,68 @@ +{ + "id": "china-fj-stats", + "name": { + "en": "Fujian Bureau of Statistics", + "zh": "福建省统计局" + }, + "description": { + "en": "The Fujian Bureau of Statistics is the official statistical authority for Fujian Province, a coastal province in southeastern China known for its strong private economy, cross-strait trade with Taiwan, and significant overseas Chinese diaspora connections. It publishes official statistics on Fujian's economic and social development, including GDP, industrial output, cross-strait trade, foreign investment, tourism, population, and household income. The bureau issues the Fujian Statistical Yearbook and regular economic analyses that reflect the province's unique economic characteristics and policy context.", + "zh": "福建省统计局是福建省官方统计机构,福建是中国东南沿海省份,以发达的民营经济、对台贸易和与海外华人的紧密联系而著称。统计局发布福建省经济社会发展的官方数据,涵盖GDP、工业产值、两岸贸易、外商投资、旅游业、人口和居民收入等。统计局出版《福建统计年鉴》和定期经济分析报告,反映该省独特的经济特征和政策环境。" + }, + "website": "https://tjj.fujian.gov.cn/", + "data_url": "https://tjj.fujian.gov.cn/xxgk/tjxx/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "trade", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "福建统计", + "fujian-statistics", + "福建GDP", + "fujian-gdp", + "省级统计", + "provincial-statistics", + "对台贸易", + "cross-strait-trade", + "民营经济", + "private-economy", + "外商投资", + "foreign-investment", + "旅游统计", + "tourism-statistics", + "人口", + "population", + "统计年鉴", + "statistical-yearbook", + "海峡西岸", + "west-taiwan-strait-economic-zone" + ], + "data_content": { + "en": [ + "GDP and economic growth: annual and quarterly gross domestic product by industry sector for Fujian Province", + "Industrial output: production data for major industries including electronics, petrochemicals, machinery, and textiles", + "Cross-strait trade: import and export data with Taiwan, cross-strait investment statistics", + "Foreign trade and investment: total imports and exports by commodity and trading partner, FDI by industry", + "Tourism statistics: visitor arrivals (domestic and overseas Chinese), tourism revenue, hotel occupancy", + "Population and migration: census results, household registration data, overseas Chinese population connection data", + "Private sector economy: statistics on private enterprises, individual businesses, and non-state-owned economy", + "Fujian Statistical Yearbook: annual comprehensive compilation of provincial economic and social statistics" + ], + "zh": [ + "GDP与经济增长:福建省按产业分类的年度及季度地区生产总值", + "工业产值:电子、石化、机械、纺织等主要行业生产数据", + "两岸贸易:对台进出口数据及两岸投资统计", + "对外贸易与投资:按商品类别和贸易伙伴分类的进出口总额、按行业分外商直接投资", + "旅游统计:国内游客及海外华人入境情况、旅游收入、酒店入住率", + "人口与迁移:普查结果、户籍数据、海外华人关联数据", + "民营经济:私营企业、个体工商户及非公有制经济统计", + "福建统计年鉴:省级经济社会统计数据的综合年度汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-fuzhou-stats.json b/firstdata/sources/china/economy/provincial/china-fuzhou-stats.json new file mode 100644 index 00000000..2d1ff06b --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-fuzhou-stats.json @@ -0,0 +1,74 @@ +{ + "id": "china-fuzhou-stats", + "name": { + "en": "Fuzhou Bureau of Statistics", + "zh": "福州市统计局" + }, + "description": { + "en": "The Fuzhou Bureau of Statistics is the official statistical authority for Fuzhou, the capital of Fujian Province on China's southeastern coast. Fuzhou is a key digital economy hub, major port city, and center of cross-strait economic cooperation with Taiwan. The bureau publishes comprehensive socioeconomic data including GDP, industrial output, digital economy indicators, investment, consumption, employment, and population, and releases the Fuzhou Statistical Yearbook and regular economic bulletins.", + "zh": "福州市统计局是福州市官方统计机构,福州是福建省省会,位于中国东南沿海。福州是重要的数字经济中心、主要港口城市,也是两岸经济合作的重要枢纽。统计局发布涵盖GDP、工业产值、数字经济指标、投资、消费、就业和人口等全面的社会经济数据,出版《福州统计年鉴》及定期经济运行报告。" + }, + "website": "https://tjj.fuzhou.gov.cn", + "data_url": "https://tjj.fuzhou.gov.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "economics", + "statistics", + "industry", + "social" + ], + "geographic_scope": "subnational", + "update_frequency": "monthly", + "tags": [ + "福州统计", + "fuzhou-statistics", + "福州GDP", + "fuzhou-gdp", + "福建经济", + "fujian-economy", + "福州统计年鉴", + "fuzhou-statistical-yearbook", + "数字经济", + "digital-economy", + "海上丝绸之路", + "maritime-silk-road", + "两岸经济合作", + "cross-strait-economic-cooperation", + "自贸区", + "free-trade-zone", + "港口", + "port", + "海洋经济", + "marine-economy", + "21世纪海上丝绸之路", + "21st-century-maritime-silk-road" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Fuzhou", + "Digital economy indicators: software and information technology services, digital industry output", + "Port and trade: cargo throughput, container volumes, cross-strait trade statistics", + "Industrial production: output from electronics, machinery, and advanced manufacturing sectors", + "Fixed asset investment: total investment by industry, infrastructure, and real estate development", + "Retail and consumption: total retail sales of consumer goods, consumer price index", + "Employment and wages: employed persons by sector, urban unemployment rate, average wages", + "Population: resident population, household registration data, urbanization rate", + "Foreign investment: utilized FDI, cross-strait investment flows", + "Fuzhou Statistical Yearbook: comprehensive annual compilation of municipal statistics" + ], + "zh": [ + "GDP与经济增长:福州市按产业分类的季度和年度GDP数据", + "数字经济指标:软件和信息技术服务业、数字产业产值", + "港口与贸易:货物吞吐量、集装箱量、两岸贸易统计", + "工业生产:电子、机械和先进制造业产值", + "固定资产投资:按行业分类的总投资额、基础设施和房地产开发", + "消费与零售:社会消费品零售总额、居民消费价格指数", + "就业与工资:分行业从业人员数、城镇登记失业率、平均工资", + "人口:常住人口、户籍人口数据、城镇化率", + "外资利用:实际利用外商直接投资、两岸投资流向", + "福州统计年鉴:全市各类统计数据综合年度汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-gd-stats.json b/firstdata/sources/china/economy/provincial/china-gd-stats.json new file mode 100644 index 00000000..c5765e6a --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-gd-stats.json @@ -0,0 +1,66 @@ +{ + "id": "china-gd-stats", + "name": { + "en": "Guangdong Bureau of Statistics", + "zh": "广东省统计局" + }, + "description": { + "en": "The Guangdong Bureau of Statistics is the official statistical authority for Guangdong Province, China's most economically productive province and home to the Pearl River Delta manufacturing hub. It publishes comprehensive socioeconomic statistics including GDP, industrial output, trade, population, employment, consumer prices, and retail sales for Guangdong. The bureau also releases the Guangdong Statistical Yearbook and monthly/quarterly economic bulletins, making it a critical source for understanding China's leading provincial economy.", + "zh": "广东省统计局是广东省官方统计机构,广东是中国经济总量最大的省份,珠三角制造业中心所在地。统计局发布广东省GDP、工业产值、对外贸易、人口、就业、居民消费价格指数和社会消费品零售总额等全面的社会经济统计数据,并出版《广东统计年鉴》及月度/季度经济运行情况报告,是了解中国最大省级经济体的重要数据来源。" + }, + "website": "https://stats.gd.gov.cn/", + "data_url": "https://stats.gd.gov.cn/tjsj186/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "social", + "trade" + ], + "update_frequency": "monthly", + "tags": [ + "广东统计", + "guangdong-statistics", + "广东GDP", + "guangdong-gdp", + "珠三角", + "pearl-river-delta", + "省级统计", + "provincial-statistics", + "工业产值", + "industrial-output", + "对外贸易", + "foreign-trade", + "人口普查", + "population-census", + "居民收入", + "household-income", + "统计年鉴", + "statistical-yearbook" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Guangdong Province", + "Industrial production: output value by industry, major products output, industrial enterprise performance", + "Foreign trade: import and export value by commodity, trading partner, and prefecture-level city", + "Population statistics: census data, household registration, birth and death rates, urbanization", + "Employment and wages: employed persons, unemployment rate, average wages by sector and region", + "Consumer prices: CPI, PPI, housing price indices for Guangdong and its major cities", + "Social development: education enrollment, healthcare resources, social security coverage", + "Guangdong Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:广东省季度和年度GDP数据,按产业分类", + "工业生产:各行业工业产值、主要产品产量、工业企业经营情况", + "对外贸易:按商品类别、贸易伙伴和地级市分类的进出口数据", + "人口统计:人口普查数据、户籍人口、出生率和死亡率、城镇化率", + "就业与工资:从业人员数、失业率、各行业和地区平均工资", + "消费价格:广东省及主要城市的居民消费价格指数、工业品出厂价格、房价指数", + "社会发展:教育招生情况、医疗卫生资源、社会保障覆盖率", + "广东统计年鉴:全省各类统计数据的综合年度汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-gs-stats.json b/firstdata/sources/china/economy/provincial/china-gs-stats.json new file mode 100644 index 00000000..9eb4f44e --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-gs-stats.json @@ -0,0 +1,82 @@ +{ + "id": "china-gs-stats", + "name": { + "en": "Gansu Bureau of Statistics", + "zh": "甘肃省统计局" + }, + "description": { + "en": "The Gansu Bureau of Statistics is the official statistical authority for Gansu Province, a long, narrow province in northwestern China traversing the historical Hexi Corridor — the ancient Silk Road artery connecting China to Central Asia. Gansu is rich in mineral resources including nickel, platinum group metals, and rare earths, and is a significant producer of petrochemicals, non-ferrous metals, and wind energy. The bureau publishes comprehensive socioeconomic statistics covering GDP, mineral extraction, energy production (particularly wind and solar power), agricultural output in the Loess Plateau region, population, and poverty alleviation outcomes. It also releases the Gansu Statistical Yearbook.", + "zh": "甘肃省统计局是甘肃省官方统计机构,甘肃是中国西北部一个狭长省份,横跨历史上的河西走廊——连接中国与中亚的古丝绸之路要道。甘肃矿产资源丰富,包括镍、铂族金属和稀土,是重要的石化、有色金属和风能生产基地。统计局发布甘肃省GDP、矿产开采、能源生产(尤其是风能和太阳能)、黄土高原农业产值、人口及脱贫攻坚成效等全面社会经济统计,并出版《甘肃统计年鉴》。" + }, + "website": "https://tjj.gansu.gov.cn/", + "data_url": "https://tjj.gansu.gov.cn/tjj/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "energy", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "甘肃统计", + "gansu-statistics", + "甘肃GDP", + "gansu-gdp", + "西部大开发", + "western-china-development", + "省级统计", + "provincial-statistics", + "河西走廊", + "hexi-corridor", + "丝绸之路", + "silk-road", + "矿产资源", + "mineral-resources", + "镍", + "nickel", + "风能", + "wind-energy", + "太阳能", + "solar-energy", + "新能源", + "new-energy", + "稀土", + "rare-earth", + "脱贫攻坚", + "poverty-alleviation", + "统计年鉴", + "statistical-yearbook", + "兰州", + "lanzhou" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Gansu Province", + "Mineral extraction: nickel, platinum group metals, rare earth elements, coal, and other strategic minerals", + "Energy production: wind power generation, solar photovoltaic output, hydropower, oil and gas", + "Industrial output: petrochemicals, non-ferrous metals smelting, equipment manufacturing", + "Agricultural statistics: grain output, Chinese herbal medicine (traditional medicinal herbs), cash crops", + "Fixed asset investment: Silk Road infrastructure projects, new energy base construction", + "Population statistics: census data, household registration, birth and death rates, rural-urban migration", + "Employment and wages: employed persons, unemployment rate, average wages by sector", + "Poverty alleviation outcomes: rural income growth, poverty reduction metrics for former key poverty areas", + "Gansu Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:甘肃省季度和年度GDP数据,按产业分类", + "矿产开采:镍、铂族金属、稀土、煤炭及其他战略矿产资源", + "能源生产:风力发电量、光伏发电量、水电、石油和天然气", + "工业产值:石化、有色金属冶炼、装备制造业", + "农业统计:粮食产量、中药材(传统中草药)、经济作物", + "固定资产投资:丝绸之路基础设施项目、新能源基地建设", + "人口统计:人口普查数据、户籍人口、出生率和死亡率、农村人口城镇化", + "就业与工资:从业人员数、失业率、各行业平均工资", + "脱贫攻坚成效:农村居民收入增长、原深度贫困区减贫指标", + "甘肃统计年鉴:全省各类统计数据的综合年度汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-gx-stats.json b/firstdata/sources/china/economy/provincial/china-gx-stats.json new file mode 100644 index 00000000..40399653 --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-gx-stats.json @@ -0,0 +1,76 @@ +{ + "id": "china-gx-stats", + "name": { + "en": "Guangxi Bureau of Statistics", + "zh": "广西壮族自治区统计局" + }, + "description": { + "en": "The Guangxi Bureau of Statistics is the official statistical authority for the Guangxi Zhuang Autonomous Region, a southern Chinese region bordering Vietnam with strategic importance as China's gateway to Southeast Asia. It publishes comprehensive socioeconomic data including GDP, industrial output, agricultural production, trade, tourism, and population statistics for Guangxi. The bureau releases the Guangxi Statistical Yearbook and regular economic bulletins, offering critical data for analyzing the region's role in the China-ASEAN trade relationship, the New International Land-Sea Trade Corridor (ILSTC), and its sugar cane, nonferrous metals, and tourism industries.", + "zh": "广西壮族自治区统计局是广西的官方统计机构,广西位于中国南部,与越南接壤,是中国面向东南亚的重要门户。统计局发布广西GDP、工业产值、农业生产、贸易、旅游和人口等全面的社会经济数据,并出版《广西统计年鉴》及定期经济情况报告,为分析广西在中国-东盟贸易关系、西部陆海新通道及甘蔗、有色金属和旅游产业中的地位提供重要数据支撑。" + }, + "website": "https://tjj.gxzf.gov.cn/", + "data_url": "https://tjj.gxzf.gov.cn/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "trade", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "广西统计", + "guangxi-statistics", + "广西GDP", + "guangxi-gdp", + "广西壮族自治区", + "guangxi-zhuang-autonomous-region", + "省级统计", + "provincial-statistics", + "中国-东盟", + "china-asean", + "西部陆海新通道", + "ilstc", + "甘蔗", + "sugar-cane", + "有色金属", + "nonferrous-metals", + "旅游", + "tourism", + "统计年鉴", + "statistical-yearbook", + "边境贸易", + "border-trade", + "固定资产投资", + "fixed-asset-investment", + "居民收入", + "household-income" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Guangxi Zhuang Autonomous Region", + "Industrial production: output value by industry including key sectors such as sugar processing, nonferrous metal smelting, machinery, and petrochemicals", + "Agricultural production: sugar cane output (China's largest producing region), grain, fruits, aquaculture, and forestry data", + "Trade and commerce: import and export values, China-ASEAN trade flows, border trade with Vietnam, and port throughput at Beibu Gulf ports", + "Tourism statistics: visitor arrivals, tourism revenue, cross-border tourism data, hotel occupancy rates", + "Population and demographics: census data for the Zhuang and other ethnic minorities, urbanization rate, household registration", + "Fixed-asset investment: infrastructure including the New International Land-Sea Trade Corridor projects, real estate", + "Consumer prices: CPI and PPI indices for Guangxi and major cities including Nanning, Guilin, and Liuzhou", + "Guangxi Statistical Yearbook: comprehensive annual compilation of all regional statistics" + ], + "zh": [ + "GDP与经济增长:广西壮族自治区季度和年度GDP数据,按三次产业分类", + "工业生产:各行业工业产值,涵盖制糖业、有色金属冶炼、机械制造和石油化工等重点行业", + "农业生产:甘蔗产量(全国最大甘蔗产区)、粮食、水果、水产养殖和林业数据", + "贸易与商业:进出口总额、中国-东盟贸易流量、中越边境贸易及北部湾港口吞吐量", + "旅游统计:游客人数、旅游收入、跨境旅游数据和酒店入住率", + "人口与人口结构:壮族及其他少数民族人口普查数据、城镇化率、户籍人口", + "固定资产投资:西部陆海新通道建设等基础设施投资和房地产投资", + "消费价格:广西及南宁、桂林、柳州等主要城市的居民消费价格指数和工业品出厂价格", + "广西统计年鉴:全区各类统计数据的综合年度汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-gz-stats.json b/firstdata/sources/china/economy/provincial/china-gz-stats.json new file mode 100644 index 00000000..9d95ed5e --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-gz-stats.json @@ -0,0 +1,80 @@ +{ + "id": "china-gz-stats", + "name": { + "en": "Guizhou Bureau of Statistics", + "zh": "贵州省统计局" + }, + "description": { + "en": "The Guizhou Bureau of Statistics is the official statistical authority for Guizhou Province, a mountainous province in southwestern China that has experienced remarkable transformation from one of China's poorest regions to a leading hub for big data, cloud computing, and digital economy. Guizhou is also renowned for Maotai liquor production and tourism. The bureau publishes comprehensive socioeconomic statistics covering GDP, digital economy indicators, poverty alleviation outcomes, tourism revenue, industrial output, population, and agricultural data. It also releases the Guizhou Statistical Yearbook and thematic reports on big data industry development.", + "zh": "贵州省统计局是贵州省官方统计机构,贵州是中国西南部山区省份,从中国最贫困地区之一成功转型为大数据、云计算和数字经济的重要枢纽,同时以茅台酒生产和旅游业著称。统计局发布贵州省GDP、数字经济指标、脱贫攻坚成效、旅游收入、工业产值、人口和农业数据等全面社会经济统计,并出版《贵州统计年鉴》及大数据产业发展专题报告。" + }, + "website": "https://stjj.guizhou.gov.cn/", + "data_url": "https://stjj.guizhou.gov.cn/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "social", + "technology" + ], + "update_frequency": "monthly", + "tags": [ + "贵州统计", + "guizhou-statistics", + "贵州GDP", + "guizhou-gdp", + "西部大开发", + "western-china-development", + "省级统计", + "provincial-statistics", + "大数据", + "big-data", + "数字经济", + "digital-economy", + "云计算", + "cloud-computing", + "茅台", + "maotai", + "白酒", + "baijiu", + "旅游", + "tourism", + "脱贫攻坚", + "poverty-alleviation", + "统计年鉴", + "statistical-yearbook", + "人口统计", + "population-statistics", + "贵阳", + "guiyang" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Guizhou Province", + "Digital economy indicators: big data industry revenue, cloud computing capacity, data center statistics", + "Poverty alleviation outcomes: rural income growth, poverty reduction metrics, village revitalization data", + "Tourism statistics: visitor arrivals, tourism revenue, scenic area performance by region", + "Industrial production: liquor output (Maotai), phosphate chemicals, energy production statistics", + "Agricultural statistics: crop output, tobacco production, agricultural income", + "Fixed asset investment: infrastructure investment, industrial parks, tech hub development", + "Population statistics: census data, household registration, birth and death rates, urbanization", + "Employment and wages: employed persons, unemployment rate, average wages by sector", + "Guizhou Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:贵州省季度和年度GDP数据,按产业分类", + "数字经济指标:大数据产业收入、云计算容量、数据中心统计", + "脱贫攻坚成效:农村居民收入增长、减贫指标、乡村振兴数据", + "旅游统计:游客人次、旅游收入、各地景区经营情况", + "工业生产:白酒(茅台)产量、磷化工、能源生产统计", + "农业统计:粮食产量、烟草生产、农民收入", + "固定资产投资:基础设施投资、工业园区、科技园区发展", + "人口统计:人口普查数据、户籍人口、出生率和死亡率、城镇化率", + "就业与工资:从业人员数、失业率、各行业平均工资", + "贵州统计年鉴:全省各类统计数据的综合年度汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-ha-stats.json b/firstdata/sources/china/economy/provincial/china-ha-stats.json new file mode 100644 index 00000000..d5464d83 --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-ha-stats.json @@ -0,0 +1,70 @@ +{ + "id": "china-ha-stats", + "name": { + "en": "Henan Bureau of Statistics", + "zh": "河南省统计局" + }, + "description": { + "en": "The Henan Bureau of Statistics is the official statistical authority for Henan Province, China's most populous province and a major agricultural and industrial hub in central China. It publishes comprehensive socioeconomic statistics including GDP, industrial output, agricultural production, population, employment, and consumer prices for Henan. The bureau releases the Henan Statistical Yearbook and regular economic bulletins, making it an essential data source for understanding one of China's largest provincial economies.", + "zh": "河南省统计局是河南省官方统计机构,河南是中国人口最多的省份,也是中国中部重要的农业和工业重镇。统计局发布河南省GDP、工业产值、农业生产、人口、就业和居民消费价格指数等全面的社会经济统计数据,并出版《河南统计年鉴》及定期经济运行情况报告,是了解中国最大省级经济体之一的重要数据来源。" + }, + "website": "https://tjj.henan.gov.cn/", + "data_url": "https://tjj.henan.gov.cn/tjfw/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "social", + "agriculture" + ], + "update_frequency": "monthly", + "tags": [ + "河南统计", + "henan-statistics", + "河南GDP", + "henan-gdp", + "中原经济区", + "central-plains-economic-zone", + "省级统计", + "provincial-statistics", + "人口大省", + "most-populous-province", + "农业大省", + "agricultural-province", + "工业产值", + "industrial-output", + "人口统计", + "population-statistics", + "统计年鉴", + "statistical-yearbook", + "粮食产量", + "grain-output" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Henan Province", + "Industrial production: output value by industry, major products output, industrial enterprise performance", + "Agricultural statistics: crop output (grain, cotton, oil), livestock, agricultural income", + "Population statistics: census data, household registration, birth and death rates, urbanization — Henan is China's most populous province", + "Employment and wages: employed persons, labor export statistics, average wages by sector", + "Consumer prices: CPI, PPI for Henan Province and its prefecture-level cities", + "Fixed asset investment: total investment, real estate development, infrastructure construction", + "Retail and commerce: social consumer goods retail total, market data", + "Henan Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:河南省季度和年度GDP数据,按产业分类", + "工业生产:各行业工业产值、主要产品产量、工业企业经营情况", + "农业统计:粮食(粮棉油)产量、畜牧业、农民收入", + "人口统计:人口普查数据、户籍人口、出生率和死亡率、城镇化率——河南是全国人口最多的省份", + "就业与工资:从业人员数、劳动力转移输出统计、各行业平均工资", + "消费价格:河南省及各地级市居民消费价格指数、工业品出厂价格", + "固定资产投资:全省投资总额、房地产开发、基础设施建设", + "商贸消费:社会消费品零售总额、市场数据", + "河南统计年鉴:全省各类统计数据的综合年度汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-hb-stats.json b/firstdata/sources/china/economy/provincial/china-hb-stats.json new file mode 100644 index 00000000..13557dc5 --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-hb-stats.json @@ -0,0 +1,70 @@ +{ + "id": "china-hb-stats", + "name": { + "en": "Hubei Bureau of Statistics", + "zh": "湖北省统计局" + }, + "description": { + "en": "The Hubei Bureau of Statistics is the official statistical authority for Hubei Province, a major industrial and agricultural province in central China and home to the Three Gorges Dam. It publishes comprehensive socioeconomic statistics including GDP, industrial output, population, employment, consumer prices, and investment data for Hubei. The bureau also releases the Hubei Statistical Yearbook and regular economic bulletins, serving as the authoritative source for understanding central China's economic dynamics.", + "zh": "湖北省统计局是湖北省官方统计机构,湖北是中国中部重要的工业和农业省份,三峡大坝所在地。统计局发布湖北省GDP、工业产值、人口、就业、居民消费价格指数和固定资产投资等全面的社会经济统计数据,并出版《湖北统计年鉴》及定期经济运行情况报告,是了解中部地区经济发展的权威数据来源。" + }, + "website": "https://tjj.hubei.gov.cn/", + "data_url": "https://tjj.hubei.gov.cn/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "social", + "industry" + ], + "update_frequency": "monthly", + "tags": [ + "湖北统计", + "hubei-statistics", + "湖北GDP", + "hubei-gdp", + "中部崛起", + "central-china", + "省级统计", + "provincial-statistics", + "工业产值", + "industrial-output", + "三峡", + "three-gorges", + "固定资产投资", + "fixed-asset-investment", + "人口统计", + "population-statistics", + "统计年鉴", + "statistical-yearbook", + "经济运行", + "economic-performance" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Hubei Province", + "Industrial production: output value by industry, major products output, industrial enterprise performance", + "Fixed asset investment: total investment, real estate development, infrastructure investment", + "Population statistics: census data, household registration, birth and death rates, urbanization", + "Employment and wages: employed persons, unemployment rate, average wages by sector", + "Consumer prices: CPI, PPI for Hubei Province and major cities", + "Agricultural statistics: crop output, livestock, agricultural income", + "Social development: education, healthcare resources, social security coverage", + "Hubei Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:湖北省季度和年度GDP数据,按产业分类", + "工业生产:各行业工业产值、主要产品产量、工业企业经营情况", + "固定资产投资:全省投资总额、房地产开发、基础设施投资", + "人口统计:人口普查数据、户籍人口、出生率和死亡率、城镇化率", + "就业与工资:从业人员数、失业率、各行业平均工资", + "消费价格:湖北省及主要城市居民消费价格指数、工业品出厂价格", + "农业统计:粮食产量、畜牧业、农民收入", + "社会发展:教育、医疗卫生资源、社会保障覆盖率", + "湖北统计年鉴:全省各类统计数据的综合年度汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-heb-stats.json b/firstdata/sources/china/economy/provincial/china-heb-stats.json new file mode 100644 index 00000000..0d9db3bd --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-heb-stats.json @@ -0,0 +1,73 @@ +{ + "id": "china-heb-stats", + "name": { + "en": "Hebei Bureau of Statistics", + "zh": "河北省统计局" + }, + "description": { + "en": "The Hebei Bureau of Statistics is the official statistical authority for Hebei Province, which surrounds Beijing and Tianjin and is a major industrial, agricultural, and steel-producing region in northern China. It publishes comprehensive socioeconomic data including GDP, industrial output, fixed-asset investment, agricultural production, population, employment, consumer prices, and retail sales for Hebei Province. The bureau releases the Hebei Statistical Yearbook and regular monthly and quarterly economic bulletins, providing essential data for understanding the economy of this strategically important province in the Beijing-Tianjin-Hebei (Jing-Jin-Ji) integrated development region.", + "zh": "河北省统计局是河北省官方统计机构,河北省环绕北京和天津,是中国北方重要的工业、农业和钢铁生产基地。统计局发布河北省GDP、工业产值、固定资产投资、农业生产、人口、就业、居民消费价格指数和社会消费品零售总额等全面的社会经济数据,并出版《河北统计年鉴》及月度/季度经济运行情况报告,是了解京津冀一体化发展区域重要省份经济情况的关键数据来源。" + }, + "website": "https://tjj.hebei.gov.cn/", + "data_url": "https://tjj.hebei.gov.cn/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "social", + "industry" + ], + "update_frequency": "monthly", + "tags": [ + "河北统计", + "hebei-statistics", + "河北GDP", + "hebei-gdp", + "京津冀", + "beijing-tianjin-hebei", + "jing-jin-ji", + "省级统计", + "provincial-statistics", + "钢铁生产", + "steel-production", + "固定资产投资", + "fixed-asset-investment", + "农业产值", + "agricultural-output", + "统计年鉴", + "statistical-yearbook", + "工业经济", + "industrial-economy", + "居民收入", + "household-income", + "城镇化", + "urbanization" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Hebei Province", + "Industrial production: output value by industry, major product volumes, enterprise performance for key sectors including steel, chemicals, and equipment manufacturing", + "Fixed-asset investment: total investment by sector, region, and ownership type, including infrastructure and real estate", + "Agricultural production: crop output, livestock, aquaculture, and agricultural income for this major farming province", + "Population statistics: census data, household registration, birth and death rates, rural-urban migration", + "Employment and wages: employed persons by sector, urban unemployment rate, average wages", + "Consumer prices: CPI and PPI indices for Hebei and its major cities including Shijiazhuang, Tangshan, and Baoding", + "Social development: education, healthcare resources, social security coverage across the province", + "Hebei Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:河北省季度和年度GDP数据,按三次产业分类", + "工业生产:各行业工业产值、主要产品产量及企业运营情况,涵盖钢铁、化工、装备制造等重点行业", + "固定资产投资:按行业、地区和所有制性质分类的投资总额,包括基础设施和房地产投资", + "农业生产:主要农作物产量、畜牧业、水产养殖及农民收入,河北是中国重要的农业大省", + "人口统计:人口普查数据、户籍人口、出生率和死亡率、城乡人口流动", + "就业与工资:按行业分类的从业人员数、城镇失业率、平均工资水平", + "消费价格:河北省及石家庄、唐山、保定等主要城市的居民消费价格指数和工业品出厂价格", + "社会发展:全省教育、医疗卫生资源和社会保障覆盖情况", + "河北统计年鉴:全省各类统计数据的综合年度汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-hi-stats.json b/firstdata/sources/china/economy/provincial/china-hi-stats.json new file mode 100644 index 00000000..38e4edbe --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-hi-stats.json @@ -0,0 +1,76 @@ +{ + "id": "china-hi-stats", + "name": { + "en": "Hainan Bureau of Statistics", + "zh": "海南省统计局" + }, + "description": { + "en": "The Hainan Bureau of Statistics is the official statistical authority for Hainan Province, China's southernmost and smallest province by land area, located on the tropical island of Hainan. Since 2018, Hainan has been designated as China's largest free trade zone (Hainan Free Trade Port), making it a unique economic policy experiment. The bureau publishes comprehensive socioeconomic statistics covering GDP, tourism (a pillar industry), tropical agriculture, international trade, real estate, and population data. It releases the Hainan Statistical Yearbook and economic bulletins reflecting the province's rapid development as a free trade hub.", + "zh": "海南省统计局是海南省官方统计机构,海南是中国最南端、陆地面积最小的省份,位于热带岛屿。2018年以来,海南被设立为中国最大的自由贸易区(海南自由贸易港),成为独特的经济政策试验区。统计局发布海南省GDP、旅游(支柱产业)、热带农业、国际贸易、房地产和人口等全面社会经济统计数据,并出版《海南统计年鉴》及经济运行情况报告,反映该省作为自由贸易港的快速发展动态。" + }, + "website": "https://stats.hainan.gov.cn/", + "data_url": "https://stats.hainan.gov.cn/hntjj/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "trade", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "海南统计", + "hainan-statistics", + "海南GDP", + "hainan-gdp", + "省级统计", + "provincial-statistics", + "海南自由贸易港", + "hainan-free-trade-port", + "旅游统计", + "tourism-statistics", + "热带农业", + "tropical-agriculture", + "国际贸易", + "international-trade", + "三亚", + "sanya", + "海口", + "haikou", + "统计年鉴", + "statistical-yearbook", + "免税购物", + "duty-free-shopping", + "房地产", + "real-estate" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Hainan Province", + "Tourism statistics: visitor arrivals (domestic and international), tourism revenue, hotel occupancy — tourism is Hainan's pillar industry", + "Free Trade Port data: import/export volumes, duty-free retail sales, foreign investment, pilot policies statistics", + "Tropical agriculture: rubber, coconut, pepper, tropical fruit production, fishery output", + "Real estate: property development, sales area, housing prices in Haikou, Sanya, and other cities", + "Population statistics: resident population, household registration, floating population, birth and death rates", + "Consumer prices: CPI and PPI for Hainan Province and its major cities", + "Employment and wages: employed persons, service sector employment, average wages by sector", + "Fixed asset investment: infrastructure construction, industrial development zones, tourism resort investment", + "Hainan Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:海南省季度和年度GDP数据,按产业分类", + "旅游统计:国内外游客人次、旅游收入、酒店入住率——旅游是海南的支柱产业", + "自由贸易港数据:进出口量、免税零售额、外商投资、试点政策统计数据", + "热带农业:橡胶、椰子、胡椒、热带水果产量、渔业产值", + "房地产:开发面积、销售面积、海口、三亚等城市房价", + "人口统计:常住人口、户籍人口、流动人口、出生率和死亡率", + "消费价格:海南省及主要城市居民消费价格指数和工业品出厂价格", + "就业与工资:从业人员数、服务业就业情况、各行业平均工资", + "固定资产投资:基础设施建设、产业开发区、旅游度假区投资", + "海南统计年鉴:全省各类统计数据的综合年度汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-hlj-stats.json b/firstdata/sources/china/economy/provincial/china-hlj-stats.json new file mode 100644 index 00000000..898f57a7 --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-hlj-stats.json @@ -0,0 +1,78 @@ +{ + "id": "china-hlj-stats", + "name": { + "en": "Heilongjiang Bureau of Statistics", + "zh": "黑龙江省统计局" + }, + "description": { + "en": "The Heilongjiang Bureau of Statistics is the official statistical authority for Heilongjiang Province, China's northernmost province bordering Russia. Heilongjiang is known for its rich black soil farmland (China's key grain reserve base), the Daqing oilfield (one of China's largest petroleum bases), extensive forestry resources, and growing cross-border trade with Russia. The bureau publishes comprehensive socioeconomic statistics covering GDP, grain production, petroleum output, forestry, foreign trade, population, and employment. It also releases the Heilongjiang Statistical Yearbook and periodic economic bulletins.", + "zh": "黑龙江省统计局是黑龙江省官方统计机构,黑龙江是中国最北省份,与俄罗斯接壤,以肥沃黑土地(中国重要粮食储备基地)、大庆油田(中国最大石油基地之一)、丰富的森林资源及日益增长的对俄边境贸易著称。统计局发布黑龙江省GDP、粮食产量、石油产量、林业、进出口贸易、人口和就业等全面社会经济统计数据,并出版《黑龙江统计年鉴》和定期经济运行报告。" + }, + "website": "https://tjj.hlj.gov.cn/", + "data_url": "https://tjj.hlj.gov.cn/tjj/c106777/common_zfxxgk.shtml?tab=tjxx", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "social", + "agriculture" + ], + "update_frequency": "monthly", + "tags": [ + "黑龙江统计", + "heilongjiang-statistics", + "黑龙江GDP", + "heilongjiang-gdp", + "东北振兴", + "northeast-china-revitalization", + "省级统计", + "provincial-statistics", + "粮食生产", + "grain-production", + "黑土地", + "black-soil", + "大庆油田", + "daqing-oilfield", + "石油", + "petroleum", + "林业", + "forestry", + "对俄贸易", + "russia-trade", + "统计年鉴", + "statistical-yearbook", + "人口统计", + "population-statistics", + "哈尔滨", + "harbin" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Heilongjiang Province", + "Agricultural production: grain output, soybean and rice production, black soil farmland utilization", + "Energy production: Daqing oilfield output, natural gas production, coal mining statistics", + "Forestry statistics: timber output, forest area, forest industry performance", + "Industrial production: output value by industry, enterprise performance, major product output", + "Foreign trade: cross-border trade with Russia via Harbin and border ports", + "Population statistics: census data, household registration, birth and death rates, urbanization", + "Employment and wages: employed persons, unemployment rate, average wages by sector", + "Consumer prices: CPI and PPI for Heilongjiang Province and major cities", + "Heilongjiang Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:黑龙江省季度和年度GDP数据,按产业分类", + "农业生产:粮食产量、大豆和水稻产量、黑土地利用数据", + "能源生产:大庆油田产量、天然气产量、煤炭开采统计", + "林业统计:木材产量、森林面积、林业企业经营情况", + "工业生产:各行业工业产值、企业经营情况、主要产品产量", + "对外贸易:哈尔滨及各边境口岸对俄边境贸易数据", + "人口统计:人口普查数据、户籍人口、出生率和死亡率、城镇化率", + "就业与工资:从业人员数、失业率、各行业平均工资", + "消费价格:黑龙江省及主要城市居民消费价格指数、工业品出厂价格", + "黑龙江统计年鉴:全省各类统计数据的综合年度汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-hn-stats.json b/firstdata/sources/china/economy/provincial/china-hn-stats.json new file mode 100644 index 00000000..cd3437fd --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-hn-stats.json @@ -0,0 +1,70 @@ +{ + "id": "china-hn-stats", + "name": { + "en": "Hunan Bureau of Statistics", + "zh": "湖南省统计局" + }, + "description": { + "en": "The Hunan Bureau of Statistics is the official statistical authority for Hunan Province, a major agricultural and increasingly industrial province in south-central China. It publishes comprehensive socioeconomic statistics including GDP, industrial output, agricultural production, population, employment, and consumer prices for Hunan. The bureau also releases the Hunan Statistical Yearbook and monthly economic bulletins, serving as the primary data source for understanding Hunan's economic transformation and development.", + "zh": "湖南省统计局是湖南省官方统计机构,湖南是中国中南部重要的农业省份,工业化进程持续推进。统计局发布湖南省GDP、工业产值、农业生产、人口、就业和居民消费价格指数等全面的社会经济统计数据,并出版《湖南统计年鉴》及月度经济运行情况报告,是了解湖南经济转型与发展的重要数据来源。" + }, + "website": "https://tjj.hunan.gov.cn/", + "data_url": "https://tjj.hunan.gov.cn/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "social", + "agriculture" + ], + "update_frequency": "monthly", + "tags": [ + "湖南统计", + "hunan-statistics", + "湖南GDP", + "hunan-gdp", + "中南地区", + "south-central-china", + "省级统计", + "provincial-statistics", + "农业统计", + "agricultural-statistics", + "工业产值", + "industrial-output", + "人口统计", + "population-statistics", + "就业数据", + "employment-data", + "统计年鉴", + "statistical-yearbook", + "消费价格指数", + "cpi" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Hunan Province", + "Industrial production: output value by industry, major products output, industrial enterprise performance", + "Agricultural statistics: crop output, farmland usage, livestock, agricultural household income", + "Population statistics: census data, household registration, birth and death rates, urbanization", + "Employment and wages: employed persons, urban unemployment rate, average wages by sector", + "Consumer prices: CPI, PPI for Hunan Province and its prefecture-level cities", + "Fixed asset investment: total investment, real estate development, infrastructure construction", + "Retail sales: social consumer goods retail total, e-commerce data", + "Hunan Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:湖南省季度和年度GDP数据,按产业分类", + "工业生产:各行业工业产值、主要产品产量、工业企业经营情况", + "农业统计:粮食产量、耕地使用、畜牧业、农村居民收入", + "人口统计:人口普查数据、户籍人口、出生率和死亡率、城镇化率", + "就业与工资:从业人员数、城镇失业率、各行业平均工资", + "消费价格:湖南省及各地级市居民消费价格指数、工业品出厂价格", + "固定资产投资:全省投资总额、房地产开发、基础设施建设", + "社会消费:社会消费品零售总额、电子商务数据", + "湖南统计年鉴:全省各类统计数据的综合年度汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-jl-stats.json b/firstdata/sources/china/economy/provincial/china-jl-stats.json new file mode 100644 index 00000000..2b06d8b0 --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-jl-stats.json @@ -0,0 +1,76 @@ +{ + "id": "china-jl-stats", + "name": { + "en": "Jilin Bureau of Statistics", + "zh": "吉林省统计局" + }, + "description": { + "en": "The Jilin Bureau of Statistics is the official statistical authority for Jilin Province, located in northeastern China. Jilin is a critical grain-producing province (China's corn belt), home to China's leading automotive manufacturer FAW Group in Changchun, and a hub for the petrochemical industry. The bureau publishes comprehensive socioeconomic statistics including GDP, grain production, automotive output, industrial performance, population, employment, and trade data. It also releases the Jilin Statistical Yearbook and periodic economic bulletins covering the province's agricultural, industrial, and service sectors.", + "zh": "吉林省统计局是吉林省官方统计机构,吉林位于中国东北,是中国重要的粮食主产区(玉米带),拥有中国最大的汽车制造商一汽集团(长春)和重要的石化工业基地。统计局发布吉林省GDP、粮食产量、汽车产量、工业运行、人口、就业和贸易等全面的社会经济统计数据,并出版《吉林统计年鉴》和定期经济运行报告,涵盖全省农业、工业和服务业发展情况。" + }, + "website": "https://tjj.jl.gov.cn/", + "data_url": "https://tjj.jl.gov.cn/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "social", + "agriculture" + ], + "update_frequency": "monthly", + "tags": [ + "吉林统计", + "jilin-statistics", + "吉林GDP", + "jilin-gdp", + "东北振兴", + "northeast-china-revitalization", + "省级统计", + "provincial-statistics", + "粮食生产", + "grain-production", + "玉米", + "corn", + "汽车制造", + "automotive-manufacturing", + "一汽", + "faw-group", + "长春", + "changchun", + "统计年鉴", + "statistical-yearbook", + "人口统计", + "population-statistics", + "经济运行", + "economic-performance" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Jilin Province", + "Agricultural production: grain output, corn production, livestock, and agricultural income data", + "Industrial production: automotive output, petrochemical industry, output value by sector", + "Fixed asset investment: total investment, real estate development, infrastructure", + "Population statistics: census data, household registration, birth and death rates, urbanization", + "Employment and wages: employed persons, unemployment rate, average wages by sector", + "Consumer prices: CPI and PPI for Jilin Province and major cities", + "Foreign trade: exports, imports, and economic cooperation with Russia and Northeast Asia", + "Social development: education, healthcare resources, social security coverage", + "Jilin Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:吉林省季度和年度GDP数据,按产业分类", + "农业生产:粮食产量、玉米产量、畜牧业及农民收入数据", + "工业生产:汽车产量、石化工业、各行业工业产值", + "固定资产投资:全省投资总额、房地产开发、基础设施投资", + "人口统计:人口普查数据、户籍人口、出生率和死亡率、城镇化率", + "就业与工资:从业人员数、失业率、各行业平均工资", + "消费价格:吉林省及主要城市居民消费价格指数、工业品出厂价格", + "对外贸易:进出口数据及与俄罗斯、东北亚经济合作情况", + "社会发展:教育、医疗卫生资源、社会保障覆盖率", + "吉林统计年鉴:全省各类统计数据的综合年度汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-js-stats.json b/firstdata/sources/china/economy/provincial/china-js-stats.json new file mode 100644 index 00000000..3d3506a6 --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-js-stats.json @@ -0,0 +1,66 @@ +{ + "id": "china-js-stats", + "name": { + "en": "Jiangsu Bureau of Statistics", + "zh": "江苏省统计局" + }, + "description": { + "en": "The Jiangsu Bureau of Statistics is the official statistical agency for Jiangsu Province, China's second-largest provincial economy by GDP and a key manufacturing, technology, and export hub in the Yangtze River Delta region. It publishes authoritative statistics on Jiangsu's economic performance, including GDP, industrial output, fixed asset investment, retail consumption, foreign direct investment, rural and urban household income, and demographic indicators. The Jiangsu Statistical Yearbook and regular economic bulletins provide comprehensive coverage of one of China's wealthiest and most dynamic provinces.", + "zh": "江苏省统计局是江苏省官方统计机构,江苏是中国GDP总量第二大省份,是长三角地区重要的制造业、科技和出口基地。统计局发布江苏经济运行权威数据,涵盖GDP、工业产值、固定资产投资、社会消费品零售总额、外商直接投资、城乡居民收入及人口指标。《江苏统计年鉴》和定期经济运行公报全面展示了中国最富裕、最具活力省份之一的发展情况。" + }, + "website": "https://tj.jiangsu.gov.cn/", + "data_url": "https://tj.jiangsu.gov.cn/col/col85273/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "social", + "industry" + ], + "update_frequency": "monthly", + "tags": [ + "江苏统计", + "jiangsu-statistics", + "江苏GDP", + "jiangsu-gdp", + "长三角", + "yangtze-river-delta", + "省级统计", + "provincial-statistics", + "制造业", + "manufacturing", + "固定资产投资", + "fixed-asset-investment", + "外商投资", + "fdi", + "居民收入", + "household-income", + "统计年鉴", + "statistical-yearbook" + ], + "data_content": { + "en": [ + "GDP and value-added output: quarterly and annual gross domestic product by industry and expenditure approach for Jiangsu", + "Industrial enterprises: output value, profits, assets, and liabilities of industrial enterprises above designated size", + "Fixed asset investment: total investment, by sector, source of funding, and construction type", + "Foreign trade and investment: import/export statistics, FDI inflows by industry and country of origin", + "Retail and services: total retail sales of consumer goods, e-commerce, and services sector growth", + "Population and labor: census data, labor force participation, registered unemployment, migrant workers", + "Urban-rural income: per capita disposable income, consumption expenditure by urban and rural households", + "Jiangsu Statistical Yearbook: annual comprehensive statistical publication covering all provincial data" + ], + "zh": [ + "GDP与增加值:江苏省按产业和支出法核算的季度和年度地区生产总值", + "工业企业:规模以上工业企业的产值、利润、资产及负债情况", + "固定资产投资:按行业、资金来源和建设类型分类的总投资情况", + "对外贸易与投资:进出口统计、按行业和来源国分类的外商直接投资", + "消费与服务:社会消费品零售总额、电子商务及服务业增长", + "人口与劳动力:普查数据、劳动力参与率、登记失业率、外来务工人员", + "城乡收入:城乡居民人均可支配收入、消费支出情况", + "江苏统计年鉴:涵盖全省各类数据的综合年度统计出版物" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-jx-stats.json b/firstdata/sources/china/economy/provincial/china-jx-stats.json new file mode 100644 index 00000000..1220d7bd --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-jx-stats.json @@ -0,0 +1,74 @@ +{ + "id": "china-jx-stats", + "name": { + "en": "Jiangxi Bureau of Statistics", + "zh": "江西省统计局" + }, + "description": { + "en": "The Jiangxi Bureau of Statistics is the official statistical authority for Jiangxi Province, a landlocked province in southeastern China known for its rare earth resources, copper mining, and growing manufacturing sector. It publishes comprehensive socioeconomic data including GDP, industrial output, fixed-asset investment, agricultural production, population, employment, and consumer prices for Jiangxi Province. The bureau releases the Jiangxi Statistical Yearbook and regular economic bulletins, providing key data for tracking the province's economic transformation from a resource-based economy toward advanced manufacturing, electronics, and logistics.", + "zh": "江西省统计局是江西省官方统计机构,江西省位于中国东南内陆,以稀土资源、铜矿采掘和新兴制造业著称。统计局发布江西省GDP、工业产值、固定资产投资、农业生产、人口、就业及居民消费价格指数等全面的社会经济数据,并出版《江西统计年鉴》及定期经济情况报告,为追踪江西省从资源型经济向先进制造业、电子产业和物流业转型提供关键数据。" + }, + "website": "https://tjj.jiangxi.gov.cn/", + "data_url": "https://tjj.jiangxi.gov.cn/jxstjj/col/col40939/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "social", + "resources" + ], + "update_frequency": "monthly", + "tags": [ + "江西统计", + "jiangxi-statistics", + "江西GDP", + "jiangxi-gdp", + "省级统计", + "provincial-statistics", + "稀土", + "rare-earth", + "铜矿", + "copper-mining", + "统计年鉴", + "statistical-yearbook", + "固定资产投资", + "fixed-asset-investment", + "工业经济", + "industrial-economy", + "先进制造业", + "advanced-manufacturing", + "电子信息产业", + "electronics-industry", + "居民收入", + "household-income", + "农业产值", + "agricultural-output" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Jiangxi Province", + "Industrial production: output value by industry including key sectors such as rare earth processing, copper smelting, electronics, and automotive parts", + "Fixed-asset investment: total investment by sector and ownership type, including infrastructure, manufacturing, and real estate", + "Agricultural production: crop output, forestry, livestock, and aquaculture data for this traditional agricultural province", + "Population and demographics: census data, household registration, birth and death rates, urbanization rate", + "Employment and wages: employed persons by industry, urban unemployment rate, average wages by sector", + "Consumer prices: CPI and PPI indices for Jiangxi and major cities including Nanchang, Ganzhou, and Jingdezhen", + "Foreign trade and investment: import and export values, foreign direct investment by sector", + "Jiangxi Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:江西省季度和年度GDP数据,按三次产业分类", + "工业生产:各行业工业产值,涵盖稀土加工、铜冶炼、电子信息、汽车零部件等重点行业产量", + "固定资产投资:按行业和所有制分类的投资总额,包括基础设施、制造业和房地产投资", + "农业生产:农作物产量、林业、畜牧业和水产养殖数据,江西是传统农业大省", + "人口与人口结构:人口普查数据、户籍人口、出生率和死亡率、城镇化率", + "就业与工资:按行业分类的从业人员数、城镇失业率、各行业平均工资", + "消费价格:江西省及南昌、赣州、景德镇等主要城市的居民消费价格指数和工业品出厂价格", + "对外贸易与投资:进出口总额、按行业分类的外商直接投资", + "江西统计年鉴:全省各类统计数据的综合年度汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-ln-stats.json b/firstdata/sources/china/economy/provincial/china-ln-stats.json new file mode 100644 index 00000000..7947b75c --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-ln-stats.json @@ -0,0 +1,78 @@ +{ + "id": "china-ln-stats", + "name": { + "en": "Liaoning Bureau of Statistics", + "zh": "辽宁省统计局" + }, + "description": { + "en": "The Liaoning Bureau of Statistics is the official statistical authority for Liaoning Province, a major northeastern industrial base in China known for heavy industry, steel production, petrochemicals, and defense manufacturing. Key cities include Shenyang and Dalian. The bureau publishes comprehensive socioeconomic statistics covering GDP, industrial output, fixed asset investment, trade, employment, and population data for Liaoning. It also releases the Liaoning Statistical Yearbook, monthly economic bulletins, and special thematic reports on industrial and urban development.", + "zh": "辽宁省统计局是辽宁省官方统计机构,辽宁是中国重要的东北老工业基地,以重工业、钢铁、石化和国防工业著称,主要城市包括沈阳和大连。统计局发布辽宁省GDP、工业产值、固定资产投资、进出口贸易、就业和人口等全面的社会经济统计数据,并出版《辽宁统计年鉴》、每月经济运行报告及专项统计报告。" + }, + "website": "https://tjj.ln.gov.cn/", + "data_url": "https://tjj.ln.gov.cn/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "social", + "industry" + ], + "update_frequency": "monthly", + "tags": [ + "辽宁统计", + "liaoning-statistics", + "辽宁GDP", + "liaoning-gdp", + "东北振兴", + "northeast-china-revitalization", + "省级统计", + "provincial-statistics", + "重工业", + "heavy-industry", + "钢铁生产", + "steel-production", + "石化工业", + "petrochemical-industry", + "固定资产投资", + "fixed-asset-investment", + "人口统计", + "population-statistics", + "统计年鉴", + "statistical-yearbook", + "经济运行", + "economic-performance", + "沈阳", + "shenyang", + "大连", + "dalian" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Liaoning Province", + "Industrial production: output value by industry, major products output, industrial enterprise performance", + "Fixed asset investment: total investment, real estate development, infrastructure investment", + "Foreign trade: exports and imports data for Liaoning's open ports and special economic zones", + "Population statistics: census data, household registration, birth and death rates, urbanization", + "Employment and wages: employed persons, unemployment rate, average wages by sector", + "Consumer prices: CPI, PPI for Liaoning Province and major cities", + "Agricultural statistics: crop output, livestock, fishery production", + "Social development: education, healthcare resources, social security coverage", + "Liaoning Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:辽宁省季度和年度GDP数据,按产业分类", + "工业生产:各行业工业产值、主要产品产量、工业企业经营情况", + "固定资产投资:全省投资总额、房地产开发、基础设施投资", + "对外贸易:辽宁省各开放口岸和特殊经济区进出口数据", + "人口统计:人口普查数据、户籍人口、出生率和死亡率、城镇化率", + "就业与工资:从业人员数、失业率、各行业平均工资", + "消费价格:辽宁省及主要城市居民消费价格指数、工业品出厂价格", + "农业统计:粮食产量、畜牧业、渔业生产", + "社会发展:教育、医疗卫生资源、社会保障覆盖率", + "辽宁统计年鉴:全省各类统计数据的综合年度汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-nanchang-stats.json b/firstdata/sources/china/economy/provincial/china-nanchang-stats.json new file mode 100644 index 00000000..604ae9aa --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-nanchang-stats.json @@ -0,0 +1,70 @@ +{ + "id": "china-nanchang-stats", + "name": { + "en": "Nanchang Bureau of Statistics", + "zh": "南昌市统计局" + }, + "description": { + "en": "The Nanchang Bureau of Statistics is the official statistical authority for Nanchang, the capital of Jiangxi Province in southeastern China. Nanchang is a major industrial and transportation hub known for its aviation, electronics, and automobile manufacturing sectors. The bureau publishes comprehensive socioeconomic data including GDP, industrial output, investment, consumption, employment, and population statistics for Nanchang Municipality, and releases the Nanchang Statistical Yearbook and periodic economic bulletins.", + "zh": "南昌市统计局是南昌市官方统计机构,南昌是江西省省会,位于中国东南部,是重要的工业和交通枢纽,以航空、电子和汽车制造业著称。统计局发布南昌市GDP、工业产值、投资、消费、就业和人口等全面的社会经济数据,出版《南昌统计年鉴》及定期经济运行情况报告。" + }, + "website": "http://tjj.nc.gov.cn", + "data_url": "http://tjj.nc.gov.cn/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "economics", + "statistics", + "industry", + "social" + ], + "geographic_scope": "subnational", + "update_frequency": "monthly", + "tags": [ + "南昌统计", + "nanchang-statistics", + "南昌GDP", + "nanchang-gdp", + "江西经济", + "jiangxi-economy", + "南昌统计年鉴", + "nanchang-statistical-yearbook", + "航空产业", + "aviation-industry", + "汽车制造", + "automobile-manufacturing", + "电子产业", + "electronics-industry", + "固定资产投资", + "fixed-asset-investment", + "城镇化", + "urbanization", + "中部崛起", + "central-china-rise" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Nanchang", + "Industrial production: output from key sectors including aviation, electronics, and automobile manufacturing", + "Fixed asset investment: total investment by industry, infrastructure, and real estate development", + "Retail and consumption: total retail sales of consumer goods, consumer price index", + "Employment and wages: employed persons, urban unemployment rate, average wages", + "Population: resident population, household registration data, urbanization rate", + "Foreign trade and investment: export/import volumes, utilized FDI", + "Nanchang Statistical Yearbook: comprehensive annual compilation of municipal statistics", + "Monthly economic bulletins: key economic indicators and trend analysis" + ], + "zh": [ + "GDP与经济增长:南昌市按产业分类的季度和年度GDP数据", + "工业生产:航空、电子和汽车制造等重点产业产值", + "固定资产投资:分行业、基础设施和房地产开发总投资额", + "消费与零售:社会消费品零售总额、居民消费价格指数", + "就业与工资:从业人员数、城镇登记失业率、平均工资", + "人口:常住人口、户籍人口数据、城镇化率", + "对外贸易与投资:进出口总额、实际利用外商直接投资", + "南昌统计年鉴:全市各类统计数据综合年度汇编", + "月度经济形势报告:主要经济指标及趋势分析" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-nanjing-stats.json b/firstdata/sources/china/economy/provincial/china-nanjing-stats.json new file mode 100644 index 00000000..2e4db84b --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-nanjing-stats.json @@ -0,0 +1,72 @@ +{ + "id": "china-nanjing-stats", + "name": { + "en": "Nanjing Bureau of Statistics", + "zh": "南京市统计局" + }, + "description": { + "en": "The Nanjing Bureau of Statistics is the official statistical authority for Nanjing, the capital of Jiangsu Province and one of China's most historically significant cities. As a key node of the Yangtze River Delta economic cluster, Nanjing is a major center for advanced manufacturing, higher education, and digital economy. The bureau publishes comprehensive socioeconomic statistics covering GDP, industrial output, innovation indicators, employment, and population for Nanjing. It releases the Nanjing Statistical Yearbook and periodic economic bulletins, serving as the authoritative source for this rapidly growing new-economy metropolis in eastern China.", + "zh": "南京市统计局是南京市官方统计机构。南京是江苏省省会,是中国历史最悠久的城市之一,也是长三角城市群的重要节点。南京是先进制造业、高等教育和数字经济的重要中心。统计局发布南京市GDP、工业产值、创新指标、就业及人口等全面的社会经济统计数据,出版《南京统计年鉴》及定期经济运行情况报告,是了解华东地区这一快速发展新经济都市的权威数据来源。" + }, + "website": "https://tjj.nanjing.gov.cn/", + "data_url": "https://tjj.nanjing.gov.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "industry", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "南京统计", + "nanjing-statistics", + "南京GDP", + "nanjing-gdp", + "长三角", + "yangtze-river-delta", + "江苏经济", + "jiangsu-economy", + "南京统计年鉴", + "nanjing-statistical-yearbook", + "数字经济", + "digital-economy", + "集成电路", + "integrated-circuits", + "新能源汽车", + "new-energy-vehicles", + "高校城市", + "university-city", + "先进制造业", + "advanced-manufacturing" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Nanjing", + "Industrial production: output from strategic industries including integrated circuits, new energy vehicles, biomedicine, and aerospace", + "Digital economy: software and information technology services revenue, digital industry output", + "Innovation indicators: R&D expenditure, patents granted, high-tech enterprise count", + "Fixed asset investment: total investment, infrastructure, real estate development, industrial projects", + "Retail and consumption: total retail sales of consumer goods, consumer price index", + "Employment and wages: employed persons, urban unemployment rate, average wages by sector", + "Population: resident population, household registration, urbanization rate", + "Foreign trade and investment: export/import volumes, actually utilized FDI", + "Nanjing Statistical Yearbook: comprehensive annual compilation of all municipal statistics" + ], + "zh": [ + "GDP与经济增长:南京市按产业分类的季度和年度GDP数据", + "工业生产:集成电路、新能源汽车、生物医药、航空航天等战略性产业产值", + "数字经济:软件和信息技术服务业营业收入、数字产业产值", + "创新指标:研发经费支出、专利授权量、高新技术企业数量", + "固定资产投资:全市总投资额、基础设施、房地产开发、工业项目投资", + "消费与零售:社会消费品零售总额、居民消费价格指数", + "就业与工资:从业人员数、城镇登记失业率、各行业平均工资", + "人口:常住人口、户籍人口、城镇化率", + "对外贸易与投资:进出口总额、实际利用外商直接投资", + "南京统计年鉴:全市各类统计数据的综合年度汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-nm-stats.json b/firstdata/sources/china/economy/provincial/china-nm-stats.json new file mode 100644 index 00000000..92546dfb --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-nm-stats.json @@ -0,0 +1,80 @@ +{ + "id": "china-nm-stats", + "name": { + "en": "Inner Mongolia Bureau of Statistics", + "zh": "内蒙古自治区统计局" + }, + "description": { + "en": "The Inner Mongolia Bureau of Statistics is the official statistical authority for the Inner Mongolia Autonomous Region, China's third largest administrative division and a vast steppe-dominated autonomous region in northern China bordering Russia and Mongolia. Inner Mongolia is China's largest producer of coal, rare earth elements, and cashmere, and a leading region for wind and solar power generation. The bureau publishes comprehensive socioeconomic statistics covering GDP, energy and mineral production, animal husbandry, new energy capacity, population (including Mongolian ethnic minority data), and ecological conservation outcomes. It also releases the Inner Mongolia Statistical Yearbook.", + "zh": "内蒙古自治区统计局是内蒙古自治区官方统计机构,内蒙古是中国第三大行政区划,是北接俄罗斯和蒙古国的广袤草原自治区。内蒙古是全国最大的煤炭、稀土和羊绒产地,也是风能和太阳能发电的领先地区。统计局发布内蒙古GDP、能源和矿产产量、畜牧业、新能源装机容量、人口(含蒙古族少数民族数据)及生态保护成效等全面社会经济统计,并出版《内蒙古统计年鉴》。" + }, + "website": "http://tj.nmg.gov.cn", + "data_url": "http://tj.nmg.gov.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "energy", + "agriculture" + ], + "update_frequency": "monthly", + "tags": [ + "内蒙古统计", + "inner-mongolia-statistics", + "内蒙古GDP", + "inner-mongolia-gdp", + "省级统计", + "provincial-statistics", + "煤炭", + "coal", + "稀土", + "rare-earth", + "风能", + "wind-energy", + "太阳能", + "solar-energy", + "新能源", + "new-energy", + "羊绒", + "cashmere", + "畜牧业", + "animal-husbandry", + "草原", + "steppe", + "蒙古族", + "mongolian-ethnic", + "统计年鉴", + "statistical-yearbook", + "呼和浩特", + "hohhot" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Inner Mongolia", + "Coal production: annual and monthly coal output, making Inner Mongolia China's top coal-producing region", + "Rare earth industry: extraction volume, smelting output, and processing statistics for rare earth elements", + "New energy statistics: wind power installed capacity and generation, solar photovoltaic capacity and output", + "Animal husbandry: livestock population (sheep, cattle, horses), wool and cashmere production, dairy output", + "Industrial output: energy and chemical industries, metallurgy, equipment manufacturing statistics", + "Agricultural statistics: grain output, grassland area, desertification control outcomes", + "Population statistics: total population, Mongolian and other ethnic minority population data, urbanization", + "Employment and wages: employed persons, unemployment rate, average wages by sector", + "Inner Mongolia Statistical Yearbook: comprehensive annual compilation of all regional statistics" + ], + "zh": [ + "GDP与经济增长:内蒙古季度和年度GDP数据,按产业分类", + "煤炭生产:年度及月度煤炭产量,内蒙古是全国最大煤炭产区", + "稀土产业:稀土开采量、冶炼产量及加工统计", + "新能源统计:风电装机容量和发电量、光伏装机容量和发电量", + "畜牧业:牲畜存栏量(羊、牛、马)、羊毛和羊绒产量、乳品产量", + "工业产值:能源和化工、冶金、装备制造业统计", + "农业统计:粮食产量、草原面积、荒漠化治理成效", + "人口统计:全区人口、蒙古族及其他少数民族人口数据、城镇化率", + "就业与工资:从业人员数、失业率、各行业平均工资", + "内蒙古统计年鉴:全区各类统计数据的综合年度汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-nx-stats.json b/firstdata/sources/china/economy/provincial/china-nx-stats.json new file mode 100644 index 00000000..ceb15ec4 --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-nx-stats.json @@ -0,0 +1,76 @@ +{ + "id": "china-nx-stats", + "name": { + "en": "Ningxia Bureau of Statistics", + "zh": "宁夏回族自治区统计局" + }, + "description": { + "en": "The Ningxia Bureau of Statistics is the official statistical authority for the Ningxia Hui Autonomous Region, China's only provincial-level administrative region for the Hui Muslim ethnic group. Located in northwestern China along the upper Yellow River, Ningxia is a key producer of coal, natural gas, and chemicals, and is also emerging as a major wine region (Helan Mountain). The bureau publishes comprehensive socioeconomic statistics covering GDP, industrial output (especially energy and chemicals), agricultural production (including wolfberry cultivation), population, employment, and consumer prices. It releases the Ningxia Statistical Yearbook and regular economic bulletins.", + "zh": "宁夏回族自治区统计局是宁夏回族自治区的官方统计机构,宁夏是中国唯一的回族省级行政区划,位于中国西北部黄河上游地区。宁夏是重要的煤炭、天然气和化工产品生产基地,同时也是新兴葡萄酒产区(贺兰山东麓)。统计局发布宁夏GDP、工业产值(尤其是能源和化工)、农业生产(包括枸杞种植)、人口、就业和居民消费价格指数等全面社会经济统计,并出版《宁夏统计年鉴》及定期经济运行情况报告。" + }, + "website": "https://tj.nx.gov.cn/", + "data_url": "https://tj.nx.gov.cn/tjsj_htr/jdsj_htr/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "energy", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "宁夏统计", + "ningxia-statistics", + "宁夏GDP", + "ningxia-gdp", + "省级统计", + "provincial-statistics", + "回族自治区", + "hui-autonomous-region", + "能源生产", + "energy-production", + "煤炭", + "coal", + "化工", + "chemicals", + "枸杞", + "wolfberry", + "贺兰山葡萄酒", + "helan-mountain-wine", + "黄河流域", + "yellow-river-basin", + "统计年鉴", + "statistical-yearbook", + "西部大开发", + "western-china-development" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Ningxia Hui Autonomous Region", + "Energy production: coal output, natural gas extraction, electricity generation, and renewable energy data", + "Industrial output: chemical industry, non-ferrous metals, equipment manufacturing, and energy sector statistics", + "Agricultural statistics: wolfberry (Ningxia is the world's largest wolfberry producer), grain output, livestock, wine grapes", + "Population and ethnic statistics: census data including Hui Muslim population, household registration, urbanization rates", + "Employment and wages: employed persons, unemployment rate, average wages by sector", + "Consumer prices: CPI and PPI for Ningxia and its prefecture-level cities (Yinchuan, Shizuishan, Wuzhong, etc.)", + "Fixed asset investment: total investment by sector, infrastructure construction, industry development zones", + "Trade and commerce: imports and exports through border ports, social consumer goods retail total", + "Ningxia Statistical Yearbook: comprehensive annual compilation of all regional statistics" + ], + "zh": [ + "GDP与经济增长:宁夏回族自治区季度和年度GDP数据,按产业分类", + "能源生产:煤炭产量、天然气开采量、发电量及新能源数据", + "工业产值:化工、有色金属、装备制造、能源行业统计数据", + "农业统计:枸杞产量(宁夏是全球最大枸杞产区)、粮食产量、畜牧业、酿酒葡萄", + "人口与民族统计:含回族人口数量的普查数据、户籍人口、城镇化率", + "就业与工资:从业人员数、失业率、各行业平均工资", + "消费价格:宁夏及各地级市(银川、石嘴山、吴忠等)居民消费价格指数和工业品出厂价格", + "固定资产投资:各行业投资总额、基础设施建设、产业开发区发展", + "贸易与商业:口岸进出口数据、社会消费品零售总额", + "宁夏统计年鉴:全区各类统计数据的综合年度汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-qh-stats.json b/firstdata/sources/china/economy/provincial/china-qh-stats.json new file mode 100644 index 00000000..bbf381f5 --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-qh-stats.json @@ -0,0 +1,84 @@ +{ + "id": "china-qh-stats", + "name": { + "en": "Qinghai Bureau of Statistics", + "zh": "青海省统计局" + }, + "description": { + "en": "The Qinghai Bureau of Statistics is the official statistical authority for Qinghai Province, China's fourth largest province by area, located on the northeastern Tibetan Plateau at an average elevation exceeding 3,000 meters. Qinghai is the source of the Yangtze, Yellow, and Mekong rivers — earning it the title of 'China's Water Tower' — and is a critical ecological conservation zone. The province is rich in lithium, potassium, and other strategic minerals, and is emerging as a leader in clean energy production. The bureau publishes comprehensive socioeconomic statistics covering GDP, lithium and potash mining, clean energy generation (solar, wind, hydro), ecological indicators, animal husbandry, and population data for this ethnically diverse plateau region. It also releases the Qinghai Statistical Yearbook.", + "zh": "青海省统计局是青海省官方统计机构,青海是中国第四大省份,位于青藏高原东北部,平均海拔超过3000米。青海是长江、黄河和澜沧江的发源地,被誉为\"中华水塔\",是重要的生态保护区。青海富含锂、钾盐等战略矿产,同时正成为清洁能源生产的领先地区。统计局发布青海省GDP、锂矿和钾盐开采、清洁能源发电(太阳能、风能、水电)、生态指标、畜牧业及这一多民族高原地区人口数据等全面社会经济统计,并出版《青海统计年鉴》。" + }, + "website": "https://tjj.qinghai.gov.cn/", + "data_url": "https://tjj.qinghai.gov.cn/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "energy", + "environment" + ], + "update_frequency": "monthly", + "tags": [ + "青海统计", + "qinghai-statistics", + "青海GDP", + "qinghai-gdp", + "省级统计", + "provincial-statistics", + "中华水塔", + "china-water-tower", + "青藏高原", + "tibetan-plateau", + "锂矿", + "lithium", + "钾盐", + "potash", + "清洁能源", + "clean-energy", + "太阳能", + "solar-energy", + "水电", + "hydropower", + "生态保护", + "ecological-conservation", + "畜牧业", + "animal-husbandry", + "长江源", + "yangtze-river-source", + "黄河源", + "yellow-river-source", + "统计年鉴", + "statistical-yearbook", + "西宁", + "xining" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Qinghai Province", + "Lithium and strategic minerals: lithium carbonate output, potash (potassium chloride) mining and export volumes", + "Clean energy generation: solar power installed capacity and output, wind power, hydropower generation statistics", + "Ecological indicators: water quality of Yangtze/Yellow/Mekong river sources, grassland coverage, wetland area", + "Animal husbandry: yak, sheep, and Tibetan antelope population data, wool and dairy production", + "Industrial output: salt lake chemical industry, non-ferrous metals processing, new materials manufacturing", + "Agricultural statistics: barley (highland barley/qingke), cold-climate vegetables, medicinal herbs", + "Population statistics: census data, Tibetan, Hui, and other ethnic minority population composition", + "Employment and wages: employed persons, unemployment rate, average wages by sector", + "Qinghai Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:青海省季度和年度GDP数据,按产业分类", + "锂矿及战略矿产:碳酸锂产量、钾盐(氯化钾)开采和出口量", + "清洁能源发电:光伏装机容量和发电量、风电、水力发电统计", + "生态指标:长江/黄河/澜沧江源头水质、草地覆盖率、湿地面积", + "畜牧业:牦牛、绵羊和藏羚羊种群数据、羊毛和乳品产量", + "工业产值:盐湖化工产业、有色金属加工、新材料制造", + "农业统计:青稞(高原大麦)、高原蔬菜、中药材", + "人口统计:人口普查数据、藏族、回族及其他少数民族人口构成", + "就业与工资:从业人员数、失业率、各行业平均工资", + "青海统计年鉴:全省各类统计数据的综合年度汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-qingdao-stats.json b/firstdata/sources/china/economy/provincial/china-qingdao-stats.json new file mode 100644 index 00000000..fab769d1 --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-qingdao-stats.json @@ -0,0 +1,76 @@ +{ + "id": "china-qingdao-stats", + "name": { + "en": "Qingdao Bureau of Statistics", + "zh": "青岛市统计局" + }, + "description": { + "en": "The Qingdao Bureau of Statistics is the official statistical authority for Qingdao, a coastal metropolis in Shandong Province and one of China's most important port cities. Qingdao is a major hub for maritime trade, advanced manufacturing, marine research, and digital economy, home to major global companies including Haier and Hisense. The bureau publishes comprehensive socioeconomic statistics covering GDP, industrial output, port throughput, foreign trade, fixed asset investment, consumption, population, and employment. It releases the Qingdao Statistical Yearbook and periodic reports on the city's development as a pilot free trade zone and key node in China's maritime economy and Blue Economy strategy.", + "zh": "青岛市统计局是青岛市的官方统计机构,青岛是山东省的沿海大城市,是中国重要的港口城市之一,也是海洋贸易、先进制造业、海洋科研和数字经济的重要枢纽,海尔、海信等全球知名企业的总部均设于此。统计局发布青岛市GDP、工业产值、港口吞吐量、对外贸易、固定资产投资、消费、人口和就业等全面的社会经济统计数据,出版《青岛统计年鉴》及青岛作为自由贸易试验区、海洋经济和蓝色经济发展战略重要节点城市的定期报告。" + }, + "website": "http://qdtj.qingdao.gov.cn/", + "data_url": "http://qdtj.qingdao.gov.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "trade", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "青岛统计", + "qingdao-statistics", + "青岛GDP", + "qingdao-gdp", + "山东经济", + "shandong-economy", + "青岛统计年鉴", + "qingdao-statistical-yearbook", + "港口", + "port", + "海洋经济", + "marine-economy", + "蓝色经济", + "blue-economy", + "自由贸易区", + "free-trade-zone", + "海尔", + "haier", + "先进制造", + "advanced-manufacturing", + "对外贸易", + "foreign-trade", + "港口吞吐量", + "port-throughput" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Qingdao municipality", + "Industrial production: output from key industries including home appliances, rail transit equipment, new energy vehicles, and biomedicine", + "Port and trade statistics: cargo throughput, container volumes, and foreign trade import/export data", + "Marine economy: output value of marine industries, fisheries production, and marine science and technology indicators", + "Fixed asset investment: total investment, infrastructure, real estate development, and industrial project data", + "Retail and consumption: total retail sales of consumer goods, consumer price index, and e-commerce", + "Employment and wages: employed persons, urban unemployment rate, and average wages by sector", + "Population: resident population, household registration, and urbanization indicators", + "Qingdao Statistical Yearbook: comprehensive annual compilation covering all economic and social statistics", + "Free trade zone data: Qingdao Pilot Free Trade Zone economic performance and trade facilitation indicators" + ], + "zh": [ + "GDP与经济增长:青岛市按产业分类的季度和年度GDP数据", + "工业生产:家电、轨道交通装备、新能源汽车、生物医药等重点产业产值", + "港口与贸易统计:货物吞吐量、集装箱量和进出口贸易数据", + "海洋经济:海洋产业总产值、渔业生产量和海洋科技指标", + "固定资产投资:全市总投资、基础设施、房地产开发和工业项目数据", + "消费与零售:社会消费品零售总额、居民消费价格指数和电子商务", + "就业与工资:从业人员数、城镇登记失业率和各行业平均工资", + "人口:常住人口、户籍人口和城镇化指标", + "青岛统计年鉴:涵盖所有经济和社会统计数据的综合年度汇编", + "自由贸易区数据:中国(山东)自由贸易试验区青岛片区经济运行及贸易便利化指标" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-sc-stats.json b/firstdata/sources/china/economy/provincial/china-sc-stats.json new file mode 100644 index 00000000..596048d9 --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-sc-stats.json @@ -0,0 +1,70 @@ +{ + "id": "china-sc-stats", + "name": { + "en": "Sichuan Bureau of Statistics", + "zh": "四川省统计局" + }, + "description": { + "en": "The Sichuan Bureau of Statistics is the official statistical authority for Sichuan Province, a major western China province known for its large population, significant industrial base, and strategic importance as a gateway to southwest China. It publishes comprehensive socioeconomic statistics including GDP, industrial output, agricultural production, population, employment, and consumer prices for Sichuan. The bureau releases the Sichuan Statistical Yearbook and regular economic bulletins, making it a key data source for understanding western China's largest provincial economy.", + "zh": "四川省统计局是四川省官方统计机构,四川是西部大省,以庞大的人口规模、重要的工业基础和作为西南地区门户的战略地位而著称。统计局发布四川省GDP、工业产值、农业生产、人口、就业和居民消费价格指数等全面的社会经济统计数据,并出版《四川统计年鉴》及定期经济运行情况报告,是了解西部最大省级经济体的重要数据来源。" + }, + "website": "https://tjj.sc.gov.cn/", + "data_url": "https://tjj.sc.gov.cn/scstjj/c112124/sjcx.shtml", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "social", + "industry" + ], + "update_frequency": "monthly", + "tags": [ + "四川统计", + "sichuan-statistics", + "四川GDP", + "sichuan-gdp", + "西部大开发", + "western-china-development", + "省级统计", + "provincial-statistics", + "成都经济圈", + "chengdu-economic-circle", + "工业产值", + "industrial-output", + "农业统计", + "agricultural-statistics", + "人口统计", + "population-statistics", + "统计年鉴", + "statistical-yearbook", + "成渝地区双城经济圈", + "chengdu-chongqing-dual-city-economic-circle" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Sichuan Province", + "Industrial production: output value by industry, major products output, industrial enterprise performance including defense and aerospace industries", + "Agricultural statistics: crop output, livestock, agricultural income — Sichuan is a major grain and pork producer", + "Fixed asset investment: total investment, real estate development, infrastructure construction", + "Population statistics: census data, household registration, birth and death rates, urbanization — Sichuan is one of China's most populous provinces", + "Employment and wages: employed persons, labor migration, average wages by sector", + "Consumer prices: CPI, PPI for Sichuan Province and Chengdu metropolitan area", + "Energy and resources: natural gas production and consumption, hydropower statistics", + "Sichuan Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:四川省季度和年度GDP数据,按产业分类", + "工业生产:各行业工业产值、主要产品产量、工业企业经营情况,包括国防和航空航天产业", + "农业统计:粮食产量、畜牧业(四川是主要粮食和生猪产地)、农民收入", + "固定资产投资:全省投资总额、房地产开发、基础设施建设", + "人口统计:人口普查数据、户籍人口、出生率和死亡率、城镇化率——四川是全国人口大省之一", + "就业与工资:从业人员数、劳动力转移统计、各行业平均工资", + "消费价格:四川省及成都都市圈居民消费价格指数、工业品出厂价格", + "能源与资源:天然气生产和消费、水电统计数据", + "四川统计年鉴:全省各类统计数据的综合年度汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-sd-stats.json b/firstdata/sources/china/economy/provincial/china-sd-stats.json new file mode 100644 index 00000000..ff597bca --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-sd-stats.json @@ -0,0 +1,70 @@ +{ + "id": "china-sd-stats", + "name": { + "en": "Shandong Bureau of Statistics", + "zh": "山东省统计局" + }, + "description": { + "en": "The Shandong Bureau of Statistics is the official statistical authority for Shandong Province, one of China's most economically significant provinces and a leading hub for manufacturing, agriculture, and coastal trade. It publishes comprehensive socioeconomic statistics including GDP, industrial output, agricultural production, trade, and population data for Shandong. The bureau also releases the Shandong Statistical Yearbook and regular economic bulletins, serving as a critical data source for understanding one of China's top-three provincial economies.", + "zh": "山东省统计局是山东省官方统计机构,山东是中国经济总量前三的重要省份,制造业、农业和沿海贸易的重要枢纽。统计局发布山东省GDP、工业产值、农业生产、对外贸易和人口统计等全面数据,并出版《山东统计年鉴》及定期经济运行情况报告,是了解中国最重要省级经济体之一的权威数据来源。" + }, + "website": "https://tjj.shandong.gov.cn/", + "data_url": "https://tjj.shandong.gov.cn/col/col8456/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "social", + "trade" + ], + "update_frequency": "monthly", + "tags": [ + "山东统计", + "shandong-statistics", + "山东GDP", + "shandong-gdp", + "黄河流域", + "yellow-river-basin", + "省级统计", + "provincial-statistics", + "制造业", + "manufacturing", + "农业统计", + "agricultural-statistics", + "对外贸易", + "foreign-trade", + "人口统计", + "population-statistics", + "统计年鉴", + "statistical-yearbook", + "工业产值", + "industrial-output" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Shandong Province", + "Industrial production: output value by industry, major products output, industrial enterprise performance", + "Agricultural statistics: crop output, aquaculture, livestock, agricultural household income", + "Foreign trade: import and export value by commodity and trading partner", + "Population statistics: census data, household registration, birth and death rates, urbanization", + "Employment and wages: employed persons, urban unemployment rate, average wages by sector", + "Consumer prices: CPI, PPI for Shandong Province and its prefecture-level cities", + "Fixed asset investment: total investment, real estate development, infrastructure construction", + "Shandong Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:山东省季度和年度GDP数据,按产业分类", + "工业生产:各行业工业产值、主要产品产量、工业企业经营情况", + "农业统计:粮食产量、水产养殖、畜牧业、农民收入", + "对外贸易:按商品类别和贸易伙伴分类的进出口数据", + "人口统计:人口普查数据、户籍人口、出生率和死亡率、城镇化率", + "就业与工资:从业人员数、城镇失业率、各行业平均工资", + "消费价格:山东省及各地级市居民消费价格指数、工业品出厂价格", + "固定资产投资:全省投资总额、房地产开发、基础设施建设", + "山东统计年鉴:全省各类统计数据的综合年度汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-shanghai-stats.json b/firstdata/sources/china/economy/provincial/china-shanghai-stats.json new file mode 100644 index 00000000..fc028207 --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-shanghai-stats.json @@ -0,0 +1,75 @@ +{ + "id": "china-shanghai-stats", + "name": { + "en": "Shanghai Municipal Bureau of Statistics", + "zh": "上海市统计局" + }, + "description": { + "en": "The Shanghai Municipal Bureau of Statistics is the official statistical authority for Shanghai, China's largest city and premier financial and commercial hub. It publishes authoritative statistics covering Shanghai's economic performance, including GDP, industrial output, trade, financial markets, foreign investment, population, employment, and household income. As home to China's major stock exchange and a key international financial center, Shanghai's statistical data reflects global trade flows and China's economic integration with the world. The bureau releases the Shanghai Statistical Yearbook and monthly economic bulletins widely cited in research and investment analysis.", + "zh": "上海市统计局是上海市官方统计机构,上海是中国最大城市,也是中国重要的金融和商业中心。统计局发布涵盖上海经济运行的权威统计数据,包括GDP、工业产值、对外贸易、金融市场、外商投资、人口、就业和居民收入。上海是中国主要证券交易所所在地和重要的国际金融中心,其统计数据反映全球贸易动态和中国经济的对外开放程度。统计局出版《上海统计年鉴》及月度经济运行报告,广泛被学术研究和投资分析机构引用。" + }, + "website": "https://tjj.sh.gov.cn/", + "data_url": "https://tjj.sh.gov.cn/sjxx/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "finance", + "trade", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "上海统计", + "shanghai-statistics", + "上海GDP", + "shanghai-gdp", + "金融中心", + "financial-center", + "市级统计", + "municipal-statistics", + "对外贸易", + "foreign-trade", + "外商投资", + "foreign-direct-investment", + "工业产值", + "industrial-output", + "人口", + "population", + "统计年鉴", + "statistical-yearbook", + "自贸区", + "free-trade-zone", + "进出口", + "imports-exports", + "消费价格", + "consumer-prices" + ], + "data_content": { + "en": [ + "GDP and economic growth: annual and quarterly gross domestic product by industry sector for Shanghai Municipality", + "Industrial output: production data for key sectors including high-tech, automotive, semiconductor, and petrochemical industries", + "Foreign trade: import and export value by commodity category, trading partner, and Shanghai free trade zone data", + "Financial sector: banking assets, insurance premiums, securities trading volumes in Shanghai financial markets", + "Foreign investment: FDI inflows by sector and source country, foreign-funded enterprise data", + "Population and migration: census data, household registration, migrant population, birth and death rates", + "Employment and wages: employed persons by sector, registered unemployment, average wages by industry", + "Consumer prices: CPI, PPI, housing prices for Shanghai and its districts", + "Shanghai Statistical Yearbook: comprehensive annual compilation of all municipal statistics" + ], + "zh": [ + "GDP与经济增长:上海市按产业分类的年度及季度地区生产总值", + "工业产值:高新技术、汽车、半导体、石化等重点行业生产数据", + "对外贸易:按商品类别和贸易伙伴分类的进出口数据及上海自贸区贸易数据", + "金融业:银行资产、保险保费及上海金融市场证券交易量", + "外商投资:按行业和来源国分类的外商直接投资数据及外资企业数据", + "人口与迁移:普查数据、户籍人口、流动人口、出生率和死亡率", + "就业与工资:各行业从业人员数、登记失业人数、各行业平均工资", + "消费价格:上海市及各区的居民消费价格指数、工业品出厂价格、房价指数", + "上海统计年鉴:上海市各类统计数据的综合年度汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-shenzhen-open-data.json b/firstdata/sources/china/economy/provincial/china-shenzhen-open-data.json new file mode 100644 index 00000000..ddf9ce7c --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-shenzhen-open-data.json @@ -0,0 +1,60 @@ +{ + "id": "china-shenzhen-open-data", + "name": { + "en": "Shenzhen Open Data Platform", + "zh": "深圳市政府数据开放平台" + }, + "description": { + "en": "The Shenzhen Open Data Platform is the official government open data portal of Shenzhen, providing machine-readable datasets across a wide range of domains including economy, transportation, urban management, public services, healthcare, and education. As one of China's most advanced municipal open data initiatives, the platform offers structured data downloads, API access, and data visualization tools. It covers datasets from over 40 Shenzhen government departments and public institutions, enabling data-driven research and application development. The platform is distinct from the Shenzhen Bureau of Statistics by focusing on granular, machine-readable datasets rather than aggregated statistical reports.", + "zh": "深圳市政府数据开放平台是深圳市官方政府数据开放门户,提供覆盖经济、交通、城市管理、公共服务、医疗卫生、教育等多领域的机器可读数据集。作为中国最先进的市级政府数据开放平台之一,该平台提供结构化数据下载、API接口和数据可视化工具,汇集了深圳市40余个政府部门和公共机构的数据集,支持数据驱动的研究和应用开发。该平台与深圳市统计局的区别在于侧重提供细粒度、机器可读的原始数据集,而非汇总统计报告。" + }, + "website": "https://opendata.sz.gov.cn", + "data_url": "https://opendata.sz.gov.cn/data/dataSet/toDataList", + "api_url": "https://opendata.sz.gov.cn/doc/share/api_guide.html", + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "transportation", + "urban-management", + "public-services", + "healthcare", + "education" + ], + "update_frequency": "irregular", + "tags": [ + "shenzhen-open-data", + "government-open-data", + "shenzhen-api", + "machine-readable-data", + "shenzhen-municipal-government", + "datasets", + "urban-data", + "public-data", + "greater-bay-area", + "shenzhen-transportation-data" + ], + "data_content": { + "en": [ + "Economic data: enterprise registration, business environment indicators, and economic activity datasets", + "Transportation: real-time and historical public transit, traffic flow, and parking data", + "Urban management: city infrastructure, environmental monitoring, and municipal services data", + "Public services: government service usage, public facility distribution, and community data", + "Healthcare: medical facility distribution, public health monitoring datasets", + "Education: school distribution, enrollment statistics, and educational resource data", + "Land and housing: land use, real estate transactions, and urban planning datasets", + "Environmental data: air quality, water quality, and green space monitoring data" + ], + "zh": [ + "经济数据:企业注册登记、营商环境指标及经济活动数据集", + "交通数据:公共交通实时及历史数据、交通流量及停车数据", + "城市管理:城市基础设施、环境监测及市政服务数据", + "公共服务:政务服务使用、公共设施分布及社区数据", + "医疗卫生:医疗机构分布、公共卫生监测数据集", + "教育数据:学校分布、招生统计及教育资源数据", + "土地与住房:土地利用、房地产交易及城市规划数据集", + "环境数据:空气质量、水质及绿化监测数据" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-shenzhen-stats.json b/firstdata/sources/china/economy/provincial/china-shenzhen-stats.json new file mode 100644 index 00000000..7fed4784 --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-shenzhen-stats.json @@ -0,0 +1,77 @@ +{ + "id": "china-shenzhen-stats", + "name": { + "en": "Shenzhen Bureau of Statistics", + "zh": "深圳市统计局" + }, + "description": { + "en": "The Shenzhen Bureau of Statistics is the official statistical authority for Shenzhen, China's leading technology and innovation hub and a major special economic zone. As one of China's fastest-growing and most economically dynamic cities, Shenzhen's statistics cover GDP, industrial output, high-tech industry performance, foreign investment, exports, fixed asset investment, retail sales, consumer prices, employment, and household income. The bureau publishes the Shenzhen Statistical Yearbook, monthly economic bulletins, and special reports on the technology and innovation economy. Shenzhen's data is particularly valuable for tracking trends in China's high-tech manufacturing, fintech, and consumer electronics sectors.", + "zh": "深圳市统计局是深圳市官方统计机构。深圳是中国领先的科技创新中心和重要的经济特区,其统计数据涵盖GDP、工业产值、高新技术产业表现、外商投资、出口贸易、固定资产投资、社会消费品零售总额、居民消费价格、就业和居民收入等方面。统计局定期发布《深圳统计年鉴》、月度经济运行情况报告及科技创新经济专题报告。深圳统计数据对追踪中国高新技术制造业、金融科技和消费电子产业趋势具有重要参考价值。" + }, + "website": "https://tjj.sz.gov.cn", + "data_url": "https://tjj.sz.gov.cn/zwgk/zfxxgkml/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "technology", + "trade", + "demographics" + ], + "update_frequency": "monthly", + "tags": [ + "深圳统计", + "shenzhen-statistics", + "深圳GDP", + "shenzhen-gdp", + "深圳经济", + "shenzhen-economy", + "高新技术产业", + "high-tech-industry", + "深圳统计年鉴", + "shenzhen-statistical-yearbook", + "经济特区", + "special-economic-zone", + "深圳制造业", + "shenzhen-manufacturing", + "粤港澳大湾区", + "greater-bay-area", + "科技创新", + "technology-innovation", + "外商投资", + "foreign-investment", + "深圳出口", + "shenzhen-exports", + "固定资产投资", + "fixed-asset-investment" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector, per capita GDP, and growth rate", + "Industrial output: monthly output of major industries including electronics, telecommunications equipment, and high-tech manufacturing", + "High-tech industry: revenue, profit, employment, and output of Shenzhen's high-tech enterprises", + "Trade data: monthly import and export statistics by commodity type and trading partner", + "Fixed asset investment: investment by sector including real estate, infrastructure, and industry", + "Retail and consumption: monthly retail sales of consumer goods and consumer price index (CPI)", + "Foreign direct investment: FDI inflow statistics by source country and industry", + "Employment and wages: employed population, registered unemployment rate, and average wage levels", + "Population: resident population, household registration data, and migration statistics", + "Shenzhen Statistical Yearbook: comprehensive annual compendium of Shenzhen's socioeconomic indicators" + ], + "zh": [ + "GDP与经济增长:按行业分类的季度和年度GDP数据、人均GDP及增长率", + "工业总产值:主要行业月度产值,包括电子、通信设备及高新技术制造业", + "高新技术产业:深圳高新技术企业的营业收入、利润、就业人数及产值", + "贸易数据:按商品类别和贸易伙伴分类的月度进出口统计", + "固定资产投资:按行业分类的投资数据,包括房地产、基础设施和工业", + "零售与消费:月度社会消费品零售总额和居民消费价格指数(CPI)", + "外商直接投资:按来源地和行业分类的FDI流入统计", + "就业与工资:从业人员数量、登记失业率及平均工资水平", + "人口:常住人口、户籍人口及流动人口统计", + "《深圳统计年鉴》:深圳市社会经济指标综合年度数据汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-sn-stats.json b/firstdata/sources/china/economy/provincial/china-sn-stats.json new file mode 100644 index 00000000..de7a4d7f --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-sn-stats.json @@ -0,0 +1,78 @@ +{ + "id": "china-sn-stats", + "name": { + "en": "Shaanxi Bureau of Statistics", + "zh": "陕西省统计局" + }, + "description": { + "en": "The Shaanxi Bureau of Statistics is the official statistical authority for Shaanxi Province, a historically significant province in northwestern China and the home of ancient capitals Xi'an, the terracotta army, and the starting point of the Silk Road. Shaanxi is a major center for energy production, aerospace, military industry, and high-tech manufacturing. The bureau publishes comprehensive socioeconomic statistics covering GDP, energy output (coal, natural gas, oil), aerospace and defense industry data, tourism, population, and agricultural figures. It also releases the Shaanxi Statistical Yearbook and regular economic analysis reports.", + "zh": "陕西省统计局是陕西省官方统计机构,陕西是中国西北部历史名省,古都西安、兵马俑及丝绸之路起点所在地。陕西是重要的能源生产、航空航天、军工和高新技术制造业中心。统计局发布陕西省GDP、能源产量(煤炭、天然气、石油)、航空航天与国防工业数据、旅游、人口及农业生产等全面社会经济统计,并出版《陕西统计年鉴》及定期经济运行分析报告。" + }, + "website": "https://tjj.shaanxi.gov.cn/", + "data_url": "https://tjj.shaanxi.gov.cn/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "energy", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "陕西统计", + "shaanxi-statistics", + "陕西GDP", + "shaanxi-gdp", + "西部大开发", + "western-china-development", + "省级统计", + "provincial-statistics", + "能源生产", + "energy-production", + "煤炭", + "coal", + "天然气", + "natural-gas", + "航空航天", + "aerospace", + "西安", + "xi'an", + "丝绸之路", + "silk-road", + "统计年鉴", + "statistical-yearbook", + "人口统计", + "population-statistics", + "工业产值", + "industrial-output" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Shaanxi Province", + "Energy production: coal output, natural gas extraction, crude oil production, electricity generation statistics", + "Industrial output: aerospace and defense manufacturing, electronics, equipment manufacturing, chemical industry", + "Fixed asset investment: total investment, infrastructure projects, industrial park development", + "Population statistics: census data, household registration, birth and death rates, urbanization", + "Employment and wages: employed persons, unemployment rate, average wages by sector", + "Consumer prices: CPI, PPI for Shaanxi Province and major cities including Xi'an", + "Agricultural statistics: grain output, apple production (Shaanxi is China's top apple producer), livestock", + "Tourism statistics: visitor arrivals to Xi'an and cultural heritage sites, tourism revenue", + "Shaanxi Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:陕西省季度和年度GDP数据,按产业分类", + "能源生产:煤炭产量、天然气开采量、原油产量、发电量统计", + "工业产值:航空航天与国防制造、电子、装备制造、化工产业", + "固定资产投资:全省投资总额、基础设施项目、工业园区发展", + "人口统计:人口普查数据、户籍人口、出生率和死亡率、城镇化率", + "就业与工资:从业人员数、失业率、各行业平均工资", + "消费价格:陕西省及西安等主要城市居民消费价格指数、工业品出厂价格", + "农业统计:粮食产量、苹果产量(陕西是全国最大苹果产区)、畜牧业", + "旅游统计:西安及文化遗址游客人次、旅游收入", + "陕西统计年鉴:全省各类统计数据的综合年度汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-suzhou-stats.json b/firstdata/sources/china/economy/provincial/china-suzhou-stats.json new file mode 100644 index 00000000..80f25567 --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-suzhou-stats.json @@ -0,0 +1,75 @@ +{ + "id": "china-suzhou-stats", + "name": { + "en": "Suzhou Bureau of Statistics", + "zh": "苏州市统计局" + }, + "description": { + "en": "The Suzhou Bureau of Statistics is the official statistical authority for Suzhou, a prefecture-level city in Jiangsu Province and one of China's most economically powerful cities. Despite not being a provincial capital, Suzhou consistently ranks among China's top five cities by GDP. It is a global manufacturing powerhouse — particularly for electronics, semiconductors, and precision manufacturing — and home to the Suzhou Industrial Park (SIP), a flagship China-Singapore cooperation project. The bureau publishes comprehensive socioeconomic statistics covering GDP, industrial output, foreign investment, trade, and population for Suzhou, and releases the Suzhou Statistical Yearbook as the authoritative data source for this export-oriented economic giant.", + "zh": "苏州市统计局是苏州市官方统计机构。苏州是江苏省地级市,也是中国经济最强劲的城市之一。尽管不是省会城市,苏州的GDP长期位居全国前五。苏州是全球重要的制造业基地,尤其在电子、半导体和精密制造领域举足轻重,拥有中国-新加坡合作旗舰项目苏州工业园区(SIP)。统计局发布苏州市GDP、工业产值、外商投资、贸易及人口等全面的社会经济统计数据,出版《苏州统计年鉴》,是了解这一出口导向型经济强市的权威数据来源。" + }, + "website": "http://tjj.suzhou.gov.cn/", + "data_url": "http://tjj.suzhou.gov.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "industry", + "trade" + ], + "update_frequency": "monthly", + "tags": [ + "苏州统计", + "suzhou-statistics", + "苏州GDP", + "suzhou-gdp", + "苏州工业园区", + "suzhou-industrial-park", + "sip", + "中新合作", + "china-singapore-cooperation", + "制造业", + "manufacturing", + "电子产业", + "electronics-industry", + "半导体", + "semiconductor", + "长三角", + "yangtze-river-delta", + "苏州统计年鉴", + "suzhou-statistical-yearbook", + "外资企业", + "foreign-invested-enterprises", + "精密制造", + "precision-manufacturing" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Suzhou — one of China's highest-GDP non-capital cities", + "Industrial production: output from core industries including electronics, semiconductor, precision manufacturing, and biomedicine", + "Suzhou Industrial Park (SIP): dedicated statistics on China's flagship China-Singapore cooperation development zone", + "Foreign investment: actual utilized FDI, number of foreign-invested enterprises, investment by source country", + "Foreign trade: import/export volumes — Suzhou is one of China's top export cities", + "Fixed asset investment: total investment, industrial parks investment, infrastructure projects", + "Retail and consumption: total retail sales of consumer goods, consumer price index", + "Employment and wages: employed persons, urban unemployment rate, average wages by sector", + "Population: resident population, household registration, urbanization — significant migrant worker population", + "Suzhou Statistical Yearbook: comprehensive annual compilation of all municipal statistics" + ], + "zh": [ + "GDP与经济增长:苏州市按产业分类的季度和年度GDP数据——中国GDP最高的非省会城市之一", + "工业生产:电子、半导体、精密制造、生物医药等核心行业产值", + "苏州工业园区(SIP):中国旗舰中新合作开发区专项统计数据", + "外商投资:实际利用外商直接投资、外资企业数量、按来源国分类的投资", + "对外贸易:进出口总量——苏州是中国出口重镇之一", + "固定资产投资:全市总投资额、工业园区投资、基础设施项目", + "消费与零售:社会消费品零售总额、居民消费价格指数", + "就业与工资:从业人员数、城镇登记失业率、各行业平均工资", + "人口:常住人口、户籍人口、城镇化率——外来务工人员规模庞大", + "苏州统计年鉴:全市各类统计数据的综合年度汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-sx-stats.json b/firstdata/sources/china/economy/provincial/china-sx-stats.json new file mode 100644 index 00000000..b4bc4beb --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-sx-stats.json @@ -0,0 +1,76 @@ +{ + "id": "china-sx-stats", + "name": { + "en": "Shanxi Bureau of Statistics", + "zh": "山西省统计局" + }, + "description": { + "en": "The Shanxi Bureau of Statistics is the official statistical authority for Shanxi Province, China's most important coal-producing province and a major energy base. Located in northern China, Shanxi holds the largest verified coal reserves in the country and has historically supplied a substantial portion of China's national coal output. The bureau publishes comprehensive socioeconomic statistics covering GDP, coal production and mining industry data, energy output, coke and chemical industry figures, population, employment, and investment. It releases the Shanxi Statistical Yearbook and regular economic bulletins critical for energy market analysis and industrial policy research.", + "zh": "山西省统计局是山西省官方统计机构,山西是中国最重要的产煤省份和重要能源基地,位于中国北部。山西拥有全国最大的已探明煤炭储量,历史上承担了中国煤炭总产量的大部分供应。统计局发布山西省GDP、煤炭产量与采矿业数据、能源产出、焦化和化工行业数据、人口、就业和投资等全面社会经济统计,并出版《山西统计年鉴》及定期经济运行情况报告,是能源市场分析和产业政策研究的重要数据来源。" + }, + "website": "https://tjj.shanxi.gov.cn/", + "data_url": "https://tjj.shanxi.gov.cn/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "energy", + "industry" + ], + "update_frequency": "monthly", + "tags": [ + "山西统计", + "shanxi-statistics", + "山西GDP", + "shanxi-gdp", + "省级统计", + "provincial-statistics", + "煤炭", + "coal", + "能源基地", + "energy-base", + "采矿业", + "mining-industry", + "焦炭", + "coke", + "煤炭储量", + "coal-reserves", + "太原", + "taiyuan", + "工业产值", + "industrial-output", + "统计年鉴", + "statistical-yearbook", + "大宗商品", + "commodities" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Shanxi Province", + "Coal production: monthly and annual raw coal output, China's largest coal-producing province data", + "Mining industry: total coal mine output by prefecture, major mining enterprise performance, coal reserves", + "Coking and chemicals: coke production volumes, coal chemical industry output, coal-to-chemicals data", + "Energy output: electricity generation (including coal-fired power), energy consumption statistics", + "Fixed asset investment: coal mining investment, infrastructure construction, industrial diversification", + "Population statistics: census data, household registration, urbanization, rural-to-urban migration", + "Employment and wages: mining sector employment, average wages, occupational injury statistics", + "Consumer prices: CPI and PPI for Shanxi Province and its prefecture-level cities including Taiyuan", + "Shanxi Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:山西省季度和年度GDP数据,按产业分类", + "煤炭产量:月度和年度原煤产量,全国最大产煤省数据", + "采矿业:各地级市煤矿产量、大型矿业企业绩效、煤炭储量数据", + "焦化与化工:焦炭产量、煤化工行业产值、煤制化学品数据", + "能源产出:发电量(含燃煤电力)、能源消耗统计", + "固定资产投资:煤矿投资、基础设施建设、工业多元化发展", + "人口统计:普查数据、户籍人口、城镇化率、农村劳动力转移", + "就业与工资:采矿业从业人员数量、平均工资、工伤事故统计", + "消费价格:山西省及太原等各地级市居民消费价格指数和工业品出厂价格", + "山西统计年鉴:全省各类统计数据的综合年度汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-tj-stats.json b/firstdata/sources/china/economy/provincial/china-tj-stats.json new file mode 100644 index 00000000..42a0d559 --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-tj-stats.json @@ -0,0 +1,68 @@ +{ + "id": "china-tj-stats", + "name": { + "en": "Tianjin Bureau of Statistics", + "zh": "天津市统计局" + }, + "description": { + "en": "The Tianjin Bureau of Statistics is the official statistical authority for Tianjin, one of China's four direct-controlled municipalities and a major port city in the Bohai Economic Rim. It publishes comprehensive socioeconomic data covering GDP, industrial output, foreign trade, port logistics, population, and fixed asset investment. Tianjin serves as the gateway port for Beijing and a key logistics hub in northern China, making its trade and industrial statistics especially valuable. The bureau releases monthly economic bulletins, statistical communiqués, and the annual Tianjin Statistical Yearbook, providing essential data for the Beijing-Tianjin-Hebei (Jing-Jin-Ji) regional integration analysis.", + "zh": "天津市统计局是天津市官方统计机构。天津是中国四个直辖市之一,环渤海经济圈的重要港口城市。统计局发布涵盖天津市GDP、工业产值、对外贸易、港口物流、人口及固定资产投资等全面社会经济数据。天津作为北京的出海口和华北重要物流枢纽,其贸易与工业统计数据尤具价值。统计局定期发布月度经济运行情况、统计公报及年度《天津统计年鉴》,为京津冀协同发展研究提供重要数据支撑。" + }, + "website": "https://stats.tj.gov.cn/", + "data_url": "https://stats.tj.gov.cn/tjsj_52032/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "trade", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "天津统计", + "tianjin-statistics", + "天津GDP", + "tianjin-gdp", + "京津冀", + "beijing-tianjin-hebei", + "环渤海", + "bohai-economic-rim", + "省级统计", + "provincial-statistics", + "港口物流", + "port-logistics", + "对外贸易", + "foreign-trade", + "工业产值", + "industrial-output", + "统计年鉴", + "statistical-yearbook", + "直辖市", + "municipality" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Tianjin Municipality", + "Industrial production: output value by sector, petrochemicals, aerospace, advanced manufacturing statistics", + "Foreign trade: import and export data via Tianjin Port, trading partner breakdown", + "Port logistics: Tianjin Port cargo throughput, container volume, shipping routes", + "Fixed asset investment: total investment, industrial projects, infrastructure expenditure", + "Population statistics: permanent resident population, urbanization rate, demographic structure", + "Employment and wages: employed persons by sector, unemployment rate, average wages", + "Tianjin Statistical Yearbook: comprehensive annual compilation covering all socioeconomic statistics" + ], + "zh": [ + "GDP与经济增长:天津市季度和年度GDP数据,按产业分类", + "工业生产:各行业工业产值,石油化工、航空航天、先进制造业统计", + "对外贸易:通过天津港的进出口数据,贸易伙伴分类", + "港口物流:天津港货物吞吐量、集装箱量、航运线路数据", + "固定资产投资:投资总额、工业项目、基础设施投入", + "人口统计:常住人口、城镇化率、人口结构", + "就业与工资:各行业从业人员数、失业率、平均工资水平", + "天津统计年鉴:涵盖所有社会经济统计的综合年度汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-wuhan-stats.json b/firstdata/sources/china/economy/provincial/china-wuhan-stats.json new file mode 100644 index 00000000..3de0c829 --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-wuhan-stats.json @@ -0,0 +1,72 @@ +{ + "id": "china-wuhan-stats", + "name": { + "en": "Wuhan Bureau of Statistics", + "zh": "武汉市统计局" + }, + "description": { + "en": "The Wuhan Bureau of Statistics is the official statistical authority for Wuhan, the capital of Hubei Province and the largest city in Central China. Strategically located at the confluence of the Han and Yangtze Rivers, Wuhan is a major industrial, scientific, and transportation hub. The bureau publishes comprehensive socioeconomic statistics covering GDP, industrial output, high-tech industries, higher education indicators, employment, and population for Wuhan. It releases the Wuhan Statistical Yearbook and monthly economic reports, providing authoritative data on one of China's most significant inland metropolises and a key node of the Yangtze River Economic Belt.", + "zh": "武汉市统计局是武汉市官方统计机构。武汉是湖北省省会,华中地区最大城市,地处汉江与长江交汇处,是中国重要的工业、科教和交通枢纽。统计局发布武汉市GDP、工业产值、高新技术产业、高等教育指标、就业及人口等全面的社会经济统计数据,出版《武汉统计年鉴》及月度经济运行情况报告,是了解长江经济带重要节点城市——武汉的权威数据来源。" + }, + "website": "https://tjj.wuhan.gov.cn/", + "data_url": "https://tjj.wuhan.gov.cn/zfxxgk/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "industry", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "武汉统计", + "wuhan-statistics", + "武汉GDP", + "wuhan-gdp", + "华中经济", + "central-china-economy", + "长江经济带", + "yangtze-river-economic-belt", + "武汉统计年鉴", + "wuhan-statistical-yearbook", + "高新技术产业", + "high-tech-industries", + "光谷", + "optics-valley", + "汽车产业", + "automobile-industry", + "钢铁工业", + "steel-industry", + "武汉大学城", + "university-city" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Wuhan", + "Industrial production: output from major sectors including automobiles, steel, electronics, and optoelectronics (Optics Valley)", + "High-tech industries: output and investment in high-tech manufacturing, semiconductor, biopharmaceutical, and AI industries", + "Fixed asset investment: total investment, infrastructure projects, real estate development", + "Retail and consumption: total retail sales, consumer price index for Wuhan", + "Employment and wages: employed persons, urban unemployment, average wages across sectors", + "Population and education: resident population, higher education enrollment — Wuhan has one of China's largest university populations", + "Foreign trade and investment: export/import, FDI inflows from overseas enterprises", + "Fiscal revenue: general public budget revenue and expenditure for Wuhan municipality", + "Wuhan Statistical Yearbook: comprehensive annual compilation of all municipal statistics" + ], + "zh": [ + "GDP与经济增长:武汉市按产业分类的季度和年度GDP数据", + "工业生产:汽车、钢铁、电子、光电子(光谷)等主要行业产值", + "高新技术产业:高新技术制造业、半导体、生物医药、人工智能产业产值及投资", + "固定资产投资:全市总投资额、基础设施项目、房地产开发", + "消费与零售:社会消费品零售总额、武汉市居民消费价格指数", + "就业与工资:从业人员数、城镇登记失业率、各行业平均工资", + "人口与教育:常住人口、高等院校在校生数——武汉是中国在校大学生规模最大的城市之一", + "对外贸易与投资:进出口总额、外商直接投资", + "财政收入:武汉市一般公共预算收入和支出", + "武汉统计年鉴:全市各类统计数据的综合年度汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-xian-stats.json b/firstdata/sources/china/economy/provincial/china-xian-stats.json new file mode 100644 index 00000000..835d1351 --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-xian-stats.json @@ -0,0 +1,74 @@ +{ + "id": "china-xian-stats", + "name": { + "en": "Xi'an Bureau of Statistics", + "zh": "西安市统计局" + }, + "description": { + "en": "The Xi'an Bureau of Statistics is the official statistical authority for Xi'an (Shaanxi Province capital), one of China's most ancient capitals and now a rapidly modernizing city at the heart of the Belt and Road Initiative. Xi'an is a major center for aerospace, defense, high-tech manufacturing, and tourism. The bureau publishes comprehensive socioeconomic statistics covering GDP, industrial production, aerospace and defense output, tourism, employment, and population for Xi'an. It releases the Xi'an Statistical Yearbook and periodic economic reports, providing authoritative data for this growing western China hub and the core city of the Guanzhong Plain urban agglomeration.", + "zh": "西安市统计局是西安市官方统计机构。西安是陕西省省会,中国最重要的历史古都之一,也是\"一带一路\"倡议的核心城市,现已成为快速现代化的重要城市。西安是航空航天、国防、高新技术制造和旅游业的重要中心。统计局发布西安市GDP、工业生产、航空航天与国防产值、旅游业、就业及人口等全面的社会经济统计数据,出版《西安统计年鉴》及定期经济运行情况报告,是了解关中平原城市群核心城市和西部重要增长极的权威数据来源。" + }, + "website": "http://tjj.xa.gov.cn/", + "data_url": "http://tjj.xa.gov.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "industry", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "西安统计", + "xi'an-statistics", + "西安GDP", + "xian-gdp", + "关中平原城市群", + "guanzhong-urban-agglomeration", + "西部大开发", + "western-china-development", + "一带一路", + "belt-and-road-initiative", + "西安统计年鉴", + "xian-statistical-yearbook", + "航空航天", + "aerospace", + "军工产业", + "defense-industry", + "旅游经济", + "tourism-economy", + "半导体", + "semiconductor", + "高新区", + "high-tech-zone" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Xi'an", + "Industrial production: output from key sectors including aerospace, defense, electronics, and semiconductor manufacturing", + "High-tech industries: Xi'an High-tech Zone output, new energy, artificial intelligence, biopharmaceuticals", + "Tourism statistics: domestic and international tourist arrivals, tourism revenue — Xi'an is a top global heritage destination", + "Fixed asset investment: total investment, infrastructure projects including Silk Road-related corridors", + "Retail and consumption: total retail sales of consumer goods, consumer price index", + "Employment and higher education: employed persons, university enrollment — Xi'an has China's highest density of universities per capita", + "Population: resident population, household registration, urbanization rate", + "Foreign trade: export/import volumes, cross-border e-commerce, FDI", + "Xi'an Statistical Yearbook: comprehensive annual compilation of all municipal statistics" + ], + "zh": [ + "GDP与经济增长:西安市按产业分类的季度和年度GDP数据", + "工业生产:航空航天、国防、电子、半导体制造等关键行业产值", + "高新技术产业:西安高新区产值、新能源、人工智能、生物医药产业", + "旅游统计:国内外游客接待量、旅游收入——西安是全球顶级文化遗产旅游目的地", + "固定资产投资:全市总投资额、丝路相关走廊等基础设施项目", + "消费与零售:社会消费品零售总额、居民消费价格指数", + "就业与高等教育:从业人员数、高校在校生人数——西安人均高校密度居全国前列", + "人口:常住人口、户籍人口、城镇化率", + "对外贸易:进出口总量、跨境电商、外商直接投资", + "西安统计年鉴:全市各类统计数据的综合年度汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-xj-stats.json b/firstdata/sources/china/economy/provincial/china-xj-stats.json new file mode 100644 index 00000000..4d2458ae --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-xj-stats.json @@ -0,0 +1,78 @@ +{ + "id": "china-xj-stats", + "name": { + "en": "Xinjiang Bureau of Statistics", + "zh": "新疆维吾尔自治区统计局" + }, + "description": { + "en": "The Xinjiang Bureau of Statistics is the official statistical authority for the Xinjiang Uyghur Autonomous Region, China's largest administrative division by area, located in the far northwest and bordering eight countries. Xinjiang is a critical energy hub, holding significant reserves of coal, oil, and natural gas, and is also a major producer of cotton, tomatoes, and fruits. The bureau publishes comprehensive socioeconomic statistics covering GDP, energy extraction and reserves, cotton production (Xinjiang accounts for over 85% of China's cotton output), agricultural output, fixed asset investment in infrastructure, population, and trade data related to China's Belt and Road Initiative. It also releases the Xinjiang Statistical Yearbook.", + "zh": "新疆维吾尔自治区统计局是新疆官方统计机构,新疆是中国面积最大的行政区划,位于中国最西北,与八个国家接壤。新疆是重要的能源基地,拥有丰富的煤炭、石油和天然气储量,同时也是棉花、番茄和水果的重要产区。统计局发布新疆GDP、能源开采与储量、棉花产量(新疆棉花产量占全国85%以上)、农业产值、基础设施固定资产投资、人口及\"一带一路\"相关贸易数据等全面社会经济统计,并出版《新疆统计年鉴》。" + }, + "website": "https://tjj.xinjiang.gov.cn/", + "data_url": "https://tjj.xinjiang.gov.cn/tjj/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "energy", + "agriculture" + ], + "update_frequency": "monthly", + "tags": [ + "新疆统计", + "xinjiang-statistics", + "新疆GDP", + "xinjiang-gdp", + "省级统计", + "provincial-statistics", + "棉花", + "cotton", + "石油", + "oil", + "天然气", + "natural-gas", + "煤炭", + "coal", + "能源", + "energy", + "一带一路", + "belt-and-road", + "农业统计", + "agricultural-statistics", + "新疆维吾尔", + "uyghur-autonomous-region", + "统计年鉴", + "statistical-yearbook", + "乌鲁木齐", + "urumqi" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Xinjiang", + "Energy resources: oil and natural gas extraction volumes, coal production, proven reserves data", + "Cotton production: annual cotton output (Xinjiang produces over 85% of China's total cotton supply)", + "Agricultural statistics: grain output, fruit production (grapes, Hami melon, dates), livestock data", + "Industrial output: petrochemicals, coal chemicals, non-ferrous metals, energy processing industries", + "Fixed asset investment: Belt and Road infrastructure projects, energy facility construction, connectivity projects", + "Trade statistics: border trade data with Central Asia, Russia, and neighboring countries", + "Population statistics: total population, ethnic composition, urbanization rate", + "Employment and wages: employed persons, unemployment rate, average wages by sector", + "Xinjiang Statistical Yearbook: comprehensive annual compilation of all regional statistics" + ], + "zh": [ + "GDP与经济增长:新疆季度和年度GDP数据,按产业分类", + "能源资源:石油和天然气开采量、煤炭产量、探明储量数据", + "棉花生产:年度棉花产量(新疆提供全国85%以上的棉花供应量)", + "农业统计:粮食产量、水果产量(葡萄、哈密瓜、红枣)、畜牧业数据", + "工业产值:石油化工、煤化工、有色金属、能源加工产业", + "固定资产投资:\"一带一路\"基础设施项目、能源设施建设、互联互通项目", + "贸易统计:与中亚、俄罗斯及周边国家的边境贸易数据", + "人口统计:全区人口、民族构成、城镇化率", + "就业与工资:从业人员数、失业率、各行业平均工资", + "新疆统计年鉴:全区各类统计数据的综合年度汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-xz-stats.json b/firstdata/sources/china/economy/provincial/china-xz-stats.json new file mode 100644 index 00000000..c6c23c24 --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-xz-stats.json @@ -0,0 +1,77 @@ +{ + "id": "china-xz-stats", + "name": { + "en": "Xizang (Tibet) Bureau of Statistics", + "zh": "西藏自治区统计局" + }, + "description": { + "en": "The Xizang (Tibet) Bureau of Statistics is the official statistical authority for the Xizang Autonomous Region, China's highest-altitude province-level administrative division. It publishes comprehensive socioeconomic data covering GDP, population, agriculture, animal husbandry, tourism, fixed asset investment, and social development indicators for the plateau region. The bureau releases the Xizang Statistical Yearbook, monthly economic briefings, and regular reports on key industries including traditional Tibetan medicine, yak farming, barley cultivation, and the growing tourism sector. Xizang's unique geography and demographic profile make its statistics essential for research on high-altitude economies, rural poverty alleviation, and ecological conservation on the Tibetan Plateau.", + "zh": "西藏自治区统计局是西藏自治区的官方统计机构,西藏是中国海拔最高的省级行政区划。统计局发布涵盖西藏GDP、人口、农牧业、旅游、固定资产投资及社会发展指标的全面社会经济数据。定期出版《西藏统计年鉴》、月度经济运行简报及藏医药、牦牛养殖、青稞种植、旅游业等重点产业专项报告。西藏独特的地理和人口特征使其统计数据成为研究高原经济、农村脱贫攻坚和青藏高原生态保护的重要参考依据。" + }, + "website": "https://tjj.xizang.gov.cn/", + "data_url": "https://tjj.xizang.gov.cn/xxgk/tjxx/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "agriculture", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "西藏统计", + "tibet-statistics", + "xizang-statistics", + "西藏GDP", + "tibet-gdp", + "省级统计", + "provincial-statistics", + "青藏高原", + "tibetan-plateau", + "牦牛", + "yak-farming", + "青稞", + "highland-barley", + "藏医药", + "traditional-tibetan-medicine", + "西藏旅游", + "tibet-tourism", + "高原经济", + "plateau-economy", + "统计年鉴", + "statistical-yearbook", + "脱贫攻坚", + "poverty-alleviation", + "人口统计", + "population-statistics" + ], + "data_content": { + "en": [ + "GDP and economic growth: annual and quarterly GDP data for Xizang by sector, including primary, secondary, and tertiary industries", + "Agriculture and animal husbandry: highland barley (qingke) output, yak and sheep numbers, dairy production, and crop acreage statistics", + "Population and social indicators: census data, household registration, ethnic composition, birth rates, life expectancy", + "Fixed asset investment: infrastructure investment, transportation (Qinghai-Tibet Railway impacts), urban construction", + "Tourism statistics: domestic and international visitor arrivals, tourism revenue, hotel occupancy rates", + "Employment and wages: employed persons, wage levels, rural income, poverty alleviation progress", + "Energy statistics: electricity generation and consumption, solar and clean energy development on the plateau", + "Consumer prices: CPI and PPI for Xizang Autonomous Region and Lhasa city", + "Foreign trade: export and import volumes, cross-border trade with neighboring countries", + "Xizang Statistical Yearbook: comprehensive annual compilation of all regional statistics" + ], + "zh": [ + "GDP与经济增长:西藏自治区分季度和年度GDP数据,按第一、二、三产业分类", + "农牧业生产:青稞产量、牦牛和羊存栏数、乳制品产量及农作物播种面积统计", + "人口与社会指标:人口普查数据、户籍人口、民族构成、出生率、人均寿命", + "固定资产投资:基础设施投资、交通建设(青藏铁路影响)、城市建设数据", + "旅游统计:国内外游客到访人次、旅游收入、酒店住宿率", + "就业与工资:从业人员、工资水平、农村居民收入、脱贫攻坚进展", + "能源统计:发电量和用电量、高原太阳能及清洁能源发展情况", + "消费价格:西藏自治区及拉萨市居民消费价格指数、工业品出厂价格", + "对外贸易:进出口总额、与周边国家边境贸易量", + "西藏统计年鉴:全区各类统计数据的综合年度汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-yn-stats.json b/firstdata/sources/china/economy/provincial/china-yn-stats.json new file mode 100644 index 00000000..a8409254 --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-yn-stats.json @@ -0,0 +1,72 @@ +{ + "id": "china-yn-stats", + "name": { + "en": "Yunnan Bureau of Statistics", + "zh": "云南省统计局" + }, + "description": { + "en": "The Yunnan Bureau of Statistics is the official statistical authority for Yunnan Province, a biodiversity hotspot and frontier province bordering Myanmar, Laos, and Vietnam. It publishes comprehensive socioeconomic data covering GDP, agricultural production, tourism, mineral resources, cross-border trade, and ethnic minority demographics. Yunnan is strategically important as a gateway to Southeast Asia under China's Belt and Road Initiative and as a major producer of non-ferrous metals, tobacco, and flowers. The bureau releases monthly economic bulletins, the Yunnan Statistical Yearbook, and thematic reports on tourism and ecological development.", + "zh": "云南省统计局是云南省官方统计机构。云南是生物多样性热点地区,与缅甸、老挝、越南接壤。统计局发布涵盖云南省GDP、农业生产、旅游业、矿产资源、跨境贸易及少数民族人口等全面社会经济数据。云南在「一带一路」框架下战略地位重要,是连接东南亚的重要门户,也是中国有色金属、烟草和鲜花的重要产区。统计局定期发布月度经济运行情况、《云南统计年鉴》及旅游与生态发展专题报告。" + }, + "website": "http://stats.yn.gov.cn", + "data_url": "http://stats.yn.gov.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "agriculture", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "云南统计", + "yunnan-statistics", + "云南GDP", + "yunnan-gdp", + "西南边境", + "southwestern-border", + "省级统计", + "provincial-statistics", + "旅游业", + "tourism", + "有色金属", + "non-ferrous-metals", + "烟草", + "tobacco", + "跨境贸易", + "cross-border-trade", + "一带一路", + "belt-and-road", + "少数民族", + "ethnic-minorities", + "生物多样性", + "biodiversity", + "统计年鉴", + "statistical-yearbook" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Yunnan Province", + "Agricultural production: crop output, tea, flowers, tropical fruits; Yunnan is China's top flower producer", + "Tourism: domestic and international visitor arrivals, tourism revenue, key scenic area data", + "Mineral resources: non-ferrous metals output (copper, tin, zinc, lead), phosphate production", + "Cross-border trade: import and export data through Yunnan's border crossings with ASEAN countries", + "Population and ethnicity: demographic data for Yunnan's 26 ethnic minority groups", + "Energy: hydropower generation data, clean energy development statistics", + "Yunnan Statistical Yearbook: comprehensive annual compilation covering all socioeconomic statistics" + ], + "zh": [ + "GDP与经济增长:云南省季度和年度GDP数据,按产业分类", + "农业生产:粮食产量、茶叶、鲜花、热带水果(云南是中国最大鲜花产区)", + "旅游业:国内外游客接待量、旅游收入、重要景区数据", + "矿产资源:有色金属产量(铜、锡、锌、铅)、磷化工生产情况", + "跨境贸易:通过云南口岸与东盟国家的进出口数据", + "人口与民族:云南省26个少数民族人口统计数据", + "能源:水电发电量数据、清洁能源发展统计", + "云南统计年鉴:涵盖所有社会经济统计的综合年度汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-zhengzhou-stats.json b/firstdata/sources/china/economy/provincial/china-zhengzhou-stats.json new file mode 100644 index 00000000..08096aee --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-zhengzhou-stats.json @@ -0,0 +1,75 @@ +{ + "id": "china-zhengzhou-stats", + "name": { + "en": "Zhengzhou Bureau of Statistics", + "zh": "郑州市统计局" + }, + "description": { + "en": "The Zhengzhou Bureau of Statistics is the official statistical authority for Zhengzhou, the capital of Henan Province and the most populous province in China. Zhengzhou is a national transportation hub at the intersection of China's major rail corridors, and a rising manufacturing center home to Foxconn's largest iPhone assembly operations. The city's economic profile encompasses advanced manufacturing, logistics, modern services, and a rapidly growing digital economy. The bureau publishes comprehensive socioeconomic statistics covering GDP, industrial output, logistics volume, fixed asset investment, employment, and population for Zhengzhou municipality, along with the Zhengzhou Statistical Yearbook and monthly economic reports.", + "zh": "郑州市统计局是郑州市官方统计机构。郑州是河南省省会,河南是中国人口最多的省份。郑州地处中国主要铁路干线交汇处,是国家综合交通枢纽,也是重要的制造业中心,富士康全球最大的iPhone组装工厂坐落于此。郑州经济涵盖先进制造、物流、现代服务业和快速发展的数字经济。统计局发布涵盖GDP、工业产值、物流量、固定资产投资、就业及人口等全面的社会经济统计数据,同时出版《郑州统计年鉴》及月度经济运行报告。" + }, + "website": "https://tjj.zhengzhou.gov.cn/", + "data_url": "https://tjj.zhengzhou.gov.cn/tjsj/index.jhtml", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "industry", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "郑州统计", + "zhengzhou-statistics", + "郑州GDP", + "zhengzhou-gdp", + "河南经济", + "henan-economy", + "郑州统计年鉴", + "zhengzhou-statistical-yearbook", + "郑州制造业", + "zhengzhou-manufacturing", + "物流枢纽", + "logistics-hub", + "富士康", + "foxconn", + "iphone", + "中原城市群", + "central-plains-urban-agglomeration", + "跨境电商", + "cross-border-e-commerce", + "郑州航空港", + "zhengzhou-airport-economy-zone", + "固定资产投资", + "fixed-asset-investment" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Zhengzhou municipality", + "Industrial output: value-added production from major sectors including electronics assembly, food processing, aluminum, and automotive parts", + "Logistics and transportation: freight volumes, air cargo statistics for Xinzheng International Airport, railway cargo data", + "Cross-border e-commerce: Zhengzhou's bonded zone cross-border transaction volumes and parcel throughput", + "Fixed asset investment: infrastructure, manufacturing, and real estate investment statistics", + "Employment and wages: employed persons, urban unemployment rate, and average wage data", + "Population: resident population, household registration, and labor migration into Henan's provincial capital", + "Consumer market: retail sales, consumer price index, and e-commerce growth data", + "Fiscal data: general public budget revenue and expenditure for Zhengzhou", + "Zhengzhou Statistical Yearbook: comprehensive annual compilation of all municipal socioeconomic statistics" + ], + "zh": [ + "GDP与经济增长:按产业分类的郑州市季度和年度GDP数据", + "工业产值:电子装配、食品加工、铝业和汽车零部件等主要行业增加值", + "物流与交通:货运量、新郑国际机场航空货运统计、铁路货运数据", + "跨境电商:郑州保税区跨境交易量及快件吞吐量", + "固定资产投资:基础设施、制造业和房地产投资统计", + "就业与工资:从业人员数、城镇登记失业率及平均工资数据", + "人口:常住人口、户籍人口及流入河南省会的劳动力迁移数据", + "消费市场:社会消费品零售总额、居民消费价格指数及电商增长数据", + "财政数据:郑州市一般公共预算收入和支出", + "郑州统计年鉴:全市社会经济统计数据的综合年度汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/provincial/china-zj-stats.json b/firstdata/sources/china/economy/provincial/china-zj-stats.json new file mode 100644 index 00000000..0f7035b1 --- /dev/null +++ b/firstdata/sources/china/economy/provincial/china-zj-stats.json @@ -0,0 +1,72 @@ +{ + "id": "china-zj-stats", + "name": { + "en": "Zhejiang Bureau of Statistics", + "zh": "浙江省统计局" + }, + "description": { + "en": "The Zhejiang Bureau of Statistics is the official statistical authority for Zhejiang Province, one of China's most economically dynamic coastal provinces and a powerhouse of private enterprise and digital economy. It publishes comprehensive socioeconomic statistics including GDP, industrial output, trade, investment, population, employment, consumer prices, and e-commerce data for Zhejiang. The bureau releases the Zhejiang Statistical Yearbook and regular economic bulletins, serving as the authoritative data source for understanding one of China's wealthiest and most innovative provincial economies.", + "zh": "浙江省统计局是浙江省官方统计机构,浙江是中国经济最活跃的沿海省份之一,也是民营经济和数字经济的重要高地。统计局发布浙江省GDP、工业产值、对外贸易、投资、人口、就业、居民消费价格指数和电子商务等全面的社会经济统计数据,并出版《浙江统计年鉴》及定期经济运行情况报告,是了解中国最富裕、最具创新活力省级经济体的权威数据来源。" + }, + "website": "https://tjj.zj.gov.cn/", + "data_url": "https://tjj.zj.gov.cn/col/col1525563/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "statistics", + "social", + "industry" + ], + "update_frequency": "monthly", + "tags": [ + "浙江统计", + "zhejiang-statistics", + "浙江GDP", + "zhejiang-gdp", + "民营经济", + "private-economy", + "数字经济", + "digital-economy", + "省级统计", + "provincial-statistics", + "电子商务", + "e-commerce", + "工业产值", + "industrial-output", + "对外贸易", + "foreign-trade", + "统计年鉴", + "statistical-yearbook", + "长三角", + "yangtze-river-delta" + ], + "data_content": { + "en": [ + "GDP and economic growth: quarterly and annual GDP data by industry sector for Zhejiang Province", + "Industrial production: output value by industry, major products output, industrial enterprise performance", + "Private economy: statistics on private enterprises, self-employed businesses, and non-public economy", + "Digital economy: e-commerce transactions, digital industry output, internet economy indicators", + "Fixed asset investment: total investment, real estate development, infrastructure construction", + "Foreign trade: import and export statistics for Zhejiang Province", + "Population statistics: census data, household registration, birth and death rates, urbanization", + "Employment and wages: employed persons, unemployment rate, average wages by sector", + "Consumer prices: CPI, PPI for Zhejiang Province and major cities including Hangzhou, Ningbo", + "Zhejiang Statistical Yearbook: comprehensive annual compilation of all provincial statistics" + ], + "zh": [ + "GDP与经济增长:浙江省季度和年度GDP数据,按产业分类", + "工业生产:各行业工业产值、主要产品产量、工业企业经营情况", + "民营经济:民营企业、个体工商户和非公有制经济统计数据", + "数字经济:电子商务交易额、数字产业产值、互联网经济指标", + "固定资产投资:全省投资总额、房地产开发、基础设施建设", + "对外贸易:浙江省进出口统计数据", + "人口统计:人口普查数据、户籍人口、出生率和死亡率、城镇化率", + "就业与工资:从业人员数、失业率、各行业平均工资", + "消费价格:浙江省及杭州、宁波等主要城市居民消费价格指数、工业品出厂价格", + "浙江统计年鉴:全省各类统计数据的综合年度汇编" + ] + } +} diff --git a/firstdata/sources/china/economy/special_admin_regions/china-hk-censtatd.json b/firstdata/sources/china/economy/special_admin_regions/china-hk-censtatd.json new file mode 100644 index 00000000..8cc390c5 --- /dev/null +++ b/firstdata/sources/china/economy/special_admin_regions/china-hk-censtatd.json @@ -0,0 +1,85 @@ +{ + "id": "china-hk-censtatd", + "name": { + "en": "Hong Kong Census and Statistics Department", + "zh": "香港政府统计处" + }, + "description": { + "en": "The Census and Statistics Department (C&SD) of the Hong Kong Special Administrative Region is the principal government agency responsible for compiling and analyzing official statistics for Hong Kong. C&SD produces comprehensive statistical data on Hong Kong's economy, population, trade, labor market, prices, and social conditions. As an internationally recognized statistical office, C&SD adheres to the IMF's Special Data Dissemination Standard (SDDS) and publishes quarterly GDP estimates, monthly consumer price indices, external trade statistics, labor force surveys, and the population census conducted every ten years. Hong Kong's role as a major global financial hub and Asia's largest offshore RMB settlement center makes C&SD data critical for tracking SAR economic performance, cross-border trade flows, RMB internationalization, and the integration of Hong Kong with the Greater Bay Area (GBA). C&SD operates the online data portal HK Statistics, providing free access to over 100 statistical tables and time series datasets.", + "zh": "香港特别行政区政府统计处(统计处)是负责编制和分析香港官方统计数据的主要政府机构。统计处提供涵盖香港经济、人口、贸易、劳动力市场、物价及社会状况的全面统计数据。作为国际认可的统计机构,统计处遵循国际货币基金组织数据公布特殊标准(SDDS),发布季度本地生产总值估算、月度消费物价指数、对外贸易统计、劳动力调查及每十年一次的人口普查数据。香港作为全球主要金融中心和亚洲最大离岸人民币结算中心,统计处数据对追踪香港特区经济表现、跨境贸易流量、人民币国际化进程以及香港与粤港澳大湾区融合具有重要意义。统计处运营《香港统计数字一览》在线数据门户,免费提供100多个统计表格和时间序列数据集。" + }, + "website": "https://www.censtatd.gov.hk/", + "data_url": "https://www.censtatd.gov.hk/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "economics", + "demographics", + "trade", + "statistics", + "finance" + ], + "update_frequency": "monthly", + "tags": [ + "香港政府统计处", + "census-and-statistics-department", + "c&sd", + "censtatd", + "香港", + "hong-kong", + "特别行政区", + "special-administrative-region", + "sar", + "香港GDP", + "hong-kong-gdp", + "消费物价指数", + "consumer-price-index", + "cpi", + "对外贸易", + "external-trade", + "劳动力调查", + "labor-force-survey", + "人口普查", + "census", + "离岸人民币", + "offshore-rmb", + "大湾区", + "greater-bay-area", + "gba", + "imf-sdds", + "零售销售", + "retail-sales", + "工业生产", + "industrial-production", + "房屋统计", + "housing-statistics" + ], + "data_content": { + "en": [ + "GDP and national accounts: quarterly GDP estimates, expenditure-based national accounts, and GDP by major economic activity for Hong Kong SAR", + "Consumer Price Index: monthly CPI by category (composite, category A/B/C households), inflation trends, and comparison with historical baselines", + "External trade statistics: monthly merchandise trade data including total imports, domestic exports, re-exports by commodity group and trading partner", + "Labor force survey: quarterly unemployment rate, underemployment rate, labor force participation, employment by industry, and median wage data", + "Population statistics: mid-year population estimates, demographic projections, birth and death rates, and migration data for Hong Kong", + "Retail sales: monthly retail sales value and volume by retail outlet type (food, clothing, electronics, jewelry, etc.) and year-on-year changes", + "Industrial production: quarterly index of industrial production for Hong Kong's manufacturing sector", + "Business statistics: enterprise counts, business registration trends, and establishment-based employment surveys by industry", + "Housing and construction: property prices, rental indices, number of housing units, construction output, and vacancy rates in Hong Kong", + "Social statistics: household income distribution, poverty statistics, Gini coefficient, education attainment, and social welfare expenditure data from household surveys" + ], + "zh": [ + "GDP和国民账户:香港特区季度本地生产总值估算、支出法国民账户及按主要经济活动分类的GDP", + "消费物价指数:月度综合消费物价指数及甲乙丙类住户分类指数、通胀趋势及历史基准比较", + "对外贸易统计:月度货品贸易数据,包括按商品类别和贸易伙伴分类的总进口、本地出口和转口数据", + "劳动力调查:季度失业率、就业不足率、劳动参与率、分行业就业及工资中位数", + "人口统计:年中人口估算、人口预测、出生和死亡率及香港移民数据", + "零售业销售:按零售点类别(食品、服装、电子、珠宝等)统计的月度零售销售额和销售量及同比变化", + "工业生产:香港制造业季度工业生产指数", + "商业统计:按行业统计的企业数量、商业登记趋势及就业调查", + "房屋和建造:香港楼价、租金指数、住宅单位数量、建造产值及空置率", + "社会统计:住户收入分布、贫穷统计、基尼系数、教育程度及家庭住户调查的社会福利支出数据" + ] + } +} diff --git a/firstdata/sources/china/economy/trade/china-cccme.json b/firstdata/sources/china/economy/trade/china-cccme.json new file mode 100644 index 00000000..593c2b63 --- /dev/null +++ b/firstdata/sources/china/economy/trade/china-cccme.json @@ -0,0 +1,78 @@ +{ + "id": "china-cccme", + "name": { + "en": "China Chamber of Commerce for Import and Export of Machinery and Electronic Products", + "zh": "中国机电产品进出口商会" + }, + "description": { + "en": "The China Chamber of Commerce for Import and Export of Machinery and Electronic Products (CCCME) is the largest and most influential trade association in China's foreign trade sector, representing over 12,000 member enterprises engaged in the import and export of mechanical and electrical products. Supervised by the Ministry of Commerce, CCCME covers products ranging from power equipment, industrial machinery, transport vehicles, and electronic components to consumer electronics and medical devices. China is the world's largest exporter of machinery and electronic products, which collectively account for nearly 60% of total merchandise exports. CCCME publishes authoritative monthly and annual trade statistics on export volumes and values by product category and destination market, import data, and bilateral trade analysis. The association operates trade remedy research, hosts major trade exhibitions, and serves as a key coordinator in Sino-foreign trade dispute mechanisms. CCCME's statistical reports are widely referenced by industry analysts, customs authorities, and international trade economists tracking China's manufacturing and export competitiveness.", + "zh": "中国机电产品进出口商会(机电商会)是中国对外贸易领域规模最大、影响力最强的行业组织,会员企业逾12000家,涵盖电力设备、工业机械、运输工具、电子元器件、消费电子及医疗器械等机电产品的进出口企业,主管单位为商务部。中国是全球最大的机电产品出口国,机电产品约占中国商品出口总额的近60%。商会发布各品类机电产品出口量、出口额、进口数据及双边贸易分析等权威月度和年度统计,并开展贸易救济研究、主办大型展会、参与中外贸易争端协调机制。商会统计报告被行业分析师、海关机构及追踪中国制造业和出口竞争力的国际贸易经济学家广泛引用。" + }, + "website": "https://www.cccme.org.cn/", + "data_url": "https://www.cccme.org.cn/shop/cccme-stat/index.aspx", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "trade", + "industry", + "economics", + "technology" + ], + "update_frequency": "monthly", + "tags": [ + "中国机电产品进出口商会", + "cccme", + "机电产品", + "mechanical-and-electrical-products", + "机电出口", + "machinery-exports", + "电子产品出口", + "electronics-exports", + "中国出口", + "china-exports", + "贸易统计", + "trade-statistics", + "进出口商会", + "import-export-chamber", + "电力设备", + "power-equipment", + "工业机械", + "industrial-machinery", + "消费电子", + "consumer-electronics", + "医疗器械", + "medical-devices", + "贸易救济", + "trade-remedy", + "双边贸易", + "bilateral-trade", + "贸易摩擦", + "trade-friction", + "出口竞争力", + "export-competitiveness" + ], + "data_content": { + "en": [ + "Monthly export statistics: machinery and electronic product export volumes and values by 8-digit HS code category, including power generation equipment, industrial machines, automobiles, ships, and consumer electronics", + "Import data: monthly machinery and electronic product import volumes and values, tracking China's technology acquisition and supply chain integration", + "Top exporting enterprises: rankings of leading export enterprises by product category and destination, reflecting concentration in China's manufacturing sector", + "Destination market analysis: bilateral trade flows and market share analysis for major trading partners including the US, EU, ASEAN, and emerging markets", + "Trade remedy monitoring: anti-dumping, countervailing duty, and safeguard investigations involving Chinese machinery and electronics exports in key markets", + "Annual China Machinery and Electronics Trade Report: comprehensive review of annual export performance, market share changes, product mix shifts, and policy environment", + "Exhibition and fair data: visitor and transaction statistics from major trade events including the China Import and Export Fair (Canton Fair)", + "Policy analysis: reports on trade policy developments, tariff changes, and regulatory updates affecting China's machinery and electronics trade" + ], + "zh": [ + "月度出口统计:按8位HS编码分类的机电产品出口量和出口额,包括发电设备、工业机械、汽车、船舶和消费电子", + "进口数据:月度机电产品进口量和进口额,追踪中国的技术引进和供应链整合", + "出口企业排名:按产品类别和目的地排列的主要出口企业,反映中国制造业的集中度", + "目的市场分析:与美国、欧盟、东盟及新兴市场等主要贸易伙伴的双边贸易流量和市场份额分析", + "贸易救济监测:主要市场针对中国机电产品出口的反倾销、反补贴税和保障措施调查", + "中国机电产品进出口年度报告:年度出口业绩、市场份额变化、产品结构调整和政策环境综合述评", + "展会数据:广交会等重大贸易展会的参展规模和成交统计", + "政策分析:影响中国机电产品贸易的贸易政策动态、关税变化及法规更新报告" + ] + } +} diff --git a/firstdata/sources/china/economy/trade/china-ccpit.json b/firstdata/sources/china/economy/trade/china-ccpit.json new file mode 100644 index 00000000..06c24db5 --- /dev/null +++ b/firstdata/sources/china/economy/trade/china-ccpit.json @@ -0,0 +1,83 @@ +{ + "id": "china-ccpit", + "name": { + "en": "China Council for the Promotion of International Trade", + "zh": "中国国际贸易促进委员会" + }, + "description": { + "en": "The China Council for the Promotion of International Trade (CCPIT), also known as the China Chamber of International Commerce (CCOIC), is China's primary government-affiliated body for trade promotion and international business facilitation, founded in 1952. CCPIT publishes authoritative data and research reports on China's foreign trade environment, business climate surveys among foreign-invested enterprises, trade dispute statistics, certificate of origin issuance volumes, international exhibition and trade fair data, and foreign direct investment attraction by region and industry. Its quarterly and annual surveys on the business confidence of multinational corporations operating in China are widely referenced by policymakers, investors, and economic researchers. CCPIT also publishes trade and investment legal guides, bilateral trade statistics with key partner countries, and reports on China's free trade zone policies.", + "zh": "中国国际贸易促进委员会(贸促会),又称中国国际商会,是中国主要的政府关联贸易促进和国际商务便利化机构,成立于1952年。贸促会发布权威数据和研究报告,涵盖中国外贸环境、外资企业商业环境调查、贸易争端统计、原产地证书签发量、国际展览和商品交易会数据,以及按地区和行业划分的引进外商直接投资情况。其关于在华跨国公司商业信心的季度和年度调查报告被政策制定者、投资者和经济研究人员广泛引用。贸促会还发布贸易和投资法律指南、与主要伙伴国的双边贸易统计数据,以及中国自由贸易区政策报告。" + }, + "website": "https://www.ccpit.org/", + "data_url": "https://www.ccpit.org/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "trade", + "economics", + "finance", + "governance" + ], + "update_frequency": "quarterly", + "tags": [ + "中国国际贸易促进委员会", + "ccpit", + "china-council-for-the-promotion-of-international-trade", + "贸促会", + "中国国际商会", + "ccoic", + "国际贸易", + "international-trade", + "贸易促进", + "trade-promotion", + "原产地证书", + "certificate-of-origin", + "外商直接投资", + "foreign-direct-investment", + "fdi", + "商业环境", + "business-environment", + "贸易争端", + "trade-disputes", + "商事调解", + "commercial-mediation", + "国际展览", + "international-exhibitions", + "贸易博览会", + "trade-fairs", + "跨国公司", + "multinational-corporations", + "自由贸易区", + "free-trade-zone", + "营商信心", + "business-confidence", + "双边贸易", + "bilateral-trade" + ], + "data_content": { + "en": [ + "Business climate surveys: quarterly and annual surveys on operating conditions, confidence indices, and challenges faced by foreign-invested enterprises in China", + "Certificate of origin: monthly issuance volumes of CCPIT and CCOIC certificates of origin by country and product category", + "Trade dispute statistics: arbitration and mediation cases handled, resolution outcomes, and dispute types by trading partner", + "International exhibitions: number and scale of exhibitions organized or facilitated, exhibitor and visitor statistics", + "Foreign direct investment attraction: FDI inflows by region, industry, and source country, supplementing MOFCOM data", + "Bilateral trade data: trade volumes and growth rates between China and major partner countries and economic blocs", + "Free trade zone reports: operational data and policy updates on China's FTZs, including Shanghai, Guangdong, and Hainan FTZs", + "Trade legal environment: annual reports on trade remedy cases (anti-dumping, safeguards) affecting Chinese enterprises abroad", + "Multinational enterprise surveys: investment intentions, localization trends, and policy feedback from MNCs operating in China" + ], + "zh": [ + "商业环境调查:关于外资企业在华经营状况、信心指数和挑战的季度和年度调查数据", + "原产地证书:按国家和产品类别划分的贸促会和中国国际商会原产地证书月度签发量", + "贸易争端统计:仲裁和调解案件数量、结案情况及按贸易伙伴划分的争端类型", + "国际展览:组织或参与的展览数量及规模、参展商和观众统计", + "引进外商直接投资:按地区、行业和来源国划分的外商直接投资流入情况", + "双边贸易数据:中国与主要伙伴国和经济体的贸易量及增长率", + "自由贸易区报告:中国自贸区(上海、广东、海南等)的运营数据和政策动态", + "贸易法律环境:影响海外中国企业的贸易救济案件(反倾销、保障措施)年度报告", + "跨国企业调查:在华跨国公司的投资意向、本土化趋势及政策反馈" + ] + } +} diff --git a/firstdata/sources/china/economy/trade/china-cflp.json b/firstdata/sources/china/economy/trade/china-cflp.json new file mode 100644 index 00000000..a7c8f7ee --- /dev/null +++ b/firstdata/sources/china/economy/trade/china-cflp.json @@ -0,0 +1,73 @@ +{ + "id": "china-cflp", + "name": { + "en": "China Federation of Logistics and Purchasing", + "zh": "中国物流与采购联合会" + }, + "description": { + "en": "The China Federation of Logistics and Purchasing (CFLP) is the national industry association representing China's logistics and supply chain sector. CFLP is internationally recognized as the publisher of the China Logistics PMI (Purchasing Managers' Index) and the China Manufacturing PMI (in conjunction with the National Bureau of Statistics), which are among the most closely watched leading economic indicators for China. The federation publishes monthly logistics PMI data, warehousing index, logistics industry revenue statistics, and annual logistics development reports. Its data is widely used by global investors, policymakers, and researchers to gauge the health of China's supply chains and manufacturing activity.", + "zh": "中国物流与采购联合会(中物联)是代表中国物流和供应链行业的全国性行业组织。中物联作为中国物流业采购经理人指数(PMI)的发布机构享誉国际,同时与国家统计局联合发布中国制造业PMI,这些指数是全球最受关注的中国经济先行指标之一。联合会发布月度物流业PMI、仓储指数、物流行业营收统计及年度物流发展报告,其数据被全球投资者、政策制定者和研究人员广泛用于评估中国供应链和制造业的运行状况。" + }, + "website": "https://www.chinawuliu.com.cn/", + "data_url": "https://www.chinawuliu.com.cn/lhhzq/", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "economics", + "industry", + "trade", + "infrastructure" + ], + "update_frequency": "monthly", + "tags": [ + "中国物流与采购联合会", + "cflp", + "中物联", + "物流PMI", + "logistics-pmi", + "采购经理人指数", + "purchasing-managers-index", + "中国制造业PMI", + "china-manufacturing-pmi", + "供应链", + "supply-chain", + "物流行业", + "logistics-industry", + "仓储指数", + "warehousing-index", + "物流成本", + "logistics-cost", + "运输", + "transportation", + "经济先行指标", + "leading-economic-indicator", + "采购", + "procurement", + "社会物流总额", + "total-social-logistics" + ], + "data_content": { + "en": [ + "China Logistics PMI: monthly composite index measuring activity across transportation, warehousing, and supply chain sectors, including sub-indices for business volume, new orders, inventory, and employment", + "China Manufacturing PMI: co-published with the National Bureau of Statistics, this flagship index tracks monthly changes in manufacturing activity through surveys of purchasing managers", + "Warehousing and storage index: monthly index tracking warehouse utilization rates, storage volumes, and throughput", + "Social logistics total volume: annual data on the total value of goods passing through China's logistics system, a key macro indicator", + "Logistics cost ratio: annual analysis of logistics costs as a percentage of GDP, used to benchmark China's supply chain efficiency", + "Freight transport data: volume and value of goods transported by road, rail, waterway, and air within China", + "Cold chain logistics statistics: annual data on the development of refrigerated transport and storage capacity", + "Annual logistics development report: comprehensive review of China's logistics sector including infrastructure, enterprises, and policy developments" + ], + "zh": [ + "中国物流业采购经理人指数(PMI):月度综合指数,涵盖运输、仓储和供应链各环节,包含业务量、新订单、库存和从业人员等分项指数", + "中国制造业PMI:与国家统计局联合发布,通过对采购经理的问卷调查追踪制造业月度活动变化的旗舰指数", + "仓储业务景气指数:月度跟踪仓库利用率、存储量和吞吐量的指数", + "社会物流总额:全国物流系统商品流转总值年度数据,是重要的宏观经济指标", + "物流费用占GDP比率:物流成本占GDP比重的年度分析,用于衡量中国供应链效率水平", + "货运量数据:公路、铁路、水运和航空运输的货物量和货物价值", + "冷链物流统计:冷藏运输和冷库容量发展情况年度数据", + "年度物流发展报告:中国物流行业基础设施、企业经营和政策发展的综合评述" + ] + } +} diff --git a/firstdata/sources/china/economy/trade/china-cfsmc.json b/firstdata/sources/china/economy/trade/china-cfsmc.json new file mode 100644 index 00000000..659ca91f --- /dev/null +++ b/firstdata/sources/china/economy/trade/china-cfsmc.json @@ -0,0 +1,71 @@ +{ + "id": "china-cfsmc", + "name": { + "en": "All-China Federation of Supply and Marketing Cooperatives", + "zh": "中华全国供销合作总社" + }, + "description": { + "en": "The All-China Federation of Supply and Marketing Cooperatives (ACFSMC) is a state-controlled cooperative organization directly under the State Council, operating China's largest rural distribution and procurement network. Spanning 31 provinces with over 200,000 cooperative member organizations, ACFSMC manages agricultural input supply (fertilizers, pesticides, seeds), rural consumer goods distribution, agricultural product procurement, cold chain logistics, and rural e-commerce services. It publishes annual statistical yearbooks and periodic data on agricultural materials distribution, rural consumption, cooperative enterprise financial performance, and rural market development, covering China's vast rural population across 2,800 county-level cooperative organizations.", + "zh": "中华全国供销合作总社是国务院直属的国家级联合合作组织,拥有全国最大的农村流通和购销网络。覆盖31个省份、200余万个基层合作组织,负责农业生产资料(化肥、农药、种子)供应、农村消费品流通、农产品购销、冷链物流和农村电商服务。发布年度统计年鉴和阶段性农业生产资料流通、农村消费、合作社企业财务经营和农村市场发展数据,服务覆盖全国2800余个县级供销合作社组织体系。" + }, + "website": "https://www.chinacoop.gov.cn/", + "data_url": "https://www.chinacoop.gov.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "agriculture", + "trade", + "economics" + ], + "update_frequency": "annual", + "tags": [ + "全国供销合作总社", + "acfsmc", + "供销合作社", + "supply-marketing-cooperatives", + "农业生产资料", + "agricultural-inputs", + "化肥流通", + "fertilizer-distribution", + "农村流通", + "rural-distribution", + "农产品购销", + "agricultural-procurement", + "农村电商", + "rural-e-commerce", + "合作社统计", + "cooperative-statistics", + "农村消费", + "rural-consumption", + "冷链物流", + "cold-chain-logistics", + "农资供应链", + "agricultural-supply-chain", + "县域经济", + "county-economy" + ], + "data_content": { + "en": [ + "Agricultural inputs distribution statistics: monthly and annual data on fertilizer, pesticide, seed, and farm machinery sales volume and prices through cooperative retail networks across 31 provinces", + "Rural consumer goods distribution: sales data for daily necessities, household goods, and processed food sold through county-level and township cooperative stores", + "Agricultural product procurement: annual volume and value of grain, cotton, oil crops, vegetables, fruits, and other agricultural products purchased through cooperative channels", + "Cooperative enterprise financial performance: revenue, profit, total assets, fixed asset investment, and employment figures for ACFSMC's nationwide enterprise network", + "Rural e-commerce statistics: annual online sales volume, platform usage rates, and last-mile logistics metrics for cooperative-operated e-commerce services in rural townships", + "Cooperative organizational data: number of county-level cooperatives, primary cooperative organizations, registered members, retail outlets, and warehousing capacity by province", + "Cold chain logistics capacity: refrigerated storage volume, cold-chain vehicles, and fresh agricultural product handling capacity across the cooperative distribution network", + "Rural market development indicators: market coverage rates, supply chain modernization progress, and service accessibility metrics for China's rural population" + ], + "zh": [ + "农业生产资料流通统计:31省合作社零售网络化肥、农药、种子和农机具月度及年度销售量和价格数据", + "农村消费品流通:县乡合作社门店日用品、家用商品和加工食品销售数据", + "农产品购销:合作社渠道粮食、棉花、油料、蔬菜、水果等农产品年度收购量和金额", + "合作社企业财务绩效:全国供销系统企业网络营收、利润、总资产、固定资产投资和就业数据", + "农村电商统计:合作社运营电商服务年度网络销售量、平台使用率和农村乡镇最后一公里物流指标", + "合作社组织数据:各省县级供销合作社数量、基层合作社组织、注册社员、零售网点和仓储容量", + "冷链物流能力:合作社流通网络冷库容量、冷链车辆和鲜活农产品处理能力", + "农村市场发展指标:农村人口市场覆盖率、供应链现代化进展和服务可及性指标" + ] + } +} diff --git a/firstdata/sources/china/economy/trade/china-chinca.json b/firstdata/sources/china/economy/trade/china-chinca.json new file mode 100644 index 00000000..1999558a --- /dev/null +++ b/firstdata/sources/china/economy/trade/china-chinca.json @@ -0,0 +1,80 @@ +{ + "id": "china-chinca", + "name": { + "en": "China International Contractors Association", + "zh": "中国对外承包工程商会" + }, + "description": { + "en": "The China International Contractors Association (CHINCA) is the national industry organization representing Chinese enterprises engaged in international contracting, overseas investment, and project-related services. Operating under the supervision of the Ministry of Commerce, CHINCA represents over 1,500 member companies involved in infrastructure construction, engineering services, and overseas project financing across more than 180 countries. CHINCA publishes the authoritative annual Survey of China's International Contractors, which covers total overseas contracting revenue, newly signed contract value, project completions by sector (transportation, housing, energy, telecoms, industrial), geographic distribution, and enterprise rankings. The association also reports data on labor export, overseas engineering equipment value, and projects under Belt and Road Initiative (BRI) countries. CHINCA's statistics are the primary reference for tracking China's overseas construction footprint, infrastructure diplomacy, and international engineering services market share.", + "zh": "中国对外承包工程商会(CHINCA)是代表从事国际工程承包、境外投资及相关服务中国企业的全国性行业组织,在商务部指导下运作,会员企业超过1500家,业务覆盖180多个国家的基础设施建设、工程服务和境外项目融资领域。CHINCA发布权威年度《中国对外承包工程商会行业报告》,涵盖境外承包工程营业额、新签合同额、按行业(交通、房建、能源、通信、工业)分类的项目完成情况、地域分布及企业排名。商会还发布劳务输出、境外工程机械设备价值以及《一带一路》沿线国家项目数据。CHINCA统计数据是追踪中国境外建设足迹、基础设施外交及国际工程服务市场份额的主要参考来源。" + }, + "website": "https://www.chinca.org/", + "data_url": "https://www.chinca.org/CICA/info/20-1/index.html", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "trade", + "economics", + "infrastructure", + "construction" + ], + "update_frequency": "annual", + "tags": [ + "中国对外承包工程商会", + "chinca", + "china-international-contractors-association", + "对外承包工程", + "overseas-contracting", + "国际工程", + "international-engineering", + "境外投资", + "overseas-investment", + "新签合同额", + "newly-signed-contracts", + "营业额", + "contracting-revenue", + "一带一路", + "belt-and-road-initiative", + "bri", + "基础设施建设", + "infrastructure-construction", + "工程承包", + "engineering-contracting", + "劳务输出", + "labor-export", + "交通基础设施", + "transportation-infrastructure", + "能源工程", + "energy-engineering", + "企业排名", + "enterprise-ranking", + "mofcom", + "商务部" + ], + "data_content": { + "en": [ + "Annual overseas contracting revenue: total revenue earned by Chinese contractors from overseas projects, disaggregated by sector and geographic region", + "Newly signed contracts value: annual value of new international project contracts signed by Chinese companies, by country and sector", + "Project sector breakdown: overseas contract values for transportation, housing and real estate, energy and power, telecommunications, industrial, and other sectors", + "Geographic distribution: value and project count by region (Africa, Asia, Europe, Latin America, Middle East, Oceania) and top 50 destination countries", + "BRI country statistics: dedicated data on Chinese overseas contracting in Belt and Road Initiative partner countries, tracking growth trends since 2013", + "Top contractor rankings: annual list of China's top 100 international contractors by revenue and newly signed contracts, enabling trend analysis", + "Labor services: statistics on overseas labor export by Chinese companies linked to contracting projects", + "Equipment and materials export: value of engineering machinery and equipment exported as part of overseas construction projects", + "Annual industry survey report: comprehensive analysis of industry trends, challenges, policy environment, and outlook for Chinese overseas contractors" + ], + "zh": [ + "年度境外承包工程营业额:中国承包商境外项目收入总额,按行业和地理区域细分", + "新签合同额:中国企业年度新签国际项目合同总额,按国家和行业分类", + "项目行业分布:交通运输、房屋建筑、能源电力、通信、工业及其他领域的境外合同额", + "地区分布:按区域(非洲、亚洲、欧洲、拉美、中东、大洋洲)及前50目的地国统计的合同额和项目数量", + "\"一带一路\"国家统计:中国在\"一带一路\"沿线国家境外承包工程专项数据,追踪2013年以来增长趋势", + "承包商排名:按营业额和新签合同额列出的年度中国对外承包工程企业百强名单", + "劳务输出:与承包工程项目相关的中国企业境外劳务统计", + "设备材料出口:境外建设项目带动出口的工程机械设备价值", + "年度行业调查报告:中国对外承包工程行业趋势、挑战、政策环境及展望综合分析" + ] + } +} diff --git a/firstdata/sources/china/economy/trade/china-gacc.json b/firstdata/sources/china/economy/trade/china-gacc.json new file mode 100644 index 00000000..ef4795a9 --- /dev/null +++ b/firstdata/sources/china/economy/trade/china-gacc.json @@ -0,0 +1,44 @@ +{ + "id": "china-gacc", + "name": { + "en": "General Administration of Customs of China", + "zh": "中华人民共和国海关总署", + "native": "中华人民共和国海关总署" + }, + "description": { + "en": "The General Administration of Customs (GACC) is responsible for China's customs administration. It publishes detailed import/export statistics by HS code, country, and commodity category.", + "zh": "海关总署是中国海关管理的主管机构。发布按HS编码、国家和商品类别分类的详细进出口统计数据。" + }, + "website": "https://www.customs.gov.cn", + "data_url": "https://www.customs.gov.cn/customs/302249/zfxxgk/2799825/302274/302277/index.html", + "country": "CN", + "domains": [ + "trade", + "economics" + ], + "tags": [ + "customs", + "imports", + "exports", + "hs-code", + "trade-statistics" + ], + "authority_level": "government", + "update_frequency": "monthly", + "geographic_scope": "national", + "data_content": { + "en": [ + "Import/Export Statistics - Detailed trade data by HS code, country, and commodity category", + "Customs Revenue - National customs duty and tax collection data", + "Trade Balance - Monthly and annual trade surplus/deficit figures", + "Cross-border E-commerce - Cross-border online shopping import/export statistics" + ], + "zh": [ + "进出口统计 - 按HS编码、国家和商品类别分类的详细贸易数据", + "海关税收 - 全国海关关税和税收征收数据", + "贸易差额 - 月度和年度贸易顺差/逆差数据", + "跨境电商 - 跨境网购进出口统计" + ] + }, + "api_url": null +} diff --git a/firstdata/sources/china/economy/trade/china-sinosure.json b/firstdata/sources/china/economy/trade/china-sinosure.json new file mode 100644 index 00000000..b9ea12ec --- /dev/null +++ b/firstdata/sources/china/economy/trade/china-sinosure.json @@ -0,0 +1,73 @@ +{ + "id": "china-sinosure", + "name": { + "en": "China Export & Credit Insurance Corporation", + "zh": "中国出口信用保险公司" + }, + "description": { + "en": "China Export & Credit Insurance Corporation (Sinosure) is a state-owned policy insurance company established by the Chinese government to support China's foreign trade, investment, and economic cooperation by providing export credit insurance and investment guarantee services. As China's sole provider of policy-based export credit insurance, Sinosure publishes annual reports containing authoritative data on export credit insurance coverage by country, industry, and enterprise type, as well as country risk assessments, loss and compensation data, and overseas investment insurance statistics. Sinosure's country risk classifications and export data coverage represent unique intelligence on the credit risk landscape of China's global trade partners.", + "zh": "中国出口信用保险公司(中国信保)是国家出资设立的政策性保险机构,通过提供出口信用保险和投资保证服务,支持中国的对外贸易、投资和经济合作。作为中国唯一的政策性出口信用保险机构,中国信保发布年度报告,提供按国家、行业和企业类型分类的出口信用保险承保数据,以及国家风险评级、损失赔偿数据和境外投资保险统计。中国信保的国家风险分类和出口数据覆盖情况,是了解中国全球贸易伙伴信用风险状况的独特信息来源。" + }, + "website": "https://www.sinosure.com.cn", + "data_url": "https://www.sinosure.com.cn/gywm/gsjj/xxpl/index.shtml", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "trade", + "finance", + "economics" + ], + "update_frequency": "annual", + "tags": [ + "出口信用保险", + "export-credit-insurance", + "国家风险", + "country-risk", + "出口保障", + "export-guarantee", + "境外投资", + "overseas-investment", + "贸易融资", + "trade-finance", + "短期险", + "short-term-insurance", + "中长期险", + "medium-long-term-insurance", + "债务人风险", + "buyer-risk", + "赔偿数据", + "claims-data", + "信用评级", + "credit-rating", + "对外贸易", + "foreign-trade", + "政策性保险", + "policy-insurance", + "sinosure", + "中国信保" + ], + "data_content": { + "en": [ + "Export credit insurance coverage statistics: annual premium income, total insured export value, and number of insured exporters by policy type (short-term, medium-to-long-term, overseas investment insurance) with historical comparison", + "Country risk assessments and classifications: Sinosure's proprietary country risk ratings covering 200+ countries and territories, categorized by political risk, transfer risk, and commercial risk with annual updates", + "Geographic distribution of export insurance coverage: insured export value broken down by destination country and region, highlighting coverage in Belt and Road Initiative countries, African markets, and emerging economies", + "Industry sector coverage data: export insurance penetration rates and insured value by major export sectors including machinery, electronics, textiles, chemicals, and infrastructure project financing", + "Loss and compensation data: annual claims paid, loss ratios by country and industry, recovery rates, and compensation trends indicating stress in China's export credit portfolio", + "Overseas investment insurance statistics: coverage for Chinese outbound direct investment (ODI) projects by country and industry, including infrastructure, energy, mining, and manufacturing investments", + "Enterprise type breakdown: insurance coverage distributed among large SOEs, mid-sized private exporters, SMEs, and cross-border e-commerce enterprises, with policy support metrics for each segment", + "Annual report financial data: Sinosure's own financial performance including total assets, underwriting profits, investment income, reserve levels, and solvency ratios as a policy insurance entity" + ], + "zh": [ + "出口信用保险承保统计:年度保费收入、出口保险金额和承保出口商数量,按险种(短期险、中长期险、境外投资险)分类,并附历史对比数据", + "国家风险评估与分类:中国信保对200余个国家和地区的自有国家风险评级,按政治风险、转移风险和商业风险分类,每年更新", + "出口保险承保的地区分布:按目的国和地区分类的承保出口金额,重点突出一带一路沿线国家、非洲市场和新兴经济体的覆盖情况", + "行业领域覆盖数据:机械、电子、纺织、化工和基础设施项目融资等主要出口行业的保险渗透率和承保金额", + "损失与赔偿数据:年度赔偿金额、按国家和行业的赔付率、追偿率及赔偿趋势,反映中国出口信用组合的压力状况", + "境外投资保险统计:中国对外直接投资(ODI)项目按国家和行业的承保情况,含基础设施、能源、矿业和制造业投资", + "企业类型分布:大型国有企业、中型民营出口商、中小企业及跨境电商企业的保险覆盖情况,及各细分市场的政策支持指标", + "年度报告财务数据:中国信保作为政策性保险机构的自身财务状况,包括总资产、承保利润、投资收益、准备金水平和偿付能力比率" + ] + } +} diff --git a/firstdata/sources/china/economy/trade/customs.json b/firstdata/sources/china/economy/trade/customs.json index b499ad1a..79d8eef1 100644 --- a/firstdata/sources/china/economy/trade/customs.json +++ b/firstdata/sources/china/economy/trade/customs.json @@ -16,7 +16,7 @@ "domains": [ "trade", "economics", - "international_commerce" + "international-commerce" ], "geographic_scope": "national", "update_frequency": "monthly", @@ -55,4 +55,4 @@ ] }, "authority_level": "government" -} \ No newline at end of file +} diff --git a/firstdata/sources/china/economy/trade/mofcom.json b/firstdata/sources/china/economy/trade/mofcom.json index 9a81514a..8e631635 100644 --- a/firstdata/sources/china/economy/trade/mofcom.json +++ b/firstdata/sources/china/economy/trade/mofcom.json @@ -9,7 +9,7 @@ "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": "http://www.mofcom.gov.cn", + "website": "https://www.mofcom.gov.cn", "data_url": "https://data.mofcom.gov.cn", "api_url": null, "country": "CN", diff --git a/firstdata/sources/china/education/china-csdp.json b/firstdata/sources/china/education/china-csdp.json new file mode 100644 index 00000000..76adc3a4 --- /dev/null +++ b/firstdata/sources/china/education/china-csdp.json @@ -0,0 +1,47 @@ +{ + "id": "china-csdp", + "name": { + "en": "China School Development Planning Center", + "zh": "教育部学校规划建设发展中心" + }, + "description": { + "en": "The China School Development Planning Center (CSDP), under China's Ministry of Education, is responsible for planning, policy research, and development of China's school infrastructure. It publishes data and reports on educational facility construction, school development planning standards, campus sustainability, smart campus initiatives, and education infrastructure investment across the country.", + "zh": "教育部学校规划建设发展中心(CSDP)隶属于教育部,负责全国学校基础设施的规划、政策研究与发展工作,发布教育设施建设、学校发展规划标准、校园可持续发展、智慧校园及全国教育基础设施投资等方面的数据与报告。" + }, + "website": "https://www.csdp.edu.cn", + "data_url": "https://www.csdp.edu.cn", + "api_url": null, + "country": "CN", + "domains": [ + "education", + "infrastructure", + "government" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "china", + "education", + "school-planning", + "education-infrastructure" + ], + "data_content": { + "en": [ + "School Construction Statistics - Data on new school construction, renovation, and facility upgrades nationwide", + "Campus Planning Standards - National standards for school infrastructure and space planning", + "Smart Campus Initiative - Progress reports on digital transformation in Chinese schools", + "Education Infrastructure Investment - Annual investment data in school facilities by province", + "Sustainability Reports - Green campus construction and energy-saving benchmarks", + "Research Reports - Policy research on school development planning and quality standards" + ], + "zh": [ + "学校建设统计 - 全国新建、改建及设施升级数据", + "校园规划标准 - 学校基础设施与空间规划国家标准", + "智慧校园建设 - 中国学校数字化转型进展报告", + "教育基础设施投资 - 各省学校设施年度投资数据", + "可持续发展报告 - 绿色校园建设与节能标准", + "研究报告 - 学校发展规划与质量标准政策研究" + ] + }, + "authority_level": "government" +} diff --git a/firstdata/sources/china/education/china-nlc.json b/firstdata/sources/china/education/china-nlc.json new file mode 100644 index 00000000..4b1298f4 --- /dev/null +++ b/firstdata/sources/china/education/china-nlc.json @@ -0,0 +1,79 @@ +{ + "id": "china-nlc", + "name": { + "en": "National Library of China", + "zh": "中国国家图书馆" + }, + "description": { + "en": "The National Library of China (NLC) is China's largest and highest-level comprehensive library, functioning as the national center for bibliographic information, document preservation, and cultural heritage. Established in 1909, it holds over 40 million items covering books, periodicals, newspapers, ancient manuscripts, digital resources, and audiovisual materials. NLC operates the National Digital Library of China (NDLC), providing open access to bibliographic metadata, historical archives, and digitized cultural relics. It also serves as the national ISSN and ISBN agency for China and publishes authoritative library statistics, cultural heritage digital resources, and reading behavior research reports that support policy, education, and humanities research.", + "zh": "中国国家图书馆是中国最大、最高级别的综合性图书馆,也是全国书目信息、文献保障和文化遗产保护的中心机构。国家图书馆建于1909年,馆藏超过4000万件,涵盖图书、期刊、报纸、古籍善本、数字资源及音像资料等。依托国家数字图书馆平台,提供书目元数据、历史档案和数字文化遗产的开放获取服务。国图还担任中国ISSN和ISBN国家中心,发布权威的图书馆统计数据、文化遗产数字资源及阅读行为研究报告,支持政策制定、教育研究和人文学科发展。" + }, + "website": "https://www.nlc.cn", + "data_url": "https://www.nlc.cn/pcab/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "education", + "culture", + "research" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "国家图书馆", + "national-library-of-china", + "nlc", + "国家数字图书馆", + "national-digital-library", + "古籍", + "ancient-manuscripts", + "书目数据", + "bibliographic-data", + "isbn", + "issn", + "文化遗产", + "cultural-heritage", + "数字资源", + "digital-resources", + "图书馆统计", + "library-statistics", + "阅读研究", + "reading-research", + "文献保障", + "document-preservation", + "开放获取", + "open-access", + "期刊", + "periodicals", + "学术数据", + "academic-data", + "china" + ], + "data_content": { + "en": [ + "National bibliographic catalog: metadata for books, periodicals, newspapers, and multimedia holdings", + "Ancient books and manuscripts: digitized rare books, classical texts, and historical documents from imperial collections", + "Cultural heritage digital resources: digitized paintings, calligraphy, rubbings, maps, and photographs", + "ISBN and ISSN registry: national book and serial publication registration records", + "Library statistics yearbook: annual data on public libraries, collections, services, and staffing nationwide", + "National reading survey: annual report on Chinese citizens' reading habits, formats, and preferences", + "Interlibrary loan data: cross-library document delivery and resource sharing statistics", + "Academic and research journals: access to Chinese core journals and scholarly databases", + "Digital archives: historical newspapers, government gazettes, and official publications", + "Open data catalog: selected datasets and bibliographic records available for public download" + ], + "zh": [ + "全国书目联合目录:图书、期刊、报纸及多媒体馆藏的元数据", + "古籍善本:数字化珍贵古籍、经典文献及皇家收藏历史文献", + "文化遗产数字资源:数字化绘画、书法、拓片、地图及历史图片", + "ISBN与ISSN注册中心:全国图书及连续出版物登记记录", + "图书馆统计年报:全国公共图书馆馆藏、服务及人员年度统计", + "全国阅读调查:中国公民阅读习惯、阅读载体及偏好年度报告", + "馆际互借数据:图书馆间文献传递及资源共享统计", + "学术期刊:中文核心期刊及学术数据库访问", + "数字档案:历史报纸、政府公报及官方出版物", + "开放数据目录:可公开下载的精选数据集及书目记录" + ] + } +} diff --git a/firstdata/sources/china/education/cscse.json b/firstdata/sources/china/education/cscse.json index 1646c806..1c1a474e 100644 --- a/firstdata/sources/china/education/cscse.json +++ b/firstdata/sources/china/education/cscse.json @@ -29,9 +29,9 @@ "留学回国", "国际教育", "international-education", - "CSCSE", + "cscse", "教育部", - "Ministry of Education" + "ministry-of-education" ], "data_content": { "en": [ diff --git a/firstdata/sources/china/education/higher_education/cdgdc.json b/firstdata/sources/china/education/higher_education/cdgdc.json index 964f2b5f..d01d2a5a 100644 --- a/firstdata/sources/china/education/higher_education/cdgdc.json +++ b/firstdata/sources/china/education/higher_education/cdgdc.json @@ -23,22 +23,22 @@ "tags": [ "学位", "研究生教育", - "academic degrees", - "graduate education", + "academic-degrees", + "graduate-education", "学科评估", - "discipline evaluation", + "discipline-evaluation", "论文抽检", - "thesis inspection", + "thesis-inspection", "教育质量", - "education quality", + "education-quality", "专业学位", - "professional degree", + "professional-degree", "博士", "硕士", - "PhD", + "phd", "master", "学位认证", - "degree certification" + "degree-certification" ], "data_content": { "en": [ diff --git a/firstdata/sources/china/education/higher_education/china-gaokao-chsi.json b/firstdata/sources/china/education/higher_education/china-gaokao-chsi.json index 42d001cb..51aba769 100644 --- a/firstdata/sources/china/education/higher_education/china-gaokao-chsi.json +++ b/firstdata/sources/china/education/higher_education/china-gaokao-chsi.json @@ -22,31 +22,31 @@ "update_frequency": "real-time", "tags": [ "研招网", - "postgraduate admissions", + "postgraduate-admissions", "考研", - "graduate entrance exam", + "graduate-entrance-exam", "硕士招生", - "master's admissions", + "master's-admissions", "博士招生", - "doctoral admissions", + "doctoral-admissions", "网上报名", - "online registration", + "online-registration", "调剂系统", - "adjustment system", + "adjustment-system", "院校查询", - "institution search", + "institution-search", "专业目录", - "program directory", + "program-directory", "成绩查询", - "score inquiry", + "score-inquiry", "教育部", - "Ministry of Education", + "ministry-of-education", "学信网", - "CHSI", + "chsi", "研究生入学考试", - "postgraduate entrance examination", + "postgraduate-entrance-examination", "推免服务", - "exemption recommendation" + "exemption-recommendation" ], "data_content": { "en": [ diff --git a/firstdata/sources/china/education/higher_education/china-moe-higher-education.json b/firstdata/sources/china/education/higher_education/china-moe-higher-education.json index 644c58b5..b4ae1207 100644 --- a/firstdata/sources/china/education/higher_education/china-moe-higher-education.json +++ b/firstdata/sources/china/education/higher_education/china-moe-higher-education.json @@ -8,14 +8,14 @@ "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": "http://www.moe.gov.cn/", - "data_url": "http://www.moe.gov.cn/jyb_sjzl/sjzl_fztjgb/", + "website": "https://www.moe.gov.cn/", + "data_url": "https://www.moe.gov.cn/jyb_sjzl/sjzl_fztjgb/", "api_url": null, "authority_level": "government", "country": "CN", "domains": [ "education", - "higher_education", + "higher-education", "statistics" ], "geographic_scope": "national", @@ -23,8 +23,8 @@ "tags": [ "教育统计", "高等教育", - "education statistics", - "higher education", + "education-statistics", + "higher-education", "招生", "毕业生", "enrollment", @@ -36,29 +36,29 @@ "博士", "硕士", "doctoral", - "master's degree", + "master's-degree", "理工科", - "STEM", - "science and engineering", + "stem", + "science-and-engineering", "普通本科", "高职", "职业教育", - "vocational education", + "vocational-education", "高校", "universities", "院校数据", - "institutional data", + "institutional-data", "师资", "faculty", "教师", "teachers", "学科分类", - "discipline classification", + "discipline-classification", "教育部", - "Ministry of Education", - "MOE", + "ministry-of-education", + "moe", "统计公报", - "statistical bulletin" + "statistical-bulletin" ], "data_content": { "en": [ diff --git a/firstdata/sources/china/education/moe-china.json b/firstdata/sources/china/education/moe-china.json index 2766f7af..b793ae3e 100644 --- a/firstdata/sources/china/education/moe-china.json +++ b/firstdata/sources/china/education/moe-china.json @@ -8,8 +8,8 @@ "en": "The Ministry of Education of the People's Republic of China (MOE) is the government department responsible for comprehensive education management nationwide. It formulates education policies, publishes education statistics, supervises educational institutions at all levels, and provides authoritative data on education development including enrollment, teacher staffing, infrastructure, and educational expenditure across China.", "zh": "中华人民共和国教育部是主管全国教育事业的国务院组成部门。负责制定教育政策、发布教育统计数据、监督管理各级各类教育机构,提供包括学生入学、师资配备、基础设施建设、教育经费等方面的权威教育发展数据。" }, - "website": "http://www.moe.gov.cn/", - "data_url": "http://www.moe.gov.cn/jyb_xxgk/xxgk/neirong/tongji/", + "website": "https://www.moe.gov.cn/", + "data_url": "https://www.moe.gov.cn/jyb_xxgk/xxgk/neirong/tongji/", "api_url": null, "authority_level": "government", "country": "CN", diff --git a/firstdata/sources/china/education/moe-gaokao.json b/firstdata/sources/china/education/moe-gaokao.json index 7527d6cc..ffd87939 100644 --- a/firstdata/sources/china/education/moe-gaokao.json +++ b/firstdata/sources/china/education/moe-gaokao.json @@ -22,32 +22,32 @@ "update_frequency": "daily", "tags": [ "阳光高考", - "Sunshine Gaokao", + "sunshine-gaokao", "高考", - "Gaokao", - "college entrance examination", + "gaokao", + "college-entrance-examination", "大学招生", - "university admissions", + "university-admissions", "志愿填报", - "volunteer application", + "volunteer-application", "阳光志愿", - "Sunshine Volunteer", + "sunshine-volunteer", "招生计划", - "enrollment plan", + "enrollment-plan", "院校信息", - "university information", + "university-information", "专业介绍", - "major introduction", + "major-introduction", "就业前景", - "employment prospects", + "employment-prospects", "教育部", - "Ministry of Education", + "ministry-of-education", "学信网", - "CHSI", + "chsi", "高校招生", - "higher education enrollment", + "higher-education-enrollment", "招生章程", - "admission regulations" + "admission-regulations" ], "data_content": { "en": [ diff --git a/firstdata/sources/china/finance/banking/cdb.json b/firstdata/sources/china/finance/banking/cdb.json new file mode 100644 index 00000000..bd6ea537 --- /dev/null +++ b/firstdata/sources/china/finance/banking/cdb.json @@ -0,0 +1,65 @@ +{ + "id": "china-cdb", + "name": { + "en": "China Development Bank", + "zh": "国家开发银行" + }, + "description": { + "en": "The China Development Bank (CDB) is China's largest policy bank and development finance institution, directly supervised by the State Council. Established in 1994, it provides medium- and long-term financing for major national strategic projects in infrastructure, basic industries, and pillar industries. CDB publishes annual reports, financial statements, bond issuance data, and statistics on lending to key sectors including transportation, energy, water resources, urban development, and international cooperation.", + "zh": "国家开发银行是中国最大的政策性银行和开发性金融机构,直属国务院监管,成立于1994年,为基础设施、基础产业和支柱产业等国家重大战略项目提供中长期融资。发布年度报告、财务报表、债券发行数据及交通、能源、水利、城镇化建设和国际合作等重点领域贷款统计数据。" + }, + "website": "https://www.cdb.com.cn", + "data_url": "https://www.cdb.com.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "finance", + "banking", + "infrastructure" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "china", + "development-bank", + "policy-bank", + "infrastructure-finance", + "long-term-lending", + "bond-issuance", + "国家开发银行", + "政策性银行", + "开发性金融", + "基础设施", + "中长期贷款", + "债券", + "能源贷款", + "交通贷款", + "城镇化", + "national-development", + "cdb", + "annual-report" + ], + "data_content": { + "en": [ + "Annual Reports - Full financial statements, business review, capital adequacy, and risk management disclosure", + "Bond Issuances - Domestic and international bond prospectuses, rates, and maturity schedules", + "Sector Lending Data - Loans outstanding by sector: transportation, energy, water, urban, education, agriculture", + "Infrastructure Finance - Financing volume for highways, railways, airports, and urban infrastructure", + "Poverty Alleviation Finance - Targeted lending statistics for poverty reduction and rural revitalization", + "International Cooperation - Overseas lending statistics and development finance for BRI projects", + "Green Finance - Green bonds and environmental lending statistics", + "Information Disclosure (ZWGK) - Regulatory filings, business reports, and governance documents" + ], + "zh": [ + "年度报告 - 完整财务报表、业务回顾、资本充足率及风险管理披露", + "债券发行 - 境内外债券募集说明书、利率及到期安排", + "行业贷款数据 - 按行业划分的贷款余额:交通、能源、水利、城镇、教育、农业", + "基础设施融资 - 公路、铁路、机场及城市基础设施的融资规模", + "脱贫攻坚金融 - 精准扶贫和乡村振兴的专项贷款统计", + "国际合作 - 境外贷款统计数据及一带一路项目开发性融资", + "绿色金融 - 绿色债券和环保领域贷款统计", + "政务公开(ZWGK) - 监管报备、业务报告及公司治理文件" + ] + } +} diff --git a/firstdata/sources/china/finance/banking/china-adbc.json b/firstdata/sources/china/finance/banking/china-adbc.json new file mode 100644 index 00000000..cc6e8d5b --- /dev/null +++ b/firstdata/sources/china/finance/banking/china-adbc.json @@ -0,0 +1,57 @@ +{ + "id": "china-adbc", + "name": { + "en": "Agricultural Development Bank of China", + "zh": "中国农业发展银行" + }, + "description": { + "en": "The Agricultural Development Bank of China (ADBC) is China's state-owned agricultural policy bank, directly supervised by the State Council. Established in 1994, it provides policy-based financial support for agriculture, rural development, and food security. It publishes annual reports, bond issuance data, financial statements, and loan statistics related to rural development and food supply chain financing.", + "zh": "中国农业发展银行是中国国家出资、直属国务院领导的农业政策性银行,成立于1994年,为农业农村发展和粮食安全提供政策性金融支持。发布年度报告、债券发行数据、财务报表及涉农贷款和粮食供应链融资统计数据。" + }, + "website": "https://www.adbc.com.cn", + "data_url": "https://www.adbc.com.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "finance", + "agriculture", + "banking" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "agricultural-bank", + "policy-bank", + "rural-finance", + "agriculture-loans", + "adbc", + "农业发展银行", + "农发行", + "涉农贷款", + "三农金融", + "food-security", + "rural-development", + "china" + ], + "data_content": { + "en": [ + "Annual reports and audited financial statements", + "Agricultural policy loan portfolio statistics", + "Rural development and infrastructure financing data", + "Bond issuance and yield curve information", + "Food security and grain reserve financing statistics", + "Regional rural credit allocation data", + "Small and micro agricultural enterprise lending" + ], + "zh": [ + "年度报告和经审计财务报表", + "农业政策性贷款组合统计", + "农村发展和基础设施融资数据", + "债券发行和收益率曲线信息", + "粮食安全和储备融资统计", + "区域农村信贷配置数据", + "小微农业企业贷款数据" + ] + } +} diff --git a/firstdata/sources/china/finance/banking/china-boc.json b/firstdata/sources/china/finance/banking/china-boc.json new file mode 100644 index 00000000..741f8503 --- /dev/null +++ b/firstdata/sources/china/finance/banking/china-boc.json @@ -0,0 +1,71 @@ +{ + "id": "china-boc", + "name": { + "en": "Bank of China (BOC)", + "zh": "中国银行" + }, + "description": { + "en": "Bank of China (BOC) is one of China's 'Big Four' state-owned commercial banks and the most internationalized Chinese bank. Established in 1912 and present in over 60 countries and regions, BOC is also the principal bank for RMB clearing and settlement in many overseas markets. BOC is China's designated foreign exchange bank and publishes authoritative daily RMB exchange rate reference prices (中间价) used widely across Chinese financial markets. In addition to comprehensive annual and interim financial reports covering capital ratios, asset quality, and profitability metrics, BOC provides key international financial data including cross-border trade finance volumes, overseas corporate banking statistics, and offshore RMB (CNH) market data. BOC's exchange rate and cross-border finance data are essential references for multinational corporations operating in China, foreign exchange risk management, and analysis of China's capital account liberalization progress.", + "zh": "中国银行(中行/BOC)是中国“四大行”之一,也是国际化程度最高的中国银行。中行创立于1912年,在全球逾60个国家和地区设有机构,同时是多个海外市场人民币清结算的主要银行。中行是中国官方指定的外汇专业银行,每日发布被中国金融市场广泛引用的人民币汇率中间价。除涵盖资本充足率、资产质量和盈利指标的完整年报和中报外,中行还提供跨境贸易融资规模、海外公司银行业务统计及离岸人民币(CNH)市场数据等关键国际金融数据。中行汇率和跨境金融数据是在华跨国企业外汇风险管理、人民币国际化进展分析及中国资本账户开放程度评估的重要参考。" + }, + "website": "https://www.boc.cn", + "data_url": "https://www.boc.cn/fimarkets/", + "api_url": null, + "authority_level": "commercial", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "economics", + "international-trade" + ], + "update_frequency": "daily", + "tags": [ + "boc", + "中国银行", + "bank-of-china", + "国有商业银行", + "state-owned-bank", + "外汇", + "foreign-exchange", + "人民币汇率", + "rmb-exchange-rate", + "汇率中间价", + "exchange-rate-midpoint", + "跨境贸易融资", + "cross-border-trade-finance", + "离岸人民币", + "offshore-rmb", + "cnh", + "年报", + "annual-report", + "资本充足率", + "capital-adequacy", + "银行业", + "banking", + "人民币国际化", + "rmb-internationalization" + ], + "data_content": { + "en": [ + "Daily RMB exchange rate middle rates (中间价): official CNY reference prices against USD, EUR, JPY, HKD, GBP, AUD, CAD, and 20+ other currencies", + "Foreign currency exchange rates: spot rates, forward rates, and cross rates updated throughout trading hours", + "Annual and interim financial reports: comprehensive financial statements with capital adequacy ratios, NPL ratios, and profitability metrics", + "Cross-border trade finance data: letter of credit volumes, cross-border RMB settlement statistics, and trade facilitation metrics", + "Offshore RMB (CNH) market data: Hong Kong and Singapore RMB deposit pools, CNH interbank rates", + "International banking statistics: country-by-country breakdown of overseas asset exposure and profitability", + "Interest rate publications: RMB deposit rates, loan prime rate (LPR) applications, and foreign currency deposit rates", + "SWIFT RMB internationalization data: BOC's share in global RMB cross-border payments and correspondent banking" + ], + "zh": [ + "每日人民币汇率中间价:人民币兑美元、欧元、日元、港元、英镑、澳元、加元等20多种货币的官方参考汇率", + "外币即期汇率、远期汇率及交叉汇率,在交易时间内实时更新", + "年报和中报:涵盖资本充足率、不良贷款率和盈利指标的完整财务报表", + "跨境贸易融资数据:信用证业务量、跨境人民币结算统计及贸易便利化指标", + "离岸人民币(CNH)市场数据:香港和新加坡人民币存款池规模、CNH同业利率", + "国际银行业统计:各国海外资产敞口及盈利能力分国别披露", + "利率公告:人民币存款利率、贷款市场报价利率(LPR)应用及外币存款利率", + "SWIFT人民币国际化数据:中行在全球人民币跨境支付及代理行网络中的占比" + ] + } +} \ No newline at end of file diff --git a/firstdata/sources/china/finance/banking/china-cba.json b/firstdata/sources/china/finance/banking/china-cba.json new file mode 100644 index 00000000..55fe66dd --- /dev/null +++ b/firstdata/sources/china/finance/banking/china-cba.json @@ -0,0 +1,78 @@ +{ + "id": "china-cba", + "name": { + "en": "China Banking Association", + "zh": "中国银行业协会" + }, + "description": { + "en": "The China Banking Association (CBA) is the national self-regulatory and industry organization for China's banking sector, operating under the guidance of the National Financial Regulatory Administration (NFRA). China's banking system is the world's largest by total assets, and CBA serves as the primary voice for over 4,000 banking institutions. CBA publishes authoritative annual reports on China's banking industry development, covering total bank assets and liabilities, deposit and loan balances, non-performing loan ratios, capital adequacy indicators, digital banking progress, green finance volumes, and banking service reach statistics. CBA's flagship publication, the China Banking Industry Development Report, provides the most comprehensive annual snapshot of China's banking sector and is widely used by policymakers, investors, and researchers globally.", + "zh": "中国银行业协会(银行业协会)是全国性银行业自律和行业组织,在国家金融监督管理总局指导下运营,服务对象超过4000家银行业金融机构。中国银行业资产规模全球最大,中国银行业协会是业界主要代言机构。协会发布权威年度银行业发展报告,内容涵盖银行业资产负债总量、存贷款余额、不良贷款率、资本充足率、数字金融进展、绿色金融规模及银行服务覆盖等统计数据。协会旗舰出版物《中国银行业发展报告》是全面反映中国银行业年度状况的最权威资料,被全球政策制定者、投资者和研究人员广泛参考。" + }, + "website": "https://www.china-cba.net/", + "data_url": "https://www.china-cba.net/Index/lists/catid/268.html", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "economics", + "statistics" + ], + "update_frequency": "annual", + "tags": [ + "中国银行业协会", + "china-banking-association", + "cba", + "银行业统计", + "banking-statistics", + "银行资产", + "bank-assets", + "存贷款", + "deposits-and-loans", + "不良贷款率", + "non-performing-loan-ratio", + "资本充足率", + "capital-adequacy-ratio", + "数字银行", + "digital-banking", + "绿色金融", + "green-finance", + "银行业发展报告", + "banking-industry-development-report", + "普惠金融", + "inclusive-finance", + "银行服务覆盖", + "banking-service-reach", + "中国银行业", + "china-banking-sector", + "金融统计", + "financial-statistics" + ], + "data_content": { + "en": [ + "Banking sector total assets: annual total assets of China's banking institutions broken down by bank type (state-owned, joint-stock, city commercial, rural, foreign)", + "Deposit and loan balances: total deposits and outstanding loan balances by category, including corporate, personal, and mortgage loans", + "Non-performing loan (NPL) data: industry NPL ratios and absolute volumes, NPL disposition and write-off statistics", + "Capital adequacy: capital adequacy ratios, core tier-1 capital, and leverage ratios across major bank categories", + "Profitability indicators: net profit, return on assets, return on equity, and net interest margins for China's banking industry", + "Digital banking progress: number of online banking users, mobile banking transaction volumes, fintech lending data", + "Green finance: green credit outstanding balances, green bond issuance by banks, and ESG-linked lending", + "Inclusive finance (普惠金融): small and micro enterprise loan volumes, agricultural credit extension, and financial service coverage in rural areas", + "Banking network: number of bank branches, ATMs, and electronic banking terminals by province", + "Annual China Banking Industry Development Report: flagship publication covering comprehensive banking industry analysis, trends, and policy assessments" + ], + "zh": [ + "银行业资产总量:按银行类型(国有大行、股份制银行、城商行、农村金融机构、外资银行)分类的年度资产总量", + "存贷款余额:各类存款和贷款余额,包括企业贷款、个人贷款及按揭贷款", + "不良贷款(NPL)数据:行业不良贷款率和绝对规模,不良贷款处置和核销统计", + "资本充足:主要银行类别的资本充足率、核心一级资本及杠杆率", + "盈利能力指标:中国银行业净利润、资产收益率、净资产收益率及净息差", + "数字银行进展:网银用户数量、手机银行交易量、金融科技贷款数据", + "绿色金融:绿色信贷余额、银行绿色债券发行量及ESG关联贷款", + "普惠金融:小微企业贷款规模、农业信贷投放及农村地区金融服务覆盖率", + "银行网络:分省银行网点、ATM机及电子银行终端数量", + "中国银行业发展报告:覆盖银行业综合分析、趋势研判和政策评估的旗舰出版物" + ] + } +} diff --git a/firstdata/sources/china/finance/banking/china-pbccrc.json b/firstdata/sources/china/finance/banking/china-pbccrc.json new file mode 100644 index 00000000..c4027310 --- /dev/null +++ b/firstdata/sources/china/finance/banking/china-pbccrc.json @@ -0,0 +1,73 @@ +{ + "id": "china-pbccrc", + "name": { + "en": "People's Bank of China Credit Reference Center", + "zh": "中国人民银行征信中心" + }, + "description": { + "en": "The Credit Reference Center (CRC) of the People's Bank of China is the operator of China's national credit registry system—one of the world's largest credit databases. Established in 2006, CRC maintains credit records for over 1.1 billion natural persons and more than 60 million enterprises and other legal entities. It collects credit information from banks, non-bank financial institutions, public utilities, and government agencies, and provides credit reports to lenders, individuals, and authorized institutions for lending decisions, due diligence, and financial supervision. CRC also publishes aggregate credit statistics, reports on the scale of social financing, and research on credit system development that inform monetary policy and financial regulation.", + "zh": "中国人民银行征信中心是全国征信系统的运营机构,是全球最大的信用数据库之一。中心成立于2006年,维护着超过11亿自然人和6000万余家企业及其他法人主体的信用记录。数据来源包括银行、非银行金融机构、公用事业单位和政府部门,为贷款机构、个人和授权机构提供信用报告,用于授信决策、尽职调查和金融监管。征信中心还发布信用统计汇总数据、社会融资规模报告和征信体系发展研究,为货币政策和金融监管提供支撑。" + }, + "website": "https://www.pbccrc.org.cn", + "data_url": "https://www.pbccrc.org.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "credit", + "banking", + "economics" + ], + "update_frequency": "monthly", + "tags": [ + "人民银行征信", + "征信中心", + "crc", + "credit-reference", + "credit-bureau", + "信用报告", + "credit-report", + "企业信用", + "enterprise-credit", + "个人信用", + "personal-credit", + "社会征信", + "social-credit", + "金融监管", + "financial-regulation", + "银行信贷", + "bank-lending", + "不良贷款", + "non-performing-loans", + "社会融资规模", + "aggregate-social-financing", + "征信体系", + "credit-system", + "贷款", + "loan", + "债务", + "debt", + "人民银行", + "pbc" + ], + "data_content": { + "en": [ + "Individual Credit Reports: Personal credit history including loans, credit cards, repayment records, and public record information for over 1.1 billion individuals", + "Enterprise Credit Reports: Corporate credit histories including business loans, bonds, guarantees, and legal judgment records for 60+ million entities", + "Credit Statistics: Aggregate national statistics on credit scale, loan types, overdue rates, and financial system credit quality", + "Social Financing Scale: Monthly data on aggregate social financing (TSF), covering bank loans, corporate bonds, equity financing, and off-balance-sheet instruments", + "Credit System Research: Annual reports on China's credit system development, coverage rates, and comparative international analyses", + "Financial Institution Data: Credit registry data from thousands of banks and licensed non-bank financial institutions across China" + ], + "zh": [ + "个人信用报告:超过11亿自然人的贷款、信用卡、还款记录和公共记录信息", + "企业信用报告:6000万余家企业的贷款、债券、担保和法院判决记录", + "信贷统计:全国信贷规模、贷款类型、逾期率和金融体系信贷质量汇总数据", + "社会融资规模:银行贷款、企业债券、股权融资及表外业务的社会融资规模月度数据", + "征信研究:中国征信体系发展、覆盖率及国际比较分析年报", + "金融机构数据:来自全国数千家银行和持牌非银行金融机构的征信数据" + ] + } +} diff --git a/firstdata/sources/china/finance/banking/eximbank.json b/firstdata/sources/china/finance/banking/eximbank.json new file mode 100644 index 00000000..a4f990fa --- /dev/null +++ b/firstdata/sources/china/finance/banking/eximbank.json @@ -0,0 +1,66 @@ +{ + "id": "china-eximbank", + "name": { + "en": "Export-Import Bank of China", + "zh": "中国进出口银行" + }, + "description": { + "en": "The Export-Import Bank of China (EXIM China) is a state-owned policy bank directly under the State Council, established in 1994. It is the sole Chinese government agency bank mandated to provide policy financial services to support China's foreign trade, overseas investment, and international economic cooperation. It publishes annual reports, financial statements, bond issuance data, country loan data, and statistics on export seller's credit, import buyer's credit, and overseas investment loans.", + "zh": "中国进出口银行是直属国务院领导的国家政策性银行,成立于1994年,是唯一被授权承担政策性对外贸易金融业务的政府直属机构,主要支持中国对外贸易、境外投资和国际经济合作。发布年度报告、财务报表、债券发行数据、国别贷款数据及出口买方信贷、进口买方信贷和境外投资贷款统计数据。" + }, + "website": "http://www.eximbank.gov.cn", + "data_url": "http://www.eximbank.gov.cn/cn/index/information/annual/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "finance", + "trade", + "banking" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "china", + "policy-bank", + "export-credit", + "import-credit", + "trade-finance", + "foreign-trade", + "overseas-investment", + "belt-and-road", + "中国进出口银行", + "政策性银行", + "出口信贷", + "进口信贷", + "对外贸易", + "境外投资", + "一带一路", + "国际合作", + "债券", + "annual-report", + "development-finance" + ], + "data_content": { + "en": [ + "Annual Reports - Financial statements, business overview, key operational indicators and risk management data", + "Export Seller's Credit - Credit data for Chinese enterprises exporting goods, technology, and services", + "Export Buyer's Credit - Loans to foreign importers purchasing Chinese products and services", + "Overseas Investment Loans - Financing data for Chinese enterprises investing abroad", + "Foreign Government Loans - Concessional loans and preferential export buyer's credit to developing countries", + "Bond Issuances - Domestic and international bond offering data, prospectuses", + "Country Exposure - Loan exposure data by country and region", + "Belt and Road Initiative - Project financing statistics for BRI partner countries" + ], + "zh": [ + "年度报告 - 财务报表、业务概况、主要经营指标及风险管理数据", + "出口卖方信贷 - 中国企业出口商品、技术和服务的信贷数据", + "出口买方信贷 - 向境外进口商提供的采购中国产品和服务的贷款", + "境外投资贷款 - 中国企业境外投资的融资数据", + "对外优惠贷款 - 向发展中国家提供的优惠贷款和优惠出口买方信贷", + "债券发行 - 境内外债券发行数据、募集说明书", + "国别敞口 - 按国家和地区划分的贷款风险敞口数据", + "一带一路 - 共建\"一带一路\"伙伴国家项目融资统计数据" + ] + } +} diff --git a/firstdata/sources/china/finance/banking/pbc.json b/firstdata/sources/china/finance/banking/pbc.json index 56db7865..e91c56ad 100644 --- a/firstdata/sources/china/finance/banking/pbc.json +++ b/firstdata/sources/china/finance/banking/pbc.json @@ -9,14 +9,14 @@ "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": "http://www.pbc.gov.cn", - "data_url": "http://www.pbc.gov.cn/diaochatongjisi/116219/index.html", + "website": "https://www.pbc.gov.cn", + "data_url": "https://www.pbc.gov.cn/diaochatongjisi/116219/index.html", "api_url": null, "country": "CN", "domains": [ "finance", "economics", - "monetary_policy" + "monetary-policy" ], "geographic_scope": "national", "update_frequency": "monthly", @@ -55,4 +55,4 @@ ] }, "authority_level": "government" -} \ No newline at end of file +} diff --git a/firstdata/sources/china/finance/capital-markets/china-amac.json b/firstdata/sources/china/finance/capital-markets/china-amac.json new file mode 100644 index 00000000..ea4a9eef --- /dev/null +++ b/firstdata/sources/china/finance/capital-markets/china-amac.json @@ -0,0 +1,52 @@ +{ + "id": "china-amac", + "name": { + "en": "Asset Management Association of China", + "zh": "中国证券投资基金业协会" + }, + "description": { + "en": "AMAC is the self-regulatory organization for China's fund management industry, responsible for registration of private fund managers and products, industry statistics, and investor protection. It publishes comprehensive data on mutual funds, private funds, asset management plans, and industry development.", + "zh": "中国证券投资基金业协会是基金行业自律组织,负责私募基金管理人和产品登记备案、行业统计和投资者保护。发布公募基金、私募基金、资产管理计划和行业发展等全面数据。" + }, + "website": "https://www.amac.org.cn", + "data_url": "https://www.amac.org.cn/informationpublicity/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "capital-markets", + "fund-management", + "asset-management" + ], + "update_frequency": "monthly", + "tags": [ + "china", + "mutual-funds", + "private-funds", + "asset-management", + "fund-industry", + "基金", + "私募", + "公募", + "资产管理", + "基金业协会" + ], + "data_content": { + "en": [ + "Mutual Fund Statistics - AUM, fund counts, investor numbers, and performance by fund type (equity, bond, money market, hybrid)", + "Private Fund Registry - Registered private fund managers, fund products, AUM distribution, and regional statistics", + "Asset Management Plans - Securities firm, insurance, and futures asset management data", + "Industry Reports - Annual and quarterly reports on China's fund industry development, trends, and challenges", + "Investor Protection - Investor education data, complaint statistics, and protection mechanisms" + ], + "zh": [ + "公募基金统计 - 管理规模、基金数量、投资者数量及各类型基金(股票、债券、货币、混合)表现", + "私募基金登记 - 已登记私募基金管理人、基金产品、管理规模分布和地区统计", + "资产管理计划 - 证券公司、保险、期货资产管理数据", + "行业报告 - 中国基金行业发展年度和季度报告、趋势与挑战分析", + "投资者保护 - 投资者教育数据、投诉统计和保护机制" + ] + } +} diff --git a/firstdata/sources/china/finance/capital-markets/china-capco.json b/firstdata/sources/china/finance/capital-markets/china-capco.json new file mode 100644 index 00000000..dd491aee --- /dev/null +++ b/firstdata/sources/china/finance/capital-markets/china-capco.json @@ -0,0 +1,67 @@ +{ + "id": "china-capco", + "name": { + "en": "China Association for Public Companies (CAPCO)", + "zh": "中国上市公司协会" + }, + "description": { + "en": "The China Association for Public Companies (CAPCO, 中国上市公司协会) is the national self-regulatory organization for listed companies in China, established in 2012 under the guidance of the China Securities Regulatory Commission (CSRC). CAPCO represents more than 5,000 companies listed on the Shanghai, Shenzhen, and Beijing stock exchanges, covering a combined market capitalization of over 80 trillion yuan. The association publishes authoritative statistical reports on the operating performance, governance quality, investor relations, and ESG disclosures of China's listed companies. It also releases annual research on board composition, executive compensation, shareholder returns, mergers and acquisitions, and share repurchase activities. CAPCO data is essential for analyzing the financial health and corporate governance of China's public companies, capital market development trends, and the effectiveness of listed company regulatory reforms.", + "zh": "中国上市公司协会是全国上市公司自律性组织,于2012年在中国证监会指导下成立。协会现有会员涵盖沪深北三大交易所5000余家上市公司,合计市值超过80万亿元。协会发布权威的上市公司经营业绩、治理质量、投资者关系及ESG披露等统计报告,并开展董事会构成、高管薪酬、股东回报、并购重组及股份回购等年度研究。中国上市公司协会的数据是分析中国上市公司财务健康、公司治理、资本市场发展趋势及上市公司监管改革成效的重要依据。" + }, + "website": "https://www.capco.org.cn", + "data_url": "https://www.capco.org.cn", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "economics", + "governance" + ], + "update_frequency": "quarterly", + "tags": [ + "capco", + "上市公司协会", + "listed-companies", + "上市公司", + "public-companies", + "公司治理", + "corporate-governance", + "esg披露", + "esg-disclosure", + "股东回报", + "shareholder-return", + "高管薪酬", + "executive-compensation", + "并购重组", + "m-and-a", + "股份回购", + "share-repurchase", + "a股" + ], + "data_content": { + "en": [ + "Annual operating performance report - aggregated revenue, profit, and financial indicators of China's listed companies by industry and exchange", + "Corporate governance statistics - board composition, independent director ratios, supervisory board structure, and audit committee data", + "Executive compensation studies - salary levels, equity incentive programs, and compensation-performance linkage analysis", + "ESG disclosure report - environmental, social, and governance reporting coverage and quality across listed firms", + "Investor relations assessment - IR practices, information disclosure quality, and retail investor communications", + "M&A and restructuring activity - annual transaction volumes, deal values, and industry distribution of listed company deals", + "Share repurchase and dividend statistics - buyback volumes, dividend payout ratios, and shareholder return trends", + "Member company directory - list of all listed companies by exchange, sector, and registered region", + "Policy research and industry reports - analysis of regulatory reforms, registration-based IPO system, and delisting rules" + ], + "zh": [ + "上市公司经营业绩年度报告 - 按行业和交易所汇总的上市公司营业收入、利润及财务指标", + "公司治理统计 - 董事会构成、独立董事占比、监事会结构及审计委员会数据", + "高管薪酬研究 - 薪酬水平、股权激励方案及薪酬与业绩挂钩分析", + "ESG信息披露报告 - 上市公司环境、社会和治理报告的覆盖率和质量", + "投资者关系评估 - 投资者关系管理实践、信息披露质量及中小投资者沟通", + "并购重组活动 - 上市公司年度交易数量、交易金额及行业分布", + "股份回购与分红统计 - 回购金额、分红比例及股东回报趋势", + "会员公司名录 - 按交易所、行业和注册地分类的上市公司名单", + "政策研究和行业报告 - 监管改革、注册制、退市制度等分析" + ] + } +} diff --git a/firstdata/sources/china/finance/capital-markets/china-cfa.json b/firstdata/sources/china/finance/capital-markets/china-cfa.json new file mode 100644 index 00000000..ff748228 --- /dev/null +++ b/firstdata/sources/china/finance/capital-markets/china-cfa.json @@ -0,0 +1,73 @@ +{ + "id": "china-cfa", + "name": { + "en": "China Futures Association", + "zh": "中国期货业协会" + }, + "description": { + "en": "The China Futures Association (CFA) is the national self-regulatory organization for China's futures and derivatives market, operating under the guidance of the China Securities Regulatory Commission (CSRC). CFA publishes authoritative statistics on futures market trading volumes, open interest, number of accounts, client funds, and brokerage firm financials. China operates some of the world's most liquid commodity futures markets, including iron ore, rebar steel, crude oil, soybeans, copper, and coal futures. CFA data covers all domestic futures exchanges (SHFE, DCE, CZCE, CFFEX, INE) and is the primary reference for understanding China's commodity price discovery and derivatives hedging activity.", + "zh": "中国期货业协会(期货协会)是中国期货和衍生品市场的全国性自律组织,在中国证券监督管理委员会指导下运作。协会发布期货市场成交量、持仓量、开户数量、客户权益及期货公司财务数据等权威统计。中国拥有全球流动性最强的大宗商品期货市场,涵盖铁矿石、螺纹钢、原油、大豆、铜、煤炭等品种。期货协会数据覆盖全国各期货交易所(上期所、大商所、郑商所、中金所、能源中心),是了解中国大宗商品价格发现和衍生品套期保值活动的主要参考依据。" + }, + "website": "https://www.cfachina.org/", + "data_url": "https://www.cfachina.org/servicesupport/researchandpublishin/statisticalsdata/", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "economics", + "statistics" + ], + "update_frequency": "monthly", + "tags": [ + "期货市场", + "futures-market", + "大宗商品", + "commodities", + "期货成交量", + "futures-trading-volume", + "持仓量", + "open-interest", + "螺纹钢期货", + "rebar-futures", + "铁矿石期货", + "iron-ore-futures", + "原油期货", + "crude-oil-futures", + "大豆期货", + "soybean-futures", + "铜期货", + "copper-futures", + "衍生品", + "derivatives", + "套期保值", + "hedging", + "期货公司", + "futures-brokerage" + ], + "data_content": { + "en": [ + "Trading volume and turnover: monthly futures contracts traded across all domestic exchanges (SHFE, DCE, CZCE, CFFEX, INE) by commodity", + "Open interest: position data by commodity category including agricultural, metals, energy, and financial futures", + "Account statistics: number of futures trading accounts, institutional vs retail investor composition", + "Client funds: total funds deposited in futures margin accounts, indicating market participation scale", + "Futures brokerage financials: net capital, revenue, and profit data for licensed futures companies", + "Commodity price indices: futures price indices for agricultural products, metals, and energy", + "Options market data: options trading volumes, open interest, and volatility data for listed options", + "Cross-border trading: qualified foreign investor participation statistics in China's futures markets", + "Annual futures market report: comprehensive review of China's futures and derivatives market development" + ], + "zh": [ + "成交量与成交额:全国各期货交易所(上期所、大商所、郑商所、中金所、能源中心)按品种分类的月度期货合约成交情况", + "持仓量:农产品、金属、能源及金融期货各品种持仓数据", + "开户统计:期货交易账户数量、机构与散户投资者构成", + "客户权益:期货保证金账户总资金量,反映市场参与规模", + "期货公司财务数据:持牌期货公司净资本、营业收入和利润", + "大宗商品价格指数:农产品、金属、能源期货价格指数", + "期权市场数据:各上市期权品种成交量、持仓及波动率数据", + "境外交易:合格境外投资者参与中国期货市场统计", + "期货市场年度报告:中国期货和衍生品市场发展全面综述" + ] + } +} diff --git a/firstdata/sources/china/finance/capital-markets/china-cffex.json b/firstdata/sources/china/finance/capital-markets/china-cffex.json new file mode 100644 index 00000000..5889548c --- /dev/null +++ b/firstdata/sources/china/finance/capital-markets/china-cffex.json @@ -0,0 +1,76 @@ +{ + "id": "china-cffex", + "name": { + "en": "China Financial Futures Exchange", + "zh": "中国金融期货交易所" + }, + "description": { + "en": "The China Financial Futures Exchange (CFFEX) is the sole financial futures exchange in mainland China, established in 2006 under the supervision of the China Securities Regulatory Commission. CFFEX lists and trades stock index futures (CSI 300, CSI 500, CSI 1000, SSE 50), treasury bond futures (2-year, 5-year, 10-year, 30-year), and stock index options. It publishes daily trading data, open interest, settlement prices, and position reports for all listed contracts. CFFEX's market data is essential for institutional investors, risk management practitioners, hedging strategy research, and macro financial analysis of China's capital markets.", + "zh": "中国金融期货交易所(中金所)是中国内地唯一的金融期货交易所,2006年在中国证券监督管理委员会监管下成立。中金所上市并交易股指期货(沪深300、中证500、中证1000、上证50)、国债期货(2年期、5年期、10年期、30年期)和股指期权合约,每日发布所有上市合约的成交数据、持仓量、结算价及持仓报告。中金所市场数据对机构投资者、风险管理从业者、套期保值策略研究及中国资本市场宏观金融分析具有重要价值。" + }, + "website": "https://www.cffex.com.cn/", + "data_url": "https://www.cffex.com.cn/sjzx/", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "capital-markets" + ], + "update_frequency": "daily", + "tags": [ + "中国金融期货交易所", + "cffex", + "china-financial-futures-exchange", + "中金所", + "股指期货", + "stock-index-futures", + "国债期货", + "treasury-bond-futures", + "沪深300", + "csi-300", + "中证500", + "csi-500", + "上证50", + "sse-50", + "股指期权", + "stock-index-options", + "期货", + "futures", + "金融衍生品", + "financial-derivatives", + "持仓量", + "open-interest", + "结算价", + "settlement-price", + "资本市场", + "capital-markets", + "风险对冲", + "hedging" + ], + "data_content": { + "en": [ + "Daily trading statistics - trading volume, open interest, and settlement prices for all listed futures and options contracts", + "Stock index futures - CSI 300, CSI 500, CSI 1000, SSE 50 index futures daily data and historical series", + "Treasury bond futures - 2-year, 5-year, 10-year, and 30-year government bond futures prices and volumes", + "Stock index options - CSI 300 options open interest, implied volatility, and put-call ratio data", + "Participant position reports - top 20 long and short position holders by contract", + "Market statistics reports - monthly and annual summaries of trading activity", + "Contract specifications and margin requirements - official rules and parameters for all listed products", + "Delivery and settlement data - physical delivery records and final settlement prices", + "Historical data downloads - tick-by-tick and daily OHLCV data for all expired and active contracts" + ], + "zh": [ + "每日交易统计 - 所有上市期货和期权合约的成交量、持仓量及结算价", + "股指期货 - 沪深300、中证500、中证1000、上证50股指期货每日数据及历史序列", + "国债期货 - 2年期、5年期、10年期和30年期国债期货价格及成交量", + "股指期权 - 沪深300期权持仓量、隐含波动率和认购/认沽比率数据", + "持仓报告 - 各合约前20名多空头持仓数据", + "市场统计报告 - 交易活动月度和年度汇总", + "合约规格及保证金要求 - 所有上市产品的官方规则及参数", + "交割与结算数据 - 实物交割记录及最终结算价", + "历史数据下载 - 所有已摘牌及活跃合约的逐笔和日频OHLCV数据" + ] + } +} diff --git a/firstdata/sources/china/finance/capital-markets/china-chinabond.json b/firstdata/sources/china/finance/capital-markets/china-chinabond.json new file mode 100644 index 00000000..c4354c4c --- /dev/null +++ b/firstdata/sources/china/finance/capital-markets/china-chinabond.json @@ -0,0 +1,68 @@ +{ + "id": "china-chinabond", + "name": { + "en": "China Bond Information Network", + "zh": "中国债券信息网" + }, + "description": { + "en": "China Bond Information Network (Chinabond) is the official information disclosure and data platform operated by China Central Depository & Clearing Co., Ltd. (CCDC), the central securities depository for China's interbank bond market supervised by the People's Bank of China. It serves as the authoritative source for bond yield curves, bond issuance prospectuses, bond market statistics, and credit rating disclosures for the Chinese bond market - the world's second-largest bond market. Chinabond publishes the widely referenced ChinaBond yield curve series covering government bonds, policy bank bonds, corporate bonds, and asset-backed securities, and provides transparency data for all bonds registered in the interbank market.", + "zh": "中国债券信息网(Chinabond)是中央国债登记结算有限责任公司(中债登)运营的官方信息披露与数据平台。中债登受中国人民银行监管,是中国银行间债券市场的中央证券托管机构。该平台是中国债券市场(全球第二大债券市场)债券收益率曲线、债券发行说明书、债券市场统计数据及信用评级披露的权威来源。中国债券信息网发布广泛引用的中债收益率曲线系列,涵盖国债、政策性银行债、企业债及资产支持证券,并为银行间市场登记的所有债券提供透明度数据。" + }, + "website": "https://www.chinabond.com.cn", + "data_url": "https://yield.chinabond.com.cn/cbweb-pbc-web/pbc/historyQuery", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "economics" + ], + "update_frequency": "daily", + "tags": [ + "债券收益率", + "bond-yield", + "中债收益率曲线", + "chinabond-yield-curve", + "国债", + "government-bond", + "政策性银行债", + "policy-bank-bond", + "企业债", + "corporate-bond", + "资产支持证券", + "abs", + "银行间债券市场", + "interbank-bond-market", + "债券发行", + "bond-issuance", + "信用评级", + "credit-rating", + "中央国债登记结算", + "ccdc", + "固定收益", + "fixed-income", + "债券市场统计", + "bond-market-statistics" + ], + "data_content": { + "en": [ + "ChinaBond yield curves: daily benchmark yield curves for government bonds, policy bank bonds, corporate bonds, and ABS across various maturities", + "Bond issuance disclosures: prospectuses, offering documents, and registration materials for all interbank market bonds", + "Bond market statistics: monthly and annual data on bond issuance volume, outstanding balance, and market structure", + "Credit rating disclosures: rating reports and rating change announcements for rated bonds", + "Bond trading and settlement data: interbank market secondary trading statistics", + "Asset-backed securities: ABS issuance documents, servicer reports, and trustee disclosures", + "Green bond registry: labeled green bond issuance information and use-of-proceeds reports" + ], + "zh": [ + "中债收益率曲线:国债、政策性银行债、企业债及资产支持证券各期限的每日基准收益率曲线", + "债券发行披露:银行间市场所有债券的募集说明书、发行文件及登记材料", + "债券市场统计:债券发行量、存量余额及市场结构的月度和年度数据", + "信用评级披露:已评级债券的评级报告及评级变化公告", + "债券交易与结算数据:银行间市场二级交易统计", + "资产支持证券:ABS发行文件、服务机构报告及受托机构披露", + "绿色债券注册:标注绿色债券的发行信息及募集资金用途报告" + ] + } +} diff --git a/firstdata/sources/china/finance/capital-markets/china-czce.json b/firstdata/sources/china/finance/capital-markets/china-czce.json new file mode 100644 index 00000000..d176acfa --- /dev/null +++ b/firstdata/sources/china/finance/capital-markets/china-czce.json @@ -0,0 +1,88 @@ +{ + "id": "china-czce", + "name": { + "en": "Zhengzhou Commodity Exchange", + "zh": "郑州商品交易所" + }, + "description": { + "en": "The Zhengzhou Commodity Exchange (CZCE) is one of China's three commodity futures exchanges, established in 1990 as China's first futures exchange. Supervised by the China Securities Regulatory Commission, CZCE lists futures and options contracts for agricultural commodities (wheat, cotton, rapeseed oil, rapeseed meal, sugar, peanuts, dates, apples, red dates) and industrial materials (methanol, ethylene glycol, purified terephthalic acid/PTA, urea, glass, ferrosilicon, silicon manganese). CZCE is the price discovery center for China's agricultural commodity markets and key chemical feedstocks. Daily market data including settlement prices, trading volumes, warehouse inventory, and open interest from CZCE are essential references for China's agricultural supply chain, textile industry, chemical producers, and commodity traders worldwide.", + "zh": "郑州商品交易所(郑商所)是中国三大商品期货交易所之一,成立于1990年,是中国第一家期货交易所。郑商所受中国证券监督管理委员会监管,上市农产品(小麦、棉花、菜籽油、菜粕、白砂糖、花生、红枣、苹果)及工业品(甲醇、乙二醇、精对苯二甲酸/PTA、尿素、玻璃、硅铁、锰硅)期货和期权合约。郑商所是中国农产品市场及重要化工原料的价格发现中心。郑商所每日发布的结算价、成交量、仓单及持仓量数据,是中国农业供应链、纺织行业、化工生产企业及全球大宗商品交易商的重要参考。" + }, + "website": "https://www.czce.com.cn/", + "data_url": "https://www.czce.com.cn/cn/exchange/daily_data/index.htm", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "capital-markets", + "economics", + "agriculture" + ], + "update_frequency": "daily", + "tags": [ + "郑州商品交易所", + "czce", + "zhengzhou-commodity-exchange", + "郑商所", + "商品期货", + "commodity-futures", + "小麦期货", + "wheat-futures", + "棉花期货", + "cotton-futures", + "白糖期货", + "sugar-futures", + "菜籽油", + "rapeseed-oil", + "PTA期货", + "pta-futures", + "甲醇期货", + "methanol-futures", + "乙二醇期货", + "ethylene-glycol-futures", + "尿素期货", + "urea-futures", + "玻璃期货", + "glass-futures", + "农产品", + "agricultural-commodities", + "化工品", + "chemical-products", + "结算价", + "settlement-price", + "仓单", + "warehouse-receipt", + "期权", + "options" + ], + "data_content": { + "en": [ + "Daily market data: settlement prices, trading volumes, open interest, and OHLC prices for all listed futures and options contracts", + "Wheat futures: hard white winter wheat contract, key benchmark for China's domestic grain market", + "Cotton futures: China's primary cotton price benchmark, widely tracked by global textile and apparel supply chains", + "Sugar futures: white sugar futures serving as price reference for China's domestic sugar market", + "Rapeseed oil and meal futures: key agricultural input price references for China's oilseed processing industry", + "PTA futures: purified terephthalic acid — upstream feedstock for polyester and PET production widely used in textiles and packaging", + "Methanol and ethylene glycol futures: key chemical feedstock prices for China's petrochemical industry", + "Urea futures: fertilizer market price benchmark for China's agricultural sector", + "Glass futures: industrial glass price reference tracking construction and solar panel demand", + "Warehouse inventory: registered warehouse receipts and physical stock levels for all deliverable commodities", + "Position reports: daily top-holder position data for major contracts" + ], + "zh": [ + "每日市场数据:所有上市期货和期权合约的结算价、成交量、持仓量及OHLC价格", + "小麦期货:硬冬白小麦合约,中国国内粮食市场的重要基准价格", + "棉花期货:中国主要棉花价格基准,被全球纺织和服装供应链广泛追踪", + "白砂糖期货:中国国内糖市的价格参考基准", + "菜籽油和菜粕期货:中国油籽加工业的关键农业投入品价格参考", + "PTA期货:精对苯二甲酸——纺织和包装领域广泛使用的聚酯和PET生产上游原料价格基准", + "甲醇和乙二醇期货:中国石化行业关键化工原料价格", + "尿素期货:中国农业领域化肥市场价格基准", + "玻璃期货:追踪建筑和太阳能电池板需求的工业玻璃价格参考", + "仓单:所有可交割品种的注册仓单及实物库存水平", + "持仓报告:主要合约的每日持仓大户数据" + ] + } +} diff --git a/firstdata/sources/china/finance/capital-markets/china-dce.json b/firstdata/sources/china/finance/capital-markets/china-dce.json new file mode 100644 index 00000000..8153941b --- /dev/null +++ b/firstdata/sources/china/finance/capital-markets/china-dce.json @@ -0,0 +1,90 @@ +{ + "id": "china-dce", + "name": { + "en": "Dalian Commodity Exchange", + "zh": "大连商品交易所" + }, + "description": { + "en": "The Dalian Commodity Exchange (DCE) is one of China's three commodity futures exchanges and the world's largest agricultural futures exchange by trading volume. Established in 1993 and supervised by the China Securities Regulatory Commission, DCE lists futures and options for agricultural products (soybeans, soybean oil, soybean meal, corn, corn starch, palm oil, eggs, live hogs) and industrial commodities (iron ore, coking coal, coke, LLDPE, PVC, polypropylene, methanol, ethylene glycol, liquid petroleum gas). DCE's iron ore futures are the global benchmark for seaborne iron ore pricing, and its soybean complex contracts are pivotal references for global oilseed and vegetable oil markets. The exchange publishes daily settlement prices, trading volumes, warehouse inventory data, and position reports that are indispensable for commodity market participants worldwide.", + "zh": "大连商品交易所(大商所)是中国三大商品期货交易所之一,也是全球成交量最大的农产品期货交易所。大商所成立于1993年,受中国证券监督管理委员会监管,上市农产品(大豆、豆油、豆粕、玉米、玉米淀粉、棕榈油、鸡蛋、生猪)和工业品(铁矿石、焦煤、焦炭、线型低密度聚乙烯/LLDPE、聚氯乙烯/PVC、聚丙烯、甲醇、乙二醇、液化石油气)等期货和期权合约。大商所铁矿石期货是全球海运铁矿石定价的重要基准,大豆系列合约是全球油籽和植物油市场的关键价格参考。交易所每日发布结算价、成交量、仓单及持仓报告,是全球大宗商品市场参与者不可或缺的数据来源。" + }, + "website": "https://www.dce.com.cn/", + "data_url": "https://www.dce.com.cn/publicweb/quotesdata/dayQuotesCh.html", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "capital-markets", + "economics", + "agriculture" + ], + "update_frequency": "daily", + "tags": [ + "大连商品交易所", + "dce", + "dalian-commodity-exchange", + "大商所", + "商品期货", + "commodity-futures", + "铁矿石期货", + "iron-ore-futures", + "大豆期货", + "soybean-futures", + "豆粕期货", + "soybean-meal-futures", + "豆油期货", + "soybean-oil-futures", + "玉米期货", + "corn-futures", + "棕榈油期货", + "palm-oil-futures", + "焦炭期货", + "coke-futures", + "焦煤期货", + "coking-coal-futures", + "LLDPE期货", + "lldpe-futures", + "聚丙烯期货", + "polypropylene-futures", + "生猪期货", + "live-hog-futures", + "大宗商品", + "commodities", + "结算价", + "settlement-price", + "农产品", + "agricultural-commodities", + "钢铁原料", + "steel-raw-materials" + ], + "data_content": { + "en": [ + "Daily market data: settlement prices, trading volumes, open interest, and OHLC prices for all listed futures and options contracts", + "Iron ore futures: global benchmark for 62% Fe grade iron ore (PB fines equivalent), widely referenced for Australian and Brazilian mine pricing", + "Soybean complex: soybean, soybean meal, and soybean oil futures — primary price discovery for China's massive soy import market", + "Corn and corn starch futures: domestic grain price benchmarks tracking China's feed grain consumption and ethanol demand", + "Palm oil futures: complementary to CZCE rapeseed oil for vegetable oil market analysis", + "Coking coal and coke futures: upstream steel raw material price benchmarks for China's blast furnace industry", + "Plastics complex: LLDPE, PVC, and polypropylene futures for petrochemical feedstock price tracking", + "Live hog futures: pork price benchmark reflecting China's largest protein market", + "Egg futures: fresh egg price tracking for China's agricultural and food processing sectors", + "Warehouse inventory reports: registered warehouse receipts and physical inventory for all deliverable commodities", + "Position reports: daily top-holder long/short position data by contract" + ], + "zh": [ + "每日市场数据:所有上市期货和期权合约的结算价、成交量、持仓量及OHLC价格", + "铁矿石期货:62%品位铁矿石(PB粉矿当量)全球基准价格,被澳大利亚和巴西矿山定价广泛参考", + "大豆系列:大豆、豆粕和豆油期货——中国庞大大豆进口市场的主要价格发现机制", + "玉米和玉米淀粉期货:追踪中国饲料粮消费和乙醇需求的国内粮食价格基准", + "棕榈油期货:与郑商所菜籽油期货互补,用于植物油市场分析", + "焦煤和焦炭期货:中国高炉炼铁行业上游钢铁原料价格基准", + "塑料系列:LLDPE、PVC和聚丙烯期货,用于追踪石化原料价格", + "生猪期货:反映中国最大蛋白质市场的猪肉价格基准", + "鸡蛋期货:中国农业和食品加工领域鲜蛋价格跟踪", + "仓单报告:所有可交割品种的注册仓单及实物库存", + "持仓报告:按合约每日发布的多空头持仓大户数据" + ] + } +} diff --git a/firstdata/sources/china/finance/capital-markets/china-nafmii.json b/firstdata/sources/china/finance/capital-markets/china-nafmii.json new file mode 100644 index 00000000..4eda0088 --- /dev/null +++ b/firstdata/sources/china/finance/capital-markets/china-nafmii.json @@ -0,0 +1,53 @@ +{ + "id": "china-nafmii", + "name": { + "en": "National Association of Financial Market Institutional Investors", + "zh": "中国银行间市场交易商协会" + }, + "description": { + "en": "NAFMII is a self-regulatory organization for China's interbank market, overseeing debt financing instruments, bond market registration, and market conduct. It publishes data on interbank bond issuance, trading volumes, market participants, and debt financing instruments including commercial paper, medium-term notes, and asset-backed securities.", + "zh": "中国银行间市场交易商协会是中国银行间市场的自律组织,负责债务融资工具注册、债券市场监管和市场行为规范。发布银行间债券发行、交易量、市场参与者以及短期融资券、中期票据、资产支持证券等债务融资工具数据。" + }, + "website": "https://www.nafmii.org.cn", + "data_url": "https://www.nafmii.org.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "capital-markets", + "bond-market", + "debt-financing" + ], + "update_frequency": "monthly", + "tags": [ + "china", + "interbank-market", + "bond-issuance", + "debt-financing", + "capital-markets", + "commercial-paper", + "medium-term-notes", + "银行间市场", + "债务融资", + "债券", + "交易商协会" + ], + "data_content": { + "en": [ + "Interbank Bond Market - Bond issuance volumes, trading data, and market statistics", + "Debt Financing Instruments - Registration and issuance data for commercial paper (CP), super-short-term CP (SCP), medium-term notes (MTN), and perpetual bonds", + "Asset-Backed Securities - Issuance and performance data for interbank ABS products", + "Market Participants - Registry of dealers, underwriters, and institutional investors", + "Market Rules and Standards - Self-regulatory rules, market conventions, and compliance requirements" + ], + "zh": [ + "银行间债券市场 - 债券发行量、交易数据和市场统计", + "债务融资工具 - 短期融资券(CP)、超短期融资券(SCP)、中期票据(MTN)和永续债的注册发行数据", + "资产支持证券 - 银行间ABS产品的发行与表现数据", + "市场参与者 - 交易商、承销商和机构投资者登记信息", + "市场规则与标准 - 自律规则、市场惯例和合规要求" + ] + } +} diff --git a/firstdata/sources/china/finance/capital-markets/china-shfe.json b/firstdata/sources/china/finance/capital-markets/china-shfe.json new file mode 100644 index 00000000..3f87da50 --- /dev/null +++ b/firstdata/sources/china/finance/capital-markets/china-shfe.json @@ -0,0 +1,90 @@ +{ + "id": "china-shfe", + "name": { + "en": "Shanghai Futures Exchange", + "zh": "上海期货交易所" + }, + "description": { + "en": "The Shanghai Futures Exchange (SHFE) is one of China's three commodity futures exchanges and the world's largest by trading volume for several key commodities. Supervised by the China Securities Regulatory Commission, SHFE lists futures and options contracts for base metals (copper, aluminum, zinc, lead, nickel, tin), precious metals (gold, silver), energy products (crude oil, fuel oil, natural gas, bitumen), and industrial materials (natural rubber, rebar, hot-rolled coil, wire rod). SHFE's daily market data — including settlement prices, trading volumes, and warehouse inventory reports — serve as benchmark price references for global commodity markets. The exchange publishes comprehensive statistics on contract trading activity, warehouse receipts, and position data that are essential for commodity traders, industrial hedgers, and macro investors tracking Chinese demand for raw materials.", + "zh": "上海期货交易所(上期所)是中国三大商品期货交易所之一,在多个主要大宗商品的成交量上居全球首位。上期所受中国证券监督管理委员会监管,上市有色金属(铜、铝、锌、铅、镍、锡)、贵金属(黄金、白银)、能源(原油、燃料油、天然气、沥青)及工业原材料(天然橡胶、螺纹钢、热轧卷板、线材)等期货和期权合约。上期所每日发布的市场数据——包括结算价、成交量及仓单报告——是全球大宗商品市场的重要基准价格参考。交易所发布的合约交易统计、标准仓单及持仓数据,对追踪中国原材料需求的大宗商品交易商、套期保值企业和宏观投资者具有重要价值。" + }, + "website": "https://www.shfe.com.cn/", + "data_url": "https://www.shfe.com.cn/reports/tradedata/dailyandweeklydata/", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "capital-markets", + "economics", + "industry" + ], + "update_frequency": "daily", + "tags": [ + "上海期货交易所", + "shfe", + "shanghai-futures-exchange", + "上期所", + "商品期货", + "commodity-futures", + "铜期货", + "copper-futures", + "铝期货", + "aluminum-futures", + "锌期货", + "zinc-futures", + "镍期货", + "nickel-futures", + "黄金期货", + "gold-futures", + "白银期货", + "silver-futures", + "原油期货", + "crude-oil-futures", + "天然橡胶", + "natural-rubber", + "螺纹钢", + "rebar", + "热轧卷板", + "hot-rolled-coil", + "仓单", + "warehouse-receipt", + "结算价", + "settlement-price", + "大宗商品", + "commodities", + "期权", + "options", + "有色金属", + "base-metals", + "贵金属", + "precious-metals" + ], + "data_content": { + "en": [ + "Daily market data: settlement prices, trading volumes, open interest, and OHLC prices for all listed futures and options contracts", + "Copper futures: global benchmark pricing for SHFE copper contracts, widely referenced by LME copper arbitrage traders", + "Aluminum, zinc, lead, nickel, tin futures: base metal contracts with daily settlement and position data", + "Gold and silver futures: precious metal futures settlement prices and trading statistics", + "Crude oil futures: Shanghai International Energy Exchange (INE) crude oil contract data, China's primary oil price benchmark", + "Natural rubber futures: RSS3 and TSR20 rubber futures, key price reference for automotive and industrial sectors", + "Rebar and hot-rolled coil futures: steel product futures widely used for construction and manufacturing hedging", + "Warehouse inventory reports: registered warehouse receipts and physical inventory levels for all deliverable commodities", + "Position reports: top 20 long and short position holders by contract (published daily)", + "Historical data: complete daily trading records for all active and expired contracts" + ], + "zh": [ + "每日市场数据:所有上市期货和期权合约的结算价、成交量、持仓量及OHLC价格", + "铜期货:上期所铜合约是全球基准价格之一,被伦敦金属交易所套利交易者广泛参考", + "铝、锌、铅、镍、锡期货:有色金属合约每日结算及持仓数据", + "黄金和白银期货:贵金属期货结算价及交易统计", + "原油期货:上海国际能源交易中心(INE)原油合约数据,中国主要石油价格基准", + "天然橡胶期货:RSS3和TSR20橡胶期货,汽车和工业领域的重要价格参考", + "螺纹钢和热轧卷板期货:建筑和制造业广泛用于套期保值的钢材期货", + "仓单报告:所有可交割品种的注册仓单及实物库存水平", + "持仓报告:按合约每日发布的前20名多空头持仓数据", + "历史数据:所有活跃及已摘牌合约的完整每日交易记录" + ] + } +} diff --git a/firstdata/sources/china/finance/china-beijing-stock-exchange.json b/firstdata/sources/china/finance/china-beijing-stock-exchange.json new file mode 100644 index 00000000..94172d1e --- /dev/null +++ b/firstdata/sources/china/finance/china-beijing-stock-exchange.json @@ -0,0 +1,52 @@ +{ + "id": "china-beijing-stock-exchange", + "name": { + "en": "Beijing Stock Exchange", + "zh": "北京证券交易所" + }, + "description": { + "en": "The Beijing Stock Exchange (BSE) is China's newest national securities exchange, established in 2021. It focuses on serving innovative small and medium-sized enterprises (SMEs), particularly 'specialized, refined, distinctive and innovative' (专精特新) companies. BSE provides market data, listing information, disclosure documents, and trading statistics for its listed companies.", + "zh": "北京证券交易所(北交所)是中国最新设立的全国性证券交易所,成立于2021年。北交所定位于服务创新型中小企业,特别是「专精特新」企业。提供上市公司行情数据、上市信息、信息披露文件及交易统计数据。" + }, + "website": "https://www.bse.cn", + "data_url": "https://www.bse.cn/market_data.html", + "api_url": null, + "authority_level": "market", + "country": "CN", + "domains": [ + "finance", + "securities", + "capital-markets" + ], + "geographic_scope": "national", + "update_frequency": "real-time", + "tags": [ + "beijing-stock-exchange", + "北交所", + "bse", + "专精特新", + "sme", + "中小企业", + "新三板", + "股票", + "证券交易所", + "上市公司", + "market-data" + ], + "data_content": { + "en": [ + "Real-time Market Data - Stock prices, trading volumes, and market indices for BSE-listed companies", + "Listing Information - IPO prospectuses, listing applications, and company profiles", + "Disclosure Documents - Annual reports, interim reports, and ad-hoc announcements", + "Trading Statistics - Daily, weekly, and monthly trading summaries and market statistics", + "Regulatory Information - Trading rules, listing standards, and regulatory guidelines" + ], + "zh": [ + "实时行情数据 - 北交所上市公司股票价格、成交量及市场指数", + "上市信息 - IPO招股说明书、上市申请及公司简介", + "信息披露文件 - 年报、中期报告及临时公告", + "交易统计 - 每日、每周及每月交易汇总和市场统计", + "监管信息 - 交易规则、上市标准及监管指引" + ] + } +} diff --git a/firstdata/sources/china/finance/china-cicpa.json b/firstdata/sources/china/finance/china-cicpa.json new file mode 100644 index 00000000..0f8a499c --- /dev/null +++ b/firstdata/sources/china/finance/china-cicpa.json @@ -0,0 +1,72 @@ +{ + "id": "china-cicpa", + "name": { + "en": "Chinese Institute of Certified Public Accountants", + "zh": "中国注册会计师协会" + }, + "description": { + "en": "The Chinese Institute of Certified Public Accountants (CICPA) is the national professional organization and self-regulatory body for the CPA profession in China, operating under the Ministry of Finance. CICPA maintains authoritative registries and statistical databases on China's certified public accountant population, accounting firms, and audit market. It publishes annual reports on the scale and structure of China's accounting profession, market concentration among audit firms, earnings of the Big Four and top domestic firms, and the results of CPA qualification examinations. CICPA data is essential for assessing financial audit quality, auditor independence, and the governance standards of China's listed companies and state-owned enterprises.", + "zh": "中国注册会计师协会(中注协)是全国注册会计师行业的全国性专业组织和自律机构,在财政部指导下运行。中注协维护权威的注册会计师执业人员、会计师事务所及审计市场统计数据库,并发布年度报告,涵盖中国会计职业规模与结构、审计市场集中度、四大及国内头部事务所业务收入、注册会计师资格考试结果等信息。中注协数据是评估财务审计质量、审计师独立性以及上市公司和国有企业治理水平的重要依据。" + }, + "website": "https://www.cicpa.org.cn", + "data_url": "https://www.cicpa.org.cn/xxcx/", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "governance", + "statistics" + ], + "update_frequency": "annual", + "tags": [ + "注册会计师", + "certified-public-accountant", + "会计师事务所", + "accounting-firm", + "审计市场", + "audit-market", + "CPA考试", + "cpa-examination", + "财务审计", + "financial-audit", + "四大", + "big-four", + "审计质量", + "audit-quality", + "会计行业", + "accounting-profession", + "财政部", + "ministry-of-finance", + "执业注册", + "professional-registration", + "事务所收入", + "firm-revenue", + "行业统计", + "industry-statistics", + "cicpa" + ], + "data_content": { + "en": [ + "CPA population statistics: total number of registered CPAs, practicing CPAs, and non-practicing CPAs in China by province and city, with historical growth trends and demographic breakdown by age and gender", + "Accounting firm registry and rankings: annual revenue, employee counts, partner numbers, and service structure for the top 100 accounting firms in China, including Big Four, mid-tier, and domestic firms", + "Audit market concentration data: market share analysis by firm size, industry sector, and listed company audit assignments, including percentage of A-share, H-share, and SOE audit engagements by firm tier", + "CPA qualification examination results: annual pass rates, registration numbers, subject-level performance, and score distributions for China's national CPA examination across provinces", + "Professional discipline and enforcement: annual reports on disciplinary actions against firms and individual CPAs, audit failures, regulatory sanctions, and enforcement patterns by the Ministry of Finance and CSRC", + "Continuing education compliance: registered CPAs' annual continuing professional education (CPE) completion rates, accredited training programs, and online learning statistics", + "International audit standards adoption: data on the adoption of Chinese audit standards aligned with International Standards on Auditing (ISA) and progress in cross-border audit cooperation frameworks", + "Firm organizational structure data: number of limited liability partnerships versus general partnerships, branch office networks, and geographic distribution of accounting firms across China's provinces" + ], + "zh": [ + "注册会计师人数统计:全国各省市注册会计师总数、执业会计师和非执业会计师数量,含历史增长趋势及按年龄和性别的人口特征分析", + "会计师事务所名册与排名:全国百强事务所年度收入、从业人员数量、合伙人人数及业务结构,涵盖四大、中型及本土事务所", + "审计市场集中度数据:按事务所规模、行业领域及上市公司审计委托的市场份额分析,包括各层级事务所承接A股、H股及国有企业审计业务的比例", + "注册会计师资格考试结果:全国注册会计师考试各省通过率、报名人数、各科目表现及分数分布情况", + "职业纪律与执法:财政部和中国证监会对事务所和个人会计师的年度纪律处分、审计失败、监管处罚及执法规律报告", + "继续教育合规情况:注册会计师年度继续职业教育(CPE)完成率、认可培训项目及在线学习统计数据", + "国际审计准则采用:与国际审计准则(ISA)接轨的中国审计准则采用情况数据及跨境审计合作框架进展", + "事务所组织结构数据:有限责任合伙与普通合伙的数量,分支机构网络及会计师事务所在全国各省市的地域分布" + ] + } +} diff --git a/firstdata/sources/china/finance/china-csi-index.json b/firstdata/sources/china/finance/china-csi-index.json new file mode 100644 index 00000000..abdbb9c0 --- /dev/null +++ b/firstdata/sources/china/finance/china-csi-index.json @@ -0,0 +1,56 @@ +{ + "id": "china-csi-index", + "name": { + "en": "China Securities Index Co., Ltd.", + "zh": "中证指数有限公司" + }, + "description": { + "en": "China Securities Index Co., Ltd. (CSI) is a joint venture between the Shanghai Stock Exchange and the Shenzhen Stock Exchange. It is China's primary index provider, responsible for developing and maintaining major market indices including the CSI 300, CSI 500, CSI 1000, and hundreds of thematic and strategy indices. CSI provides index data, methodology documentation, and ESG ratings.", + "zh": "中证指数有限公司(中证指数)由上海证券交易所和深圳证券交易所共同出资成立,是中国主要的指数编制机构。负责编制和维护沪深300、中证500、中证1000等核心市场指数以及数百个主题和策略指数,提供指数数据、编制方案及ESG评价服务。" + }, + "website": "https://www.csindex.com.cn", + "data_url": "https://www.csindex.com.cn/#/indices/family/list", + "api_url": null, + "authority_level": "market", + "country": "CN", + "domains": [ + "finance", + "indices", + "securities", + "esg" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "csi", + "中证指数", + "csi-300", + "沪深300", + "csi-500", + "中证500", + "csi-1000", + "中证1000", + "指数", + "index", + "股票指数", + "市场基准", + "benchmark", + "ESG评价" + ], + "data_content": { + "en": [ + "Index Data - Real-time and historical data for all CSI indices including price, total return, and net return versions", + "Index Constituents - Current and historical constituent lists for all indices with weighting information", + "Index Methodology - Detailed methodology documents for each index family", + "ESG Ratings - ESG evaluation data for listed companies", + "Thematic Indices - Specialized indices covering sectors, themes, strategies, and smart beta approaches" + ], + "zh": [ + "指数数据 - 所有中证指数的实时和历史数据,包括价格、全收益和净收益版本", + "指数成份股 - 所有指数的当前及历史成份股名单与权重信息", + "指数编制方案 - 各指数系列的详细编制方法文档", + "ESG评价 - 上市公司ESG评价数据", + "主题指数 - 覆盖行业、主题、策略及Smart Beta的专业指数" + ] + } +} diff --git a/firstdata/sources/china/finance/china-csrc-futures.json b/firstdata/sources/china/finance/china-csrc-futures.json new file mode 100644 index 00000000..a13dd960 --- /dev/null +++ b/firstdata/sources/china/finance/china-csrc-futures.json @@ -0,0 +1,23 @@ +{ + "id": "china-csrc-futures", + "name": { + "en": "China Futures Association", + "zh": "中国期货业协会" + }, + "description": { + "en": "Self-regulatory organization for China's futures industry, publishing futures market statistics, company rankings, trading volume data, and investor protection reports.", + "zh": "中国期货行业自律组织,发布期货市场统计、公司排名、交易量数据和投资者保护报告。" + }, + "website": "https://www.cfachina.org/", + "data_url": "https://www.cfachina.org/servicesupport/researchandpublishin/statisticalsdata/", + "country": "CN", + "geographic_scope": "national", + "authority_level": "other", + "domains": ["finance", "capital-markets"], + "update_frequency": "monthly", + "tags": ["futures", "derivatives", "capital-markets", "industry-statistics"], + "data_content": { + "en": ["futures market trading statistics", "futures company rankings", "investor protection data"], + "zh": ["期货市场交易统计", "期货公司排名", "投资者保护数据"] + } +} diff --git a/firstdata/sources/china/finance/china-iac.json b/firstdata/sources/china/finance/china-iac.json new file mode 100644 index 00000000..9b2d4375 --- /dev/null +++ b/firstdata/sources/china/finance/china-iac.json @@ -0,0 +1,73 @@ +{ + "id": "china-iac", + "name": { + "en": "Insurance Association of China", + "zh": "中国保险业协会" + }, + "description": { + "en": "The Insurance Association of China (IAC) is the national self-regulatory organization for China's insurance industry, representing insurance companies operating in China under the guidance of the National Financial Regulatory Administration (NFRA). IAC publishes authoritative insurance market statistics including total premium income, claims paid, insurance density, insurance penetration rate, and sector breakdowns for life, property, health, and agricultural insurance. It also releases research reports on industry trends, insurance products innovation, and market development data. IAC data is the primary source for understanding China's rapidly expanding insurance market, one of the largest in the world.", + "zh": "中国保险业协会(保险协会)是全国保险行业自律组织,在国家金融监督管理总局指导下代表在华保险公司。协会发布包括保费收入总量、赔付支出、保险密度、保险深度及寿险、财险、健康险、农业保险等分行业统计数据等权威保险市场统计。同时发布行业发展趋势研究报告、保险产品创新及市场发展数据。保险协会数据是了解中国这一全球最大保险市场之一快速扩张态势的主要来源。" + }, + "website": "https://www.iachina.cn/", + "data_url": "https://www.iachina.cn/col/col4479/", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "economics", + "statistics" + ], + "update_frequency": "monthly", + "tags": [ + "保险统计", + "insurance-statistics", + "保费收入", + "premium-income", + "保险密度", + "insurance-density", + "保险深度", + "insurance-penetration", + "寿险", + "life-insurance", + "财险", + "property-insurance", + "健康险", + "health-insurance", + "农业保险", + "agricultural-insurance", + "再保险", + "reinsurance", + "保险行业", + "insurance-industry", + "理赔", + "insurance-claims" + ], + "data_content": { + "en": [ + "Premium income: monthly and annual total premium income by insurance type (life, property, health, accident)", + "Insurance penetration and density: insurance premiums as percentage of GDP and per capita premium data", + "Claims and compensation: total claims paid by sector, major catastrophe loss statistics", + "Life insurance data: new policy sales, policy in-force reserves, annuity and pension insurance statistics", + "Property and casualty: auto insurance, home insurance, liability, and cargo insurance market data", + "Health insurance: commercial health insurance enrollment, benefit payments, and chronic disease coverage", + "Agricultural insurance: crop insurance coverage area, livestock insured, and agricultural indemnity paid", + "Market structure: number of licensed insurers, market share by company, foreign insurer penetration", + "Internet insurance: online insurance sales volumes and product categories", + "Annual insurance industry report: comprehensive yearly review of China's insurance market performance" + ], + "zh": [ + "保费收入:按险种(寿险、财险、健康险、意外险)分类的月度及年度保费总额", + "保险密度与深度:保费占GDP比例及人均保费数据", + "理赔与赔付:各险种赔付总额、重大灾害损失统计", + "寿险数据:新单销售、有效保单准备金、年金和养老保险统计", + "财产险:车险、家财险、责任险和货运险市场数据", + "健康险:商业健康保险参保人数、给付金额及慢性病保障情况", + "农业保险:农作物承保面积、牲畜承保数量及农业赔偿支出", + "市场结构:持牌保险公司数量、各公司市场份额、外资保险公司渗透率", + "互联网保险:网络保险销售规模和产品类别", + "保险行业年度报告:中国保险市场全年运行综合综述" + ] + } +} diff --git a/firstdata/sources/china/finance/china-iamac.json b/firstdata/sources/china/finance/china-iamac.json new file mode 100644 index 00000000..ead9c18d --- /dev/null +++ b/firstdata/sources/china/finance/china-iamac.json @@ -0,0 +1,72 @@ +{ + "id": "china-iamac", + "name": { + "en": "China Association of Banking and Insurance Asset Management", + "zh": "中国银行保险资产管理业协会" + }, + "description": { + "en": "The China Association of Banking and Insurance Asset Management (IAMAC) is a national industry self-regulatory organization established in 2021 under the supervision of the National Financial Regulatory Administration (NFRA, formerly CBIRC). IAMAC represents and serves wealth management subsidiaries of commercial banks, insurance asset management companies, and related financial institutions engaged in asset management business in China. The association publishes industry statistical reports, research white papers, regulatory compliance guidelines, and market data on China's banking and insurance asset management sector. IAMAC maintains data on the scale, structure, and performance of wealth management products (理财产品), insurance asset management products, and the aggregate asset management business across its member institutions. It is a key source for understanding the structure and development of China's non-securities asset management industry, which manages over 60 trillion yuan in assets.", + "zh": "中国银行保险资产管理业协会(IAMAC)成立于2021年,是在国家金融监督管理总局(原银保监会)监督指导下成立的全国性行业自律组织。协会代表并服务于商业银行理财子公司、保险资产管理公司及从事资产管理业务的相关金融机构。协会发布行业统计报告、研究白皮书、监管合规指引和中国银行保险资产管理行业市场数据。IAMAC维护会员机构理财产品、保险资管产品及资产管理业务总体规模、结构和绩效数据,是了解中国非证券类资产管理行业结构和发展的重要数据来源,该行业管理资产规模超60万亿元人民币。" + }, + "website": "https://www.iamac.org.cn", + "data_url": "https://www.iamac.org.cn", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "economics" + ], + "update_frequency": "quarterly", + "tags": [ + "中国银行保险资产管理业协会", + "iamac", + "银行理财", + "bank-wealth-management", + "理财子公司", + "wealth-management-subsidiary", + "保险资产管理", + "insurance-asset-management", + "资产管理", + "asset-management", + "理财产品", + "wealth-management-products", + "国家金融监督管理总局", + "nfra", + "cbirc", + "银保监会", + "行业统计", + "industry-statistics", + "自律组织", + "self-regulatory-organization", + "资管新规", + "asset-management-regulation", + "净值型产品", + "net-asset-value-products", + "信托", + "trust", + "债券投资", + "bond-investment", + "非标资产", + "non-standard-assets" + ], + "data_content": { + "en": [ + "Banking wealth management industry statistics: quarterly and annual reports on the total scale of wealth management products issued by commercial banks and their wealth management subsidiaries, including product type breakdown (fixed-income, equity, mixed), maturity structure, and investor categories", + "Insurance asset management industry data: aggregate data on insurance funds allocation across different asset classes (bonds, equities, real estate, alternative investments), investment returns, and risk exposure of insurance asset management companies", + "Market research white papers: in-depth industry research reports covering market development trends, regulatory impact analysis, product innovation, ESG investment in asset management, and cross-border investment data for the banking and insurance asset management sector", + "Regulatory compliance guidelines: industry self-regulatory guidelines, business conduct standards, and compliance reference materials for member institutions on wealth management product design, risk disclosure, investor suitability assessment, and information disclosure", + "Product registration and information disclosure data: aggregated data from the industry product registration system covering issuance scale, product performance, fee structures, and underlying asset information for bank wealth management and insurance asset management products", + "Investor structure and behavior data: analysis of wealth management product investor profiles, investment preferences, risk tolerance distribution, and market trends in Chinese retail and institutional investor participation in the non-securities asset management market" + ], + "zh": [ + "银行理财行业统计:商业银行及其理财子公司发行理财产品总规模季度和年度报告,包括产品类型细分(固收类、权益类、混合类)、期限结构和投资者类别", + "保险资管行业数据:保险资金在不同资产类别(债券、股票、房地产、另类投资)的配置总量数据、投资收益和保险资产管理公司风险敞口", + "市场研究白皮书:涵盖市场发展趋势、监管影响分析、产品创新、资管领域ESG投资和银行保险资产管理跨境投资数据的深度行业研究报告", + "监管合规指引:理财产品设计、风险信息披露、投资者适当性评估和信息公示方面的行业自律指引、业务行为准则和会员机构合规参考材料", + "产品登记和信息披露数据:行业产品登记系统汇总数据,涵盖银行理财和保险资管产品的发行规模、产品业绩、费率结构和底层资产信息", + "投资者结构和行为数据:中国零售和机构投资者参与非证券类资产管理市场的理财产品投资者画像、投资偏好、风险承受分布和市场趋势分析" + ] + } +} diff --git a/firstdata/sources/china/finance/china-nifa.json b/firstdata/sources/china/finance/china-nifa.json new file mode 100644 index 00000000..4378594b --- /dev/null +++ b/firstdata/sources/china/finance/china-nifa.json @@ -0,0 +1,61 @@ +{ + "id": "china-nifa", + "name": { + "en": "National Internet Finance Association of China", + "zh": "中国互联网金融协会" + }, + "description": { + "en": "The National Internet Finance Association of China (NIFA) is the national self-regulatory organization for China's internet finance industry, established in 2016 under the guidance of the People's Bank of China. NIFA oversees regulatory compliance, information disclosure, and industry standards for online lending, digital payments, crowdfunding, and internet insurance. The association publishes authoritative reports on internet finance development, consumer risk warnings, industry statistics on registered platform numbers, transaction volumes, outstanding loans, and investor protection. NIFA operates the National Internet Finance Registration Disclosure System (NIFDS), which aggregates compliance data from thousands of regulated fintech platforms. Its data is essential for monitoring China's fintech sector, peer-to-peer lending cleanup progress, digital credit markets, and regulatory evolution of online financial services.", + "zh": "中国互联网金融协会(中互金协)是中国互联网金融行业的全国性自律组织,2016年在中国人民银行指导下成立。协会负责网络借贷、数字支付、众筹和互联网保险等领域的合规监督、信息披露和行业标准制定,发布互联网金融行业发展报告、消费者风险提示,以及注册平台数量、交易规模、贷款余额和投资者保护等权威行业数据。协会运营国家互联网金融登记披露服务平台(NIFDS),汇聚数千家受监管金融科技平台的合规数据。其数据对监测中国金融科技行业、P2P网贷整治进展、数字信贷市场及网络金融服务监管演进具有重要价值。" + }, + "website": "https://www.nifa.org.cn", + "data_url": "https://www.nifa.org.cn", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "fintech", + "digital-economy", + "regulation" + ], + "update_frequency": "monthly", + "tags": [ + "nifa", + "中国互联网金融协会", + "互联网金融", + "网络借贷", + "P2P", + "数字支付", + "金融科技", + "fintech", + "internet-finance", + "online-lending", + "digital-payment", + "p2p-lending", + "consumer-protection", + "金融监管", + "众筹" + ], + "data_content": { + "en": [ + "Internet finance industry development reports", + "Online lending platform statistics (registered platforms, transaction volumes, outstanding loans)", + "Digital payment market data", + "Crowdfunding and internet insurance statistics", + "Consumer risk warnings and investor protection bulletins", + "National Internet Finance Registration Disclosure System (NIFDS) compliance data", + "Annual internet finance industry summary reports" + ], + "zh": [ + "互联网金融行业发展报告", + "网络借贷平台统计(注册平台数量、交易规模、贷款余额)", + "数字支付市场数据", + "众筹及互联网保险统计", + "消费者风险提示和投资者保护公告", + "国家互联网金融登记披露服务平台(NIFDS)合规数据", + "互联网金融行业年度总结报告" + ] + } +} diff --git a/firstdata/sources/china/finance/china-nifd.json b/firstdata/sources/china/finance/china-nifd.json new file mode 100644 index 00000000..d9564415 --- /dev/null +++ b/firstdata/sources/china/finance/china-nifd.json @@ -0,0 +1,23 @@ +{ + "id": "china-nifd", + "name": { + "en": "National Institution for Finance and Development", + "zh": "国家金融与发展实验室" + }, + "description": { + "en": "The National Institution for Finance and Development (NIFD) is a national-level research think tank affiliated with the Chinese Academy of Social Sciences, focusing on macroeconomic analysis, financial market research, government debt tracking, and systemic risk assessment.", + "zh": "国家金融与发展实验室是中国社会科学院下属的国家级研究智库,专注于宏观经济分析、金融市场研究、政府债务跟踪和系统性风险评估。" + }, + "data_content": { + "en": ["macroeconomic analysis reports", "financial market data", "government debt statistics", "systemic risk assessments", "quarterly economic reviews"], + "zh": ["宏观经济分析报告", "金融市场数据", "政府债务统计", "系统性风险评估", "季度经济评论"] + }, + "country": "CN", + "authority_level": "research", + "geographic_scope": "national", + "website": "http://www.nifd.cn", + "data_url": "http://www.nifd.cn", + "domains": ["finance", "economics"], + "tags": ["finance", "macroeconomics", "debt", "risk-assessment", "cass", "think-tank"], + "update_frequency": "quarterly" +} diff --git a/firstdata/sources/china/finance/china-payment-clearing.json b/firstdata/sources/china/finance/china-payment-clearing.json new file mode 100644 index 00000000..f97bdf62 --- /dev/null +++ b/firstdata/sources/china/finance/china-payment-clearing.json @@ -0,0 +1,23 @@ +{ + "id": "china-payment-clearing", + "name": { + "en": "Payment & Clearing Association of China", + "zh": "中国支付清算协会" + }, + "description": { + "en": "Industry association for China's payment and clearing sector, publishing payment transaction statistics, reserve fund data, and clearing market analysis.", + "zh": "中国支付清算行业协会,发布支付交易量统计、备付金余额数据和清算市场分析。" + }, + "website": "https://www.pcac.org.cn/", + "data_url": "https://www.pcac.org.cn/eportal/ui?pageId=477883", + "country": "CN", + "geographic_scope": "national", + "authority_level": "other", + "domains": ["finance"], + "update_frequency": "quarterly", + "tags": ["payment", "clearing", "fintech", "industry-statistics"], + "data_content": { + "en": ["payment transaction volume statistics", "reserve fund balance data", "clearing market analysis"], + "zh": ["支付交易量统计", "备付金余额数据", "清算市场分析"] + } +} diff --git a/firstdata/sources/china/finance/china-shanghai-clearing-house.json b/firstdata/sources/china/finance/china-shanghai-clearing-house.json new file mode 100644 index 00000000..52973674 --- /dev/null +++ b/firstdata/sources/china/finance/china-shanghai-clearing-house.json @@ -0,0 +1,55 @@ +{ + "id": "china-shanghai-clearing-house", + "name": { + "en": "Shanghai Clearing House", + "zh": "上海清算所" + }, + "description": { + "en": "Shanghai Clearing House (SHCH) is a national financial market infrastructure institution established with the approval of the State Council of China. It provides central counterparty clearing, information disclosure, and data services for China's interbank market, covering bonds, interest rate derivatives, foreign exchange derivatives, and commodity derivatives.", + "zh": "上海清算所是经国务院批准设立的国家级金融市场基础设施,为中国银行间市场提供中央对手方清算、信息披露和数据服务,覆盖债券、利率衍生品、外汇衍生品和大宗商品衍生品等产品。" + }, + "website": "https://www.shclearing.com.cn", + "data_url": "https://www.shclearing.com.cn/sjtj/", + "api_url": null, + "authority_level": "market", + "country": "CN", + "domains": [ + "finance", + "bonds", + "derivatives", + "clearing" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "shanghai-clearing-house", + "上海清算所", + "shch", + "中央对手方清算", + "ccp", + "银行间市场", + "interbank-market", + "债券", + "bonds", + "利率衍生品", + "外汇衍生品", + "清算", + "clearing" + ], + "data_content": { + "en": [ + "Clearing Statistics - Daily clearing volumes, open interest, and settlement data for various product categories", + "Bond Valuation Data - Daily valuation prices for interbank bonds and related instruments", + "Interest Rate Curves - Yield curves and benchmark interest rate data", + "Market Data Reports - Monthly and annual market statistics and trend analysis", + "Product Information - Details on cleared products including bonds, IRS, FX derivatives, and commodity derivatives" + ], + "zh": [ + "清算统计 - 各产品类别的每日清算量、持仓量及结算数据", + "债券估值数据 - 银行间债券及相关工具的每日估值价格", + "利率曲线 - 收益率曲线及基准利率数据", + "市场数据报告 - 月度及年度市场统计与趋势分析", + "产品信息 - 清算产品详情,包括债券、利率互换、外汇衍生品及大宗商品衍生品" + ] + } +} diff --git a/firstdata/sources/china/finance/china-shenzhen-jrj.json b/firstdata/sources/china/finance/china-shenzhen-jrj.json new file mode 100644 index 00000000..0aee8415 --- /dev/null +++ b/firstdata/sources/china/finance/china-shenzhen-jrj.json @@ -0,0 +1,68 @@ +{ + "id": "china-shenzhen-jrj", + "name": { + "en": "Shenzhen Local Financial Supervision and Administration Bureau", + "zh": "深圳市地方金融监督管理局" + }, + "description": { + "en": "The Shenzhen Local Financial Supervision and Administration Bureau is the municipal government agency responsible for supervising and regulating the local financial industry in Shenzhen, one of China's most important financial centers alongside Shanghai and Hong Kong. The bureau oversees small loan companies, financing guarantee institutions, private equity funds, commercial factoring, financial leasing, and emerging fintech activities. It publishes data on the local financial industry development, fintech innovation, green finance initiatives, and financial risk monitoring. Shenzhen's financial data is particularly relevant for understanding China's fintech ecosystem, venture capital market, and the financial integration of the Greater Bay Area.", + "zh": "深圳市地方金融监督管理局是负责监管深圳地方金融业的市级政府部门。深圳与上海、香港并列为中国最重要的金融中心之一,该局负责监管小额贷款公司、融资担保机构、私募基金、商业保理、融资租赁和新兴金融科技业务。发布地方金融业发展数据、金融科技创新、绿色金融和金融风险监测等信息。深圳的金融数据对了解中国金融科技生态、风险投资市场和粤港澳大湾区金融融合具有重要参考价值。" + }, + "website": "https://jr.sz.gov.cn", + "data_url": "https://jr.sz.gov.cn/sjrb/xxgk/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "finance", + "fintech" + ], + "update_frequency": "quarterly", + "tags": [ + "深圳金融", + "shenzhen-finance", + "深圳金融监管", + "shenzhen-financial-supervision", + "地方金融", + "local-finance", + "金融科技", + "fintech", + "小额贷款", + "microfinance", + "融资担保", + "financing-guarantee", + "私募基金", + "private-equity", + "绿色金融", + "green-finance", + "深圳基金", + "shenzhen-fund", + "粤港澳大湾区金融", + "greater-bay-area-finance", + "商业保理", + "commercial-factoring" + ], + "data_content": { + "en": [ + "Financial industry overview: annual reports on Shenzhen's local financial industry development, total assets, and revenue", + "Microfinance: number of small loan companies, total loan balance, and lending statistics", + "Financing guarantee: guarantee institution performance, outstanding guarantee amounts, and risk indicators", + "Private equity and venture capital: fund registration statistics, investment amounts, and portfolio data in Shenzhen", + "Fintech innovation: fintech enterprise counts, sandbox pilot projects, and digital finance development data", + "Green finance: green bond issuance, green credit balances, and sustainable finance statistics", + "Financial risk monitoring: non-performing loan ratios, risk event statistics, and regulatory enforcement data", + "Cross-border finance: cross-border RMB settlements, QFLP/QDLP pilot data, and Greater Bay Area financial connectivity" + ], + "zh": [ + "金融业概况:深圳地方金融业年度发展报告、总资产和营收数据", + "小额贷款:小额贷款公司数量、贷款余额和放贷统计", + "融资担保:担保机构经营数据、在保余额和风险指标", + "私募股权和风险投资:深圳基金备案统计、投资金额和投资组合数据", + "金融科技创新:金融科技企业数量、监管沙盒试点项目和数字金融发展数据", + "绿色金融:绿色债券发行、绿色信贷余额和可持续金融统计", + "金融风险监测:不良贷款率、风险事件统计和监管执法数据", + "跨境金融:跨境人民币结算、QFLP/QDLP试点数据和大湾区金融互联互通" + ] + } +} diff --git a/firstdata/sources/china/finance/china-trustee-association.json b/firstdata/sources/china/finance/china-trustee-association.json new file mode 100644 index 00000000..aaca421d --- /dev/null +++ b/firstdata/sources/china/finance/china-trustee-association.json @@ -0,0 +1,23 @@ +{ + "id": "china-trustee-association", + "name": { + "en": "China Trustee Association", + "zh": "中国信托业协会" + }, + "description": { + "en": "Industry association for China's trust sector, publishing trust asset management data, quarterly reports, and industry statistics for 68 trust companies.", + "zh": "中国信托行业协会,发布信托资产管理数据、季度报告和68家信托公司行业统计。" + }, + "website": "http://www.xtxh.net/", + "data_url": "http://www.xtxh.net/xtyxh/hyyj/tjsj/index.html", + "country": "CN", + "geographic_scope": "national", + "authority_level": "other", + "domains": ["finance"], + "update_frequency": "quarterly", + "tags": ["trust", "asset-management", "financial-statistics"], + "data_content": { + "en": ["trust asset management statistics", "quarterly industry reports", "trust company data"], + "zh": ["信托资产管理统计", "季度行业报告", "信托公司数据"] + } +} diff --git a/firstdata/sources/china/finance/china-xinhua-finance.json b/firstdata/sources/china/finance/china-xinhua-finance.json new file mode 100644 index 00000000..2e5593c3 --- /dev/null +++ b/firstdata/sources/china/finance/china-xinhua-finance.json @@ -0,0 +1,82 @@ +{ + "id": "china-xinhua-finance", + "name": { + "en": "Xinhua Finance - China Financial Information Network", + "zh": "新华财经 - 中国金融信息网" + }, + "description": { + "en": "Xinhua Finance (中国金融信息网 / cnfin.com) is China's national financial information service platform operated by China Economic Information Service (CEIS), a wholly-owned subsidiary of Xinhua News Agency — China's state-run press agency. As the official financial information service of Xinhua, Xinhua Finance is authorized to deliver authoritative economic and financial data, market analytics, and financial news to domestic and international users. The platform provides real-time coverage of China's bond, equity, commodity, foreign exchange, and money markets; publishes proprietary indices such as the Xinhua Bond Index, Xinhua 08 Financial Data Terminal, and Silk Road Credit Ratings; and distributes exclusive macroeconomic reports, monetary policy analysis, and industry research. Xinhua Finance collaborates with major international financial information providers (e.g., S&P Global, Refinitiv) and serves government agencies, financial institutions, research organizations, and enterprises. It has been designated as an authoritative information dissemination channel for China's financial market opening and Belt and Road financial cooperation.", + "zh": "新华财经(中国金融信息网 / cnfin.com)是由新华社全资子公司中国经济信息社运营的国家级金融信息服务平台。作为新华社官方金融信息服务,新华财经被授权向国内外用户提供权威的经济金融数据、市场分析及金融新闻。平台实时报道中国债券、股票、商品、外汇及货币市场;发布新华债券指数、新华08金融数据终端、丝路信用评级等自主指数产品;并发布独家宏观经济报告、货币政策分析及行业研究。新华财经与标普全球、路孚特等国际主流金融信息服务商开展合作,服务对象包括政府部门、金融机构、研究机构及企业。新华财经被指定为中国金融市场开放和“一带一路”金融合作的权威信息发布渠道。" + }, + "website": "https://www.cnfin.com/", + "data_url": "https://www.cnfin.com/", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "economics", + "markets", + "media" + ], + "update_frequency": "real-time", + "tags": [ + "新华财经", + "xinhua-finance", + "中国金融信息网", + "china-financial-information-network", + "新华社", + "xinhua-news-agency", + "中国经济信息社", + "ceis", + "金融数据", + "financial-data", + "新华债券指数", + "xinhua-bond-index", + "新华08", + "xinhua-08-terminal", + "货币政策", + "monetary-policy", + "债券市场", + "bond-market", + "外汇市场", + "fx-market", + "商品市场", + "commodity-market", + "宏观经济", + "macroeconomics", + "丝路信用", + "silk-road-credit-ratings", + "金融科技", + "fintech", + "一带一路金融", + "belt-and-road-finance" + ], + "data_content": { + "en": [ + "Real-time market data: equity, bond, commodity, FX, and money market prices and trading information for China's major exchanges and interbank markets", + "Xinhua Bond Index series: proprietary indices tracking performance of Chinese bond markets including government, financial, corporate, and green bonds", + "Xinhua 08 Financial Data Terminal: professional financial data platform for banks, brokerages, funds, and research institutions", + "Economic indicators: coverage of PMI, CPI, PPI, GDP, trade, industrial output, and other key Chinese macroeconomic data releases", + "Monetary policy and central bank communications: real-time reporting of PBOC and regulator announcements, analysis of policy direction", + "Industry research reports: sector analysis covering technology, manufacturing, finance, energy, and emerging industries", + "Silk Road credit ratings: credit ratings focused on Belt and Road sovereign and corporate issuers", + "Xinhua financial news: authoritative financial journalism with emphasis on China and Asia-Pacific markets", + "Green finance and ESG data: Chinese green bond market tracking, ESG disclosures analysis", + "International market coverage: global economic and financial news translated and contextualized for Chinese users" + ], + "zh": [ + "实时市场数据:中国主要交易所和银行间市场的股票、债券、大宗商品、外汇及货币市场价格与交易信息", + "新华债券指数系列:跟踪中国债券市场(含国债、金融债、企业债、绿色债券)表现的自主指数", + "新华08金融数据终端:面向银行、证券、基金及研究机构的专业金融数据平台", + "经济指标:中国PMI、CPI、PPI、GDP、贸易、工业产出等重要宏观经济数据发布覆盖", + "货币政策与央行沟通:中国人民银行及监管机构公告的实时报道,政策方向分析", + "行业研究报告:涵盖科技、制造、金融、能源及新兴产业的行业分析", + "丝路信用评级:聚焦一带一路主权和企业发行人的信用评级", + "新华财经新闻:权威财经新闻报道,侧重中国及亚太市场", + "绿色金融与ESG数据:中国绿色债券市场跟踪、ESG信息披露分析", + "国际市场报道:全球经济金融新闻的翻译与本地化解读" + ] + } +} diff --git a/firstdata/sources/china/finance/fiscal/china-mof.json b/firstdata/sources/china/finance/fiscal/china-mof.json new file mode 100644 index 00000000..21962f78 --- /dev/null +++ b/firstdata/sources/china/finance/fiscal/china-mof.json @@ -0,0 +1,68 @@ +{ + "id": "china-mof", + "name": { + "en": "Ministry of Finance of China", + "zh": "中华人民共和国财政部" + }, + "description": { + "en": "The Ministry of Finance (MOF) is a constituent department of the State Council responsible for fiscal policy formulation, budget management, tax administration, and government financial regulation. It provides comprehensive data on national budgets, fiscal revenues and expenditures, government debt, tax statistics, accounting standards, and fiscal policy implementation across all levels of government.", + "zh": "中华人民共和国财政部是国务院组成部门,负责财政政策制定、预算管理、税收管理和政府财务监管。提供包括国家预算、财政收支、政府债务、税收统计、会计准则以及各级政府财政政策执行等全面的财政数据。" + }, + "website": "https://www.mof.gov.cn", + "data_url": "https://www.mof.gov.cn/gkml/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "economics", + "fiscal-policy", + "taxation", + "government-budget" + ], + "update_frequency": "monthly", + "tags": [ + "china", + "finance", + "fiscal-policy", + "budget", + "taxation", + "government-revenue", + "government-expenditure", + "public-debt", + "财政", + "预算", + "税收", + "财政收支", + "政府债务", + "财政部", + "中央财政", + "地方财政", + "财政政策" + ], + "data_content": { + "en": [ + "National Budget - Annual central and local government budgets, budget execution reports, and fiscal year planning", + "Fiscal Revenue and Expenditure - Monthly and annual fiscal revenue by source (taxes, fees), and government expenditure by function and department", + "Tax Statistics - Tax revenue data by category (VAT, corporate income tax, individual income tax, etc.), tax collection efficiency", + "Government Debt - Central and local government debt data, bond issuance, debt service ratios, and debt sustainability analysis", + "Transfer Payments - Central-to-local fiscal transfers, special-purpose transfers, and equalization mechanisms", + "State-Owned Assets - Financial performance of central state-owned enterprises, asset management, and dividend policies", + "Accounting Standards - Government accounting standards, financial reporting requirements, and compliance data", + "Fiscal Policy - Policy documents, reform initiatives, and implementation reports on fiscal reforms", + "International Fiscal Cooperation - Bilateral and multilateral fiscal agreements, foreign aid, and international financial commitments" + ], + "zh": [ + "国家预算 - 年度中央和地方政府预算、预算执行报告和财政年度规划", + "财政收支 - 按来源分类的月度和年度财政收入(税收、费用)及按功能和部门分类的政府支出", + "税收统计 - 按类别分类的税收收入数据(增值税、企业所得税、个人所得税等)、税收征管效率", + "政府债务 - 中央和地方政府债务数据、债券发行、偿债率和债务可持续性分析", + "转移支付 - 中央对地方财政转移支付、专项转移支付和均衡性转移支付机制", + "国有资产 - 中央国有企业财务绩效、资产管理和分红政策", + "会计准则 - 政府会计准则、财务报告要求和合规数据", + "财政政策 - 财政改革政策文件、改革举措和执行报告", + "国际财政合作 - 双边和多边财政协定、对外援助和国际财政承诺" + ] + } +} diff --git a/firstdata/sources/china/finance/fiscal/china-nssf.json b/firstdata/sources/china/finance/fiscal/china-nssf.json new file mode 100644 index 00000000..77bdae14 --- /dev/null +++ b/firstdata/sources/china/finance/fiscal/china-nssf.json @@ -0,0 +1,69 @@ +{ + "id": "china-nssf", + "name": { + "en": "National Social Security Fund Council of China", + "zh": "全国社会保障基金理事会" + }, + "description": { + "en": "The National Social Security Fund Council (NSSF) manages China's national social security reserve fund, established by the State Council in 2000 to supplement the basic pension system and address future social security funding gaps. The NSSF publishes annual reports disclosing fund size, investment portfolio allocation, asset returns, equity holdings, and long-term performance benchmarks. As of 2023, the fund manages over 3 trillion RMB in assets across domestic and overseas equities, bonds, alternative investments, and private equity. NSSF data is essential for analyzing China's sovereign wealth management strategy, pension system sustainability, and capital market influence.", + "zh": "全国社会保障基金理事会(社保基金)是国务院于2000年设立的国家社会保障战略储备基金管理机构,用于补充基本养老保险并应对未来社会保障资金缺口。理事会每年发布年度报告,披露基金规模、投资组合配置、资产收益、权益持仓及长期绩效基准。截至2023年,基金管理规模超过3万亿元人民币,涵盖境内外股票、债券、另类投资及私募股权。社保基金数据对分析中国主权财富管理策略、养老金体系可持续性及资本市场影响力具有重要价值。" + }, + "website": "http://www.ssf.gov.cn", + "data_url": "http://www.ssf.gov.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "social-security", + "investment", + "economics" + ], + "update_frequency": "annual", + "tags": [ + "社保基金", + "nssf", + "national-social-security-fund", + "养老金", + "pension", + "社会保障储备", + "social-security-reserve", + "基金规模", + "fund-size", + "投资组合", + "investment-portfolio", + "资产收益", + "asset-returns", + "主权基金", + "sovereign-fund", + "资本市场", + "capital-market", + "国家战略储备", + "national-strategic-reserve", + "年度报告", + "annual-report" + ], + "data_content": { + "en": [ + "Annual fund size and growth: total assets under management, cumulative investment returns since inception", + "Portfolio allocation: breakdown of assets across domestic equities, fixed income, overseas investments, alternative assets, and private equity", + "Investment returns: annual and cumulative return rates by asset class and overall portfolio", + "Equity holdings: major stock holdings in domestic A-share market and overseas listed companies", + "Social security transfer receipts: funds transferred from state-owned enterprise equity and other sources", + "Entrusted investment performance: performance of funds managed by external investment managers", + "Overseas investment: allocation to overseas markets by region and asset type", + "Annual statistical bulletin: comprehensive financial summary and key performance indicators" + ], + "zh": [ + "年度基金规模与增长:受托管理资产总规模、自成立以来累计投资收益", + "资产配置:国内股票、固定收益、境外投资、另类资产及私募股权的资产分布", + "投资收益:各资产类别及整体组合的年度和累计收益率", + "权益持仓:国内A股市场及境外上市公司主要股票持仓", + "社会保障基金转入:国有股权划转及其他来源的资金转入情况", + "委托投资绩效:外部投资管理人受托管理资金的绩效表现", + "境外投资:按地区和资产类别分类的境外市场配置情况", + "年度统计公报:综合财务摘要及关键绩效指标" + ] + } +} diff --git a/firstdata/sources/china/finance/forex/china-cfets.json b/firstdata/sources/china/finance/forex/china-cfets.json new file mode 100644 index 00000000..7f0e3b4b --- /dev/null +++ b/firstdata/sources/china/finance/forex/china-cfets.json @@ -0,0 +1,63 @@ +{ + "id": "china-cfets", + "name": { + "en": "China Foreign Exchange Trade System", + "zh": "中国外汇交易中心" + }, + "description": { + "en": "China Foreign Exchange Trade System (CFETS), also known as China Money, is the institution authorized by the People's Bank of China to organize and operate the national interbank foreign exchange market, money market, and bond market. It publishes authoritative RMB exchange rate central parity rates, interbank market trading data, bond yields, and money market benchmark rates including SHIBOR and LPR.", + "zh": "中国外汇交易中心(CFETS)是经中国人民银行授权,负责组织运营全国银行间外汇市场、货币市场和债券市场的机构。发布人民币汇率中间价、银行间市场交易数据、债券收益率曲线、SHIBOR和LPR等货币市场基准利率等权威数据。" + }, + "website": "https://www.chinamoney.com.cn", + "data_url": "https://www.chinamoney.com.cn/chinese/bkccpr/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "finance", + "economics" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "china", + "cfets", + "foreign-exchange", + "forex", + "exchange-rate", + "interbank", + "money-market", + "bond-market", + "shibor", + "lpr", + "rmb", + "人民币汇率", + "中间价", + "银行间市场", + "货币市场", + "债券市场", + "利率" + ], + "data_content": { + "en": [ + "RMB Central Parity Rate - Daily central parity rates for RMB against USD and other major currencies", + "Interbank FX Market Data - Foreign exchange spot, forward, and swap trading volumes and rates", + "SHIBOR - Shanghai Interbank Offered Rate across multiple tenors", + "LPR - Loan Prime Rate published monthly", + "Bond Market Data - Interbank bond trading volumes, yields, and yield curves", + "Money Market Rates - Pledged repo rates, outright repo rates, and interbank lending rates", + "Gold Market Data - Interbank gold trading prices and volumes", + "CFETS RMB Index - Trade-weighted RMB exchange rate index" + ], + "zh": [ + "人民币汇率中间价 - 人民币对美元等主要货币的每日中间价", + "银行间外汇市场数据 - 外汇即期、远期、掉期交易量和汇率", + "SHIBOR - 上海银行间同业拆放利率(多期限)", + "LPR - 贷款市场报价利率(每月发布)", + "债券市场数据 - 银行间债券交易量、收益率和收益率曲线", + "货币市场利率 - 质押式回购利率、买断式回购利率、同业拆借利率", + "黄金市场数据 - 银行间黄金交易价格和成交量", + "CFETS人民币汇率指数 - 贸易加权人民币汇率指数" + ] + } +} diff --git a/firstdata/sources/china/finance/forex/china-safe.json b/firstdata/sources/china/finance/forex/china-safe.json new file mode 100644 index 00000000..8cb048c6 --- /dev/null +++ b/firstdata/sources/china/finance/forex/china-safe.json @@ -0,0 +1,62 @@ +{ + "id": "china-safe", + "name": { + "en": "State Administration of Foreign Exchange of China", + "zh": "国家外汇管理局", + "native": "国家外汇管理局" + }, + "description": { + "en": "The State Administration of Foreign Exchange (SAFE) is China's foreign exchange regulatory authority responsible for drafting regulations on foreign exchange market supervision and managing China's foreign exchange reserves. It publishes authoritative statistics on foreign exchange reserves, balance of payments, international investment position, cross-border capital flows, and exchange rate data.", + "zh": "国家外汇管理局(外汇局)是中国外汇市场的监管机构,负责管理国家外汇储备。发布外汇储备规模、国际收支、国际投资头寸、跨境资本流动和汇率等权威统计数据。" + }, + "website": "https://www.safe.gov.cn", + "data_url": "https://www.safe.gov.cn/safe/tjsj1/index.html", + "api_url": null, + "country": "CN", + "domains": [ + "finance", + "economics", + "trade" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "authority_level": "government", + "tags": [ + "china", + "foreign-exchange", + "forex", + "reserves", + "balance-of-payments", + "international-investment", + "cross-border", + "capital-flows", + "exchange-rate", + "外汇", + "外汇储备", + "国际收支", + "跨境资本", + "人民币" + ], + "data_content": { + "en": [ + "Foreign Exchange Reserves - Monthly data on China's official foreign exchange reserve levels", + "Balance of Payments - Current account, capital account, and financial account statistics", + "International Investment Position - China's external assets and liabilities", + "Cross-border Capital Flows - FDI inflows/outflows, portfolio investment, and other capital flows", + "Exchange Rate Data - RMB central parity rates and exchange rate statistics", + "Foreign Exchange Market - Trading volumes and market structure data", + "Banks' Foreign Exchange Assets and Liabilities - Banking sector foreign exchange positions", + "External Debt Statistics - China's total external debt by sector and maturity" + ], + "zh": [ + "外汇储备规模 - 中国官方外汇储备月度数据", + "国际收支 - 经常账户、资本账户和金融账户统计", + "国际投资头寸 - 中国对外资产和负债状况", + "跨境资本流动 - 外商直接投资、证券投资和其他资本流动", + "汇率数据 - 人民币中间价和汇率统计", + "外汇市场 - 外汇市场交易量和市场结构数据", + "银行业外汇资产负债 - 银行业外汇头寸", + "外债统计 - 按部门和期限分类的中国外债总量" + ] + } +} \ No newline at end of file diff --git a/firstdata/sources/china/finance/securities/china-neeq.json b/firstdata/sources/china/finance/securities/china-neeq.json new file mode 100644 index 00000000..2a91c41f --- /dev/null +++ b/firstdata/sources/china/finance/securities/china-neeq.json @@ -0,0 +1,74 @@ +{ + "id": "china-neeq", + "name": { + "en": "National Equities Exchange and Quotations (New Third Board)", + "zh": "全国中小企业股份转让系统(新三板)" + }, + "description": { + "en": "The National Equities Exchange and Quotations (NEEQ), commonly known as the New Third Board (新三板), is China's national OTC securities market for small and medium-sized enterprises (SMEs). Established in 2013 and supervised by the China Securities Regulatory Commission (CSRC), NEEQ provides a capital market platform for innovative SMEs that do not yet meet requirements for listing on the main exchanges. It publishes real-time quotation data, company disclosure information, and market statistics for thousands of listed companies.", + "zh": "全国中小企业股份转让系统(NEEQ),俗称新三板,是中国为中小企业设立的全国性场外证券市场。成立于2013年,受中国证券监督管理委员会监管,为尚不满足主板上市要求的创新型中小企业提供资本市场平台。提供数千家挂牌公司的实时行情数据、信息披露和市场统计数据。" + }, + "website": "https://www.neeq.com.cn", + "data_url": "https://www.neeq.com.cn/issuanceList.html", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "securities" + ], + "update_frequency": "daily", + "tags": [ + "新三板", + "new-third-board", + "neeq", + "全国股转", + "中小企业", + "sme", + "场外市场", + "otc-market", + "挂牌公司", + "listed-companies", + "股票行情", + "stock-quotations", + "证券", + "securities", + "中国资本市场", + "china-capital-market", + "做市商", + "market-maker", + "精选层", + "创新层", + "基础层", + "北交所", + "信息披露", + "disclosure" + ], + "data_content": { + "en": [ + "Market Overview - Total listed companies, market capitalization, and trading volume statistics", + "Real-time Quotations - Bid/ask prices, last trade prices, and volume for all listed stocks", + "Company Disclosure - Annual reports, interim reports, prospectuses, and material event announcements", + "Listing Information - New listings, de-listings, and transfer-to-exchange records", + "Fundraising Statistics - Equity financing amounts and deal counts by period", + "Industry Distribution - Listed company counts and market cap by CSRC industry classification", + "Regional Distribution - Listed company statistics by province and city", + "Market Maker Data - Market maker quotes, spreads, and turnover for designated stocks", + "Index Data - NEEQ composite index and selected tier indices", + "Annual Market Reports - Comprehensive annual statistics on SME equity financing in China" + ], + "zh": [ + "市场概况 - 挂牌公司总数、市值和成交量统计", + "实时行情 - 所有挂牌股票的买卖报价、最新成交价和成交量", + "信息披露 - 年报、半年报、招股说明书和重大事项公告", + "挂牌信息 - 新增挂牌、摘牌和转板记录", + "融资统计 - 各期间股权融资金额和交易笔数", + "行业分布 - 按证监会行业分类的挂牌公司数量和市值", + "地区分布 - 按省市划分的挂牌公司统计", + "做市商数据 - 做市股票的做市商报价、价差和成交数据", + "指数数据 - 新三板综合指数及各层次选取指数", + "年度市场报告 - 中国中小企业股权融资年度综合统计" + ] + } +} diff --git a/firstdata/sources/china/finance/securities/china-sse.json b/firstdata/sources/china/finance/securities/china-sse.json new file mode 100644 index 00000000..45c0b29a --- /dev/null +++ b/firstdata/sources/china/finance/securities/china-sse.json @@ -0,0 +1,64 @@ +{ + "id": "china-sse", + "name": { + "en": "Shanghai Stock Exchange", + "zh": "上海证券交易所", + "native": "上海证券交易所" + }, + "description": { + "en": "The Shanghai Stock Exchange (SSE) is one of China's two major stock exchanges and one of the largest in the world by market capitalization. It provides comprehensive real-time and historical market data including equity trading, bond markets, funds, derivatives, and company disclosure information. SSE hosts the main board and the STAR Market (Science and Technology Innovation Board) for high-tech enterprises.", + "zh": "上海证券交易所(上交所)是中国两大证券交易所之一,也是全球市值最大的证券交易所之一。提供股票交易、债券市场、基金、衍生品及上市公司信息披露的全面实时和历史市场数据。上交所设有主板和面向科创企业的科创板。" + }, + "website": "https://www.sse.com.cn", + "data_url": "https://www.sse.com.cn/market/stockdata/statistic/", + "api_url": null, + "country": "CN", + "domains": [ + "finance", + "securities" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "authority_level": "market", + "tags": [ + "china", + "stock-exchange", + "shanghai", + "a-shares", + "equities", + "bonds", + "etf", + "star-market", + "market-data", + "listed-companies", + "securities", + "上交所", + "上海证券交易所", + "A股", + "股票", + "科创板", + "债券" + ], + "data_content": { + "en": [ + "Equity Market Statistics - Daily trading volume, market capitalization, and price indices (SSE Composite, SSE 50, SSE 180)", + "Listed Companies - Total number, sector breakdown, financial disclosures, and annual reports", + "Bond Market - Government bonds, corporate bonds, convertible bonds trading data", + "Fund Market - ETFs, mutual funds, REITs listing and trading statistics", + "STAR Market - Science and Technology Innovation Board company listings and trading data", + "Derivatives - Stock options trading volumes and open interest", + "Market Overview - Total accounts, investor structure, and market activity", + "Historical Data - Daily, monthly, and annual historical market statistics" + ], + "zh": [ + "股票市场统计 - 日交易量、市值和价格指数(上证综指、上证50、上证180)", + "上市公司 - 总数、行业分布、财务披露和年报", + "债券市场 - 国债、公司债、可转债交易数据", + "基金市场 - ETF、公募基金、REITs上市和交易统计", + "科创板 - 科技创新企业上市和交易数据", + "衍生品 - 股票期权交易量和持仓量", + "市场概况 - 账户总数、投资者结构和市场活跃度", + "历史数据 - 每日、每月、每年历史市场统计数据" + ] + } +} diff --git a/firstdata/sources/china/finance/securities/csrc.json b/firstdata/sources/china/finance/securities/csrc.json index 73a2fafb..1f157672 100644 --- a/firstdata/sources/china/finance/securities/csrc.json +++ b/firstdata/sources/china/finance/securities/csrc.json @@ -9,14 +9,14 @@ "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": "http://www.csrc.gov.cn", + "website": "https://www.csrc.gov.cn", "data_url": "https://www.csrc.gov.cn/csrc/c100103/common_list.shtml", "api_url": null, "country": "CN", "domains": [ "finance", "securities", - "capital_markets" + "capital-markets" ], "geographic_scope": "national", "update_frequency": "monthly", @@ -55,4 +55,4 @@ ] }, "authority_level": "government" -} \ No newline at end of file +} diff --git a/firstdata/sources/china/finance/securities/hkex.json b/firstdata/sources/china/finance/securities/hkex.json index dd82d8a7..3aab7f20 100644 --- a/firstdata/sources/china/finance/securities/hkex.json +++ b/firstdata/sources/china/finance/securities/hkex.json @@ -17,7 +17,7 @@ "finance", "securities", "derivatives", - "capital_markets" + "capital-markets" ], "geographic_scope": "regional", "update_frequency": "real-time", @@ -62,4 +62,4 @@ ] }, "authority_level": "commercial" -} \ No newline at end of file +} diff --git a/firstdata/sources/china/finance/securities/szse.json b/firstdata/sources/china/finance/securities/szse.json new file mode 100644 index 00000000..7f929c41 --- /dev/null +++ b/firstdata/sources/china/finance/securities/szse.json @@ -0,0 +1,63 @@ +{ + "id": "china-szse", + "name": { + "en": "Shenzhen Stock Exchange", + "zh": "深圳证券交易所", + "native": "深圳证券交易所" + }, + "description": { + "en": "The Shenzhen Stock Exchange (SZSE) is one of China's two major stock exchanges, home to the ChiNext board (创业板) for innovative growth companies and the Small and Medium Enterprise (SME) board. It provides comprehensive market data including stock trading statistics, listed company information, bond market data, fund data, index data, and market summaries.", + "zh": "深圳证券交易所是中国两大主要证券交易所之一,设有面向创新成长型企业的创业板和中小企业板。提供全面的市场数据,包括股票交易统计、上市公司信息、债券市场数据、基金数据、指数数据和市场总览。" + }, + "website": "https://www.szse.cn", + "data_url": "https://www.szse.cn/market/trend/index.html", + "api_url": "https://www.szse.cn/api/report/ShowReport/data", + "authority_level": "government", + "country": "CN", + "domains": [ + "finance", + "securities" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "china", + "shenzhen", + "stock-exchange", + "szse", + "chinext", + "创业板", + "中小板", + "深交所", + "equity", + "securities", + "a-shares", + "etf", + "bonds", + "index" + ], + "data_content": { + "en": [ + "Market Overview - Daily trading volume, market capitalization, number of listed companies, and composite index", + "ChiNext Board (创业板) - Trading data, listings, and market statistics for innovative growth companies", + "Stock Trading Data - Real-time and historical prices, volume, turnover rate, and sector statistics", + "Listed Companies - Company profiles, financial disclosures, prospectuses, and annual reports", + "Bond Market - Corporate bonds, convertible bonds, asset-backed securities trading data", + "Fund Data - ETF, LOF, and REITs trading volume and net asset value statistics", + "Index Data - SZSE Component Index, ChiNext Index, and other derived indices", + "Industry Statistics - Trading data segmented by CSRC industry classification", + "Investor Statistics - Number of accounts, institutional vs. retail investor breakdown" + ], + "zh": [ + "市场总览 - 每日成交量、市值、上市公司数量和综合指数", + "创业板 - 创新成长型企业交易数据、上市情况和市场统计", + "股票交易数据 - 实时和历史价格、成交量、换手率及行业统计", + "上市公司 - 公司概况、财务披露、招股说明书和年报", + "债券市场 - 公司债、可转债、资产支持证券交易数据", + "基金数据 - ETF、LOF和REITs成交量及净值统计", + "指数数据 - 深证成份指数、创业板指数及其他衍生指数", + "行业统计 - 按证监会行业分类的交易数据", + "投资者统计 - 账户数量、机构与散户投资者结构" + ] + } +} \ No newline at end of file diff --git a/firstdata/sources/china/finance/taxation/china-chinatax.json b/firstdata/sources/china/finance/taxation/china-chinatax.json new file mode 100644 index 00000000..711e7025 --- /dev/null +++ b/firstdata/sources/china/finance/taxation/china-chinatax.json @@ -0,0 +1,76 @@ +{ + "id": "china-chinatax", + "name": { + "en": "State Taxation Administration of China", + "zh": "国家税务总局" + }, + "description": { + "en": "Official tax statistics and fiscal revenue data from China's State Taxation Administration (STA). Covers national tax revenue collection data, tax category breakdowns (VAT, corporate income tax, personal income tax, consumption tax, tariffs), monthly and annual tax revenue bulletins, tax compliance and enforcement statistics, taxpayer registration data, tax refund and drawback records, and regional tax revenue distribution. The STA administers and collects all taxes and social insurance contributions in China except for customs duties.", + "zh": "国家税务总局发布的官方税收统计与财政收入数据,涵盖全国税收收入征管数据、税种分类明细(增值税、企业所得税、个人所得税、消费税、关税等)、月度及年度税收收入公告、税务合规与执法统计、纳税人登记数据、退税与退库记录及地区税收收入分布。税务总局负责征管全国除关税外的各类税收及社会保险费。" + }, + "website": "https://www.chinatax.gov.cn/", + "data_url": "https://www.chinatax.gov.cn/chinatax/n810219/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "economics", + "governance" + ], + "update_frequency": "monthly", + "tags": [ + "税收", + "taxation", + "国家税务总局", + "state-taxation-administration", + "增值税", + "vat", + "企业所得税", + "corporate-income-tax", + "个人所得税", + "personal-income-tax", + "消费税", + "consumption-tax", + "税收收入", + "tax-revenue", + "财政收入", + "fiscal-revenue", + "纳税人", + "taxpayer", + "税收统计", + "tax-statistics", + "sta", + "税收征管", + "tax-administration", + "出口退税", + "export-tax-refund" + ], + "data_content": { + "en": [ + "Monthly and annual national tax revenue reports: total collection by tax category", + "Value-Added Tax (VAT) revenue: by industry sector, region, and enterprise size", + "Corporate Income Tax (CIT) revenue statistics: collected from domestic enterprises and foreign-invested companies", + "Personal Income Tax (PIT) data: wage income, business income, dividend income and withholding statistics", + "Consumption tax collection: tobacco, alcohol, petroleum products, luxury goods", + "Taxpayer registration data: number of registered taxpayers by type (general VAT, small-scale, individual business)", + "Export tax refund (VAT drawback) statistics by industry and province", + "Social insurance contribution collection data (unified collection since 2019)", + "Tax enforcement and compliance statistics: audits, penalties, and tax evasion cases", + "Regional tax revenue distribution: provincial breakdowns of major tax categories" + ], + "zh": [ + "月度及年度全国税收收入报告:各税种征收总量", + "增值税收入:按行业、地区及企业规模分类", + "企业所得税收入统计:内资企业和外资企业征收情况", + "个人所得税数据:工资薪金、经营所得、股息所得及代扣代缴统计", + "消费税征收:烟草、酒类、石油制品、奢侈品等", + "纳税人登记数据:一般纳税人、小规模纳税人、个体工商户数量", + "出口退税(增值税退税)统计:按行业及省份分类", + "社会保险费征收数据(2019年起统一征收)", + "税收执法与合规统计:稽查、处罚及逃税案件", + "地区税收收入分布:主要税种省级分类数据" + ] + } +} diff --git a/firstdata/sources/china/governance/china-acla.json b/firstdata/sources/china/governance/china-acla.json new file mode 100644 index 00000000..275cdb12 --- /dev/null +++ b/firstdata/sources/china/governance/china-acla.json @@ -0,0 +1,71 @@ +{ + "id": "china-acla", + "name": { + "en": "All China Lawyers Association", + "zh": "中华全国律师协会" + }, + "description": { + "en": "The All China Lawyers Association (ACLA) is the national self-regulatory organization for the legal profession in China, established in 1986. Under the supervision of the Ministry of Justice, ACLA represents and manages approximately 650,000 licensed lawyers and over 40,000 law firms across China. It publishes annual statistics on the legal profession including lawyer counts by region, law firm distribution, legal aid cases, and industry growth trends, serving as the authoritative data source for China's legal services market.", + "zh": "中华全国律师协会(全国律协/ACLA)成立于1986年,是中国法律职业的全国性自律组织,受司法部监管。代表和管理全国约65万名执业律师和4万余家律师事务所。发布全国律师行业年度统计数据,包括各地区律师人数、律师事务所分布、法律援助案件情况和行业发展趋势,是中国法律服务市场的权威数据来源。" + }, + "website": "https://www.acla.org.cn", + "data_url": "https://www.acla.org.cn/acla/tjxx/", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "legal", + "governance" + ], + "update_frequency": "annual", + "tags": [ + "律师", + "lawyer", + "法律服务", + "legal-services", + "律师事务所", + "law-firm", + "全国律协", + "acla", + "司法", + "judicial", + "法律援助", + "legal-aid", + "律师统计", + "lawyer-statistics", + "中国法律", + "china-legal", + "执业律师", + "licensed-attorney", + "法律职业", + "legal-profession", + "律师行业", + "律师人数", + "律师分布" + ], + "data_content": { + "en": [ + "Lawyer Statistics - Annual count of licensed lawyers nationwide and by province/city", + "Law Firm Distribution - Number and size of law firms across provinces, cities, and counties", + "Legal Aid Data - Legal aid cases handled, recipients served, and geographic distribution", + "Professional Development - New admissions, annual continuing education completion rates", + "Specialization Areas - Distribution of lawyers across practice areas (criminal, civil, commercial, IP, etc.)", + "Industry Revenue - Total revenue of China's legal services industry and per-lawyer metrics", + "Foreign Law Firms - Number and distribution of foreign law firm representative offices in China", + "Disciplinary Actions - Lawyer disciplinary cases and outcomes by category", + "International Cooperation - Cross-border legal service statistics and bilateral agreements" + ], + "zh": [ + "律师统计 - 全国及各省市执业律师年度人数", + "律师事务所分布 - 全国各省市县律师事务所数量和规模", + "法律援助数据 - 法律援助案件办理数量、受援对象和地域分布", + "队伍建设 - 新增执业律师数量、年度继续教育完成情况", + "业务领域分布 - 律师在刑事、民事、商事、知识产权等领域的分布", + "行业收入 - 法律服务行业总收入和人均创收指标", + "外国律师事务所 - 外国律师事务所在华代表机构数量和分布", + "惩戒处分 - 按类型分类的律师惩戒案件和处理结果", + "国际合作 - 跨境法律服务统计和双边合作协议情况" + ] + } +} diff --git a/firstdata/sources/china/governance/china-bankruptcy-court.json b/firstdata/sources/china/governance/china-bankruptcy-court.json new file mode 100644 index 00000000..dee57d55 --- /dev/null +++ b/firstdata/sources/china/governance/china-bankruptcy-court.json @@ -0,0 +1,59 @@ +{ + "id": "china-bankruptcy-court", + "name": { + "en": "National Enterprise Bankruptcy and Restructuring Case Information Network", + "zh": "全国企业破产重整案件信息网" + }, + "description": { + "en": "The National Enterprise Bankruptcy and Restructuring Case Information Network is the official judicial platform operated by the Supreme People's Court of China for disclosing enterprise bankruptcy and restructuring case information. The platform provides public access to bankruptcy case filings, restructuring plans, creditor meeting announcements, administrator appointment records, and case progress updates across all Chinese courts. It serves as the authoritative source for tracking corporate insolvency proceedings in China, supporting creditor protection, investment risk assessment, and legal research on China's evolving bankruptcy regime.", + "zh": "全国企业破产重整案件信息网是最高人民法院运营的企业破产重整案件信息公开官方司法平台,提供破产案件立案信息、重整计划、债权人会议公告、管理人任命记录及案件进展等公开数据。该平台是追踪中国企业破产清算及重组程序的权威数据源,为债权人保护、投资风险评估以及中国破产法律制度研究提供数据支持。" + }, + "website": "https://pccz.court.gov.cn", + "data_url": "https://pccz.court.gov.cn/pcajxxw/index/xxwsy", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "legal", + "finance", + "corporate-governance" + ], + "update_frequency": "daily", + "tags": [ + "bankruptcy", + "restructuring", + "enterprise-bankruptcy", + "liquidation", + "creditor", + "supreme-people's-court", + "bankruptcy-cases", + "corporate-restructuring", + "bankruptcy-administrator", + "judicial-data", + "corporate-credit", + "risk-assessment" + ], + "data_content": { + "en": [ + "Bankruptcy case filings: court acceptance records for enterprise bankruptcy cases nationwide", + "Restructuring plans: publicly disclosed restructuring plans and voting results", + "Creditor meeting announcements: schedules and agendas for creditor assemblies", + "Administrator appointments: designated bankruptcy administrator information and contact details", + "Case progress tracking: real-time updates on case stages from filing to closure", + "Creditor claims: deadlines and procedures for creditor claim declarations", + "Asset disposal: information on bankrupt enterprise asset auctions and dispositions", + "Court rulings: key judicial decisions in bankruptcy proceedings" + ], + "zh": [ + "破产案件立案:全国企业破产案件的法院受理记录", + "重整计划:公开披露的重整计划及表决结果", + "债权人会议公告:债权人会议日程安排及议程", + "管理人任命:指定破产管理人信息及联系方式", + "案件进展追踪:从立案到结案各阶段的实时进展更新", + "债权申报:债权人申报债权的截止期限和程序", + "资产处置:破产企业资产拍卖及处置信息", + "法院裁定:破产程序中的重要司法裁定" + ] + } +} diff --git a/firstdata/sources/china/governance/china-cafiu.json b/firstdata/sources/china/governance/china-cafiu.json new file mode 100644 index 00000000..dba4a065 --- /dev/null +++ b/firstdata/sources/china/governance/china-cafiu.json @@ -0,0 +1,60 @@ +{ + "id": "china-cafiu", + "name": { + "en": "China Association for International Understanding", + "zh": "中国国际交流协会" + }, + "description": { + "en": "The China Association for International Understanding (CAFIU) is a national non-governmental organization established in 1981, registered with the Ministry of Civil Affairs and affiliated with the International Liaison Department of the CPC Central Committee. CAFIU conducts people-to-people diplomacy, policy dialogue, and multilateral exchanges with political parties, think tanks, NGOs and political figures from more than 160 countries. It publishes authoritative content on China's party-to-party diplomacy, global governance perspectives, Belt and Road cooperation narratives, Chinese modernization experience-sharing, and international cooperation on sustainable development. CAFIU's research outputs include dialogue proceedings with foreign think tanks, bilateral and multilateral forum reports (e.g., CPC in Dialogue with Marxist Political Parties Worldwide Forum, CPC-African Political Parties Dialogue), policy briefings on international affairs, and academic publications by its affiliated CAFIU Journal. The association is a key reference source for researchers studying Chinese public diplomacy, party diplomacy channels, and China's engagement with global civil society.", + "zh": "中国国际交流协会(CAFIU)是成立于1981年的全国性民间友好组织,在民政部登记注册,业务上与中国共产党中央委员会对外联络部(中联部)联系,开展民间外交、政策对话和多边交流,与160多个国家的政党、智库、非政府组织及政治人士保持联系。协会发布关于中国政党外交、全球治理观点、「一带一路」合作叙事、中国式现代化经验分享及国际可持续发展合作的权威内容。协会的研究成果包括与外国智库的对话纪要、双边和多边论坛报告(如中国共产党与世界马克思主义政党理论研讨会、中非政党对话会)、国际事务政策简报,以及其主办的《中国国际交流》等学术刊物。协会是研究中国公共外交、政党外交渠道以及中国与全球公民社会交往的重要参考来源。" + }, + "website": "https://www.cafiu.org.cn", + "data_url": "https://www.cafiu.org.cn", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "governance", + "international-relations", + "diplomacy" + ], + "update_frequency": "irregular", + "tags": [ + "cafiu", + "中国国际交流协会", + "民间外交", + "政党外交", + "party-diplomacy", + "public-diplomacy", + "international-exchange", + "中联部", + "think-tank-dialogue", + "一带一路", + "belt-and-road", + "global-governance", + "全球治理", + "international-affairs", + "policy-dialogue" + ], + "data_content": { + "en": [ + "Records of party-to-party diplomacy events and dialogues", + "Bilateral and multilateral forum reports (CPC-Marxist Parties, CPC-African Parties etc.)", + "Policy briefings on international affairs and global governance", + "CAFIU Journal academic publications", + "Belt and Road cooperation narratives and people-to-people exchange cases", + "Dialogue proceedings with foreign think tanks and NGOs", + "Research reports on Chinese modernization experience sharing" + ], + "zh": [ + "政党外交活动及对话纪要", + "双边和多边论坛报告(中马、中非政党对话等)", + "国际事务与全球治理政策简报", + "《中国国际交流》等学术刊物", + "一带一路合作叙事与民间交流案例", + "与外国智库和非政府组织的对话纪要", + "中国式现代化经验分享研究报告" + ] + } +} diff --git a/firstdata/sources/china/governance/china-ccdi.json b/firstdata/sources/china/governance/china-ccdi.json new file mode 100644 index 00000000..ba6c744f --- /dev/null +++ b/firstdata/sources/china/governance/china-ccdi.json @@ -0,0 +1,56 @@ +{ + "id": "china-ccdi", + "name": { + "en": "Central Commission for Discipline Inspection of the Communist Party of China", + "zh": "中央纪律检查委员会" + }, + "description": { + "en": "The Central Commission for Discipline Inspection (CCDI) is the highest internal-control institution of the Chinese Communist Party, responsible for anti-corruption enforcement and party discipline oversight. Its website publishes official investigation results, disciplinary action statistics, anti-corruption campaign data, and transparency disclosures on disciplinary cases at all levels of government and party organizations.", + "zh": "中央纪律检查委员会(中央纪委)是中国共产党最高纪律检查机关,负责反腐败执纪和党纪监督。其官方网站发布案件查处结果、纪律处分统计、反腐败专项行动数据,以及各级党政机关纪律案件的透明度信息。" + }, + "website": "https://www.ccdi.gov.cn", + "data_url": "https://www.ccdi.gov.cn/xxgk/", + "api_url": null, + "country": "CN", + "domains": [ + "governance", + "anti-corruption", + "transparency" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "china", + "中央纪委", + "anti-corruption", + "反腐败", + "discipline-inspection", + "纪律检查", + "party-discipline", + "党纪", + "governance", + "transparency", + "信息公开", + "disciplinary-cases", + "纪律处分", + "rule-of-law", + "法治" + ], + "data_content": { + "en": [ + "Disciplinary Case Disclosures - Official announcements on investigated and disciplined party and government officials", + "Anti-Corruption Statistics - Annual and periodic statistics on corruption cases, recovered assets, and enforcement actions", + "Campaign Reports - Data from centralized anti-corruption campaigns including 'Tigers and Flies'", + "Policy Documents - Regulations, guidelines, and internal control documents for party discipline", + "Transparency Index - Public disclosure data on government and party compliance and enforcement" + ], + "zh": [ + "纪律案件公告 - 受查处党政干部的官方通报", + "反腐败统计 - 腐败案件、追缴资产和执纪数量的年度及阶段性统计", + "专项行动报告 - '打虎拍蝇'等集中反腐专项行动数据", + "政策文件 - 党纪法规、内部监控指南和相关制度文件", + "透明度数据 - 党政机关合规与执纪公开信息" + ] + }, + "authority_level": "government" +} diff --git a/firstdata/sources/china/governance/china-ccgp.json b/firstdata/sources/china/governance/china-ccgp.json new file mode 100644 index 00000000..4ce1b07e --- /dev/null +++ b/firstdata/sources/china/governance/china-ccgp.json @@ -0,0 +1,81 @@ +{ + "id": "china-ccgp", + "name": { + "en": "China Government Procurement Network", + "zh": "中国政府采购网" + }, + "description": { + "en": "The China Government Procurement Network (CCGP) is the official national portal operated by the Ministry of Finance for government procurement transparency. It is the authoritative platform for disclosing public procurement announcements, bid results, contract awards, and supplier qualification information across all levels of Chinese government — central, provincial, and municipal. China's government procurement market exceeds 3 trillion RMB annually, making CCGP one of the world's most comprehensive public procurement databases. The platform covers goods procurement, engineering projects, and service contracts tendered by government agencies, public institutions, and state-funded organizations. CCGP publishes standardized procurement notices, evaluation results, and contract performance disclosures, providing critical transparency data for market analysis, anti-corruption research, supply chain intelligence, and comparative public finance studies.", + "zh": "中国政府采购网(CCGP)是由财政部运营的全国政府采购信息公开官方门户网站,是覆盖中央、省、市各级政府的政府采购公告、中标结果、合同授予及供应商资质信息的权威公开平台。中国政府采购市场年规模超过3万亿元人民币,CCGP是全球最全面的公共采购数据库之一。平台涵盖政府机关、事业单位和国家出资机构招标的货物采购、工程项目和服务合同。CCGP发布标准化采购公告、评审结果和合同履行公示,为市场分析、反腐研究、供应链情报及公共财政比较研究提供重要的透明度数据。" + }, + "website": "https://www.ccgp.gov.cn/", + "data_url": "https://www.ccgp.gov.cn/cggg/index.htm", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "economics", + "governance", + "finance", + "statistics" + ], + "update_frequency": "daily", + "tags": [ + "中国政府采购网", + "ccgp", + "china-government-procurement", + "政府采购", + "government-procurement", + "公开招标", + "public-bidding", + "中标公告", + "bid-award-announcement", + "采购公告", + "procurement-notice", + "财政部", + "ministry-of-finance", + "合同公告", + "contract-notice", + "政府支出", + "government-spending", + "供应商", + "supplier", + "公共采购", + "public-procurement", + "招投标", + "bidding-and-tendering", + "政府透明度", + "government-transparency", + "财政支出", + "fiscal-expenditure", + "央企采购", + "soe-procurement" + ], + "data_content": { + "en": [ + "Procurement announcements: tender notices for goods, engineering works, and services from all levels of Chinese government", + "Bid result disclosures: winning supplier names, contract values, and evaluation scores for completed tenders", + "Contract award notices: official contract execution announcements including parties, amounts, and performance terms", + "Supplier qualification lists: approved vendor registries and disqualification records for government procurement participants", + "Framework agreement data: standing agreements and catalog pricing for commonly procured items", + "Regional procurement data: procurement volumes and contract awards by province, city, and government agency", + "Sector spending analysis: procurement by category (IT equipment, construction, consulting, vehicles, office supplies)", + "Single-source procurement: non-competitive procurement disclosures required for transparency under Chinese law", + "Annual government procurement statistics: national summary of total procurement value, category breakdown, and savings", + "Inquiry and complaint records: public documentation of procurement disputes and regulatory responses" + ], + "zh": [ + "采购公告:各级政府货物、工程和服务的招标公告", + "中标结果公示:已完成招标的中标供应商名称、合同金额和评审得分", + "合同授予公告:包括合同方、金额和履约条款的正式合同签订公告", + "供应商资质名单:政府采购参与者的合格供应商注册库及取消资格记录", + "框架协议数据:常用采购品目的框架协议和目录价格", + "分地区采购数据:按省、市和政府机构统计的采购规模和合同授予情况", + "分行业支出分析:按品类(IT设备、建设工程、咨询、车辆、办公用品)统计的采购情况", + "单一来源采购:依据中国法律要求公开披露的非竞争性采购信息", + "年度政府采购统计:全国采购总额、品类分布和节支情况汇总", + "质疑与投诉记录:采购争议和监管回应的公开记录" + ] + } +} diff --git a/firstdata/sources/china/governance/china-cdpf.json b/firstdata/sources/china/governance/china-cdpf.json new file mode 100644 index 00000000..ce38c530 --- /dev/null +++ b/firstdata/sources/china/governance/china-cdpf.json @@ -0,0 +1,77 @@ +{ + "id": "china-cdpf", + "name": { + "en": "China Disabled Persons' Federation", + "zh": "中国残疾人联合会" + }, + "description": { + "en": "The China Disabled Persons' Federation (CDPF) is the national mass organization representing the rights and interests of persons with disabilities in China. Founded in 1988 and chaired by a standing member of the National People's Congress, CDPF operates under the guidance of the State Council and coordinates disability policy, rehabilitation, employment, education, and welfare programs across the country. CDPF publishes authoritative statistics on China's disabled population, including disability prevalence by type and severity, employment rates, rehabilitation coverage, welfare benefits, and special education enrollment. Its China Yearbook of People with Disabilities and periodic statistical bulletins serve as the primary national data source on disability affairs and social inclusion indicators.", + "zh": "中国残疾人联合会(中国残联)是代表全国残疾人权益的全国性群众组织,成立于1988年,在国务院领导下开展工作,统筹协调残疾人政策、康复、就业、教育及福利保障工作。中国残联发布权威的残疾人统计数据,涵盖各类别和等级残疾人数量、就业率、康复服务覆盖率、社会保障待遇及特殊教育入学情况。《中国残疾人事业统计年鉴》及定期统计公报是全国残疾人事务和社会融合指标的主要国家级数据来源。" + }, + "website": "https://www.cdpf.org.cn", + "data_url": "https://www.cdpf.org.cn/zwgk/index.htm", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "social", + "demographics", + "governance" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "中国残疾人联合会", + "china-disabled-persons'-federation", + "cdpf", + "残疾人统计", + "disability-statistics", + "残疾人口", + "disabled-population", + "残疾类型", + "disability-types", + "康复服务", + "rehabilitation-services", + "残疾人就业", + "disability-employment", + "特殊教育", + "special-education", + "社会保障", + "social-security", + "无障碍", + "accessibility", + "残疾年鉴", + "disability-yearbook", + "社会融合", + "social-inclusion", + "残疾补贴", + "disability-allowance", + "china" + ], + "data_content": { + "en": [ + "Disability prevalence: number and share of persons with disabilities by type (visual, hearing, speech, physical, intellectual, psychiatric) and severity grade", + "Employment statistics: employment rate, job placement programs, supported employment, and sheltered workshop data", + "Rehabilitation coverage: persons receiving rehabilitation services by disability type and service category", + "Special education: enrollment in special schools and inclusive education programs for children with disabilities", + "Social welfare and benefits: disability allowance recipients, subsistence allowance (dibao), nursing care subsidies", + "Assistive devices: distribution of prosthetics, orthotics, hearing aids, wheelchairs, and other assistive technology", + "Poverty alleviation: disabled persons in poverty, targeted assistance programs, and poverty exit rates", + "Cultural and sports activities: participation of persons with disabilities in cultural events and para-sports", + "Legal rights protection: disability rights complaints, legal aid cases, and policy implementation data", + "China Yearbook of People with Disabilities: annual compilation of all disability affairs statistics" + ], + "zh": [ + "残疾人口规模:各类别(视力、听力、语言、肢体、智力、精神)和各等级残疾人数量及比例", + "就业统计:残疾人就业率、就业援助项目、支持性就业及辅助性就业机构数据", + "康复服务覆盖:按残疾类别和服务类型统计的获得康复服务人数", + "特殊教育:残疾儿童特殊学校入学及随班就读情况", + "社会福利保障:残疾人两项补贴(困难残疾人生活补贴及重度残疾人护理补贴)发放情况", + "辅助器具:假肢、矫形器、助听器、轮椅及其他辅助技术发放数量", + "脱贫攻坚:残疾人贫困规模、精准帮扶项目及脱贫数据", + "文化体育活动:残疾人参与文化活动及残疾人体育运动情况", + "权益保障:残疾人权益投诉、法律援助及政策执行数据", + "中国残疾人事业统计年鉴:残疾人事业各项统计数据年度汇编" + ] + } +} diff --git a/firstdata/sources/china/governance/china-cfpa.json b/firstdata/sources/china/governance/china-cfpa.json new file mode 100644 index 00000000..ecfa91cc --- /dev/null +++ b/firstdata/sources/china/governance/china-cfpa.json @@ -0,0 +1,55 @@ +{ + "id": "china-cfpa", + "name": { + "en": "China Fire Protection Association", + "zh": "中国消防协会" + }, + "description": { + "en": "The China Fire Protection Association (CFPA) is the national academic and industry organization for fire safety and emergency rescue, operating under the guidance of the Ministry of Emergency Management. CFPA publishes annual fire statistics reports covering the number of fire incidents, casualties, economic losses, fire causes, and building type breakdowns across China. It also produces technical standards, scientific research outputs, and fire prevention guidance. CFPA data is the authoritative source for national fire safety situation analysis and urban fire risk assessment.", + "zh": "中国消防协会(消防协会)是在应急管理部指导下开展消防科技与行业自律的全国性社团组织。协会发布年度火灾统计报告,涵盖全国火灾起数、伤亡人数、直接经济损失、起火原因及建筑类型分布等数据,同时出版技术标准、科研成果及消防宣传材料。消防协会数据是分析全国火灾安全形势和城市火灾风险的权威来源。" + }, + "website": "http://www.cfpa.cn", + "data_url": "http://www.cfpa.cn", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "update_frequency": "annual", + "domains": [ + "public-safety", + "emergency-management", + "statistics" + ], + "tags": [ + "china", + "cfpa", + "消防协会", + "fire-protection", + "消防", + "fire-safety", + "消防安全", + "emergency-management", + "应急管理", + "fire-statistics", + "火灾统计", + "disaster", + "safety", + "annual-report" + ], + "data_content": { + "en": [ + "Annual Fire Statistics - National fire incident count, casualties, economic losses, and fire cause analysis", + "Regional Fire Data - Provincial and city-level fire occurrence and loss breakdowns", + "Building Type Fire Analysis - Fire statistics segmented by residential, commercial, industrial, and public facility types", + "Fire Prevention Standards - Technical standards and guidelines for fire risk assessment and prevention", + "Research Publications - Academic papers and reports on fire science, suppression technology, and safety engineering" + ], + "zh": [ + "年度火灾统计 - 全国火灾起数、伤亡人数、直接经济损失及起火原因分析", + "地区火灾数据 - 各省市火灾发生情况及损失分布", + "建筑类型火灾分析 - 按住宅、商业、工业及公共设施分类的火灾统计", + "消防技术标准 - 火灾风险评估与预防的技术规范和指引", + "科研出版物 - 消防科学、灭火技术及安全工程学术论文与报告" + ] + } +} diff --git a/firstdata/sources/china/governance/china-cidca.json b/firstdata/sources/china/governance/china-cidca.json new file mode 100644 index 00000000..ffda26b6 --- /dev/null +++ b/firstdata/sources/china/governance/china-cidca.json @@ -0,0 +1,59 @@ +{ + "id": "china-cidca", + "name": { + "en": "China International Development Cooperation Agency", + "zh": "国家国际发展合作署" + }, + "description": { + "en": "The China International Development Cooperation Agency (CIDCA) is a vice-ministerial government body established in 2018 to oversee China's foreign aid and international development cooperation. It formulates strategic guidelines and plans for foreign assistance, coordinates and supervises aid implementation, and reports on cooperation outcomes. CIDCA publishes data on China's foreign aid programs, country-specific assistance allocations, completed aid projects, technical cooperation, humanitarian assistance, and South-South cooperation initiatives. Its reports and white papers are primary official sources for understanding the scale, scope, and priorities of China's global development engagement.", + "zh": "国家国际发展合作署是2018年设立的副部级政府机构,负责统筹协调中国对外援助与国际发展合作工作。该机构负责制定对外援助战略方针和规划,协调监督援助实施,并报告合作成果。国际发展合作署发布中国对外援助项目、国别援助分配、已竣工援助项目、技术合作、人道主义援助及南南合作举措等方面的数据,其报告和白皮书是了解中国全球发展参与规模、范围和重点的主要官方数据来源。" + }, + "website": "http://www.cidca.gov.cn", + "data_url": "http://www.cidca.gov.cn/ywgz.htm", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "global", + "domains": [ + "development-aid", + "international-relations", + "governance", + "economics" + ], + "update_frequency": "annual", + "tags": [ + "china", + "foreign-aid", + "development-cooperation", + "south-south", + "international-relations", + "belt-and-road", + "humanitarian-aid", + "technical-assistance", + "对外援助", + "国际发展合作", + "南南合作", + "人道主义援助", + "技术援助", + "国际合作", + "发展合作署" + ], + "data_content": { + "en": [ + "Foreign Aid Programs - Country-by-country breakdown of aid projects, grant allocations, and concessional loans", + "White Papers on Foreign Aid - Comprehensive official reports on China's foreign aid philosophy, scope, and outcomes", + "Technical Cooperation - Expert dispatching, training programs, and technology transfer project data", + "Humanitarian Assistance - Emergency relief operations, disaster response, and food aid statistics", + "South-South Cooperation - Data on developing country partnerships, mutual learning programs, and joint projects", + "BRI Development Projects - Infrastructure and development cooperation projects under the Belt and Road Initiative" + ], + "zh": [ + "对外援助项目 - 按国家分类的援助项目、无偿援助及优惠贷款分配情况", + "对外援助白皮书 - 关于中国对外援助理念、规模和成果的综合性官方报告", + "技术合作 - 专家派遣、培训项目和技术转让项目数据", + "人道主义援助 - 紧急救援行动、灾害应急响应和粮食援助统计", + "南南合作 - 发展中国家伙伴关系、互学互鉴项目和联合项目数据", + "\"一带一路\"发展项目 - \"一带一路\"倡议框架下的基础设施和发展合作项目" + ] + } +} diff --git a/firstdata/sources/china/governance/china-cnao.json b/firstdata/sources/china/governance/china-cnao.json new file mode 100644 index 00000000..d35ccb12 --- /dev/null +++ b/firstdata/sources/china/governance/china-cnao.json @@ -0,0 +1,68 @@ +{ + "id": "china-cnao", + "name": { + "en": "National Audit Office of China", + "zh": "中华人民共和国审计署" + }, + "description": { + "en": "The National Audit Office of China (CNAO) is the supreme audit institution of the People's Republic of China, responsible for auditing the fiscal revenues and expenditures of central government agencies, state-owned enterprises, and financial institutions. It publishes official audit reports, audit findings on government budget execution, special audit investigations, and national audit work reports submitted to the Standing Committee of the National People's Congress. CNAO's disclosures provide unique transparency into public finance, state asset management, and government accountability in China.", + "zh": "中华人民共和国审计署是中国最高审计机关,负责对中央政府机关、国有企业和金融机构的财政收支进行审计监督。审计署发布官方审计报告、政府预算执行审计结果、专项审计调查报告,以及向全国人民代表大会常务委员会提交的国家审计工作报告。审计署的信息披露为了解中国公共财政、国有资产管理和政府问责提供了独特的透明度视角。" + }, + "website": "https://www.audit.gov.cn", + "data_url": "https://www.audit.gov.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "governance", + "finance", + "economics" + ], + "update_frequency": "annual", + "tags": [ + "审计署", + "national-audit-office", + "审计报告", + "audit-report", + "政府预算", + "government-budget", + "财政审计", + "fiscal-audit", + "国有企业审计", + "soe-audit", + "公共财政", + "public-finance", + "政府问责", + "government-accountability", + "审计结果", + "audit-findings", + "cnao", + "中央预算执行", + "central-budget-execution", + "国有资产", + "state-owned-assets" + ], + "data_content": { + "en": [ + "Annual audit work reports to the National People's Congress: summary of national audit findings and government budget execution", + "Central budget execution audit reports: examination of central government agencies' revenue and expenditure compliance", + "State-owned enterprise audit reports: financial audit results for major central SOEs", + "Special audit investigation reports: targeted audits on specific sectors (social security funds, education funds, infrastructure projects)", + "Government debt audit results: audit findings on local government debt, hidden debt, and financing platform obligations", + "Financial institution audit reports: audits of state-owned banks and policy financial institutions", + "National natural resource asset audit reports: accountability audits for local leaders on environmental assets", + "Audit rectification tracking: implementation status of previous audit recommendations and corrections" + ], + "zh": [ + "向全国人民代表大会提交的年度审计工作报告:全国审计结果汇总及政府预算执行情况", + "中央预算执行审计报告:对中央政府机关收支合规性的检查结果", + "国有企业审计报告:主要中央国有企业财务审计结果", + "专项审计调查报告:对特定领域的专项审计(社会保险基金、教育经费、基础设施项目)", + "政府债务审计结果:地方政府债务、隐性债务及融资平台义务审计发现", + "金融机构审计报告:国有银行和政策性金融机构审计情况", + "自然资源资产离任审计报告:地方领导干部自然资源资产管理情况问责审计", + "审计整改追踪:历次审计建议落实情况及问题整改进展" + ] + } +} diff --git a/firstdata/sources/china/governance/china-cnas.json b/firstdata/sources/china/governance/china-cnas.json new file mode 100644 index 00000000..df029f98 --- /dev/null +++ b/firstdata/sources/china/governance/china-cnas.json @@ -0,0 +1,80 @@ +{ + "id": "china-cnas", + "name": { + "en": "China National Accreditation Service for Conformity Assessment", + "zh": "中国合格评定国家认可委员会" + }, + "description": { + "en": "The China National Accreditation Service for Conformity Assessment (CNAS) is the sole national accreditation body in China authorized by the government to operate under the Regulations on Certification and Accreditation. CNAS accredits testing laboratories, calibration laboratories, inspection bodies, certification bodies, and proficiency testing providers according to international standards (ISO/IEC 17000 series). As of 2024, CNAS has accredited over 17,000 laboratories and hundreds of certification and inspection bodies, covering fields including food safety, environmental monitoring, medical devices, electronics, and construction materials. CNAS publishes official accreditation directories, accreditation criteria, statistical reports on accredited entities by type and sector, and annual accreditation development reports. CNAS accreditation is internationally recognized through mutual recognition arrangements (MRA) with ILAC and IAF, making it the authoritative source for China's conformity assessment ecosystem data.", + "zh": "中国合格评定国家认可委员会(CNAS)是经国务院授权、依据《认证认可条例》设立的中国唯一国家级认可机构。CNAS依据ISO/IEC 17000系列国际标准,对检测实验室、校准实验室、检验机构、认证机构及能力验证提供者开展认可活动。截至2024年,CNAS已认可超过17000家实验室及数百家认证和检验机构,覆盖食品安全、环境监测、医疗器械、电子电器、建筑材料等领域。CNAS发布认可机构名录、认可准则、分行业认可机构统计报告及年度认可工作报告。CNAS认可结果通过与国际实验室认可合作组织(ILAC)和国际认可论坛(IAF)签订的多边互认协议(MRA)获得国际认可,是中国合格评定生态系统数据的权威来源。" + }, + "website": "https://www.cnas.org.cn/", + "data_url": "https://www.cnas.org.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "industry", + "technology", + "standards", + "quality" + ], + "update_frequency": "monthly", + "tags": [ + "中国合格评定国家认可委员会", + "cnas", + "china-national-accreditation-service", + "实验室认可", + "laboratory-accreditation", + "认证机构", + "certification-body", + "检验机构", + "inspection-body", + "合格评定", + "conformity-assessment", + "iso/iec-17025", + "校准实验室", + "calibration-laboratory", + "食品安全检测", + "food-safety-testing", + "环境检测", + "environmental-testing", + "医疗器械检验", + "medical-device-inspection", + "ilac", + "iaf", + "互认协议", + "mutual-recognition", + "质量认证", + "quality-certification", + "能力验证", + "proficiency-testing", + "计量认可", + "metrology-accreditation" + ], + "data_content": { + "en": [ + "Accredited laboratory directory: searchable database of over 17,000 CNAS-accredited testing and calibration laboratories in China, with scope of accreditation by test type and field", + "Certification body directory: list of CNAS-accredited certification bodies authorized to issue product, system, and personnel certifications", + "Inspection body directory: accredited inspection organizations with scopes covering construction, food, environment, transportation, and industrial sectors", + "Proficiency testing providers: organizations authorized to conduct proficiency testing programs for laboratory competence assessment", + "Accreditation statistics: annual and periodic statistics on accredited entity count, growth trends, and distribution by sector and province", + "Annual accreditation development report: comprehensive report on CNAS activities, accreditation numbers, international cooperation, and policy developments", + "Accreditation criteria and documents: technical criteria, assessment procedures, and guidance documents for laboratories and certification bodies", + "International MRA scope: details of mutual recognition arrangement coverage with ILAC and IAF, specifying which accreditation categories are internationally recognized", + "Suspension and withdrawal records: publicly disclosed cases of suspended or withdrawn accreditation for non-compliant entities" + ], + "zh": [ + "认可实验室名录:超过17000家CNAS认可检测和校准实验室的可检索数据库,含按检测类型和领域分类的认可范围", + "认证机构名录:CNAS认可的产品、体系、人员认证机构列表", + "检验机构名录:覆盖建筑、食品、环境、交通、工业等领域的认可检验机构", + "能力验证提供者:获授权开展实验室能力验证计划的机构", + "认可统计数据:认可机构数量、增长趋势及按行业、省份分布的年度和定期统计", + "年度认可工作报告:涵盖CNAS活动、认可数量、国际合作及政策进展的综合报告", + "认可准则和文件:实验室和认证机构的技术准则、评审程序和指导文件", + "国际互认范围:与ILAC和IAF互认协议覆盖情况及各认可类别的国际认可详情", + "暂停和撤销记录:不符合要求机构被暂停或撤销认可的公示记录" + ] + } +} diff --git a/firstdata/sources/china/governance/china-cnca.json b/firstdata/sources/china/governance/china-cnca.json new file mode 100644 index 00000000..6bd77f6c --- /dev/null +++ b/firstdata/sources/china/governance/china-cnca.json @@ -0,0 +1,69 @@ +{ + "id": "china-cnca", + "name": { + "en": "China National Accreditation Service for Conformity Assessment", + "zh": "中国国家认证认可监督管理委员会" + }, + "description": { + "en": "The China National Accreditation Service for Conformity Assessment (CNCA) is a government body under the State Administration for Market Regulation (SAMR) responsible for managing China's certification, accreditation, inspection, and testing (CAIT) system. CNCA oversees compulsory product certification (CCC), voluntary certification schemes, laboratory accreditation, and inspection body accreditation. It publishes data on certified products, accredited laboratories, inspection agencies, and certification body registrations across China, providing authoritative information for trade facilitation, product safety, and quality oversight.", + "zh": "中国国家认证认可监督管理委员会(国家认监委,CNCA)是国家市场监督管理总局(市场监管总局)下设的政府机构,负责管理中国认证认可检验检测(CAIT)体系。国家认监委负责强制性产品认证(3C认证)、自愿性认证、实验室认可和检验机构认可等工作,发布全国认证产品、认可实验室、检验机构及认证机构注册等数据,为贸易便利化、产品安全和质量监督提供权威信息。" + }, + "website": "https://www.cnca.gov.cn", + "data_url": "https://www.cnca.gov.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "quality", + "standards", + "trade", + "industry" + ], + "geographic_scope": "national", + "update_frequency": "irregular", + "tags": [ + "认证认可", + "certification", + "accreditation", + "3C认证", + "ccc-certification", + "实验室认可", + "laboratory-accreditation", + "检验机构", + "inspection-body", + "产品认证", + "product-certification", + "质量监督", + "quality-supervision", + "合格评定", + "conformity-assessment", + "cnca", + "国家认监委", + "强制认证", + "compulsory-certification", + "贸易便利化", + "trade-facilitation" + ], + "data_content": { + "en": [ + "CCC (China Compulsory Certification) database: certified products, certificates, and manufacturers", + "Accredited laboratory directory: CNAS-accredited testing and calibration laboratories by sector", + "Inspection body registry: accredited inspection and certification bodies operating in China", + "Certification body list: approved certification organizations and their scope of accreditation", + "Annual certification and accreditation statistical report: industry-wide CAIT data", + "Import/export commodity inspection data: inspection outcomes for trade-related goods", + "Organic product certification database: certified organic producers and products", + "Food safety management system certifications: HACCP, ISO 22000 certified enterprises" + ], + "zh": [ + "3C认证数据库:认证产品、证书及制造商信息", + "认可实验室目录:按行业分类的CNAS认可检测和校准实验室", + "检验机构注册:在华运营的认可检验和认证机构", + "认证机构名单:经批准的认证组织及其认证范围", + "认证认可年度统计报告:全行业CAIT数据", + "进出口商品检验数据:贸易相关商品的检验结果", + "有机产品认证数据库:认证有机生产者和产品", + "食品安全管理体系认证:HACCP、ISO 22000认证企业" + ] + } +} diff --git a/firstdata/sources/china/governance/china-court-auction.json b/firstdata/sources/china/governance/china-court-auction.json new file mode 100644 index 00000000..a46520f0 --- /dev/null +++ b/firstdata/sources/china/governance/china-court-auction.json @@ -0,0 +1,32 @@ +{ + "id": "china-court-auction", + "name": { + "en": "People's Court Litigation Assets Network", + "zh": "人民法院诉讼资产网" + }, + "description": { + "en": "The People's Court Litigation Assets Network is the official judicial auction platform operated by the Supreme People's Court of China. It publishes court-ordered asset dispositions including real estate, vehicles, land use rights, equity stakes, and other seized properties. The platform aggregates judicial auction listings from courts at all levels nationwide, providing standardized information on auction schedules, reserve prices, property details, and bidding results. As the authoritative government platform for judicial asset disposal, it serves as the primary reference for tracking court-ordered property sales across China's judicial system.", + "zh": "人民法院诉讼资产网是最高人民法院运营的官方司法拍卖平台,发布法院裁定的资产处置信息,包括房产、车辆、土地使用权、股权及其他查封财产。平台汇集全国各级法院的司法拍卖信息,提供拍卖时间、起拍价、标的物详情和竞价结果等标准化信息。作为司法资产处置的权威政府平台,是追踪中国司法系统法院强制拍卖的首要参考来源。" + }, + "website": "https://www.rmfysszc.gov.cn", + "data_url": "https://www.rmfysszc.gov.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": ["judicial-auction", "real-estate", "asset-disposal"], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": ["judicial-auction", "real-estate", "court", "asset-disposal", "property"], + "data_content": { + "en": [ + "Court-ordered judicial auction listings for real estate, vehicles, land use rights, and equity", + "Auction schedules, reserve prices, and bidding results from courts nationwide", + "Seized property details and disposal records from all court levels" + ], + "zh": [ + "法院裁定的房产、车辆、土地使用权、股权等司法拍卖信息", + "全国各级法院拍卖时间、起拍价和竞价结果", + "各级法院查封财产详情和处置记录" + ] + } +} diff --git a/firstdata/sources/china/governance/china-court-execution.json b/firstdata/sources/china/governance/china-court-execution.json new file mode 100644 index 00000000..b8f91bcc --- /dev/null +++ b/firstdata/sources/china/governance/china-court-execution.json @@ -0,0 +1,34 @@ +{ + "id": "china-court-execution", + "name": { + "en": "China Court Execution Information Disclosure Network", + "zh": "全国法院被执行人信息查询平台" + }, + "description": { + "en": "The China Court Execution Information Disclosure Network, operated by the Supreme People's Court, is the official platform for publicizing court execution case information. It provides searchable databases of judgment debtors (被执行人), dishonest persons subject to enforcement (失信被执行人/老赖), consumption restriction orders (限制消费令), and terminated execution cases. The platform also publishes judicial auction information and enforcement case progress. It is the authoritative source for credit risk assessment related to court judgments and the primary tool for China's social credit enforcement system.", + "zh": "全国法院被执行人信息查询平台由最高人民法院运营,是公开法院执行案件信息的官方平台。提供被执行人、失信被执行人(老赖)、限制消费令、终本案件等可查询数据库,同时发布司法拍卖信息和执行案件进展。是涉诉信用风险评估的权威来源,也是中国社会信用执行体系的核心工具。" + }, + "website": "https://zxgk.court.gov.cn", + "data_url": "https://zxgk.court.gov.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": ["judicial-execution", "credit-risk", "social-credit"], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": ["court-execution", "dishonest-debtor", "credit-risk", "judicial", "social-credit"], + "data_content": { + "en": [ + "Judgment debtor (被执行人) database searchable by name and ID", + "Dishonest persons subject to enforcement (失信被执行人/老赖) blacklist", + "Consumption restriction orders and terminated execution case records", + "Judicial auction listings and enforcement case progress tracking" + ], + "zh": [ + "按姓名和证件号可查询的被执行人数据库", + "失信被执行人(老赖)黑名单", + "限制消费令和终本案件记录", + "司法拍卖信息和执行案件进展追踪" + ] + } +} diff --git a/firstdata/sources/china/governance/china-cppcc.json b/firstdata/sources/china/governance/china-cppcc.json new file mode 100644 index 00000000..56292073 --- /dev/null +++ b/firstdata/sources/china/governance/china-cppcc.json @@ -0,0 +1,66 @@ +{ + "id": "china-cppcc", + "name": { + "en": "Chinese People's Political Consultative Conference", + "zh": "中国人民政治协商会议" + }, + "description": { + "en": "The Chinese People's Political Consultative Conference (CPPCC) is a key institution of China's political system functioning as the country's main political advisory body. Established in 1949, the CPPCC brings together representatives from political parties, people's organizations, ethnic minorities, and various social sectors to provide political consultation and democratic oversight. The CPPCC National Committee meets annually alongside the National People's Congress in the 'Two Sessions'. It publishes proposals, motion documents, committee reports, and consultative deliberation outcomes across economic, social, cultural, and environmental policy areas. The CPPCC website provides access to official documents, proposals submitted by members, research reports, and proceedings from plenary sessions and standing committee meetings.", + "zh": "中国人民政治协商会议(全国政协)是中国政治体系的重要机构,是国家最高政治协商机构。1949年成立,全国政协汇聚各民主党派、人民团体、少数民族和各社会界别代表,履行政治协商、民主监督、参政议政职能。全国政协常委会每年与全国人大共同召开「两会」。全国政协网站提供官方文件、委员提案、研究报告、全体会议及常委会会议纪要,涵盖经济、社会、文化和环境政策等各领域。" + }, + "website": "http://www.cppcc.gov.cn", + "data_url": "http://www.cppcc.gov.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "governance", + "political-science", + "social", + "economics" + ], + "update_frequency": "irregular", + "tags": [ + "全国政协", + "cppcc", + "chinese-people's-political-consultative-conference", + "政治协商", + "political-consultation", + "提案", + "proposals", + "民主监督", + "democratic-oversight", + "参政议政", + "两会", + "two-sessions", + "政协委员", + "committee-members", + "政协常委会", + "standing-committee", + "政协全体会议", + "plenary-session", + "政协报告", + "cppcc-reports" + ], + "data_content": { + "en": [ + "CPPCC member proposals: formal policy proposals submitted by committee members across economic, social, cultural, and environmental areas", + "Committee reports: annual work reports of the CPPCC National Committee and standing committee", + "Plenary session records: proceedings and resolutions from the annual National Committee sessions", + "Standing committee meeting documents: records of bimonthly standing committee meetings and deliberations", + "Special committee research: investigation and research reports from CPPCC specialized committees on key policy topics", + "Democratic oversight documents: feedback and recommendations on implementation of major national policies", + "Consultative deliberation outcomes: results of consultative conferences on specific economic and social policy issues" + ], + "zh": [ + "全国政协委员提案:委员就经济、社会、文化、环境等领域提交的正式政策建议", + "委员会报告:全国政协委员会及常委会年度工作报告", + "全体会议记录:全国委员会年度会议的议程及决议", + "常委会会议文件:两月一次常委会会议记录及审议结论", + "专门委员会研究:政协各专门委员会就重大政策课题开展的调研报告", + "民主监督文件:对重大国家政策贯彻落实情况的意见与建议", + "协商座谈成果:就具体经济社会政策议题召开协商座谈会的成果文件" + ] + } +} diff --git a/firstdata/sources/china/governance/china-cqc.json b/firstdata/sources/china/governance/china-cqc.json new file mode 100644 index 00000000..93d39437 --- /dev/null +++ b/firstdata/sources/china/governance/china-cqc.json @@ -0,0 +1,77 @@ +{ + "id": "china-cqc", + "name": { + "en": "China Quality Certification Centre", + "zh": "中国质量认证中心" + }, + "description": { + "en": "The China Quality Certification Centre (CQC) is an authoritative third-party certification body established under the State Administration for Market Regulation (SAMR) and the Standardization Administration of China (SAC). CQC operates as the primary certification organization implementing mandatory China Compulsory Certification (CCC) for products sold in the Chinese market, covering electrical safety, electromagnetic compatibility, and related requirements. CQC also administers voluntary quality certifications including the CQC Mark for safety, energy efficiency, environmental protection, and product quality. The center maintains a comprehensive public database of certified products, publishes annual certification statistics, and issues technical standards guidance applicable to domestic manufacturers and international exporters targeting China's market.", + "zh": "中国质量认证中心(CQC)是在国家市场监督管理总局和国家标准化管理委员会指导下设立的权威第三方认证机构。CQC是实施中国强制性产品认证(CCC认证)的主要认证机构,面向在中国市场销售的产品,涵盖电气安全、电磁兼容等强制要求。中国质量认证中心同时开展自愿性CQC标志认证,涉及安全、能效、环保及产品质量等领域。该中心维护完整的公开认证产品数据库,发布年度认证统计数据,并向国内生产企业及面向中国市场的国际出口商提供技术标准指导。" + }, + "website": "https://www.cqc.com.cn/", + "data_url": "https://www.cqc.com.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "governance", + "statistics", + "trade", + "technology" + ], + "update_frequency": "monthly", + "tags": [ + "中国质量认证中心", + "cqc", + "china-compulsory-certification", + "CCC认证", + "3C认证", + "质量认证", + "quality-certification", + "产品认证", + "product-certification", + "能效认证", + "energy-efficiency-certification", + "CQC标志", + "cqc-mark", + "安全认证", + "safety-certification", + "环保认证", + "environmental-certification", + "认证统计", + "certification-statistics", + "国家市场监督管理总局", + "samr", + "标准化", + "standardization", + "进口产品认证", + "import-product-certification" + ], + "data_content": { + "en": [ + "CCC certificate database: publicly searchable database of mandatory China Compulsory Certification (3C) certificates, including product scope, certificate holder, validity period, and certification status", + "Certified products directory: comprehensive catalog of all products bearing the CQC Mark or CCC mark, searchable by product category, manufacturer, and certification type", + "Annual certification statistics: number of certificates issued, renewed, suspended, and revoked by product category and certification scheme", + "Energy efficiency certificate data: list of certified energy-efficient products with corresponding energy efficiency grades and performance metrics", + "Environmental certification records: green product certifications for electronics, appliances, and building materials meeting environmental standards", + "Factory inspection reports: summary results of mandatory post-market surveillance factory inspections for CCC-certified manufacturers", + "Technical standard updates: notifications of changes to CCC technical requirements and testing standards affecting product certification", + "Recall and revocation notices: official notices of certificate suspensions, revocations, and product safety recalls linked to certification non-compliance", + "Certification fee schedules: official pricing for CCC and voluntary certification services", + "International mutual recognition data: information on bilateral/multilateral certification recognition agreements between China and other countries" + ], + "zh": [ + "CCC证书数据库:中国强制性产品认证(3C认证)证书公开查询库,包括产品范围、证书持有人、有效期和认证状态", + "认证产品目录:所有持有CQC标志或CCC标志产品的完整目录,可按产品类别、生产企业和认证类型检索", + "年度认证统计:按产品类别和认证方案分类的证书颁发、续期、暂停和撤销数量", + "能效证书数据:认证节能产品清单及相应能效等级和性能指标", + "环保认证记录:符合环保标准的电子产品、家电和建材绿色产品认证", + "工厂检查报告:对CCC认证生产企业实施强制性市场后监督工厂检查的汇总结果", + "技术标准更新:影响产品认证的CCC技术要求和检测标准变更通知", + "召回和撤销公告:因认证不合规而暂停、撤销证书及产品安全召回的官方公告", + "认证费用表:CCC和自愿性认证服务官方收费标准", + "国际互认数据:中国与其他国家双边/多边认证互认协议信息" + ] + } +} diff --git a/firstdata/sources/china/governance/china-ggzy.json b/firstdata/sources/china/governance/china-ggzy.json new file mode 100644 index 00000000..f22a3a66 --- /dev/null +++ b/firstdata/sources/china/governance/china-ggzy.json @@ -0,0 +1,75 @@ +{ + "id": "china-ggzy", + "name": { + "en": "China National Public Resources Trading Platform", + "zh": "全国公共资源交易平台" + }, + "description": { + "en": "The China National Public Resources Trading Platform (GGZY, 全国公共资源交易平台) is the authoritative national government portal for public resources trading, administered by the National Development and Reform Commission (NDRC) in conjunction with the State Administration for Market Regulation and other central agencies. The platform aggregates and discloses transaction data from public resource auctions and procurements across China, including engineering construction project bidding, government procurement, state-owned property rights and assets transfers, mineral rights auctions, and other public resource trading activities. As the designated national unified trading service platform mandated by the State Council, GGZY provides comprehensive transparency data on public resource market transactions, bidding results, contract awards, and participant information, making it the primary reference for public procurement market analysis, anti-corruption monitoring, and policy evaluation in China.", + "zh": "全国公共资源交易平台(GGZY)是国家发展和改革委员会联合市场监管总局等中央机构主管的权威国家政府门户,专门用于公共资源交易公示。平台汇聚并公开全国公共资源拍卖和采购的交易数据,涵盖工程建设项目招标、政府采购、国有产权及资产转让、矿业权拍卖及其他公共资源交易活动。作为国务院指定的国家统一交易服务平台,GGZY提供公共资源市场交易、招标结果、合同授予和参与方信息的全面公示数据,是中国公共采购市场分析、廉政监察和政策评估的主要数据来源。" + }, + "website": "https://www.ggzy.gov.cn/", + "data_url": "https://www.ggzy.gov.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "governance", + "economics", + "finance" + ], + "update_frequency": "daily", + "tags": [ + "全国公共资源交易平台", + "ggzy", + "public-resources-trading", + "公共资源交易", + "政府采购", + "government-procurement", + "工程招标", + "engineering-bidding", + "招投标", + "bid-tendering", + "国有资产", + "state-owned-assets", + "产权交易", + "property-rights-trading", + "矿业权", + "mineral-rights", + "国家发展改革委", + "ndrc", + "透明度", + "transparency", + "反腐", + "anti-corruption", + "合同授予", + "contract-award", + "采购公告", + "procurement-announcement", + "中标结果", + "bid-results" + ], + "data_content": { + "en": [ + "Engineering construction project bidding: bid notices, bid results, and contract award announcements for infrastructure and construction projects across all provinces", + "Government procurement: procurement announcements, evaluation results, and contract awards for goods, services, and works purchased by government entities", + "State-owned property rights transfers: listings and transaction results for state-owned enterprises and assets transferred through public trading processes", + "Mineral rights auctions: auction notices and results for exploration and mining rights across coal, metals, oil and gas, and other minerals", + "Land use rights trading: public land auction results and transaction data (linked to land market)", + "Market participant information: bidder registration data, qualification records, and performance history for companies participating in public resource transactions", + "Transaction volume statistics: aggregate data on total public resource trading volume, deal counts, and market activity by region and sector", + "Supervision and compliance data: records of bidding irregularities, debarment decisions, and compliance enforcement actions" + ], + "zh": [ + "工程建设项目招标:全国各省基础设施和建设项目的招标公告、招标结果及合同授予公示", + "政府采购:政府实体采购货物、服务和工程的采购公告、评标结果和合同授予公示", + "国有产权转让:通过公开交易流程转让的国有企业和国有资产挂牌信息及成交结果", + "矿业权拍卖:煤炭、金属、油气及其他矿产探矿权和采矿权的拍卖公告及成交结果", + "土地使用权交易:公开土地拍卖结果和交易数据(与土地市场联通)", + "市场主体信息:参与公共资源交易企业的投标人登记数据、资质记录和履约历史", + "交易量统计:按地区和行业分类的公共资源交易总量、成交笔数和市场活跃度汇总数据", + "监督与合规数据:串标违规记录、不良行为认定及合规执法措施记录" + ] + } +} diff --git a/firstdata/sources/china/governance/china-mem.json b/firstdata/sources/china/governance/china-mem.json new file mode 100644 index 00000000..4e2479e4 --- /dev/null +++ b/firstdata/sources/china/governance/china-mem.json @@ -0,0 +1,74 @@ +{ + "id": "china-mem", + "name": { + "en": "Ministry of Emergency Management of China", + "zh": "中华人民共和国应急管理部" + }, + "description": { + "en": "Official emergency management and disaster statistics from China's Ministry of Emergency Management (MEM). Covers natural disaster statistics (floods, droughts, earthquakes, geological hazards, typhoons, low-temperature events), production safety accident data, fire statistics, rescue operations records, emergency response reports, and national emergency resource reserves. Established in 2018 by merging multiple agencies, MEM is responsible for disaster prevention, mitigation, relief, and production safety supervision across China.", + "zh": "中华人民共和国应急管理部发布的官方应急管理与灾害统计数据,涵盖自然灾害统计(洪涝、干旱、地震、地质灾害、台风、低温等)、生产安全事故数据、火灾统计、救援行动记录、应急响应报告及国家应急物资储备情况。应急管理部于2018年整合多部门职能组建,负责全国防灾减灾救灾和安全生产监管工作。" + }, + "website": "https://www.mem.gov.cn/", + "data_url": "https://www.mem.gov.cn/gk/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "environment", + "public-health", + "governance", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "应急管理", + "emergency-management", + "自然灾害", + "natural-disaster", + "防灾减灾", + "disaster-prevention", + "洪涝", + "flood", + "地震灾害", + "earthquake-disaster", + "台风", + "typhoon", + "生产安全", + "production-safety", + "火灾", + "fire-statistics", + "救援", + "rescue", + "应急响应", + "emergency-response", + "灾情统计", + "disaster-statistics", + "mem", + "应急管理部" + ], + "data_content": { + "en": [ + "Natural disaster annual and monthly statistics: affected population, deaths, missing persons, direct economic losses by disaster type", + "Flood and drought disaster data: affected farmland, collapsed houses, emergency resettlement figures", + "Production safety accident statistics: total accidents, deaths, injuries by industry sector (mining, construction, transportation, etc.)", + "Fire statistics: fire incidents, casualties, property losses by region and cause", + "Geological hazard monitoring data: landslides, mudslides, ground subsidence events", + "Typhoon impact records: landfall events, casualties, and economic damage", + "Emergency rescue operations data: dispatched personnel, rescue teams, and equipment deployment", + "National emergency material reserves: types, quantities, and distribution of strategic reserves", + "Disaster relief fund allocation and usage reports" + ], + "zh": [ + "自然灾害年度及月度统计:各类灾害受灾人口、死亡、失踪及直接经济损失", + "洪涝和干旱灾害数据:受灾耕地、倒塌房屋、紧急转移安置人数", + "生产安全事故统计:各行业(矿山、建筑、交通运输等)事故总数、死亡及受伤情况", + "火灾统计:各地区火灾起数、伤亡人员及财产损失及原因分析", + "地质灾害监测数据:滑坡、泥石流、地面沉降事件", + "台风影响记录:登陆台风、伤亡人员及经济损失", + "应急救援行动数据:出动人员、救援队伍及装备部署情况", + "国家应急物资储备:战略储备物资种类、数量与分布", + "灾害救助资金拨付与使用报告" + ] + } +} diff --git a/firstdata/sources/china/governance/china-mofa.json b/firstdata/sources/china/governance/china-mofa.json new file mode 100644 index 00000000..b06f2efa --- /dev/null +++ b/firstdata/sources/china/governance/china-mofa.json @@ -0,0 +1,69 @@ +{ + "id": "china-mofa", + "name": { + "en": "Ministry of Foreign Affairs of China", + "zh": "中华人民共和国外交部" + }, + "description": { + "en": "Official diplomatic and foreign policy data from China's Ministry of Foreign Affairs (MOFA). Covers China's bilateral and multilateral treaty database, diplomatic relations statistics, embassy and consulate information worldwide, official foreign policy statements, and international agreements. The Ministry of Foreign Affairs is responsible for managing China's foreign relations, treaty affairs, consular services, and international cooperation.", + "zh": "中华人民共和国外交部发布的官方外交与对外政策数据,涵盖中国双边及多边条约数据库、外交关系统计、全球大使馆与领事馆信息、官方外交政策声明及国际协议。外交部负责管理中国对外关系、条约事务、领事服务及国际合作。" + }, + "website": "https://www.mfa.gov.cn/", + "data_url": "https://www.mfa.gov.cn/web/system/index_17321.shtml", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "governance", + "international", + "law" + ], + "update_frequency": "irregular", + "tags": [ + "外交", + "diplomacy", + "条约", + "treaty", + "外交关系", + "diplomatic-relations", + "大使馆", + "embassy", + "领事馆", + "consulate", + "双边协议", + "bilateral-agreement", + "多边协议", + "multilateral-agreement", + "外交政策", + "foreign-policy", + "国际合作", + "international-cooperation", + "领事服务", + "consular-services", + "mofa", + "外交部", + "国际条约", + "international-treaty" + ], + "data_content": { + "en": [ + "Treaty database: bilateral and multilateral treaties, agreements, and conventions signed by China", + "Diplomatic relations data: countries with which China maintains diplomatic relations, dates of establishment", + "Embassy and consulate directory: locations, contacts, and jurisdictions of Chinese diplomatic missions worldwide", + "Foreign policy documents: official white papers, position papers, and statements on international affairs", + "Consular affairs statistics: visa, passport, and overseas Chinese affairs data", + "International agreements: memoranda of understanding, cooperation frameworks, and joint communiqués", + "Bilateral exchange records: state visits, diplomatic meetings, and joint declarations" + ], + "zh": [ + "条约数据库:中国签署的双边及多边条约、协定与公约", + "外交关系数据:与中国建立外交关系的国家及建交日期", + "大使馆与领事馆名录:中国驻外外交机构的位置、联系方式及管辖范围", + "外交政策文件:官方白皮书、立场文件及国际事务声明", + "领事事务统计:签证、护照及海外华人事务数据", + "国际协议:谅解备忘录、合作框架及联合公报", + "双边往来记录:国事访问、外交会谈及联合声明" + ] + } +} diff --git a/firstdata/sources/china/governance/china-moj.json b/firstdata/sources/china/governance/china-moj.json new file mode 100644 index 00000000..b2a254a1 --- /dev/null +++ b/firstdata/sources/china/governance/china-moj.json @@ -0,0 +1,71 @@ +{ + "id": "china-moj", + "name": { + "en": "Ministry of Justice of China", + "zh": "中华人民共和国司法部" + }, + "description": { + "en": "Official legal and judicial statistics from China's Ministry of Justice (MOJ). Covers national justice administration statistics, attorney and notary registration data, legal aid service records, prison management and offender rehabilitation data, community corrections statistics, mediation and arbitration data, and legislative affairs information. The Ministry of Justice is responsible for managing legal services, prison affairs, community corrections, legal aid, notarization, and promoting the rule of law in China.", + "zh": "中华人民共和国司法部发布的官方法律与司法行政统计数据,涵盖全国司法行政统计、律师与公证员注册信息、法律援助服务记录、监狱管理与罪犯改造数据、社区矫正统计、调解与仲裁数据及立法事务信息。司法部负责管理法律服务、监狱事务、社区矫正、法律援助、公证工作,并推进法治建设。" + }, + "website": "https://www.moj.gov.cn/", + "data_url": "https://www.moj.gov.cn/pub/sfbgw/zwgkzl/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "governance", + "law", + "social" + ], + "update_frequency": "annual", + "tags": [ + "司法", + "justice", + "法律援助", + "legal-aid", + "律师", + "attorney", + "公证", + "notary", + "监狱", + "prison", + "社区矫正", + "community-corrections", + "调解", + "mediation", + "仲裁", + "arbitration", + "法治", + "rule-of-law", + "司法行政", + "justice-administration", + "司法统计", + "justice-statistics", + "moj", + "司法部" + ], + "data_content": { + "en": [ + "National justice administration statistics: annual reports on attorney counts, law firm registrations, and legal professionals", + "Legal aid service data: case counts, beneficiaries, types of aid provided by region", + "Notarization statistics: national and provincial notary registrations and certified document counts", + "Prison management data: offender population, rehabilitation programs, education and vocational training outcomes", + "Community corrections statistics: people under community supervision, types of corrections, recidivism rates", + "People's mediation data: mediation organizations, mediators, and disputes resolved nationwide", + "Administrative law enforcement supervision reports", + "Legislative affairs information: laws, regulations, and normative documents managed by MOJ" + ], + "zh": [ + "全国司法行政统计:律师人数、律师事务所注册及法律职业人员年度报告", + "法律援助服务数据:各地区案件数量、受益人及援助类型", + "公证统计:全国及分省公证机构注册数与公证书出具数量", + "监狱管理数据:在押人员规模、改造项目、教育与职业培训成效", + "社区矫正统计:社区矫正人员、矫正类型及再犯率", + "人民调解数据:全国调解组织、调解员及纠纷化解情况", + "行政执法监督报告", + "立法事务信息:司法部管理的法律法规及规范性文件" + ] + } +} diff --git a/firstdata/sources/china/governance/china-mva.json b/firstdata/sources/china/governance/china-mva.json new file mode 100644 index 00000000..9abc3bf2 --- /dev/null +++ b/firstdata/sources/china/governance/china-mva.json @@ -0,0 +1,65 @@ +{ + "id": "china-mva", + "name": { + "en": "Ministry of Veterans Affairs of China", + "zh": "中华人民共和国退役军人事务部" + }, + "description": { + "en": "The Ministry of Veterans Affairs (MVA) is China's central government ministry responsible for veterans' affairs, established in March 2018 under the State Council institutional reform. It manages policies, benefits, placement, education, and social services for China's millions of retired military personnel and their families. The MVA publishes annual statistical summaries (退役军人事务统计汇要) covering veteran registration, placement outcomes, vocational training participation, pension and disability benefit recipients, and commemorative facility management. Its data is essential for understanding China's military personnel transition system and social welfare for former service members.", + "zh": "退役军人事务部是中国负责退役军人工作的中央政府部门,于2018年3月国务院机构改革中组建成立。主要负责退役军人政策制定、安置就业、优抚保障、职业培训及社会服务等工作,服务对象为中国数百万退役军人及其家属。退役军人事务部发布年度《退役军人事务统计汇要》,内容涵盖退役军人登记注册、安置就业情况、职业技能培训参与情况、抚恤补助金领取人数及烈士纪念设施管理情况,是了解中国军人转业安置体系和退役军人社会保障的重要数据来源。" + }, + "website": "https://www.mva.gov.cn/", + "data_url": "https://www.mva.gov.cn/gongkai/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "social", + "governance", + "statistics" + ], + "update_frequency": "annual", + "tags": [ + "退役军人事务部", + "ministry-of-veterans-affairs", + "退役军人", + "veterans", + "军人安置", + "military-placement", + "优抚", + "preferential-treatment", + "烈士纪念", + "martyr-commemoration", + "职业技能培训", + "vocational-training", + "抚恤金", + "pension", + "退役军人统计", + "veterans-statistics", + "国防社会化", + "military-civilian-integration", + "中国军人", + "chinese-military-personnel" + ], + "data_content": { + "en": [ + "Veteran registration: total number of registered retired military personnel by province and category (officers, non-commissioned officers, soldiers)", + "Placement outcomes: annual statistics on veteran employment placement, including government job assignments, college enrollment, and self-employment support", + "Vocational and educational training: number of veterans enrolled in vocational skills training programs and higher education", + "Pension and disability benefits: number of recipients of military disability pensions, living allowances for family members of deceased soldiers", + "Commemorative facilities: number of national martyrs' cemeteries, memorial halls, and monuments managed or registered", + "Housing and living support: veterans receiving housing subsidies, emergency living assistance statistics", + "Annual statistical summary (退役军人事务统计汇要): comprehensive yearly report on veterans affairs nationwide" + ], + "zh": [ + "退役军人登记注册:按省份和类别(军官、士官、义务兵)分类的退役军人登记总数", + "安置就业情况:年度退役军人安置数据,包括政府机关安置、大学录取和自主创业支持", + "职业技能与教育培训:参加职业技能培训和高等学历教育的退役军人人数", + "抚恤金与伤残补助:军人伤残抚恤金领取人数、烈士家属优待金发放情况", + "纪念设施:纳入管理和登记的国家烈士陵园、纪念馆和纪念碑数量", + "住房与生活保障:享受住房补贴、紧急生活救助的退役军人统计数据", + "退役军人事务统计汇要:全国退役军人工作综合年度报告" + ] + } +} diff --git a/firstdata/sources/china/governance/china-napp.json b/firstdata/sources/china/governance/china-napp.json new file mode 100644 index 00000000..6afb7410 --- /dev/null +++ b/firstdata/sources/china/governance/china-napp.json @@ -0,0 +1,70 @@ +{ + "id": "china-napp", + "name": { + "en": "National Administration of Press and Publication", + "zh": "国家新闻出版署" + }, + "description": { + "en": "The National Administration of Press and Publication (NAPP) is China's central government authority responsible for regulating and overseeing the press, publication, copyright, and online publishing industries. Established under the State Council and merged with the General Administration of Press and Publication in 2018, NAPP issues statistics and regulatory data on books, newspapers, periodicals, digital publications, game approvals, and copyright registrations in China. It provides authoritative data on the scale and structure of China's publishing industry, the number of licensed publications, video game approval lists, and copyright protection enforcement — essential reference for China's content and media market research.", + "zh": "国家新闻出版署(NAPP)是中国负责监管新闻出版、版权及网络出版产业的中央政府机构。根据国务院机构改革,原国家新闻出版广电总局出版职能并入,2018年重新组建。国家新闻出版署发布图书、报纸、期刊、数字出版物、游戏版号审批及版权登记等统计数据,是中国出版业规模与结构、持证出版单位数量、电子游戏审批名单及版权保护执法的权威数据来源,是研究中国内容产业和媒体市场的重要参考。" + }, + "website": "https://www.nppa.gov.cn/", + "data_url": "https://www.nppa.gov.cn/xxfb/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "media", + "culture", + "governance", + "technology" + ], + "update_frequency": "monthly", + "tags": [ + "新闻出版", + "press-and-publication", + "游戏版号", + "game-approval", + "版权登记", + "copyright-registration", + "图书出版", + "book-publishing", + "数字出版", + "digital-publishing", + "期刊", + "periodicals", + "报纸", + "newspapers", + "网络游戏", + "online-games", + "内容产业", + "content-industry", + "出版统计", + "publishing-statistics", + "媒体监管", + "media-regulation" + ], + "data_content": { + "en": [ + "Video game approvals: monthly and annual lists of approved domestic and imported video games (版号) — critical data for China gaming market analysis", + "Book publication statistics: number of new titles, total print runs, revenue by category and publisher", + "Newspaper and periodical data: count of licensed newspapers and magazines, circulation statistics, industry revenue", + "Digital publishing: total output value of digital publishing industry, e-book, online audio/video, and mobile reading data", + "Copyright registration: annual copyright registrations, enforcement actions, anti-piracy statistics", + "Publishing license information: lists of licensed publishers, distribution enterprises, and printing companies", + "Industry annual reports: comprehensive reports on China's press and publication industry development", + "Import/export of publications: statistics on imported and exported books, periodicals, and digital content" + ], + "zh": [ + "游戏版号审批:每月及年度国产及进口游戏版号审批名单——中国游戏市场分析的关键数据", + "图书出版统计:新书品种数、总印数、按类别和出版社分类的出版收入", + "报纸期刊数据:持证报纸和期刊数量、发行量统计、行业收入", + "数字出版:数字出版产业总产出、电子书、网络音视频和移动阅读数据", + "版权登记:年度版权登记数量、执法行动、打击盗版统计", + "出版许可信息:持证出版单位、发行企业和印刷公司名单", + "行业年度报告:中国新闻出版业发展综合报告", + "出版物进出口:图书、期刊及数字内容进出口统计数据" + ] + } +} diff --git a/firstdata/sources/china/governance/china-ncac.json b/firstdata/sources/china/governance/china-ncac.json new file mode 100644 index 00000000..5ab7b8a3 --- /dev/null +++ b/firstdata/sources/china/governance/china-ncac.json @@ -0,0 +1,70 @@ +{ + "id": "china-ncac", + "name": { + "en": "National Copyright Administration of China", + "zh": "国家版权局" + }, + "description": { + "en": "The National Copyright Administration of China (NCAC) is the central government authority responsible for copyright protection, administration, and enforcement. NCAC oversees the registration of copyrights for literary, artistic, and software works, handles copyright complaints and anti-piracy actions, and participates in international copyright treaties. It publishes annual statistics on copyright registrations, software copyright grants, copyright protection actions, and the copyright industry's contribution to the national economy. NCAC's China Copyright Protection Center (CCPC) operates the national copyright registration database and issues official copyright certificates.", + "zh": "国家版权局是负责版权保护、管理和执法的中央政府主管部门。版权局主管文学、艺术和软件作品的版权登记,受理版权投诉,开展打击侵权盗版行动,并参与国际版权条约事务。版权局发布版权登记、软件著作权授权、版权保护行动及版权产业对国民经济贡献的年度统计数据。国家版权局下属的中国版权保护中心负责运营全国版权登记数据库并颁发版权登记证书。" + }, + "website": "https://www.ncac.gov.cn/", + "data_url": "https://www.ncac.gov.cn/chinacopyright/channels/634.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "intellectual-property", + "governance", + "technology" + ], + "update_frequency": "annual", + "tags": [ + "国家版权局", + "ncac", + "national-copyright-administration", + "版权登记", + "copyright-registration", + "软件著作权", + "software-copyright", + "著作权", + "copyright", + "知识产权", + "intellectual-property", + "版权保护", + "copyright-protection", + "反盗版", + "anti-piracy", + "版权产业", + "copyright-industry", + "中国版权保护中心", + "ccpc", + "版权执法", + "copyright-enforcement", + "文化产业", + "cultural-industry" + ], + "data_content": { + "en": [ + "Annual copyright registration statistics - total registrations by work type (literary, artistic, musical, cinematographic, software)", + "Software copyright grant statistics - number of software copyright certificates issued by industry and region", + "Copyright protection enforcement - anti-piracy campaign results, cases investigated, infringing goods seized", + "Copyright industry economic contribution - value-added output, employment, and share of GDP", + "International copyright affairs - bilateral copyright agreements, enforcement cooperation data", + "Copyright complaint and dispute statistics - number of administrative complaints and adjudications", + "Online copyright monitoring reports - infringement detection across digital platforms and e-commerce", + "Annual China Copyright Development Report (中国版权年度报告)" + ], + "zh": [ + "年度版权登记统计 - 按作品类别(文字、美术、音乐、电影、软件)分类的登记总量", + "软件著作权授权统计 - 按行业和地区分类的软件著作权证书发放量", + "版权保护执法 - 打击侵权盗版专项行动成果、案件查处及查获侵权品数量", + "版权产业经济贡献 - 增加值产出、就业人数及占GDP比重", + "国际版权事务 - 双边版权协议及执法合作数据", + "版权投诉及争议统计 - 行政投诉和裁决数量", + "网络版权监测报告 - 数字平台和电商侵权监测情况", + "年度中国版权发展报告" + ] + } +} diff --git a/firstdata/sources/china/governance/china-ncha.json b/firstdata/sources/china/governance/china-ncha.json new file mode 100644 index 00000000..c352da37 --- /dev/null +++ b/firstdata/sources/china/governance/china-ncha.json @@ -0,0 +1,70 @@ +{ + "id": "china-ncha", + "name": { + "en": "National Cultural Heritage Administration of China", + "zh": "国家文物局" + }, + "description": { + "en": "The National Cultural Heritage Administration of China (NCHA) is the central government agency responsible for the protection, management, and utilization of cultural heritage across China. It oversees the registration and conservation of immovable cultural relics, museums, archaeological excavations, and the export control of cultural artifacts. NCHA publishes the National Survey of Immovable Cultural Relics, annual museum statistics, lists of nationally protected cultural heritage sites, and archaeological discovery reports. With over 770,000 registered immovable cultural relics and more than 6,000 registered museums, NCHA data serves as the authoritative reference for China's cultural heritage landscape, including UNESCO World Heritage Sites and national key cultural relics protection units.", + "zh": "国家文物局是负责全国文物保护、管理和利用工作的中央政府机构,主管不可移动文物登记保护、博物馆管理、考古发掘审批和文物出境监管。国家文物局发布全国不可移动文物普查成果、年度博物馆统计数据、全国重点文物保护单位名单和考古重要发现报告。全国登记不可移动文物逾77万处,注册博物馆超过6000家,国家文物局数据是了解中国文化遗产状况(含世界遗产和全国重点文物保护单位)的权威来源。" + }, + "website": "http://www.ncha.gov.cn", + "data_url": "http://www.ncha.gov.cn/col/col2276/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "culture", + "education", + "governance" + ], + "update_frequency": "annual", + "tags": [ + "国家文物局", + "ncha", + "national-cultural-heritage-administration", + "文物保护", + "cultural-heritage-protection", + "不可移动文物", + "immovable-cultural-relics", + "全国重点文物保护单位", + "national-key-cultural-relics", + "博物馆统计", + "museum-statistics", + "考古发现", + "archaeological-discoveries", + "世界遗产", + "world-heritage-sites", + "文物普查", + "cultural-relics-survey", + "历史文化遗址", + "historical-cultural-sites", + "非物质文化遗产", + "intangible-cultural-heritage", + "文物出境", + "cultural-artifacts-export" + ], + "data_content": { + "en": [ + "National survey of immovable cultural relics: comprehensive registry of over 770,000 registered cultural relics sites across China, categorized by type, era, protection level, and geographic distribution", + "Annual museum statistics: number of registered museums, visitor counts, collections size, and revenue data by province and museum type", + "National key cultural relics protection units: official list of state-protected heritage sites with classification details, dating, and location information", + "Archaeological excavation reports: annual summaries of major archaeological finds and excavation project approvals", + "UNESCO World Heritage Sites in China: data on China's 57 World Heritage Sites including natural, cultural, and mixed sites", + "Cultural relics law enforcement: statistics on illegal excavation cases, artifact smuggling, and law enforcement actions", + "Heritage conservation funding: government investment in cultural heritage protection projects by region and project type", + "Museum development report: annual assessment of China's museum sector development, including thematic museums and community museums" + ], + "zh": [ + "全国不可移动文物普查成果:全国77万余处登记文物点综合名录,按类型、年代、保护级别和地区分类", + "年度博物馆统计:全国登记博物馆数量、参观人次、馆藏规模及收入数据,按省份和博物馆类型分类", + "全国重点文物保护单位名单:国家级文物保护单位官方名录,含分类详情、年代鉴定和位置信息", + "考古发掘报告:年度重大考古发现及考古发掘项目审批情况综述", + "中国世界遗产数据:中国57处世界遗产(含自然、文化和混合遗产)基本信息", + "文物执法统计:非法盗掘案件、文物走私及执法行动数据", + "文化遗产保护经费:各地区、各类项目政府文物保护投入情况", + "博物馆事业发展报告:全国博物馆事业发展年度评估,含主题博物馆和社区博物馆" + ] + } +} diff --git a/firstdata/sources/china/governance/china-neac.json b/firstdata/sources/china/governance/china-neac.json new file mode 100644 index 00000000..89eb9e05 --- /dev/null +++ b/firstdata/sources/china/governance/china-neac.json @@ -0,0 +1,75 @@ +{ + "id": "china-neac", + "name": { + "en": "National Ethnic Affairs Commission of China", + "zh": "国家民族事务委员会" + }, + "description": { + "en": "The National Ethnic Affairs Commission (NEAC), also known as the State Ethnic Affairs Commission (SEAC), is China's central government body responsible for ethnic minority affairs, policy implementation, and statistical monitoring of China's 55 recognized ethnic minority groups. NEAC publishes data on ethnic minority population distribution, economic development in minority regions, poverty alleviation progress, preservation of minority languages and cultures, ethnic education, and regional autonomy governance. Key publications include ethnic minority population census data, annual statistical bulletins on minority areas development, and reports on the implementation of ethnic regional autonomy. NEAC data is essential for understanding demographic diversity, regional development disparities, and social policy in China's autonomous regions.", + "zh": "国家民族事务委员会(民委)是中国负责民族事务管理、政策实施及55个少数民族统计监测的国家中央政府机构。民委发布少数民族人口分布、民族地区经济发展、脱贫攻坚进展、少数民族语言文化保护、民族教育及民族区域自治治理等数据。主要出版物包括少数民族人口普查数据、民族地区年度发展统计公报及民族区域自治制度实施报告。民委数据对了解中国的人口多样性、区域发展差异及自治区社会政策具有重要意义。" + }, + "website": "https://www.neac.gov.cn", + "data_url": "https://www.neac.gov.cn/seac/xxgk/tjsj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "demographics", + "governance", + "economics", + "social" + ], + "update_frequency": "annual", + "tags": [ + "民委", + "neac", + "seac", + "ethnic-minority", + "少数民族", + "民族地区", + "minority-regions", + "民族人口", + "ethnic-population", + "民族区域自治", + "ethnic-regional-autonomy", + "少数民族发展", + "minority-development", + "民族文化", + "ethnic-culture", + "民族教育", + "ethnic-education", + "脱贫攻坚", + "poverty-alleviation", + "自治区", + "autonomous-regions", + "西藏", + "tibet", + "新疆", + "xinjiang", + "民族统计", + "ethnic-statistics" + ], + "data_content": { + "en": [ + "Ethnic minority population: census data on population size, distribution, and demographic characteristics of 55 ethnic minority groups", + "Regional development statistics: GDP, per capita income, poverty rate, and infrastructure in ethnic autonomous regions", + "Poverty alleviation data: poverty reduction progress in ethnic minority areas under national rural revitalization strategy", + "Education indicators: school enrollment rates, literacy, higher education participation among ethnic minorities", + "Language and culture: number of schools teaching minority languages, cultural heritage preservation programs", + "Economic autonomy: fiscal transfers to autonomous regions, special development funds for minority areas", + "Social indicators: life expectancy, maternal mortality, healthcare access in ethnic minority communities", + "Annual bulletin on ethnic minority areas development: comprehensive report on socioeconomic progress across autonomous regions" + ], + "zh": [ + "少数民族人口:55个少数民族人口规模、分布及人口特征普查数据", + "地区发展统计:民族自治区域的GDP、人均收入、贫困率及基础设施情况", + "脱贫攻坚数据:农村振兴战略下少数民族地区减贫进展", + "教育指标:少数民族的入学率、文化程度及高等教育参与率", + "语言与文化:少数民族语言教学学校数量、文化遗产保护项目", + "经济自治:对自治区的财政转移支付及民族地区特殊发展基金", + "社会指标:少数民族聚居地区人均寿命、孕产妇死亡率及医疗可及性", + "少数民族地区年度发展统计公报:自治区社会经济进展综合报告" + ] + } +} diff --git a/firstdata/sources/china/governance/china-nfra-fire.json b/firstdata/sources/china/governance/china-nfra-fire.json new file mode 100644 index 00000000..bcdf57e9 --- /dev/null +++ b/firstdata/sources/china/governance/china-nfra-fire.json @@ -0,0 +1,67 @@ +{ + "id": "china-nfra-fire", + "name": { + "en": "National Fire and Rescue Administration of China", + "zh": "国家消防救援局" + }, + "description": { + "en": "The National Fire and Rescue Administration (NFRA, 国家消防救援局) is the highest-level government body in China responsible for fire prevention, firefighting, rescue operations, and fire safety supervision. Established in 2018 following reform of the People's Armed Police system, NFRA operates a nationwide network of fire stations and rescue teams under the Ministry of Emergency Management. The Administration publishes official fire statistics, rescue operation data, fire prevention inspection records, major fire incident investigations, and national fire safety standards and guidelines. NFRA data provides authoritative information on fire incidents, casualties, property losses, hazardous material emergencies, and urban/rural fire safety conditions across China.", + "zh": "国家消防救援局是中国负责消防预防、灭火救援和消防安全监督的最高政府机构。2018年随武警改革组建,国家消防救援局在应急管理部领导下管理全国消防队伍。消防救援局发布官方火灾统计数据、救援行动记录、消防安全检查记录、重大火灾事故调查报告及国家消防技术标准和规范,是中国火灾事故数量、伤亡情况、财产损失、危险化学品事故和城乡消防安全状况的权威数据来源。" + }, + "website": "https://www.119.gov.cn", + "data_url": "https://www.119.gov.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "governance", + "public-safety", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "消防救援", + "fire-rescue", + "国家消防救援局", + "nfra", + "火灾统计", + "fire-statistics", + "消防安全", + "fire-safety", + "灾害救援", + "disaster-rescue", + "应急救援", + "emergency-rescue", + "危险化学品", + "hazardous-materials", + "消防检查", + "fire-inspection" + ], + "data_content": { + "en": [ + "Annual and monthly fire statistics - total fire incidents, deaths, injuries, and direct property losses nationwide and by province", + "Fire cause analysis - breakdown of fire incidents by ignition source (electrical, open flame, smoking, arson, etc.)", + "Rescue operation data - records of firefighting and rescue operations, dispatched personnel, and vehicles", + "Major fire incident investigation reports - cause analysis and safety lessons from significant fires and explosions", + "Hazardous material emergency records - chemical plant fires, gas leaks, and toxic substance incidents", + "Fire safety inspection statistics - enterprise compliance rates, major hazard source identification, and rectification orders", + "Urban and rural fire safety gap analysis - regional fire risk assessments and prevention priority reports", + "National fire safety standards - technical codes and regulatory documents for fire prevention in buildings and industries", + "High-rise and underground space fire data - incident statistics for complex building environments", + "Fire rescue team capacity data - nationwide distribution, staffing levels, and equipment inventories" + ], + "zh": [ + "年度及月度火灾统计 - 全国及各省市火灾起数、死亡人数、受伤人数和直接财产损失", + "火灾原因分析 - 按点火源(电气、明火、吸烟、人为纵火等)分类的火灾事故构成", + "救援行动数据 - 消防灭火救援出动记录、参战人员和车辆情况", + "重大火灾事故调查报告 - 重大火灾和爆炸事故的原因分析与安全警示", + "危险化学品应急记录 - 化工厂火灾、气体泄漏和有毒物质事故", + "消防安全检查统计 - 企业合规率、重大危险源认定和整改指令", + "城乡消防安全差距分析 - 区域火灾风险评估和防火重点报告", + "国家消防技术标准 - 建筑和工业消防预防技术规范和监管文件", + "高层及地下空间火灾数据 - 复杂建筑环境的事故统计", + "消防救援队伍建设数据 - 全国布局、人员编制和装备配备情况" + ] + } +} diff --git a/firstdata/sources/china/governance/china-nia.json b/firstdata/sources/china/governance/china-nia.json new file mode 100644 index 00000000..02dd1e34 --- /dev/null +++ b/firstdata/sources/china/governance/china-nia.json @@ -0,0 +1,69 @@ +{ + "id": "china-nia", + "name": { + "en": "National Immigration Administration of China", + "zh": "国家移民管理局" + }, + "description": { + "en": "The National Immigration Administration (NIA) of China is the central government authority responsible for immigration management, border control, and exit-entry administration. Established in 2018 as a reform of the former Exit-Entry Administration Bureau, the NIA publishes official statistics on border crossings, passport and visa issuance, foreign nationals entering and exiting China, overseas Chinese affairs, and emigration trends. The NIA manages China's frontier inspection system and oversees the growing outbound tourism and overseas study flows. Its data is essential for analyzing China's international mobility, immigration policy, and border security statistics.", + "zh": "国家移民管理局是中国负责移民管理、边境管控和出入境行政的中央政府机构,2018年在原出入境管理局基础上改革设立。国家移民管理局发布边境通关、护照和签证签发量、外国人入出境、华侨华人事务及移民趋势等官方统计数据,管理中国边检系统并监管不断增长的出境旅游和出国留学流量。其数据是分析中国国际人口流动、移民政策和边境安全的重要参考。" + }, + "website": "https://www.nia.gov.cn/", + "data_url": "https://www.nia.gov.cn/n741440/n741547/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "governance", + "social", + "statistics" + ], + "update_frequency": "quarterly", + "tags": [ + "移民管理", + "immigration", + "出入境", + "exit-entry", + "边境管控", + "border-control", + "护照签证", + "passport-visa", + "外籍人员", + "foreign-nationals", + "出境旅游", + "outbound-tourism", + "华侨华人", + "overseas-chinese", + "国际移动", + "international-mobility", + "边检", + "frontier-inspection", + "出国留学", + "overseas-study" + ], + "data_content": { + "en": [ + "Border crossing statistics: total entry and exit volumes at land, air, and sea ports across China", + "Passport issuance: numbers of ordinary passports, official passports, and diplomatic passports issued annually", + "Visa and permit data: foreign visas approved, residence permits for foreigners, work permit statistics", + "Foreign nationals in China: registered foreign residents by nationality, purpose of stay, and region", + "Emigration trends: number of Chinese nationals emigrating abroad, emigration destinations, and returning overseas Chinese", + "Outbound tourism: Chinese outbound traveler counts by destination country and travel purpose", + "Illegal immigration and enforcement: border enforcement actions, overstay violations, deportation cases", + "Exit-entry administration reform: implementation statistics on China's new exit-entry management system", + "Overseas Chinese affairs: registered overseas Chinese population and related welfare statistics" + ], + "zh": [ + "边境通关统计:全国各陆路、空港、水运口岸入出境人次总量", + "护照签发:普通护照、公务护照、外交护照年度签发量", + "签证和居留许可数据:外国人签证审批量、外国人居留许可、工作许可统计", + "在华外籍人员:按国籍、居留目的和地区划分的外国常住人口统计", + "移民趋势:出国定居中国公民数量、移居目的地、归国华侨华人统计", + "出境旅游:按目的地国家和旅行目的分类的中国公民出境旅游人次", + "非法移民与执法:边境执法行动、逾期逗留违法、遣返案例", + "出入境管理改革:中国新出入境管理制度实施统计数据", + "华侨华人事务:境外注册华侨华人人口及相关福利保障统计" + ] + } +} diff --git a/firstdata/sources/china/governance/china-nncc.json b/firstdata/sources/china/governance/china-nncc.json new file mode 100644 index 00000000..c5500901 --- /dev/null +++ b/firstdata/sources/china/governance/china-nncc.json @@ -0,0 +1,56 @@ +{ + "id": "china-nncc", + "name": { + "en": "China National Narcotics Control Commission", + "zh": "中国国家禁毒委员会" + }, + "description": { + "en": "The China National Narcotics Control Commission (NNCC) is the top-level inter-ministerial body overseeing drug control policy and enforcement in China. Its official portal, China Anti-Drug Network (中国禁毒网), publishes authoritative national drug control reports, annual drug situation assessments, data on drug-related crimes, rehabilitation statistics, synthetic drug trend analyses, and public awareness campaign outcomes. NNCC data is the primary official source for understanding China's drug abuse epidemiology, enforcement actions, and policy progress.", + "zh": "中国国家禁毒委员会(禁毒委)是负责统筹协调全国禁毒工作的最高部际协调机构。其官方门户《中国禁毒网》发布权威的全国毒品形势报告、年度毒情综述、涉毒违法犯罪统计、戒毒康复数据、合成毒品趋势分析及禁毒宣传活动成效等信息,是了解中国禁毒执法、毒品滥用流行病学及政策进展的主要官方数据来源。" + }, + "website": "http://www.nncc626.com", + "data_url": "http://www.nncc626.com", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "update_frequency": "annual", + "domains": [ + "public-safety", + "governance", + "health", + "crime" + ], + "tags": [ + "china", + "nncc", + "禁毒委", + "drug-control", + "禁毒", + "narcotics", + "毒品", + "anti-drug", + "drug-crime", + "涉毒犯罪", + "rehabilitation", + "戒毒", + "drug-situation", + "毒品形势" + ], + "data_content": { + "en": [ + "Annual Drug Situation Reports - National drug abuse trends, seizure volumes, and enforcement statistics", + "Drug-Related Crime Data - Arrests, prosecutions, and conviction statistics for narcotics offenses", + "Rehabilitation Statistics - Data on compulsory drug detoxification and community-based recovery programs", + "Synthetic Drug Trends - Intelligence and statistical analyses on new psychoactive substances", + "Drug Control Policy Documents - Laws, regulations, and national action plans for drug prevention and control" + ], + "zh": [ + "年度毒品形势报告 - 全国毒品滥用趋势、缴获数量及执法统计", + "涉毒违法犯罪数据 - 毒品犯罪的抓获、起诉及定罪统计", + "戒毒康复统计 - 强制隔离戒毒及社区康复计划数据", + "合成毒品趋势分析 - 新型精神活性物质情报及统计分析", + "禁毒政策文件 - 禁毒相关法律法规及国家行动计划" + ] + } +} diff --git a/firstdata/sources/china/governance/china-nnsa.json b/firstdata/sources/china/governance/china-nnsa.json new file mode 100644 index 00000000..77400831 --- /dev/null +++ b/firstdata/sources/china/governance/china-nnsa.json @@ -0,0 +1,78 @@ +{ + "id": "china-nnsa", + "name": { + "en": "National Nuclear Safety Administration", + "zh": "国家核安全局" + }, + "description": { + "en": "The National Nuclear Safety Administration (NNSA) of China is the national regulatory authority responsible for the safety supervision and management of nuclear and radiation safety, operating as a functional department under the Ministry of Ecology and Environment (MEE). Established in 1984, NNSA regulates the licensing, construction, operation, and decommissioning of nuclear power plants, research reactors, nuclear fuel cycle facilities, and radioactive waste management facilities across China. NNSA publishes China's nuclear safety regulations, technical guidelines, licensing decisions, and annual nuclear safety reports. It maintains registries of licensed nuclear installations, radiation sources, and radioactive waste repositories, and publishes environmental radiation monitoring data from nuclear facilities. NNSA is China's competent authority under the Convention on Nuclear Safety and cooperates with the International Atomic Energy Agency (IAEA) on nuclear safety standards and peer reviews.", + "zh": "国家核安全局(NNSA)是中国负责核与辐射安全监督管理的国家监管机构,作为生态环境部的职能部门运行。NNSA成立于1984年,负责对中国核电站、研究堆、核燃料循环设施和放射性废物管理设施的许可、建设、运行和退役实施监管。国家核安全局发布中国核安全法规、技术导则、许可决定和年度核安全报告,维护持证核设施、放射源和放射性废物库的登记注册,并发布核设施周边环境辐射监测数据。NNSA是《核安全公约》下的中国主管当局,与国际原子能机构(IAEA)在核安全标准和同行评审方面开展合作。" + }, + "website": "http://nnsa.mee.gov.cn", + "data_url": "http://nnsa.mee.gov.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "energy", + "environment", + "science", + "governance" + ], + "update_frequency": "irregular", + "tags": [ + "国家核安全局", + "nnsa", + "核安全", + "nuclear-safety", + "辐射安全", + "radiation-safety", + "核电站", + "nuclear-power-plant", + "核监管", + "nuclear-regulation", + "放射性废物", + "radioactive-waste", + "核燃料", + "nuclear-fuel", + "核许可证", + "nuclear-license", + "环境辐射监测", + "environmental-radiation-monitoring", + "核安全法规", + "nuclear-safety-regulations", + "核安全导则", + "nuclear-safety-guides", + "核设施", + "nuclear-installations", + "放射源", + "radiation-sources", + "生态环境部", + "ministry-of-ecology-and-environment", + "mee", + "iaea", + "核安全公约", + "convention-on-nuclear-safety", + "研究堆", + "research-reactor" + ], + "data_content": { + "en": [ + "Nuclear safety regulations and technical guidelines: comprehensive collection of China's HAF (nuclear safety) regulatory framework documents, technical safety guidelines (HAD series), and regulatory basis documents for nuclear power plants, research reactors, and fuel cycle facilities", + "Nuclear facility licensing registry: database of licensed and pending nuclear installations in China, including nuclear power units (operational, under construction, decommissioned), research reactors, uranium processing facilities, and radioactive waste repositories", + "Annual nuclear safety reports: comprehensive annual assessment of China's nuclear safety performance, including safety inspection results, events and incidents statistics, radioactive release data, and regulatory enforcement actions", + "Environmental radiation monitoring data: radiation dose rate, radioactivity concentration in air, water, and soil from monitoring networks around nuclear power plants and other nuclear facilities, supporting public transparency and safety oversight", + "Radiation source and radioactive waste registries: national registries of sealed and unsealed radioactive sources, radiation-emitting devices, and radioactive waste storage facilities subject to regulatory control", + "Nuclear event and incident reports: classified and public reports on nuclear and radiological events at Chinese nuclear facilities, including INES-rated incidents, near-misses, and safety-significant events reported under national and international obligations" + ], + "zh": [ + "核安全法规和技术导则:中国HAF(核安全)监管框架文件、技术安全导则(HAD系列)和核电站、研究堆、燃料循环设施监管基础文件综合集", + "核设施许可证注册库:中国持证和待审核设施数据库,包括核电机组(运行中、在建、退役)、研究堆、铀处理设施和放射性废物库", + "年度核安全报告:中国核安全绩效年度综合评估,包括安全检查结果、事件和事故统计、放射性排放数据和监管执法行动", + "环境辐射监测数据:核电站和其他核设施周边监测网络的辐射剂量率、空气、水和土壤中放射性活度浓度数据,支持公众透明度和安全监管", + "放射源和放射性废物登记注册:国家监管范围内的密封和非密封放射源、辐射装置和放射性废物贮存设施国家注册库", + "核事件和事故报告:中国核设施核与辐射事件的分级和公开报告,包括INES评级事件、未遂事件和依据国家及国际义务报告的安全重要事件" + ] + } +} diff --git a/firstdata/sources/china/governance/china-npc-law.json b/firstdata/sources/china/governance/china-npc-law.json new file mode 100644 index 00000000..2469378e --- /dev/null +++ b/firstdata/sources/china/governance/china-npc-law.json @@ -0,0 +1,79 @@ +{ + "id": "china-npc-law", + "name": { + "en": "National People's Congress Law Database", + "zh": "全国人大法律法规数据库" + }, + "description": { + "en": "The National People's Congress (NPC) Law Database (法律法规库) is the official repository for China's national legislation, maintained by the Standing Committee of the NPC. It provides the full text of all laws enacted by the NPC and its Standing Committee, administrative regulations issued by the State Council, local regulations from provincial legislatures, judicial interpretations, and Party regulations. This database is the authoritative reference for China's statutory law and enables tracking of legislative history, amendments, and repeal dates for every piece of enacted national legislation. Updated continuously as new laws are passed, it serves as the primary legal data source for government agencies, courts, law firms, academic institutions, and compliance teams operating in China. The platform also offers structured metadata enabling systematic analysis of China's legislative output and regulatory trends.", + "zh": "全国人民代表大会法律法规数据库(法律法规库)是由全国人民代表大会常务委员会维护的中国国家立法官方数据库。该数据库收录全国人大及其常委会通过的全部法律全文、国务院发布的行政法规、省级立法机关制定的地方性法规、司法解释及党内法规。该数据库是中国成文法的权威参考,可追溯每部现行国家立法的立法历史、修订情况和废止日期。随新法通过持续更新,是在华政府机关、法院、律师事务所、学术机构和合规团队的主要法律数据来源。该平台还提供结构化元数据,支持对中国立法产出和法规趋势进行系统分析。" + }, + "website": "https://www.npc.gov.cn/", + "data_url": "https://flk.npc.gov.cn/", + "api_url": "https://flk.npc.gov.cn/api/", + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "governance", + "law", + "policy", + "regulatory" + ], + "update_frequency": "irregular", + "tags": [ + "全国人大", + "npc", + "national-people's-congress", + "法律法规库", + "law-database", + "中国法律", + "chinese-law", + "国家立法", + "national-legislation", + "行政法规", + "administrative-regulations", + "地方性法规", + "local-regulations", + "司法解释", + "judicial-interpretations", + "立法历史", + "legislative-history", + "全文检索", + "full-text-search", + "法律全文", + "law-full-text", + "党内法规", + "party-regulations", + "法规修订", + "law-amendments", + "合规数据", + "compliance-data", + "法制", + "rule-of-law", + "人民代表大会", + "people's-congress" + ], + "data_content": { + "en": [ + "Full text of national laws: complete text of all laws enacted by the NPC and Standing Committee since the founding of the PRC, with amendment history", + "Administrative regulations: full text of State Council regulations (行政法规) with enactment and effective dates", + "Local regulations: provincial and municipal legislative acts (地方性法规) from all 31 provincial-level jurisdictions", + "Judicial interpretations: official interpretations by the Supreme People's Court and Supreme People's Procuratorate", + "Party regulations: selected regulations issued by the Central Committee of the Communist Party of China", + "Legislative metadata: law number, enactment authority, adoption date, effective date, revision history, and repeal status for each document", + "Thematic law collections: curated sets of laws by topic area including civil law, criminal law, economic law, environmental law, and administrative law", + "Legislative statistics: annual counts of laws passed, amended, and repealed by the NPC and Standing Committee" + ], + "zh": [ + "国家法律全文:中华人民共和国成立以来全国人大及其常委会通过的全部法律完整文本及修订历史", + "行政法规:国务院行政法规全文及颁布日期和施行日期", + "地方性法规:全国31个省级行政区的地方性立法(地方性法规)", + "司法解释:最高人民法院和最高人民检察院发布的正式司法解释", + "党内法规:中国共产党中央委员会颁布的部分党内法规", + "立法元数据:各文件的法规编号、制定机关、通过日期、施行日期、修订历史和废止状态", + "专题法律汇编:按民法、刑法、经济法、环境法、行政法等专题整理的法律文件集", + "立法统计:全国人大及常委会年度立法、修订和废止法律的数量统计" + ] + } +} diff --git a/firstdata/sources/china/governance/china-nrta.json b/firstdata/sources/china/governance/china-nrta.json new file mode 100644 index 00000000..506862f1 --- /dev/null +++ b/firstdata/sources/china/governance/china-nrta.json @@ -0,0 +1,74 @@ +{ + "id": "china-nrta", + "name": { + "en": "National Radio and Television Administration of China", + "zh": "国家广播电视总局" + }, + "description": { + "en": "The National Radio and Television Administration (NRTA) is China's primary government authority responsible for regulating the radio and television broadcasting industry, including content supervision, licensing, technical standards, and industry development. Established in 2018 by merging the former State Administration of Press, Publication, Radio, Film and Television (SAPPRFT) functions, NRTA publishes annual statistical bulletins on China's broadcasting sector covering the number of licensed radio and TV stations, broadcast hours, cable and satellite subscriber data, program production volume, internet audio-visual service platforms, and smart TV penetration rates. Its data is essential for analyzing China's media landscape, digital broadcasting transition, and content regulation environment.", + "zh": "国家广播电视总局是中国广播电视行业的主管部门,负责广播电视内容监管、行业许可、技术标准制定和产业发展规划。2018年由原国家新闻出版广播电影电视总局相关职能重组而来。广电总局每年发布全国广播电视统计公报,涵盖持证广播电视播出机构数量、播出时长、有线及卫星用户数据、节目制作播出量、互联网视听服务平台许可情况及智能电视普及率等核心数据,是研究中国媒体格局、数字广播转型和内容监管环境的重要参考。" + }, + "website": "https://www.nrta.gov.cn/", + "data_url": "https://www.nrta.gov.cn/col/col2040/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "media", + "governance", + "technology" + ], + "update_frequency": "annual", + "tags": [ + "广播电视总局", + "nrta", + "national-radio-television-administration", + "广播电视", + "broadcasting", + "电视台", + "television-station", + "广播电台", + "radio-station", + "有线电视", + "cable-tv", + "卫星电视", + "satellite-tv", + "互联网视听", + "internet-audiovisual", + "流媒体", + "streaming", + "内容监管", + "content-regulation", + "广播电视统计公报", + "broadcasting-statistics", + "节目制作", + "program-production", + "智能电视", + "smart-tv", + "传媒产业", + "media-industry" + ], + "data_content": { + "en": [ + "Annual broadcasting statistics bulletin: total number of licensed radio stations, TV stations, cable and satellite operators nationwide", + "Broadcasting coverage rates: radio and television signal coverage by province and rural-urban breakdown", + "Cable and IPTV subscribers: number of subscribers to cable TV, satellite direct-to-home, and IPTV services", + "Program production volume: hours of original programming produced by category (news, drama, variety, documentary, animation)", + "Internet audiovisual platforms: number of licensed platforms offering video-on-demand, live streaming, and online radio services", + "Smart TV and connected devices: penetration rates and active users of internet-connected television sets", + "Advertising revenue: total advertising income of radio and TV broadcasters", + "Industry employment: number of employees in the broadcasting and audiovisual production sector" + ], + "zh": [ + "广播电视统计公报:全国持证广播电台、电视台及有线电视、卫星运营机构总量", + "广播电视覆盖率:按省份及城乡分类的广播电视信号覆盖情况", + "有线及IPTV用户:有线电视、直播卫星和IPTV用户订阅数量", + "节目制作播出量:按类别(新闻、电视剧、综艺、纪录片、动画片)分类的原创节目时长", + "互联网视听平台:持证视频点播、网络直播和网络广播平台数量", + "智能电视与联网终端:互联网电视机普及率和活跃用户数", + "广告收入:广播电视播出机构广告经营总收入", + "行业就业:广播电视及视听节目制作行业从业人员数量" + ] + } +} diff --git a/firstdata/sources/china/governance/china-pkulaw.json b/firstdata/sources/china/governance/china-pkulaw.json new file mode 100644 index 00000000..8019f0c9 --- /dev/null +++ b/firstdata/sources/china/governance/china-pkulaw.json @@ -0,0 +1,84 @@ +{ + "id": "china-pkulaw", + "name": { + "en": "PKU Law (Peking University Law Database)", + "zh": "北大法宝" + }, + "description": { + "en": "PKU Law (Peking University Law, 北大法宝) is China's most comprehensive legal database, operated by the Institute of Legal Information of Peking University Law School. It aggregates the full text of Chinese laws, administrative regulations, judicial interpretations, local regulations, court judgments, legal journals, and legislative history from 1949 to the present. The database covers over 10 million legal documents including all national legislation promulgated by the National People's Congress (NPC), State Council regulations, ministry-level normative documents, provincial and municipal local laws, Supreme People's Court and Supreme People's Procuratorate judicial interpretations, and millions of court verdicts. PKU Law is the authoritative legal reference for legal practitioners, judiciary officials, government agencies, corporations, academic researchers, and law schools across China. The database is continuously updated with new legislative developments and court decisions, making it the primary tool for tracking China's evolving legal framework.", + "zh": "北大法宝(北京大学法律信息中心)是中国最权威、最全面的法律数据库,由北京大学法学院法律信息中心运营。数据库收录了1949年至今的中国法律、行政法规、司法解释、地方法规、法院判决、法学期刊及立法历史全文,覆盖超过1000万份法律文件,包括全国人民代表大会颁布的国家立法、国务院法规、部委规范性文件、省市地方法规、最高人民法院和最高人民检察院司法解释,以及数百万份裁判文书。北大法宝是全国法律从业者、司法人员、政府机关、企业法务、学术研究者和法学院校的权威法律参考工具,持续更新最新立法动态和判决信息,是追踪中国法制演进的核心平台。" + }, + "website": "https://www.pkulaw.com/", + "data_url": "https://www.pkulaw.com/law", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "governance", + "law", + "policy" + ], + "update_frequency": "daily", + "tags": [ + "北大法宝", + "pku-law", + "peking-university-law", + "中国法律", + "chinese-law", + "法律数据库", + "legal-database", + "法规", + "regulations", + "司法解释", + "judicial-interpretations", + "裁判文书", + "court-judgments", + "地方法规", + "local-regulations", + "立法", + "legislation", + "全国人大", + "npc", + "国务院", + "state-council", + "法学期刊", + "legal-journals", + "法条", + "legal-provisions", + "行政法规", + "administrative-regulations", + "规范性文件", + "normative-documents", + "法律检索", + "legal-research", + "合规", + "compliance" + ], + "data_content": { + "en": [ + "National legislation: full text of all laws enacted by the National People's Congress (NPC) and its Standing Committee from 1949 to present", + "Administrative regulations: State Council regulations, implementation rules, and policy documents", + "Judicial interpretations: Supreme People's Court and Supreme People's Procuratorate interpretations, guiding cases, and judicial policies", + "Local regulations: provincial, municipal, and special economic zone legislation and government rules", + "Ministry-level normative documents: departmental regulations and rules from all central government ministries", + "Court judgments: millions of civil, criminal, administrative, and commercial court verdicts at all levels", + "Legal journals: full text of major Chinese law reviews and legal academic publications", + "Legislative history: revision history, explanatory notes, and comparative analysis of legislative changes", + "International treaties: treaties and conventions signed and ratified by China", + "Legal Q&A and commentary: expert legal analysis and practice guides" + ], + "zh": [ + "国家立法:全国人民代表大会及其常委会自1949年至今颁布的所有法律全文", + "行政法规:国务院法规、实施细则及政策文件", + "司法解释:最高人民法院和最高人民检察院司法解释、指导性案例及司法政策", + "地方法规:省级、市级及经济特区立法和政府规章", + "部委规范性文件:各中央部委制定的部门规章和规范性文件", + "裁判文书:各级法院民事、刑事、行政及商事裁判文书数百万份", + "法学期刊:主要中国法学评论和法律学术出版物全文", + "立法历史:法规修订历史、立法说明及法律变迁比较分析", + "国际条约:中国签署和批准的条约及国际公约", + "法律问答与评注:专家法律分析及实务指南" + ] + } +} diff --git a/firstdata/sources/china/governance/china-saac.json b/firstdata/sources/china/governance/china-saac.json new file mode 100644 index 00000000..8a212817 --- /dev/null +++ b/firstdata/sources/china/governance/china-saac.json @@ -0,0 +1,68 @@ +{ + "id": "china-saac", + "name": { + "en": "National Archives Administration of China", + "zh": "中华人民共和国国家档案局" + }, + "description": { + "en": "The National Archives Administration of China (SAAC) is the central government authority responsible for managing China's national archives system, overseeing archival work across all levels of government, and setting standards for records management. SAAC administers the Central Archives, which holds important historical records of the Communist Party of China and the People's Republic of China including declassified documents, historical treaties, and rare manuscripts. The agency publishes national archives statistics, archival legislation, standards for electronic records management, and thematic document releases on significant historical events.", + "zh": "中华人民共和国国家档案局(国家档案局)是负责管理中国国家档案体系、监督各级政府档案工作、制定档案管理标准的中央政府主管部门。国家档案局管辖中央档案馆,保存有中国共产党和中华人民共和国的重要历史档案,包括解密文件、历史条约和珍贵手稿。该机构发布全国档案统计数据、档案法规标准、电子档案管理规范,以及重大历史事件的专题档案文献。" + }, + "website": "https://www.saac.gov.cn/", + "data_url": "https://www.saac.gov.cn/daj/fzgz/lmlist.shtml", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "governance", + "history", + "statistics" + ], + "update_frequency": "annual", + "tags": [ + "国家档案局", + "national-archives-administration", + "saac", + "中央档案馆", + "central-archives", + "档案统计", + "archives-statistics", + "历史文献", + "historical-documents", + "档案法规", + "archival-legislation", + "电子档案", + "electronic-records", + "档案管理", + "records-management", + "解密档案", + "declassified-documents", + "政府信息公开", + "government-information-disclosure", + "档案年鉴", + "archives-yearbook", + "标准规范", + "standards-and-specifications" + ], + "data_content": { + "en": [ + "National archives statistics: annual reports on archives institutions, archival holdings volume, and staff nationwide", + "Archival legislation: laws, regulations, and administrative rules governing archives management in China", + "Electronic records management: standards and specifications for digital archives and e-government records", + "Historical document releases: declassified files on significant historical events, including wartime records and diplomatic archives", + "Archives yearbook: comprehensive annual compilation of national archival sector statistics", + "Planning and development: strategic plans for archives modernization, informatization progress indicators", + "Standards library: technical standards for archives preservation, digitization, and metadata management" + ], + "zh": [ + "全国档案统计数据:全国档案机构、馆藏数量和从业人员年度统计报告", + "档案法规:中国档案管理的法律、法规和行政规章", + "电子档案管理:数字档案馆和电子政务档案的标准与规范", + "历史档案发布:重大历史事件的解密档案,包括战时档案和外交档案", + "档案年鉴:全国档案事业统计数据综合年度汇编", + "规划与发展:档案现代化战略规划、信息化进展指标", + "标准规范库:档案保护、数字化和元数据管理的技术标准" + ] + } +} diff --git a/firstdata/sources/china/governance/china-spc.json b/firstdata/sources/china/governance/china-spc.json new file mode 100644 index 00000000..0450bbcd --- /dev/null +++ b/firstdata/sources/china/governance/china-spc.json @@ -0,0 +1,77 @@ +{ + "id": "china-spc", + "name": { + "en": "Supreme People's Court of China", + "zh": "最高人民法院" + }, + "description": { + "en": "The Supreme People's Court (SPC) is China's highest judicial authority, responsible for supervising the administration of justice across all courts nationwide. The SPC publishes annual judicial statistics covering the entire Chinese court system, including case filings, disposals, and outcomes at the district, intermediate, and high court levels across all 31 provincial jurisdictions. Its public data includes criminal, civil, administrative, and enforcement case volumes; trial efficiency indicators; appeal rates; and the breakdown of disputes by type. The SPC also operates China Judgments Online (中国裁判文书网), the world's largest public database of court decisions, containing over 100 million judicial documents. Additionally, the SPC issues binding judicial interpretations that function as quasi-legislation, shaping the application of law throughout the judicial system.", + "zh": "最高人民法院是中国最高司法机关,负责监督全国各级法院的司法工作。最高人民法院每年发布覆盖全国法院体系的司法统计数据,包括全国31个省级行政区基层法院、中级法院和高级法院的案件受理、办结和裁判结果。公开数据涵盖刑事、民事、行政和执行案件数量、审判效率指标、上诉率及纠纷类型分布。最高人民法院还运营“中国裁判文书网”,这是全球最大的裁判文书公开数据库,收录逾1亿份司法文书。此外,最高人民法院发布具有约束力的司法解释,其效力准同法律,对全司法系统的法律适用产生重要影响。" + }, + "website": "https://www.court.gov.cn/", + "data_url": "https://www.court.gov.cn/sfsj.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "governance", + "law", + "social", + "regulatory" + ], + "update_frequency": "annual", + "tags": [ + "最高人民法院", + "spc", + "supreme-people's-court", + "司法统计", + "judicial-statistics", + "裁判文书", + "court-decisions", + "中国裁判文书网", + "china-judgments-online", + "案件数据", + "case-data", + "刑事案件", + "criminal-cases", + "民事案件", + "civil-cases", + "行政诉讼", + "administrative-litigation", + "执行案件", + "enforcement-cases", + "审判效率", + "trial-efficiency", + "司法解释", + "judicial-interpretations", + "法院数据", + "court-data", + "诉讼统计", + "litigation-statistics", + "司法公开", + "judicial-transparency" + ], + "data_content": { + "en": [ + "Annual judicial statistics: case filings, disposals, and backlogs for all courts (district/basic, intermediate, high, and supreme) nationwide", + "Case type breakdown: criminal, civil, commercial, intellectual property, administrative, maritime, and enforcement case volumes by jurisdiction", + "Trial outcomes: conviction rates, acquittal rates, mediation rates, and appeal rates for major case categories", + "Enforcement statistics: number and value of enforcement cases, enforcement success rates, and listing of dishonest debtors", + "China Judgments Online: full-text database of court decisions from all levels of Chinese courts (100M+ documents)", + "Judicial interpretation texts: all binding SPC interpretations and replies, with effective dates and subject matter", + "Court efficiency indicators: average case resolution time, case clearance rates, and cross-jurisdictional comparison data", + "People's assessors data: participation rates of lay assessors (人民陪审员) in trials across China" + ], + "zh": [ + "年度司法统计:全国各级法院(基层法院、中级法院、高级法院和最高法院)案件受理、办结及待结数据", + "案件类型分布:按管辖区域分列的刑事、民事、商事、知识产权、行政、海事和执行案件数量", + "裁判结果:主要案件类型的定罪率、无罪率、调解率和上诉率", + "执行统计:执行案件数量和标的额、执行到位率及失信被执行人名单", + "中国裁判文书网:全国各级法院裁判文书全文数据库(逾1亿份文书)", + "司法解释文本:最高人民法院全部具有约束力的解释和批复,含施行日期和主题", + "审判效率指标:平均结案时间、结案率及跨辖区比较数据", + "人民陪审员数据:人民陪审员在全国各地法院审判活动中的参与情况" + ] + } +} diff --git a/firstdata/sources/china/governance/china-spp.json b/firstdata/sources/china/governance/china-spp.json new file mode 100644 index 00000000..d74fe65b --- /dev/null +++ b/firstdata/sources/china/governance/china-spp.json @@ -0,0 +1,79 @@ +{ + "id": "china-spp", + "name": { + "en": "Supreme People's Procuratorate of China", + "zh": "最高人民检察院" + }, + "description": { + "en": "The Supreme People's Procuratorate (SPP) is China's highest procuratorial authority, responsible for legal supervision of the entire criminal justice system including investigation, prosecution, trial, and sentence execution. The SPP publishes comprehensive annual procuratorial statistics covering the full spectrum of criminal cases handled by prosecutors at all levels — district, intermediate, and provincial — across China's 31 provincial jurisdictions. Its statistical releases include data on criminal arrests, prosecutions, non-prosecution decisions, public interest litigation, and supervision of public officials. The SPP also issues white papers on specific crime types, anti-corruption prosecution outcomes, juvenile crime, and environmental protection enforcement. Through its public prosecution database and annual work report presented to the National People's Congress, the SPP provides authoritative data on China's criminal justice trends, enforcement priorities, and rule-of-law development.", + "zh": "最高人民检察院(最高检)是中国最高检察机关,负责对侦查、起诉、审判和刑罚执行全过程进行法律监督。最高检每年发布覆盖全国31个省级行政区各级(基层、中级、高级)检察院办理刑事案件情况的全面检察统计数据,内容涵盖逮捕、提起公诉、不起诉决定、公益诉讼和对公职人员的监督。最高检还就特定犯罪类型、反腐败起诉结果、未成年人犯罪和环境保护执法发布白皮书。通过公开的检察数据库和每年向全国人民代表大会提交的工作报告,最高检提供关于中国刑事司法趋势、执法重点和法治建设的权威数据。" + }, + "website": "https://www.spp.gov.cn/", + "data_url": "https://www.spp.gov.cn/spp/jcdt/jcgzdt/index_1.shtml", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "governance", + "law", + "social", + "regulatory" + ], + "update_frequency": "annual", + "tags": [ + "最高人民检察院", + "spp", + "supreme-people's-procuratorate", + "检察统计", + "procuratorial-statistics", + "刑事起诉", + "criminal-prosecution", + "逮捕数据", + "arrest-data", + "不起诉", + "non-prosecution", + "公益诉讼", + "public-interest-litigation", + "反腐败", + "anti-corruption", + "职务犯罪", + "duty-crimes", + "未成年人犯罪", + "juvenile-crime", + "环境违法", + "environmental-enforcement", + "检察白皮书", + "procuratorial-white-paper", + "检察工作报告", + "procuratorial-work-report", + "刑事司法", + "criminal-justice", + "法律监督", + "legal-supervision", + "司法数据", + "judicial-data" + ], + "data_content": { + "en": [ + "Annual procuratorial statistics: case counts for arrests approved, prosecutions initiated, and non-prosecution decisions by crime category and provincial jurisdiction", + "Anti-corruption prosecution data: number of officials investigated and prosecuted for corruption, bribery, and dereliction of duty, including senior official cases", + "Criminal justice pipeline: data on cases transferred from public security to prosecution, prosecution rates, and conviction outcomes from court proceedings", + "Public interest litigation statistics: civil and administrative public interest cases filed by procuratorates in environmental, food safety, land, and state asset protection domains", + "Juvenile crime statistics: cases involving minors as offenders or victims, including trends in internet-related offenses and campus safety incidents", + "Environmental enforcement: prosecutions of illegal dumping, pollution discharge, poaching, and other environmental crimes under the Criminal Law", + "Financial and securities crimes: prosecution data on fraud, money laundering, securities manipulation, and corporate crime", + "Annual work reports to NPC: official annual reports to the National People's Congress summarizing prosecution outcomes, reform priorities, and rule-of-law indicators" + ], + "zh": [ + "年度检察统计:按犯罪类型和省级行政区分列的批准逮捕、提起公诉和不起诉案件数量", + "反腐败起诉数据:被侦查和起诉的腐败、受贿及渎职公职人员数量,包括高级别案件", + "刑事司法流程:公安机关移送审查起诉案件数、起诉率和法院审判结果", + "公益诉讼统计:检察机关在环境、食品安全、土地和国有资产保护领域提起的民事和行政公益诉讼案件", + "未成年人犯罪统计:未成年人涉案(作为加害人或被害人)案件,包括网络犯罪和校园安全事件趋势", + "环境违法执法:依据《刑法》对非法排污、非法狩猎等环境犯罪的起诉数据", + "金融和证券犯罪:欺诈、洗钱、证券操纵和企业犯罪起诉数据", + "向全国人大工作报告:关于起诉结果、改革重点和法治指标的年度官方报告" + ] + } +} diff --git a/firstdata/sources/china/governance/china-stma.json b/firstdata/sources/china/governance/china-stma.json new file mode 100644 index 00000000..d5bc86aa --- /dev/null +++ b/firstdata/sources/china/governance/china-stma.json @@ -0,0 +1,71 @@ +{ + "id": "china-stma", + "name": { + "en": "State Tobacco Monopoly Administration of China", + "zh": "国家烟草专卖局" + }, + "description": { + "en": "The State Tobacco Monopoly Administration (STMA) is the central government agency responsible for overseeing and regulating China's tobacco industry under a state monopoly system. China is the world's largest tobacco producer and consumer, and STMA controls all aspects of tobacco production, distribution, and sales in the country. It publishes annual and periodic statistics on cigarette output, tobacco leaf production by province, industry revenue, tax contributions, and export data. STMA data is essential for global tobacco market analysis, public health policy research, and understanding China's agricultural and fiscal landscape, as tobacco taxation contributes significantly to government revenue.", + "zh": "国家烟草专卖局(国家局)是负责监管中国烟草行业的中央政府机构,实行国家专卷制度。中国是全球最大的烟草生产国和消费国,国家烟草专卖局统一管理全国烟草的生产、流通和销售。局方发布卷烟产量、各省烟叶生产、行业营收、税利贡献及出口等年度和阶段性统计数据。国家烟草专卖局的数据对于全球烟草市场分析、公共卫生政策研究以及了解中国农业和财税格局至关重要,烟草税是政府财政收入的重要来源。" + }, + "website": "https://www.tobacco.gov.cn/", + "data_url": "https://www.tobacco.gov.cn/html/42/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "economics", + "industry", + "agriculture", + "governance" + ], + "update_frequency": "annual", + "tags": [ + "国家烟草专卖局", + "stma", + "state-tobacco-monopoly-administration", + "烟草行业", + "tobacco-industry", + "卷烟产量", + "cigarette-production", + "烟叶产量", + "tobacco-leaf-production", + "烟草税利", + "tobacco-tax-revenue", + "中国烟草", + "china-tobacco", + "烟草专卖", + "tobacco-monopoly", + "烟草出口", + "tobacco-export", + "行业统计", + "industry-statistics", + "公共卫生", + "public-health", + "农业生产", + "agricultural-production" + ], + "data_content": { + "en": [ + "Cigarette production: annual and periodic output volumes by major brand group and manufacturing enterprise", + "Tobacco leaf: provincial production data for flue-cured tobacco, covering major growing areas such as Yunnan, Guizhou, Henan, and Hunan", + "Industry revenue and taxes: total industry revenue, profit, and tobacco tax contributions to central and local government budgets", + "Sales and distribution: domestic cigarette sales volumes, retail sales by region, and wholesale distribution data", + "Export statistics: cigarette and tobacco leaf export volumes and values by destination country", + "Enterprise performance: operational data for major state-owned tobacco groups (e.g., China Tobacco Yunnan Industrial Co.)", + "Import data: imported tobacco leaf and cigarette volumes and declared values", + "Industry overview reports: annual industry development reports summarizing production, revenue, and policy priorities" + ], + "zh": [ + "卷烟产量:主要品牌集团和生产企业的年度及阶段性卷烟产量", + "烟叶生产:烤烟各省产量数据,涵盖云南、贵州、河南、湖南等主产区", + "行业税利:行业总营收、利润及烟草税对中央和地方财政的贡献", + "销售与流通:国内卷烟销量、各地区零售销售额和批发流通数据", + "出口统计:按目的地国家分类的卷烟和烟叶出口量及出口额", + "企业经营:主要国有烟草集团(如云南中烟工业有限责任公司)运营数据", + "进口数据:进口烟叶和卷烟数量及申报价值", + "行业综述报告:汇总生产、税利和政策重点的年度行业发展报告" + ] + } +} diff --git a/firstdata/sources/china/governance/china-wenshu.json b/firstdata/sources/china/governance/china-wenshu.json new file mode 100644 index 00000000..5405411c --- /dev/null +++ b/firstdata/sources/china/governance/china-wenshu.json @@ -0,0 +1,71 @@ +{ + "id": "china-wenshu", + "name": { + "en": "China Judgments Online", + "zh": "中国裁判文书网" + }, + "description": { + "en": "China Judgments Online (Wenshu) is the official public disclosure platform for judicial documents operated by the Supreme People's Court of China. Launched in 2013, it is one of the world's largest databases of court judgments, hosting hundreds of millions of judicial documents from courts at all levels across China — from the Supreme People's Court down to district courts. The platform provides full-text access to civil, criminal, administrative, enforcement, and state compensation rulings, and is a critical resource for legal research, compliance due diligence, litigation analytics, and empirical legal studies. The database reflects China's judicial transparency initiative and is widely used by lawyers, academics, and corporate legal teams to research case precedents, litigation trends, and judicial interpretations.", + "zh": "中国裁判文书网是最高人民法院运营的司法文书官方公开平台。该平台于2013年上线,是全球最大的裁判文书数据库之一,收录了从最高人民法院到基层法院各级法院的数亿份司法文书。平台提供民事、刑事、行政、执行及国家赔偿裁判文书的全文访问,是法律研究、合规尽调、诉讼分析及实证法学研究的重要资源。该数据库是中国司法公开改革的重要体现,被律师、学者及企业法务广泛用于研究案例先例、诉讼趋势及司法解释。" + }, + "website": "https://wenshu.court.gov.cn", + "data_url": "https://wenshu.court.gov.cn/website/wenshu/181107ANFZ0BXSK4/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "legal", + "governance" + ], + "update_frequency": "daily", + "tags": [ + "裁判文书", + "court-judgment", + "司法文书", + "judicial-document", + "最高人民法院", + "supreme-people's-court", + "民事判决", + "civil-judgment", + "刑事判决", + "criminal-judgment", + "行政诉讼", + "administrative-litigation", + "法律研究", + "legal-research", + "案例数据库", + "case-database", + "司法透明", + "judicial-transparency", + "诉讼分析", + "litigation-analytics", + "合规尽调", + "compliance-due-diligence", + "法律科技", + "legal-tech", + "中国法院", + "chinese-courts", + "审判公开" + ], + "data_content": { + "en": [ + "Civil judgments: first, second, and retrial instance decisions on civil disputes including contracts, property, family, labor, and corporate matters", + "Criminal judgments: rulings in criminal cases at all court levels covering the full range of criminal offenses", + "Administrative judgments: decisions in cases where citizens or entities sue government bodies for administrative actions", + "Enforcement rulings: court orders and decisions related to the enforcement of judgments", + "State compensation rulings: decisions on claims for state compensation for wrongful government acts", + "Full-text search: keyword and structured search across hundreds of millions of judicial documents by case type, court level, region, and year", + "Judicial statistics: aggregate data on caseload trends, case types, and court-level distribution" + ], + "zh": [ + "民事判决:涵盖合同、物权、家事、劳动、公司等事项的一审、二审及再审裁判文书", + "刑事判决:各级法院对全部刑事罪名的刑事裁判文书", + "行政判决:公民或机构就行政行为起诉政府机关的裁判文书", + "执行裁定:与判决执行相关的法院命令及裁定", + "国家赔偿裁定:对政府违法行为提出国家赔偿请求的裁定", + "全文检索:通过案件类型、法院层级、地区、年份等对数亿份司法文书进行关键词和结构化检索", + "司法统计:案件数量趋势、案件类型及法院层级分布的汇总数据" + ] + } +} diff --git a/firstdata/sources/china/governance/culture/china-cflac.json b/firstdata/sources/china/governance/culture/china-cflac.json new file mode 100644 index 00000000..f7d154b3 --- /dev/null +++ b/firstdata/sources/china/governance/culture/china-cflac.json @@ -0,0 +1,55 @@ +{ + "id": "china-cflac", + "name": { + "en": "China Federation of Literary and Art Circles", + "zh": "中国文学艺术界联合会" + }, + "description": { + "en": "The China Federation of Literary and Art Circles (CFLAC) is the top-level national organization uniting Chinese artists, writers, filmmakers, musicians, and other creative professionals. Its official portal, China Art Net (中国文艺网), publishes statistics and reports on the development of China's cultural and creative industries, including performing arts attendance, film production data, literary output, fine arts exhibition records, and cultural infrastructure statistics. CFLAC provides the authoritative institutional perspective on trends in Chinese culture and the arts sector.", + "zh": "中国文学艺术界联合会(中国文联)是联合全国文艺界的最高全国性组织,涵盖作家、电影人、音乐家等各类文艺工作者。其官方门户《中国文艺网》发布中国文化创意产业发展统计报告,内容涵盖演艺观众人次、影视产量、文学创作成果、美术展览记录及文化基础设施数据。中国文联为了解中国文化与艺术行业趋势提供了权威的机构视角。" + }, + "website": "https://www.cflac.org.cn", + "data_url": "https://www.cflac.org.cn", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "update_frequency": "irregular", + "domains": [ + "culture", + "arts", + "media" + ], + "tags": [ + "china", + "cflac", + "中国文联", + "arts-culture", + "文学艺术", + "performing-arts", + "表演艺术", + "literature", + "文学", + "film", + "电影", + "music", + "creative-industry", + "文化产业" + ], + "data_content": { + "en": [ + "Cultural Industry Reports - Annual statistics on China's performing arts, visual arts, and literary output", + "Film and TV Production Data - Feature film production counts, box office reference data, and broadcasting statistics", + "Performing Arts Attendance - Audience numbers and venue statistics for theater, opera, dance, and music performances", + "Arts Exhibition Records - National and regional fine arts and photography exhibition statistics", + "Cultural Infrastructure Data - Statistics on cultural venues, art museums, libraries, and performance spaces" + ], + "zh": [ + "文化产业报告 - 中国演艺、视觉艺术及文学创作年度统计", + "影视制作数据 - 故事片产量、票房参考数据及播出统计", + "演艺观众数据 - 戏剧、歌剧、舞蹈、音乐演出的观众人次及场馆统计", + "美术展览记录 - 全国及地方美术、摄影展览统计", + "文化基础设施数据 - 文化场馆、美术馆、图书馆及演出场所统计" + ] + } +} diff --git a/firstdata/sources/china/governance/culture/china-cnaf.json b/firstdata/sources/china/governance/culture/china-cnaf.json new file mode 100644 index 00000000..559a2d68 --- /dev/null +++ b/firstdata/sources/china/governance/culture/china-cnaf.json @@ -0,0 +1,57 @@ +{ + "id": "china-cnaf", + "name": { + "en": "China National Arts Fund", + "zh": "国家艺术基金" + }, + "description": { + "en": "The China National Arts Fund (CNAF) is a public fund established by the State Council and administered by the Ministry of Culture and Tourism and the Ministry of Finance. It supports artistic creation, talent training, communication and dissemination, and international cultural exchange across stage performance, visual arts, literature, and mass culture. CNAF publishes annual funding project lists, grantee information, project outcomes, funding statistics by discipline and region, and evaluation reports, providing authoritative data on China's public arts funding, cultural industry development, and artistic output.", + "zh": "国家艺术基金(CNAF)是经国务院批准设立、由文化和旅游部和财政部共同管理的公益性基金,旨在资助艺术创作、人才培养、传播交流推广及对外文化交流,覆盖舞台艺术、美术、文学及群众文化等领域。基金公示年度立项项目名单、资助对象信息、项目成果、按艺术门类与地区分类的资助统计及评审报告,是中国公共艺术资助、文化事业发展和艺术创作产出的权威数据来源。" + }, + "website": "https://www.cnaf.cn", + "data_url": "https://www.cnaf.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "update_frequency": "annual", + "domains": [ + "culture", + "arts", + "public-funding", + "governance" + ], + "tags": [ + "china", + "cnaf", + "国家艺术基金", + "arts", + "艺术", + "culture", + "文化", + "public-funding", + "公益基金", + "stage-performance", + "舞台艺术", + "visual-arts", + "美术", + "cultural-industry", + "文化产业" + ], + "data_content": { + "en": [ + "Annual Funded Project Lists - Approved projects by year with grantee name, project title, and funding amount", + "Grantee Information - Disclosure of individual artists and institutions awarded funding with project categories", + "Funding Statistics - Total funding amount by discipline (stage, visual arts, literature), region, and project type", + "Project Outcomes - Performance tours, exhibitions, publications and talent cultivation results from funded projects", + "Evaluation Reports - Midterm and final project evaluation outcomes and public oversight records" + ], + "zh": [ + "年度立项项目名单 - 按年度公布的获批项目,含申报主体、项目名称及资助金额", + "资助对象信息 - 获资助的艺术家个人和机构及其项目类别公示", + "资助统计 - 按艺术门类(舞台、美术、文学)、地区及项目类型分类的资助总额", + "项目成果 - 获资助项目的巡演、展览、出版及人才培养成果", + "评审报告 - 项目中期及结项评审结果与公共监督记录" + ] + } +} diff --git a/firstdata/sources/china/governance/culture/china-film-admin.json b/firstdata/sources/china/governance/culture/china-film-admin.json new file mode 100644 index 00000000..8d796d1f --- /dev/null +++ b/firstdata/sources/china/governance/culture/china-film-admin.json @@ -0,0 +1,63 @@ +{ + "id": "china-film-admin", + "name": { + "en": "National Film Administration of China", + "zh": "国家电影局" + }, + "description": { + "en": "The National Film Administration (NFA, 国家电影局) is the Chinese government agency under the Central Propaganda Department responsible for supervising and managing the country's film industry. It regulates film production, distribution, exhibition, and import/export, while publishing authoritative statistics on China's box office performance, cinema screen counts, film production output, and audience attendance. China is the world's second-largest film market, with annual box office revenues exceeding 40 billion yuan. The NFA releases monthly and annual box office data through its official channels, making it the primary source for tracking China's cinema industry trends, blockbuster performance, domestic vs. imported film market share, and national cinema infrastructure expansion.", + "zh": "国家电影局是中央宣传部主管的政府机构,负责对电影业进行监督管理。主要职能包括电影制作、发行、放映、进出口的监管,并发布权威的票房统计、银幕数量、电影产量及观影人次数据。中国是全球第二大电影市场,年票房规模超过400亿元。国家电影局通过官方渠道发布月度和年度票房数据,是追踪中国院线产业趋势、国产与进口影片市场占比及全国影院基础设施建设情况的首要数据来源。" + }, + "website": "https://www.chinafilm.gov.cn", + "data_url": "https://www.chinafilm.gov.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "culture", + "media", + "economics" + ], + "update_frequency": "monthly", + "tags": [ + "国家电影局", + "nfa", + "电影票房", + "box-office", + "院线数据", + "cinema-statistics", + "银幕数量", + "screen-count", + "电影产业", + "film-industry", + "国产电影", + "domestic-film", + "进口影片", + "imported-film", + "观影人次", + "admissions" + ], + "data_content": { + "en": [ + "Monthly and annual box office revenue - total national box office receipts, including domestic and imported film performance", + "Cinema screen count - nationwide number of screens, cinema locations, and digital projection equipment", + "Film production output - annual number of films approved for production, completed productions, and genre breakdowns", + "Import quota and performance - approved foreign film titles, release dates, and box office contribution of imported films", + "Audience attendance statistics - annual admissions data and per-capita attendance trends", + "Market share analysis - domestic vs. imported film revenue shares and top-grossing titles", + "Cinema infrastructure expansion - new cinema openings and regional distribution of exhibition venues", + "Annual China Film Industry Report - comprehensive review of market size, key titles, and policy developments" + ], + "zh": [ + "月度和年度票房数据 - 全国总票房及国产与进口影片的分项数据", + "院线银幕数量 - 全国银幕总数、影院数量及数字放映设备情况", + "电影产量 - 年度获批立项影片数量、完成产量及题材类型分布", + "进口影片配额与票房 - 批准上映的境外影片名单、上映日期及票房贡献", + "观影人次统计 - 年度观影人次及人均观影次数趋势", + "市场份额分析 - 国产与进口影片票房占比及年度票房冠军", + "院线基础设施扩张 - 新开影院数量及影院区域分布情况", + "中国电影产业年度报告 - 市场规模、重点影片及政策进展综合分析" + ] + } +} diff --git a/firstdata/sources/china/governance/culture/china-national-museum.json b/firstdata/sources/china/governance/culture/china-national-museum.json new file mode 100644 index 00000000..3241eb43 --- /dev/null +++ b/firstdata/sources/china/governance/culture/china-national-museum.json @@ -0,0 +1,57 @@ +{ + "id": "china-national-museum", + "name": { + "en": "National Museum of China", + "zh": "中国国家博物馆" + }, + "description": { + "en": "The National Museum of China (NMC) is the premier national museum under the Ministry of Culture and Tourism, housing over 1.4 million artifacts spanning 5,000 years of Chinese history and culture. It publishes authoritative data on cultural relics, historical exhibitions, archaeological discoveries, and cultural heritage collections in China.", + "zh": "中国国家博物馆(国博)是文化和旅游部直属的最高历史文化艺术殿堂,馆藏逾140万件文物,涵盖5000年中国历史与文化,发布文物典藏、历史展览、考古发现及中国文化遗产的权威数据。" + }, + "website": "https://www.chnmuseum.cn", + "data_url": "https://www.chnmuseum.cn/zp/zpml/", + "api_url": null, + "country": "CN", + "domains": [ + "culture", + "history", + "heritage" + ], + "geographic_scope": "national", + "update_frequency": "irregular", + "tags": [ + "china", + "国家博物馆", + "national-museum", + "cultural-relics", + "文物", + "cultural-heritage", + "文化遗产", + "archaeology", + "考古", + "history", + "历史", + "collections", + "藏品", + "exhibitions", + "展览", + "art" + ], + "data_content": { + "en": [ + "Collection Catalog - Searchable database of over 1.4 million artifacts with high-resolution images and descriptions", + "Exhibition Records - Historical and current exhibition information and catalogs", + "Archaeological Reports - Data on major archaeological discoveries and excavations in China", + "Cultural Relic Categories - Classification and provenance data for bronzes, ceramics, calligraphy, paintings, and more", + "Digital Resources - Digitized collection items, 3D models, and virtual exhibitions" + ], + "zh": [ + "藏品目录 - 逾140万件文物的可检索数据库,含高清图像和文字说明", + "展览记录 - 历史和现有展览信息及目录", + "考古报告 - 中国重大考古发现和发掘数据", + "文物分类 - 青铜器、陶瓷、书法、绘画等文物的分类和来源数据", + "数字资源 - 数字化藏品、三维模型和虚拟展览" + ] + }, + "authority_level": "government" +} diff --git a/firstdata/sources/china/governance/sports/china-gas.json b/firstdata/sources/china/governance/sports/china-gas.json new file mode 100644 index 00000000..a12f2364 --- /dev/null +++ b/firstdata/sources/china/governance/sports/china-gas.json @@ -0,0 +1,62 @@ +{ + "id": "china-gas", + "name": { + "en": "General Administration of Sport of China", + "zh": "国家体育总局" + }, + "description": { + "en": "The General Administration of Sport of China (GAS) is the national government agency responsible for sports administration, sports industry regulation, and sports statistics. It publishes official data on national fitness participation, competitive sports performance, sports industry output, lottery revenues, and the development of sports infrastructure across China. Key publications include the National Fitness Development Statistics Bulletin and China Sports Industry Statistics.", + "zh": "国家体育总局是负责体育行政管理、体育产业监管和体育统计的国家政府机构,发布全民健身参与情况、竞技体育成绩、体育产业产出、体育彩票收入及全国体育设施建设等官方数据。主要出版物包括全民健身活动状况调查公报和中国体育产业统计年鉴。" + }, + "website": "https://www.sport.gov.cn/", + "data_url": "https://www.sport.gov.cn/n315/n330/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "sports", + "social", + "economics", + "statistics" + ], + "update_frequency": "annual", + "tags": [ + "体育总局", + "gas", + "sports-statistics", + "体育统计", + "national-fitness", + "全民健身", + "sports-industry", + "体育产业", + "competitive-sports", + "竞技体育", + "sports-lottery", + "体育彩票", + "sports-infrastructure", + "体育设施", + "china-sports", + "中国体育" + ], + "data_content": { + "en": [ + "National Fitness Activity Status Survey: participation rates, exercise frequency, preferred sports types by age and region", + "Sports industry statistics: total output value, added value, employment, and sub-sector breakdown of China's sports industry", + "Sports lottery sales data: annual and monthly revenue by lottery type (Zhucai and Ticai), regional distribution", + "Competitive sports achievement data: national games results, international competition medals, athlete registration statistics", + "Sports facility census: number and distribution of sports venues, per capita sports area by province", + "Mass sports development: sports clubs, sports associations, community fitness centers nationwide", + "China Sports Yearbook: comprehensive annual statistical compilation of all sports-related data" + ], + "zh": [ + "全民健身活动状况调查:各年龄段及地区的参与率、锻炼频率、偏好运动项目", + "体育产业统计:中国体育产业总产出、增加值、就业人数及各细分行业数据", + "体育彩票销售数据:竞彩和体彩各类彩票年度及月度收入、地区分布", + "竞技体育成绩数据:全国运动会成绩、国际赛事奖牌、运动员注册统计", + "体育场地普查:各省体育场馆数量与分布、人均体育用地面积", + "群众体育发展:全国体育俱乐部、体育协会、社区健身中心情况", + "中国体育年鉴:各类体育数据的综合年度统计汇编" + ] + } +} diff --git a/firstdata/sources/china/health/china-cacm.json b/firstdata/sources/china/health/china-cacm.json new file mode 100644 index 00000000..52095715 --- /dev/null +++ b/firstdata/sources/china/health/china-cacm.json @@ -0,0 +1,46 @@ +{ + "id": "china-cacm", + "name": { + "en": "Chinese Association of Chinese Medicine", + "zh": "中华中医药学会" + }, + "description": { + "en": "The Chinese Association of Chinese Medicine (CACM) is China's largest national academic organization in the field of traditional Chinese medicine (TCM). Founded in 1979, it publishes clinical guidelines, TCM research standards, disease classification standards, academic journals, and annual reports on the development of traditional Chinese medicine in China.", + "zh": "中华中医药学会(CACM)是中国最大的中医药全国性学术团体,成立于1979年。发布中医药临床指南、研究标准、疾病分类标准、学术期刊及中国中医药事业发展年度报告。" + }, + "website": "https://www.cacm.org.cn", + "data_url": "https://www.cacm.org.cn", + "api_url": null, + "country": "CN", + "domains": [ + "health", + "research", + "social" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "china", + "tcm", + "traditional-chinese-medicine" + ], + "data_content": { + "en": [ + "TCM Clinical Guidelines - Evidence-based guidelines for traditional Chinese medicine treatments", + "TCM Research Standards - Methodological standards for TCM clinical research", + "Disease Classification - TCM-specific disease nomenclature and classification standards", + "Annual Development Report - Statistical overview of TCM industry, hospitals, and practitioners", + "Academic Journals - Peer-reviewed publications on TCM clinical practice and research", + "TCM Education Statistics - Data on TCM universities, graduates, and training programs" + ], + "zh": [ + "中医临床指南 - 中医药治疗方案的循证指南", + "中医科研标准 - 中医临床研究方法学标准", + "疾病分类标准 - 中医特有疾病命名与分类标准", + "年度发展报告 - 中医药行业、医院及从业人员统计概况", + "学术期刊 - 中医药临床实践与研究同行评审出版物", + "中医教育统计 - 中医院校、毕业生及培训项目数据" + ] + }, + "authority_level": "research" +} diff --git a/firstdata/sources/china/health/china-cacms.json b/firstdata/sources/china/health/china-cacms.json new file mode 100644 index 00000000..f5ebb1bf --- /dev/null +++ b/firstdata/sources/china/health/china-cacms.json @@ -0,0 +1,66 @@ +{ + "id": "china-cacms", + "name": { + "en": "China Academy of Chinese Medical Sciences", + "zh": "中国中医科学院" + }, + "description": { + "en": "The China Academy of Chinese Medical Sciences (CACMS) is China's highest academic and research institution dedicated to traditional Chinese medicine (TCM). Established in 1955, CACMS operates research institutes covering basic TCM theory, clinical medicine, acupuncture-moxibustion, Chinese materia medica, and TCM history. CACMS publishes research findings on TCM treatment efficacy, Chinese herb pharmacology, and integrative medicine. It also hosts the China TCM Data Center which maintains databases on medicinal plant resources, classical formulas, clinical trial data, and TCM literature, serving as the authoritative repository for TCM scientific knowledge in China.", + "zh": "中国中医科学院是中国最高级别的中医药学术与研究机构,成立于1955年。院下设多个研究所,涵盖中医基础理论、临床医学、针灸推拿、中药学和中医史学。院内发布中医疗效、中药药理及中西医结合的研究成果。院内还设有中国中医药数据中心,维护药用植物资源、经典方剂、临床试验数据及中医药文献数据库,是中国中医药科学知识的权威存储库。" + }, + "website": "https://www.cacms.ac.cn", + "data_url": "https://www.cacms.ac.cn/index.html", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "health", + "traditional-medicine", + "pharmacology" + ], + "update_frequency": "irregular", + "tags": [ + "中国中医科学院", + "cacms", + "traditional-chinese-medicine", + "中医", + "tcm", + "acupuncture", + "针灸", + "chinese-materia-medica", + "中药", + "herbal-medicine", + "草药", + "integrative-medicine", + "中西医结合", + "medicinal-plants", + "药用植物", + "classical-formulas", + "经典方剂", + "tcm-research", + "中医研究", + "pharmacology", + "药理学" + ], + "data_content": { + "en": [ + "TCM Clinical Research Data - Results from clinical trials on traditional Chinese medicine treatments for various conditions", + "Chinese Materia Medica Database - Comprehensive data on Chinese medicinal herbs including composition, efficacy, and safety", + "Classical Formula Repository - Systematic documentation of traditional prescription formulas and their clinical applications", + "Medicinal Plant Resource Data - Distribution, species classification, and resource assessment of medicinal plants in China", + "Acupuncture Research Findings - Evidence-based research publications on acupuncture and moxibustion treatments", + "TCM Literature Database - Digitized classical texts and modern research papers on traditional Chinese medicine", + "Annual TCM Industry Report - Statistical overview of the TCM research, production, and clinical application landscape" + ], + "zh": [ + "中医临床研究数据 - 中医药治疗各类疾病的临床试验结果", + "中药资源数据库 - 中药材成分、功效及安全性综合数据", + "经典方剂库 - 传统处方的系统文献整理及临床应用记录", + "药用植物资源数据 - 中国药用植物的分布、种类及资源评估", + "针灸研究成果 - 针灸及艾灸治疗的循证医学研究成果", + "中医文献数据库 - 中医经典古籍数字化文本及现代研究论文", + "中医药产业年度报告 - 中医药研究、生产及临床应用发展概况统计" + ] + } +} diff --git a/firstdata/sources/china/health/china-cams.json b/firstdata/sources/china/health/china-cams.json new file mode 100644 index 00000000..28e966d6 --- /dev/null +++ b/firstdata/sources/china/health/china-cams.json @@ -0,0 +1,75 @@ +{ + "id": "china-cams", + "name": { + "en": "Chinese Academy of Medical Sciences (CAMS)", + "zh": "中国医学科学院" + }, + "description": { + "en": "The Chinese Academy of Medical Sciences (CAMS), together with its affiliated Peking Union Medical College (PUMC), is China's premier national medical research institution, established in 1956 and headquartered in Beijing. CAMS oversees 18 research institutes, 6 hospitals, and multiple national key laboratories covering clinical medicine, basic medical research, biomedical engineering, pharmacology, oncology, and infectious disease. As a national-level authority, CAMS produces authoritative data on medical research outputs, drug development pipelines, disease burden studies, clinical trial registrations, genomic research, and population health surveys. CAMS hosts the Chinese Health Statistics Yearbook data and major disease surveillance programs, providing essential datasets for public health policy, pharmaceutical research, and clinical practice.", + "zh": "中国医学科学院(CAMS)是中国最高医学研究机构,与北京协和医学院实行院校合一管理体制,成立于1956年,总部位于北京。中国医学科学院下设18个研究所、6所附属医院和多个国家重点实验室,覆盖临床医学、基础医学、生物医学工程、药理学、肿瘤学和传染病学等领域。作为国家级机构,中国医学科学院产出权威的医学研究成果数据、药物研发管线、疾病负担研究、临床试验注册、基因组研究及人群健康调查数据。院校还承担《中国卫生统计年鉴》数据汇编及重要疾病监测项目,为公共卫生政策、医药研究和临床实践提供核心数据集。" + }, + "website": "https://www.cams.cn", + "data_url": "https://www.cams.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "health", + "research", + "pharmaceuticals" + ], + "update_frequency": "irregular", + "tags": [ + "中国医学科学院", + "cams", + "协和医学院", + "pumc", + "医学研究", + "medical-research", + "药物研发", + "drug-development", + "临床试验", + "clinical-trials", + "肿瘤学", + "oncology", + "传染病", + "infectious-disease", + "基因组学", + "genomics", + "公共卫生", + "public-health", + "疾病监测", + "disease-surveillance", + "国家重点实验室", + "national-key-laboratory", + "医学数据", + "medical-data" + ], + "data_content": { + "en": [ + "Medical research publications and datasets from 18 research institutes covering all major biomedical fields", + "Oncology data: cancer incidence, mortality, survival rates from affiliated cancer hospitals and national tumor registries", + "Infectious disease research: epidemiological data, pathogen surveillance, vaccine efficacy studies", + "Drug development pipeline: clinical trial registration data, pharmacological research, drug safety monitoring", + "Genomic and proteomics research data from national platforms affiliated with CAMS", + "Population health surveys: chronic disease prevalence, risk factor surveillance, health behavior studies", + "Medical device and biomedical engineering research data", + "Disease burden studies: DALYs, mortality statistics, disability-adjusted life year analyses", + "Health technology assessment reports supporting national essential medicine list updates", + "Chinese Pharmacopoeia data and quality standards for pharmaceuticals" + ], + "zh": [ + "18个研究所涵盖所有主要生物医学领域的科研成果和数据集", + "肿瘤数据:来自附属肿瘤医院和全国肿瘤登记处的癌症发病率、死亡率和生存率", + "传染病研究:流行病学数据、病原体监测、疫苗效力研究", + "药物研发管线:临床试验注册数据、药理学研究、药物安全监测", + "与中国医学科学院相关联的国家平台的基因组和蛋白质组研究数据", + "人群健康调查:慢性病患病率、危险因素监测、健康行为研究", + "医疗器械和生物医学工程研究数据", + "疾病负担研究:伤残调整寿命年分析、死亡率统计", + "支持国家基本药物目录更新的卫生技术评估报告", + "《中华人民共和国药典》数据及药品质量标准" + ] + } +} diff --git a/firstdata/sources/china/health/china-catcm.json b/firstdata/sources/china/health/china-catcm.json new file mode 100644 index 00000000..921b47c6 --- /dev/null +++ b/firstdata/sources/china/health/china-catcm.json @@ -0,0 +1,56 @@ +{ + "id": "china-catcm", + "name": { + "en": "China Association of Traditional Chinese Medicine", + "zh": "中国中药协会" + }, + "description": { + "en": "The China Association of Traditional Chinese Medicine (CATCM) is the national industry organization representing traditional Chinese medicine (TCM) enterprises, including herbal medicine producers, processors, and distributors. CATCM publishes authoritative market statistics on TCM herb production volumes, wholesale prices of medicinal materials, industry output value, trade data, and market trend analyses. It is the primary source for supply-and-demand data on Chinese herbal medicine markets and a key reference for TCM industry policy and standardization.", + "zh": "中国中药协会(中药协)是代表中药企业(含中药材生产、加工、流通企业)的全国性行业组织。协会发布权威的中药材产量、中药材市场批发价格、行业产值、进出口贸易数据及市场趋势分析,是了解中药材供需行情和中药产业政策、标准化工作的主要数据来源。" + }, + "website": "https://www.catcm.org.cn", + "data_url": "https://www.catcm.org.cn", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "update_frequency": "monthly", + "domains": [ + "health", + "pharmaceuticals", + "agriculture", + "trade" + ], + "tags": [ + "china", + "catcm", + "中药协", + "traditional-chinese-medicine", + "中医药", + "herbal-medicine", + "中药材", + "tcm", + "medicinal-herbs", + "药材价格", + "herb-prices", + "中药产业", + "pharmaceuticals", + "market-data" + ], + "data_content": { + "en": [ + "TCM Herb Market Prices - Wholesale price indices for hundreds of traditional Chinese medicinal herbs", + "Industry Output Statistics - Annual output value, production volumes, and enterprise data for TCM industry", + "Import/Export Trade Data - TCM herb and product trade statistics with major partner countries", + "Market Trend Reports - Periodic analyses of supply-demand dynamics in Chinese herbal medicine markets", + "Policy and Standardization Documents - Industry standards, quality specifications, and regulatory guidance for TCM materials" + ], + "zh": [ + "中药材市场价格 - 数百种中药材批发价格指数", + "行业产值统计 - 中药行业年度产值、产量及企业数据", + "进出口贸易数据 - 中药材及中药产品与主要贸易伙伴的贸易统计", + "市场趋势报告 - 中药材市场供需动态的阶段性分析", + "政策与标准化文件 - 中药材行业标准、质量规范及监管指引" + ] + } +} diff --git a/firstdata/sources/china/health/china-cdc.json b/firstdata/sources/china/health/china-cdc.json new file mode 100644 index 00000000..c38689f7 --- /dev/null +++ b/firstdata/sources/china/health/china-cdc.json @@ -0,0 +1,59 @@ +{ + "id": "china-cdc", + "name": { + "en": "Chinese Center for Disease Control and Prevention", + "zh": "中国疾病预防控制中心" + }, + "description": { + "en": "The Chinese Center for Disease Control and Prevention (China CDC) is the national public health institute responsible for disease prevention, surveillance, and health emergency response. It publishes infectious disease surveillance reports, chronic disease data, vaccination coverage statistics, environmental health assessments, and public health emergency bulletins. Some deep-link sub-sections (e.g. /jkzt/) have been reorganized; use /gzdt/ for published work announcements or en.chinacdc.cn for English portal.", + "zh": "中国疾病预防控制中心是国家级疾病预防控制与公共卫生技术管理和服务机构,负责疾病预防控制、公共卫生监测和卫生应急处置。发布传染病疫情监测报告、慢性病数据、疫苗接种统计、环境卫生评估及突发公共卫生事件公报。" + }, + "website": "https://www.chinacdc.cn", + "data_url": "https://www.chinacdc.cn/gzdt/", + "api_url": null, + "country": "CN", + "domains": [ + "health", + "epidemiology", + "public-health" + ], + "geographic_scope": "national", + "update_frequency": "weekly", + "tags": [ + "china", + "cdc", + "disease-control", + "epidemiology", + "infectious-disease", + "public-health", + "vaccination", + "surveillance", + "疾控中心", + "传染病", + "疫情监测", + "公共卫生", + "疫苗接种", + "慢性病" + ], + "data_content": { + "en": [ + "Infectious Disease Surveillance - Weekly and monthly reports on notifiable infectious diseases", + "Chronic Disease Data - Prevalence and incidence of major chronic diseases", + "Vaccination Coverage - National immunization program statistics and coverage rates", + "Environmental Health - Drinking water quality, air pollution health impact assessments", + "Health Emergency Reports - Public health emergency response and outbreak investigation reports", + "Disease Burden Studies - National disease burden and risk factor analysis", + "Nutrition and Food Safety - National nutrition surveys and food safety monitoring" + ], + "zh": [ + "传染病疫情监测 - 法定传染病周报和月报", + "慢性病数据 - 主要慢性病患病率和发病率", + "疫苗接种覆盖率 - 国家免疫规划统计和接种率", + "环境卫生 - 饮用水水质监测、空气污染健康影响评估", + "卫生应急报告 - 突发公共卫生事件应急处置和疫情调查报告", + "疾病负担研究 - 全国疾病负担和危险因素分析", + "营养与食品安全 - 全国营养调查和食品安全监测" + ] + }, + "authority_level": "government" +} diff --git a/firstdata/sources/china/health/china-chinadrugtrials.json b/firstdata/sources/china/health/china-chinadrugtrials.json new file mode 100644 index 00000000..8cd839eb --- /dev/null +++ b/firstdata/sources/china/health/china-chinadrugtrials.json @@ -0,0 +1,63 @@ +{ + "id": "china-chinadrugtrials", + "name": { + "en": "China Drug Clinical Trials Registration and Information Disclosure Platform", + "zh": "药物临床试验登记与信息公示平台" + }, + "description": { + "en": "The China Drug Clinical Trials Registration and Information Disclosure Platform is operated by the Center for Drug Evaluation (CDE) under the National Medical Products Administration (NMPA). It serves as China's official registry for drug clinical trials, providing public access to trial registration data, study protocols, and results. The platform covers all phases of clinical trials conducted in China, including trials for chemical drugs, biological products, and traditional Chinese medicines. Researchers, pharmaceutical companies, and the public can search for ongoing and completed trials, review study designs, and access outcome information. The platform plays a critical role in promoting transparency and accountability in China's pharmaceutical clinical research ecosystem.", + "zh": "药物临床试验登记与信息公示平台由国家药品监督管理局药品审评中心(CDE)运营,是中国药物临床试验的官方登记注册平台,提供试验登记数据、研究方案和结果的公开访问。平台覆盖在中国开展的所有阶段临床试验,包括化学药品、生物制品和中药的临床试验。研究人员、制药企业和公众可以检索正在进行和已完成的临床试验,审查研究设计并获取结果信息。该平台在促进中国医药临床研究生态系统的透明度和问责制方面发挥着关键作用。" + }, + "website": "https://www.chinadrugtrials.org.cn", + "data_url": "https://www.chinadrugtrials.org.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "health", + "pharmaceuticals" + ], + "update_frequency": "daily", + "tags": [ + "临床试验", + "clinical-trials", + "药物", + "drug", + "cde", + "药品审评", + "drug-evaluation", + "nmpa", + "国家药监局", + "pharmaceutical", + "制药", + "试验登记", + "trial-registration", + "生物制品", + "biological-products", + "中药", + "traditional-chinese-medicine", + "研究方案", + "study-protocol", + "药物研发", + "drug-development" + ], + "data_content": { + "en": [ + "Clinical trial registration records: trial ID, sponsor, study title, therapeutic area, drug name, trial phase, and registration date", + "Study protocol details: study design, objectives, endpoints, inclusion/exclusion criteria, sample size, and treatment arms", + "Trial status tracking: recruitment status, start and completion dates, and participating clinical sites across China", + "Drug information: investigational drug details, dosage forms, routes of administration, and indications under study", + "Sponsor and investigator data: sponsoring organizations, principal investigators, and ethics committee approval information", + "Trial results summaries: outcome data and results for completed clinical trials when available" + ], + "zh": [ + "临床试验登记记录:试验编号、申办者、研究题目、治疗领域、药物名称、试验分期及登记日期", + "研究方案详情:研究设计、目的、终点指标、入选/排除标准、样本量及治疗组别", + "试验状态跟踪:招募状态、开始与完成日期及全国参与临床试验机构", + "药物信息:在研药物详情、剂型、给药途径及研究适应症", + "申办者与研究者数据:申办机构、主要研究者及伦理委员会批件信息", + "试验结果摘要:已完成临床试验的结局数据和结果信息" + ] + } +} diff --git a/firstdata/sources/china/health/china-class.json b/firstdata/sources/china/health/china-class.json new file mode 100644 index 00000000..943a2d8a --- /dev/null +++ b/firstdata/sources/china/health/china-class.json @@ -0,0 +1,81 @@ +{ + "id": "china-class", + "name": { + "en": "China Longitudinal Aging Social Survey (CLASS)", + "zh": "中国老年社会追踪调查(CLASS)" + }, + "description": { + "en": "The China Longitudinal Aging Social Survey (CLASS) is a nationally representative longitudinal survey of Chinese elderly population aged 60 and above, conducted by the China Survey and Data Center at Renmin University of China. Launched in 2012, CLASS follows over 11,000 elderly individuals across 28 provinces and collects comprehensive data on physical and mental health, economic status, social participation, intergenerational relationships, and eldercare needs. CLASS is China's leading longitudinal aging dataset and is freely accessible to academic researchers, providing critical evidence for aging policy and social welfare research.", + "zh": "中国老年社会追踪调查(CLASS)是由中国人民大学中国调查与数据中心(CSDC)负责执行的全国性老年人追踪调查,覆盖28个省份60岁及以上老年人11000余人。CLASS自2012年启动,追踪老年群体的身心健康、经济状况、社会参与、代际关系和养老需求等综合数据,是中国最权威的老龄化追踪数据集,向学术研究者免费开放,为老龄化政策和社会福利研究提供关键依据。" + }, + "website": "http://class.ruc.edu.cn/", + "data_url": "http://class.ruc.edu.cn/", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "health", + "social", + "demographics" + ], + "update_frequency": "irregular", + "tags": [ + "老年社会调查", + "class", + "aging", + "老龄化", + "elderly", + "老年人", + "longitudinal", + "追踪调查", + "人民大学", + "renmin-university", + "eldercare", + "养老", + "老年健康", + "elderly-health", + "mental-health", + "心理健康", + "social-participation", + "社会参与", + "intergenerational", + "代际关系", + "pension", + "养老金", + "long-term-care", + "长期照护", + "cognitive-decline", + "认知衰退", + "retirement", + "退休", + "老年政策", + "aging-policy" + ], + "data_content": { + "en": [ + "Physical health: chronic disease status, functional limitations, disability, Activities of Daily Living (ADL)", + "Mental health: depression screening, cognitive function tests, subjective well-being", + "Economic status: pension income, other income sources, asset ownership, economic hardship", + "Social participation: community activities, volunteering, social networks, club membership", + "Intergenerational support: financial transfers from/to children, emotional support, co-residence patterns", + "Care needs and provision: formal and informal caregiving arrangements, care preferences", + "Healthcare utilization: hospital visits, medication use, traditional Chinese medicine", + "Living arrangements: co-residence with children, household composition, housing conditions", + "Life satisfaction and quality of life measures for the elderly population", + "Survey waves: 2012, 2014, 2016, 2018 covering 28 provinces (11,511 elderly respondents in 2012)" + ], + "zh": [ + "身体健康:慢性病状况、功能限制、残障、日常生活活动能力(ADL)", + "心理健康:抑郁筛查、认知功能测试、主观幸福感", + "经济状况:养老金收入、其他收入来源、资产拥有、经济困难", + "社会参与:社区活动、志愿服务、社会网络、社团会员资格", + "代际支持:与子女间的经济转移、情感支持、同住模式", + "照护需求与提供:正式与非正式照护安排、照护偏好", + "医疗卫生利用:就医情况、用药状况、中医服务使用", + "居住安排:与子女同住、家庭成员构成、住房条件", + "老年人生活满意度和生活质量测量", + "调查波次:2012、2014、2016、2018年,覆盖28个省份(2012年首波调查11511名老年受访者)" + ] + } +} diff --git a/firstdata/sources/china/health/china-cpdrc.json b/firstdata/sources/china/health/china-cpdrc.json new file mode 100644 index 00000000..424749cd --- /dev/null +++ b/firstdata/sources/china/health/china-cpdrc.json @@ -0,0 +1,76 @@ +{ + "id": "china-cpdrc", + "name": { + "en": "China Population and Development Research Center", + "zh": "中国人口与发展研究中心" + }, + "description": { + "en": "The China Population and Development Research Center (CPDRC) is a national public welfare research institution under the National Health Commission (NHC), specializing in population science, demographic research, and public health data. CPDRC conducts China's national fertility surveys, tracks population aging trends, monitors reproductive health indicators, and produces demographic projections. Key outputs include the China Population and Development Research Report, national fertility status surveys, population aging studies, and data on contraception, maternal and child health, and family planning policy outcomes. CPDRC is China's primary institution for demographic intelligence, providing the empirical foundation for population policy decisions including the transition from one-child to three-child policies.", + "zh": "中国人口与发展研究中心(中国人发中心)是国家卫生健康委员会直属的国家级公益性研究机构,专注于人口科学、人口学研究和公共卫生数据。中国人发中心承担全国生育状况抽样调查、人口老龄化趋势追踪、生殖健康指标监测及人口预测工作。主要成果包括《中国人口与发展研究》报告、全国生育调查数据、人口老龄化研究成果以及避孕、妇幼保健和生育政策效果评估数据。中国人发中心是中国人口情报的核心机构,为人口政策决策(包括从独生子女到三孩政策的转变)提供实证依据。" + }, + "website": "https://www.cpdrc.org.cn", + "data_url": "https://www.cpdrc.org.cn/sjzw/", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "demographics", + "health", + "social", + "statistics" + ], + "update_frequency": "annual", + "tags": [ + "中国人口", + "china-population", + "人口与发展", + "population-and-development", + "生育率", + "fertility-rate", + "生育调查", + "fertility-survey", + "人口老龄化", + "population-aging", + "生育政策", + "fertility-policy", + "三孩政策", + "three-child-policy", + "计划生育", + "family-planning", + "人口预测", + "population-projection", + "妇幼健康", + "maternal-and-child-health", + "避孕", + "contraception", + "出生率", + "birth-rate", + "人口结构", + "population-structure", + "卫生健康委", + "nhc" + ], + "data_content": { + "en": [ + "National fertility status surveys: comprehensive national surveys on fertility intentions, birth rates, and reproductive behavior by age, region, and socioeconomic status", + "Fertility rate statistics: total fertility rate (TFR), age-specific fertility rates, and birth rate trends by province", + "Population aging data: proportion of elderly population, dependency ratios, aging projections by region", + "Contraception statistics: modern contraceptive prevalence rates, method distribution, and family planning service coverage", + "Maternal and child health: maternal mortality rates, infant mortality, prenatal care coverage, and breastfeeding statistics", + "Population projections: medium and long-term demographic forecasts by age structure, urbanization, and migration", + "Reproductive health indicators: infertility rates, assisted reproduction statistics, and reproductive disease prevalence", + "Policy evaluation research: impact assessment of fertility policy changes (one-child, two-child, three-child) on birth rates and population structure" + ], + "zh": [ + "全国生育状况抽样调查:按年龄、地区及社会经济状况分类的生育意愿、出生率及生育行为综合调查", + "生育率统计:总和生育率(TFR)、年龄别生育率及各省出生率趋势", + "人口老龄化数据:老年人口比例、抚养比及各地区老龄化预测", + "避孕统计:现代避孕方法使用率、方法分布及计划生育服务覆盖率", + "妇幼健康:孕产妇死亡率、婴儿死亡率、产前检查覆盖率及母乳喂养统计", + "人口预测:按年龄结构、城镇化程度及流动人口的中长期人口预测", + "生殖健康指标:不孕不育率、辅助生殖技术统计及生殖系统疾病患病率", + "政策评估研究:生育政策变化(独生子女、二孩、三孩政策)对出生率和人口结构的影响评估" + ] + } +} diff --git a/firstdata/sources/china/health/china-cpharma.json b/firstdata/sources/china/health/china-cpharma.json new file mode 100644 index 00000000..736bc83c --- /dev/null +++ b/firstdata/sources/china/health/china-cpharma.json @@ -0,0 +1,57 @@ +{ + "id": "china-cpharma", + "name": { + "en": "Chinese Pharmaceutical Association", + "zh": "中国药学会" + }, + "description": { + "en": "The Chinese Pharmaceutical Association (CPA), founded in 1907, is China's oldest and most authoritative national pharmaceutical academic organization. It publishes pharmaceutical science research, drug safety reports, clinical pharmacy standards, pharmaceutical industry development data, and continuing education materials for pharmacists.", + "zh": "中国药学会成立于1907年,是中国历史最悠久、最具权威的全国性药学学术团体。发布药学研究成果、药品安全报告、临床药学标准、医药产业发展数据及药师继续教育资料。" + }, + "website": "https://www.cpa.org.cn", + "data_url": "https://www.cpa.org.cn/?do=class&classid=250", + "api_url": null, + "authority_level": "research", + "country": "CN", + "domains": [ + "health", + "pharmaceuticals", + "research" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "pharmaceutical-association", + "drug-safety", + "clinical-pharmacy", + "pharmacy-standards", + "cpa", + "中国药学会", + "药学", + "药品安全", + "临床药学", + "医药产业", + "pharmacology", + "china" + ], + "data_content": { + "en": [ + "Pharmaceutical science research publications", + "Drug safety and pharmacovigilance reports", + "Clinical pharmacy practice guidelines and standards", + "Pharmaceutical industry development statistics", + "Pharmacist education and certification data", + "Drug utilization and rational use of medicines data", + "Traditional Chinese medicine pharmacology research" + ], + "zh": [ + "药学科学研究出版物", + "药品安全和药物警戒报告", + "临床药学实践指南和标准", + "医药产业发展统计数据", + "药师教育和执业资格数据", + "药物使用和合理用药数据", + "中药药理学研究" + ] + } +} diff --git a/firstdata/sources/china/health/china-cpma.json b/firstdata/sources/china/health/china-cpma.json new file mode 100644 index 00000000..a2685f67 --- /dev/null +++ b/firstdata/sources/china/health/china-cpma.json @@ -0,0 +1,79 @@ +{ + "id": "china-cpma", + "name": { + "en": "Chinese Preventive Medicine Association", + "zh": "中华预防医学会" + }, + "description": { + "en": "The Chinese Preventive Medicine Association (CPMA) is China's largest national-level academic association in the field of public health and preventive medicine, established in 1987 under the supervision of the National Health Commission. CPMA unites over 400,000 public health professionals and 89 professional branches covering epidemiology, occupational health, nutrition, environmental health, school health, and health statistics. The association publishes key academic journals, organizes national public health surveillance research, and issues clinical guidelines and technical standards for disease prevention and control. CPMA plays a central role in translating evidence-based public health research into national prevention policies, vaccination programs, and non-communicable disease intervention strategies. It coordinates with WHO and international public health organizations on global health initiatives.", + "zh": "中华预防医学会是中国最大的公共卫生和预防医学领域全国性学术团体,1987年在国家卫生健康委员会主管下成立,拥有40余万名公共卫生专业人员和89个专业分会,涵盖流行病学、职业卫生、营养、环境卫生、学校卫生和卫生统计等领域。学会出版重要学术期刊,组织全国公共卫生监测研究,发布疾病预防控制临床指南和技术规范。中华预防医学会在将循证公共卫生研究转化为国家预防政策、疫苗接种规划和慢性病干预策略方面发挥核心作用,并与世界卫生组织及国际公共卫生组织协调开展全球卫生行动。" + }, + "website": "https://www.cpma.org.cn", + "data_url": "https://www.cpma.org.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "health", + "science", + "social" + ], + "update_frequency": "irregular", + "tags": [ + "中华预防医学会", + "cpma", + "chinese-preventive-medicine-association", + "公共卫生", + "public-health", + "预防医学", + "preventive-medicine", + "流行病学", + "epidemiology", + "职业卫生", + "occupational-health", + "营养学", + "nutrition", + "环境卫生", + "environmental-health", + "学校卫生", + "school-health", + "卫生统计", + "health-statistics", + "疾病预防", + "disease-prevention", + "疫苗接种", + "vaccination", + "慢性病", + "non-communicable-disease", + "ncd", + "卫生政策", + "health-policy", + "全球卫生", + "global-health", + "who", + "世界卫生组织" + ], + "data_content": { + "en": [ + "Epidemiological surveillance data: national disease burden estimates, outbreak investigation reports, and long-term epidemiological cohort study data for major communicable and non-communicable diseases", + "Public health guidelines and standards: evidence-based clinical practice guidelines for disease prevention, technical standards for health examination, and occupational health assessment criteria", + "Vaccination program data: immunization schedule recommendations, vaccine safety monitoring reports, and vaccination coverage surveys across Chinese provinces", + "Nutrition and dietary surveys: national nutrition status data, dietary pattern analyses, micronutrient deficiency prevalence, and dietary guideline development data for Chinese populations", + "Occupational health data: work-related disease statistics, occupational exposure limit standards, workplace health hazard assessments, and industrial hygiene monitoring data", + "Environmental health research: environmental exposure assessment studies, environmental epidemiology data for air, water, and soil pollution impacts on human health", + "School and child health: student physical fitness surveillance, school environment health assessments, adolescent health monitoring, and eye health data", + "Academic publications: peer-reviewed research from Chinese Journal of Preventive Medicine and 10+ CPMA-affiliated journals covering all major public health domains" + ], + "zh": [ + "流行病学监测数据:重大传染病和慢性病的全国疾病负担估算、暴发事件调查报告和长期流行病学队列研究数据", + "公共卫生指南和标准:疾病预防循证临床实践指南、健康检查技术规范和职业健康评估标准", + "疫苗接种规划数据:免疫接种时间表建议、疫苗安全监测报告和全国各省接种率调查", + "营养和膳食调查:全国营养状况数据、膳食结构分析、微量营养素缺乏流行率和中国居民膳食指南制定数据", + "职业卫生数据:职业病统计、职业接触限值标准、工作场所危害评估和工业卫生监测数据", + "环境卫生研究:环境暴露评估研究、空气、水和土壤污染对人体健康影响的环境流行病学数据", + "学校和儿童健康:学生体质监测、学校环境卫生评估、青少年健康监测和视力健康数据", + "学术出版物:《中华预防医学杂志》及10余种中华预防医学会下属期刊的所有公共卫生领域同行评审研究" + ] + } +} diff --git a/firstdata/sources/china/health/china-hospital-association.json b/firstdata/sources/china/health/china-hospital-association.json new file mode 100644 index 00000000..0dd5060c --- /dev/null +++ b/firstdata/sources/china/health/china-hospital-association.json @@ -0,0 +1,61 @@ +{ + "id": "china-hospital-association", + "name": { + "en": "Chinese Hospital Association", + "zh": "中国医院协会" + }, + "description": { + "en": "The Chinese Hospital Association (CHA) is the national industry organization representing China's hospital sector, with over 30,000 member institutions. CHA publishes annual hospital industry reports, quality assessment data, hospital management standards, and patient safety statistics. Its data covers hospital bed capacity, service volumes, medical quality indicators, hospital grading evaluations, and healthcare workforce statistics. CHA is a key source for understanding the scale, structure, and performance of China's inpatient healthcare system, which includes over 35,000 hospitals providing services to the world's largest patient population.", + "zh": "中国医院协会是代表中国医院行业的全国性行业组织,会员单位逾3万家。协会发布年度医院行业发展报告、质量评估数据、医院管理标准和患者安全统计,数据涵盖医院床位、服务量、医疗质量指标、医院等级评审及卫生人力资源统计,是了解中国住院医疗体系规模、结构和绩效的重要数据来源。" + }, + "website": "https://www.cha.org.cn", + "data_url": "https://www.cha.org.cn", + "api_url": null, + "country": "CN", + "domains": [ + "health", + "healthcare", + "industry" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "china", + "hospital", + "医院", + "中国医院协会", + "healthcare", + "医疗", + "hospital-management", + "医院管理", + "patient-safety", + "患者安全", + "hospital-quality", + "医疗质量", + "health-workforce", + "卫生人力", + "inpatient", + "住院服务" + ], + "data_content": { + "en": [ + "China Hospital Industry Annual Report - Comprehensive annual statistics on China's hospital sector", + "Hospital Bed Capacity Data - National and provincial data on hospital bed numbers by type and level", + "Medical Quality Indicators - Clinical quality metrics, surgical outcomes, and safety event data", + "Hospital Grading Evaluation Results - Assessment scores for tertiary and secondary hospitals", + "Patient Service Volume Statistics - Outpatient visits, inpatient admissions, and surgical case numbers", + "Healthcare Workforce Data - Doctors, nurses, and allied health professionals in hospital settings", + "Hospital Management Standards - Guidelines and benchmarks for hospital operations and governance" + ], + "zh": [ + "中国医院行业年度报告 - 中国医院行业全面年度统计数据", + "医院床位数据 - 按类型和等级分类的全国及省级医院床位数量", + "医疗质量指标 - 临床质量指标、手术结果和安全事件数据", + "医院等级评审结果 - 三级和二级医院评审分数", + "患者服务量统计 - 门诊量、住院人次和手术例数", + "卫生人力数据 - 医院中的医生、护士和医技人员统计", + "医院管理标准 - 医院运营和管理指南与基准" + ] + }, + "authority_level": "other" +} diff --git a/firstdata/sources/china/health/china-medical-association.json b/firstdata/sources/china/health/china-medical-association.json new file mode 100644 index 00000000..3913b6f0 --- /dev/null +++ b/firstdata/sources/china/health/china-medical-association.json @@ -0,0 +1,55 @@ +{ + "id": "china-medical-association", + "name": { + "en": "Chinese Medical Association", + "zh": "中华医学会" + }, + "description": { + "en": "The Chinese Medical Association (CMA), founded in 1915, is China's largest and most authoritative national medical academic organization. With 89 specialty branches and over 600,000 members, it publishes 150+ peer-reviewed medical journals, clinical practice guidelines, disease epidemiology reports, and public health data covering all major medical specialties.", + "zh": "中华医学会成立于1915年,是中国最大、最具权威的全国性医学学术团体,拥有89个专科分会和60余万会员。出版150余种医学期刊,发布各主要医学专科的临床诊疗指南、疾病流行病学报告和公共卫生数据。" + }, + "website": "https://www.cma.org.cn", + "data_url": "https://www.cma.org.cn/col/col5601/index.html", + "api_url": null, + "authority_level": "research", + "country": "CN", + "domains": [ + "health", + "research" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "medical-association", + "clinical-guidelines", + "medical-journals", + "public-health", + "cma", + "中华医学会", + "临床指南", + "医学期刊", + "医学教育", + "disease-epidemiology", + "china" + ], + "data_content": { + "en": [ + "Clinical practice guidelines across 89 medical specialties", + "Peer-reviewed medical journal publications (150+ titles)", + "Disease epidemiology and public health reports", + "Medical education and training standards", + "Healthcare quality and patient safety data", + "Medical technology and innovation reports", + "National continuing medical education program data" + ], + "zh": [ + "89个医学专科临床诊疗指南", + "同行评审医学期刊出版物(150余种)", + "疾病流行病学和公共卫生报告", + "医学教育和培训标准", + "医疗质量和患者安全数据", + "医疗技术和创新报告", + "全国继续医学教育项目数据" + ] + } +} diff --git a/firstdata/sources/china/health/china-natcm.json b/firstdata/sources/china/health/china-natcm.json new file mode 100644 index 00000000..388ff57f --- /dev/null +++ b/firstdata/sources/china/health/china-natcm.json @@ -0,0 +1,74 @@ +{ + "id": "china-natcm", + "name": { + "en": "National Administration of Traditional Chinese Medicine", + "zh": "国家中医药管理局" + }, + "description": { + "en": "The National Administration of Traditional Chinese Medicine (NATCM) is China's government authority for regulating, developing, and promoting Traditional Chinese Medicine (TCM) and ethnic minority medicine. NATCM publishes official statistics on TCM institutions, practitioners, hospital visits, and industry development through its annual National TCM Statistics Yearbook (全国中医药统计摘编). It oversees TCM education standards, clinical practice guidelines, and international TCM cooperation. As TCM plays an increasingly important role in China's healthcare system and global health diplomacy, NATCM's data is essential for understanding TCM's integration into mainstream healthcare and its contributions to China's health economy.", + "zh": "国家中医药管理局是负责监管、发展和推广中医药及民族医药的中国政府主管部门。管理局通过《全国中医药统计摘编》发布中医医疗机构、中医执业人员、中医就诊人次及产业发展等官方统计数据,并负责中医药教育标准制定、临床实践规范和国际中医药合作。随着中医药在中国医疗卫生体系和全球卫生外交中的地位日益凸显,管理局数据对了解中医药融入主流医疗体系及其对中国卫生经济的贡献具有重要价值。" + }, + "website": "https://www.natcm.gov.cn/", + "data_url": "https://www.natcm.gov.cn/guihuacaiwusi/gongzuodongtai/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "health", + "social" + ], + "update_frequency": "annual", + "tags": [ + "国家中医药管理局", + "natcm", + "national-administration-of-traditional-chinese-medicine", + "中医药", + "traditional-chinese-medicine", + "tcm", + "中医医院", + "tcm-hospitals", + "中医执业医师", + "tcm-practitioners", + "中药", + "chinese-herbal-medicine", + "针灸", + "acupuncture", + "民族医药", + "ethnic-minority-medicine", + "中医药产业", + "tcm-industry", + "中医教育", + "tcm-education", + "中医统计", + "tcm-statistics", + "中医就诊", + "tcm-visits", + "中医科研", + "tcm-research" + ], + "data_content": { + "en": [ + "TCM medical institutions - number of TCM hospitals, clinics, and integrated Chinese-Western medicine hospitals by type and region", + "TCM workforce statistics - licensed TCM physicians, pharmacists, nurses, and other health workers", + "TCM service utilization - outpatient visits, inpatient admissions, and bed occupancy at TCM facilities", + "TCM education and training - TCM university enrollment, graduates, and continuing education statistics", + "TCM pharmaceutical industry - output value of Chinese patent medicines, herbal preparations, and related products", + "TCM scientific research - national R&D projects, publications, and key laboratory statistics", + "International TCM cooperation - overseas TCM centers, medical teams dispatched, and treaty agreements", + "TCM standardization - number of TCM clinical practice guidelines and quality standards issued", + "Annual National TCM Statistics Yearbook (全国中医药统计摘编)" + ], + "zh": [ + "中医医疗机构 - 按类型和地区分类的中医医院、中医诊所和中西医结合医院数量", + "中医药从业人员统计 - 执业中医师、药师、护士及其他卫生人员数量", + "中医服务利用 - 中医医疗机构门诊量、住院人次及床位使用率", + "中医药教育培训 - 中医药院校在校生、毕业生及继续教育统计", + "中医药产业 - 中成药、中药饮片及相关产品产值", + "中医药科研 - 国家科研项目、发表论文及重点实验室统计", + "国际中医药合作 - 海外中医中心、派遣医疗队及协议情况", + "中医药标准化 - 发布的中医临床实践指南和质量标准数量", + "全国中医药统计摘编年鉴" + ] + } +} diff --git a/firstdata/sources/china/health/china-ndcpa.json b/firstdata/sources/china/health/china-ndcpa.json new file mode 100644 index 00000000..d96aed1d --- /dev/null +++ b/firstdata/sources/china/health/china-ndcpa.json @@ -0,0 +1,72 @@ +{ + "id": "china-ndcpa", + "name": { + "en": "National Disease Control and Prevention Administration of China", + "zh": "国家疾病预防控制局" + }, + "description": { + "en": "The National Disease Control and Prevention Administration (NDCPA) is China's central government authority for public health surveillance, disease prevention and control, established in May 2021 under the National Health Commission as a vice-ministerial-level agency. It took over core functions from the Chinese Center for Disease Control and Prevention (China CDC) to strengthen national biosecurity and epidemic response governance following COVID-19 lessons. NDCPA oversees national communicable disease surveillance and reporting, national immunization program management, chronic disease prevention, environmental health monitoring, and health emergency preparedness. It publishes statutory infectious disease case reports (法定传染病疫情), vaccination coverage data, and health risk assessment reports, making it the authoritative source for China's epidemiological data and public health indicators.", + "zh": "国家疾病预防控制局是中国公共卫生监测、疾病预防与控制的中央主管部门,2021年5月在国家卫生健康委领导下正式组建,为副部级机构。在汲取新冠疫情防控经验教训后,承接中国疾病预防控制中心核心职能,以强化国家生物安全和疫情应对治理体系。疾控局负责全国传染病监测报告、国家免疫规划管理、慢性病防控、环境卫生监测和卫生应急准备。定期发布法定传染病疫情通报、疫苗接种覆盖率数据和健康风险评估报告,是中国流行病学数据和公共卫生指标的权威来源。" + }, + "website": "https://www.ndcpa.gov.cn/", + "data_url": "https://www.ndcpa.gov.cn/jbkzzx/c100016/second/list.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "health", + "governance", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "国家疾病预防控制局", + "ndcpa", + "national-disease-control", + "疾控局", + "cdc-china", + "传染病报告", + "infectious-disease-reporting", + "法定传染病", + "statutory-infectious-disease", + "疫情监测", + "epidemic-surveillance", + "公共卫生", + "public-health", + "疫苗接种", + "vaccination", + "免疫规划", + "immunization-program", + "慢性病", + "chronic-disease", + "生物安全", + "biosafety", + "卫生应急", + "health-emergency", + "流行病学", + "epidemiology", + "疾病预防", + "disease-prevention" + ], + "data_content": { + "en": [ + "Monthly statutory infectious disease reports: case counts for 40 nationally notifiable diseases by category (Class A, B, C), province, and pathogen type", + "Annual immunization program statistics: vaccination coverage rates for BCG, hepatitis B, polio, DTP, measles-rubella, Japanese encephalitis, and other EPI vaccines by age group and province", + "Communicable disease surveillance bulletins: real-time and periodic epidemiological bulletins on influenza, dengue fever, hand-foot-mouth disease, and emerging infectious diseases", + "Chronic disease prevalence data: nationwide surveys and monitoring results for hypertension, diabetes, cancer, cardiovascular disease, and obesity", + "Environmental health monitoring: reports on ambient air quality health impacts, drinking water safety surveillance, and occupational disease statistics", + "Health risk assessments: rapid risk assessments and technical guidance documents for public health events of potential concern", + "Biosafety laboratory statistics: data on pathogen detection capacity, biosafety laboratory accreditation, and national reference laboratory networks" + ], + "zh": [ + "月度法定传染病疫情通报:按类别(甲乙丙类)、省份和病原体分类的40种法定报告传染病病例数", + "年度国家免疫规划统计:按年龄组和省份分类的卡介苗、乙肝、脊髓灰质炎、百白破、麻疹风疹、乙脑等EPI疫苗接种覆盖率", + "传染病监测简报:流感、登革热、手足口病及新发传染病实时和定期流行病学通报", + "慢性病患病率数据:高血压、糖尿病、癌症、心脑血管疾病和肥胖症全国调查及监测结果", + "环境卫生监测:环境空气质量健康影响报告、饮用水安全监测及职业病统计", + "健康风险评估:针对潜在突发公共卫生事件的快速风险评估和技术指导文件", + "生物安全实验室统计:病原体检测能力、实验室生物安全认证及国家参比实验室网络数据" + ] + } +} diff --git a/firstdata/sources/china/health/china-nhc.json b/firstdata/sources/china/health/china-nhc.json new file mode 100644 index 00000000..6ca54834 --- /dev/null +++ b/firstdata/sources/china/health/china-nhc.json @@ -0,0 +1,60 @@ +{ + "id": "china-nhc", + "name": { + "en": "National Health Commission of China", + "zh": "国家卫生健康委员会", + "native": "国家卫生健康委员会" + }, + "description": { + "en": "The National Health Commission (NHC) of China is the government body responsible for national health administration. It publishes comprehensive health statistics including population health indicators, disease surveillance, medical resources, maternal and child health, chronic disease prevalence, and public health emergency data through its statistical information center.", + "zh": "国家卫生健康委员会是负责全国卫生健康工作的国务院组成部门。通过统计信息中心发布综合性卫生健康统计数据,包括人口健康指标、疾病监测、卫生资源、妇幼健康、慢性病患病率及突发公共卫生事件数据。" + }, + "website": "https://www.nhc.gov.cn", + "data_url": "https://www.nhc.gov.cn/mohwsbwstjxxzx/s7967/new_list.shtml", + "api_url": null, + "country": "CN", + "domains": [ + "health", + "demographics", + "epidemiology", + "social" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "china", + "nhc", + "health", + "healthcare", + "medical", + "disease", + "public-health", + "卫生健康", + "国家卫健委", + "卫生统计", + "疾病监测", + "医疗资源", + "妇幼健康" + ], + "data_content": { + "en": [ + "China Health Statistical Yearbook - Comprehensive annual health statistics", + "Medical Resources - Number of hospitals, beds, health workers by region", + "Disease Surveillance - Notifiable infectious disease reports and monitoring", + "Maternal and Child Health - Maternal mortality, infant mortality, birth rates", + "Chronic Disease Statistics - Prevalence of hypertension, diabetes, cancer", + "Health Expenditure - National and household health spending data", + "Life Expectancy - Population health indicators by province and age group" + ], + "zh": [ + "中国卫生健康统计年鉴 - 全面的年度卫生健康统计数据", + "卫生资源 - 按地区分类的医院数量、床位数、卫生工作者统计", + "疾病监测 - 法定传染病报告与监测数据", + "妇幼健康 - 孕产妇死亡率、婴儿死亡率、出生率", + "慢性病统计 - 高血压、糖尿病、癌症患病率", + "卫生费用 - 全国及居民卫生支出数据", + "人均预期寿命 - 按省份和年龄段分类的人口健康指标" + ] + }, + "authority_level": "government" +} diff --git a/firstdata/sources/china/health/china-nhei.json b/firstdata/sources/china/health/china-nhei.json new file mode 100644 index 00000000..f3325ed1 --- /dev/null +++ b/firstdata/sources/china/health/china-nhei.json @@ -0,0 +1,68 @@ +{ + "id": "china-nhei", + "name": { + "en": "China National Health Development Research Center", + "zh": "国家卫生健康委卫生发展研究中心" + }, + "description": { + "en": "The China National Health Development Research Center (CNHDRC), formerly known as the China Health Economics Institute, is the principal policy research institution affiliated with the National Health Commission (NHC) of the People's Republic of China. Established in 1991, CNHDRC conducts evidence-based research on health policy, health economics, health system reform, health financing, primary healthcare, essential medicines, health technology assessment, and health workforce planning. The center produces the authoritative China Health Statistical Yearbook analytical companion, the National Health Accounts (NHA) report, and serves as the WHO Collaborating Centre for Health Technology Assessment and Health System Research. Its research directly informs major national health reforms including health financing reform, public hospital reform, and the Healthy China 2030 initiative.", + "zh": "国家卫生健康委卫生发展研究中心(中国医学科学院卫生发展研究中心),前身为中国卫生经济研究所,是国家卫生健康委员会直属的主要政策研究机构,成立于1991年。中心围绕卫生政策、卫生经济、医药卫生体制改革、卫生筹资、基层医疗、基本药物、卫生技术评估和卫生人力规划等领域开展循证研究,发布权威的《中国卫生统计年鉴》分析配套报告和《中国卫生总费用核算报告》,同时是WHO卫生技术评估与卫生体系研究合作中心。研究成果直接服务于国家重大卫生改革,包括卫生筹资改革、公立医院改革和健康中国2030战略。" + }, + "website": "https://www.nhei.cn", + "data_url": "https://www.nhei.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "health-policy", + "health-economics", + "healthcare", + "public-health", + "health-financing", + "health-systems" + ], + "update_frequency": "irregular", + "tags": [ + "卫生发展研究中心", + "nhei", + "cnhdrc", + "national-health-development-research-center", + "卫生经济", + "health-economics", + "卫生政策", + "health-policy", + "医改", + "health-reform", + "卫生总费用", + "national-health-accounts", + "基本医疗", + "essential-healthcare", + "公立医院", + "public-hospital", + "健康中国2030", + "healthy-china-2030", + "who合作中心", + "who-collaborating-centre" + ], + "data_content": { + "en": [ + "China National Health Accounts (NHA) reports: authoritative annual estimates of total health expenditure by source of funds, provider, and function at national and provincial levels", + "Health system research reports: policy evaluations of public hospital reform, primary healthcare strengthening, and essential medicine system", + "Health technology assessment (HTA) reports: systematic evidence-based evaluation of medical technologies, drugs, and interventions for reimbursement decisions", + "Health workforce planning studies: analysis of physician density, nurse distribution, and rural health workforce across Chinese provinces", + "Health financing research: cost-sharing analyses, catastrophic health expenditure rates, and health insurance benefit package evaluations", + "International comparison studies: comparative analyses benchmarking China's health system against OECD and BRICS countries", + "Healthy China 2030 monitoring: indicators and progress reports on the national health strategy implementation" + ], + "zh": [ + "中国卫生总费用核算报告:从筹资来源、服务提供方和功能三个维度对国家和省级卫生总费用的权威年度估算", + "卫生体系研究报告:公立医院改革、基层医疗强化和基本药物制度的政策评估", + "卫生技术评估(HTA)报告:医疗技术、药品和干预措施的系统循证评估,用于医保报销决策", + "卫生人力规划研究:各省医师密度、护士分布和农村卫生人力分析", + "卫生筹资研究:费用分担分析、灾难性卫生支出比率和医保保障范围评估", + "国际比较研究:中国卫生体系与OECD和金砖国家对标的比较分析", + "健康中国2030监测:国家健康战略实施指标和进展报告" + ] + } +} diff --git a/firstdata/sources/china/health/china-nhsa.json b/firstdata/sources/china/health/china-nhsa.json new file mode 100644 index 00000000..146ba5e6 --- /dev/null +++ b/firstdata/sources/china/health/china-nhsa.json @@ -0,0 +1,72 @@ +{ + "id": "china-nhsa", + "name": { + "en": "National Healthcare Security Administration of China", + "zh": "国家医疗保障局" + }, + "description": { + "en": "The National Healthcare Security Administration (NHSA) is China's central government body responsible for managing the national medical insurance system, including basic medical insurance, maternity insurance, and medical assistance programs. Established in 2018, the NHSA consolidated functions previously spread across multiple departments to create a unified medical security management system. NHSA publishes authoritative statistics on health insurance fund revenues and expenditures, enrollment numbers for urban and rural residents, reimbursement rates, drug pricing through the national negotiation mechanism, and DRG payment reform progress. Its data covers over 1.3 billion insured persons, making it one of the world's largest healthcare financing datasets.", + "zh": "国家医疗保障局是负责管理全国医疗保障体系的中央政府机构,涵盖基本医疗保险、生育保险及医疗救助项目。2018年成立,整合了原分散于多个部门的医疗保障职能,建立统一的医疗保障管理体制。国家医疗保障局发布医保基金收支、城乡居民参保人数、报销比例、国家医保谈判药品价格及DRG支付改革进展等权威统计数据。其数据覆盖超过13亿参保人员,是全球最大的医疗筹资数据集之一。" + }, + "website": "https://www.nhsa.gov.cn/", + "data_url": "https://www.nhsa.gov.cn/col/col7/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "health", + "finance", + "social", + "statistics" + ], + "update_frequency": "annual", + "tags": [ + "医疗保障", + "healthcare-security", + "医疗保险", + "medical-insurance", + "医保基金", + "medical-insurance-fund", + "参保人数", + "enrollment-statistics", + "医保报销", + "medical-reimbursement", + "药品价格谈判", + "drug-price-negotiation", + "DRG支付", + "drg-payment", + "生育保险", + "maternity-insurance", + "医疗救助", + "medical-assistance", + "全民医保", + "universal-health-coverage" + ], + "data_content": { + "en": [ + "Insurance fund financials: annual revenue and expenditure of basic medical insurance fund, balance and reserve data", + "Enrollment statistics: number of insured persons by scheme (employee basic medical insurance, urban-rural resident insurance) and by province", + "Reimbursement data: average reimbursement rates for inpatient and outpatient services by insurance type and region", + "Drug pricing: negotiated drug prices from national medical insurance negotiations, coverage lists and pricing updates", + "DRG payment reform: diagnostic-related groups implementation statistics, hospital payment reform progress", + "Pharmaceutical benefits management: national medical insurance drug list (NRDL) coverage and utilization", + "Medical assistance: government-funded medical assistance recipients, spending, and poverty health protection data", + "Maternity insurance: maternity insurance fund revenue, benefit payments, and number of claimants", + "Healthcare cost trends: per capita medical expenditure, hospitalization rates, and cost growth indicators", + "Annual national healthcare security statistical bulletin: comprehensive insurance system performance review" + ], + "zh": [ + "医保基金财务:基本医疗保险基金年度收入、支出、结余及累计结存数据", + "参保统计:按险种(职工基本医疗保险、城乡居民医疗保险)和省份分类的参保人数", + "报销数据:按险种和地区分类的住院和门诊平均报销比例", + "药品价格:国家医保谈判药品价格、医保目录收录情况及价格调整", + "DRG支付改革:按疾病诊断相关分组实施统计、医院支付改革进展", + "药品保障管理:国家医保药品目录(NRDL)覆盖品种及使用情况", + "医疗救助:政府医疗救助受益人数、资金支出及贫困人口健康保障数据", + "生育保险:生育保险基金收入、待遇支出及享受待遇人数", + "医疗费用趋势:人均医疗费用、住院率及费用增长指标", + "全国医疗保障事业统计公报:保险体系运行年度综合述评" + ] + } +} diff --git a/firstdata/sources/china/health/china-nifdc.json b/firstdata/sources/china/health/china-nifdc.json new file mode 100644 index 00000000..acc08cd0 --- /dev/null +++ b/firstdata/sources/china/health/china-nifdc.json @@ -0,0 +1,61 @@ +{ + "id": "china-nifdc", + "name": { + "en": "National Institutes for Food and Drug Control", + "zh": "中国食品药品检定研究院" + }, + "description": { + "en": "The National Institutes for Food and Drug Control (NIFDC) is China's highest national-level technical institution for quality control and standard-setting of drugs, biologics, medical devices, food, and cosmetics, operating under the National Medical Products Administration (NMPA). Established in 1950, NIFDC is responsible for the development and revision of national drug standards (Chinese Pharmacopoeia), biological product batch release testing, and reference substance management. The institute publishes official drug standard databases, batch release reports, adverse event signals for biologics and vaccines, food contaminant benchmark data, and inspection methodology standards. NIFDC's quality control data and standard documents are mandatory references for pharmaceutical manufacturers, regulatory agencies, and clinical research institutions across China and are widely cited in international pharmacovigilance research.", + "zh": "中国食品药品检定研究院(中检院)是药品、生物制品、医疗器械、食品和化妆品质量控制与标准制定的国家级最高技术机构,隶属于国家药品监督管理局。研究院成立于1950年,负责国家药品标准(中国药典)的制定与修订、生物制品批签发检验和标准物质管理,发布国家药品标准数据库、批签发报告、生物制品和疫苗不良事件信号、食品污染物基准数据及检验方法标准。中检院的质量控制数据和标准文件是全国药品生产企业、监管机构及临床研究机构的强制参考依据,并被国际药物警戒研究广泛引用。" + }, + "website": "https://www.nifdc.org.cn", + "data_url": "https://www.nifdc.org.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "health", + "pharmaceuticals", + "food-safety", + "standards" + ], + "update_frequency": "irregular", + "tags": [ + "nifdc", + "中检院", + "中国食品药品检定研究院", + "药品标准", + "中国药典", + "生物制品", + "批签发", + "疫苗", + "药品质量", + "food-drug-control", + "pharmacopoeia", + "drug-standards", + "vaccine-testing", + "food-safety", + "medical-devices" + ], + "data_content": { + "en": [ + "National drug standards (Chinese Pharmacopoeia) database", + "Biological product batch release testing results", + "Reference substance catalog and technical requirements", + "Drug adverse event and quality risk signals", + "Food and cosmetic contaminant benchmark data", + "Medical device testing standards and reports", + "Annual national drug quality sampling inspection reports" + ], + "zh": [ + "国家药品标准(中国药典)数据库", + "生物制品批签发检验结果", + "标准物质目录与技术要求", + "药品不良事件与质量风险信号", + "食品和化妆品污染物基准数据", + "医疗器械检验标准与报告", + "年度国家药品质量抽检报告" + ] + } +} diff --git a/firstdata/sources/china/health/china-nmpa.json b/firstdata/sources/china/health/china-nmpa.json new file mode 100644 index 00000000..405d142d --- /dev/null +++ b/firstdata/sources/china/health/china-nmpa.json @@ -0,0 +1,77 @@ +{ + "id": "china-nmpa", + "name": { + "en": "National Medical Products Administration of China", + "zh": "国家药品监督管理局" + }, + "description": { + "en": "Official drug, medical device, and cosmetic regulatory data from China's National Medical Products Administration (NMPA). Covers approved drug registrations, new drug approvals, medical device certifications, cosmetic filings, adverse drug reaction reports, drug recall notices, pharmaceutical enterprise inspections, drug quality sampling results, clinical trial registrations, and import/export pharmaceutical data. The NMPA regulates drugs, medical devices, and cosmetics in China, ensuring product safety, efficacy, and quality.", + "zh": "国家药品监督管理局发布的官方药品、医疗器械与化妆品监管数据,涵盖批准药品注册信息、新药审批、医疗器械认证、化妆品备案、药品不良反应报告、药品召回公告、药品生产企业检查、药品质量抽检结果、临床试验登记及药品进出口数据。药监局负责对全国药品、医疗器械和化妆品实施监管,保障产品的安全性、有效性和质量。" + }, + "website": "https://www.nmpa.gov.cn/", + "data_url": "https://www.nmpa.gov.cn/datasearch/home-index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "public-health", + "science", + "governance" + ], + "update_frequency": "monthly", + "tags": [ + "药品监管", + "drug-regulation", + "医疗器械", + "medical-device", + "化妆品", + "cosmetics", + "新药审批", + "drug-approval", + "药品注册", + "drug-registration", + "不良反应", + "adverse-drug-reaction", + "药品召回", + "drug-recall", + "临床试验", + "clinical-trial", + "药品质量", + "drug-quality", + "nmpa", + "药监局", + "食品药品", + "pharmaceutical", + "仿制药", + "generic-drug", + "gmp", + "gsp" + ], + "data_content": { + "en": [ + "Drug registration database: approved chemical drugs, biological products, traditional Chinese medicines, and their specifications", + "New drug approvals and marketing authorizations: first approvals, supplemental approvals, and imported drug registrations", + "Medical device registration and filing database: Class I, II, III medical devices by product category", + "Cosmetic product registration and filing records: domestic and imported cosmetics", + "Adverse drug reaction (ADR) annual reports: nationwide ADR case counts, severe reactions, and trend analysis", + "Drug quality sampling results: pass/fail rates for sampled drugs by category and manufacturer", + "Drug recall notices: voluntary and mandatory recall announcements and scope", + "GMP/GSP compliance inspections: pharmaceutical manufacturing and distribution enterprise inspection results", + "Clinical trial registration data: trials being conducted in China, phases, and indications", + "Pharmaceutical import and export approval records" + ], + "zh": [ + "药品注册数据库:已批准化学药品、生物制品、中药及其规格说明", + "新药审批与上市许可:首次批准、补充批准及进口药品注册", + "医疗器械注册与备案数据库:一类、二类、三类医疗器械分类", + "化妆品注册与备案记录:国产及进口化妆品", + "药品不良反应(ADR)年度报告:全国ADR病例数量、严重不良反应及趋势分析", + "药品质量抽检结果:各类药品按品种和生产企业的合格率", + "药品召回公告:主动召回与责令召回公告及范围", + "GMP/GSP合规检查:药品生产和流通企业检查结果", + "临床试验登记数据:在中国开展的试验信息、阶段及适应症", + "药品进出口审批记录" + ] + } +} diff --git a/firstdata/sources/china/health/china-nphsd.json b/firstdata/sources/china/health/china-nphsd.json new file mode 100644 index 00000000..66340e31 --- /dev/null +++ b/firstdata/sources/china/health/china-nphsd.json @@ -0,0 +1,68 @@ +{ + "id": "china-nphsd", + "name": { + "en": "National Population and Health Science Data Center", + "zh": "国家人口与健康科学数据中心" + }, + "description": { + "en": "The National Population and Health Science Data Center (NPHSD) is China's national platform for sharing public health and population science data, established under the National Basic Science Data Sharing Service Program led by the Ministry of Science and Technology. It aggregates and provides access to health survey datasets, epidemiological study data, clinical research data, and demographic health statistics from national research programs. NPHSD covers domains including chronic disease surveillance, maternal and child health surveys, nutrition and health data, and infectious disease monitoring, making it a key open data repository for researchers in public health, medicine, and population sciences in China.", + "zh": "国家人口与健康科学数据中心(NPHSD)是中国国家科学数据共享工程框架下,由科学技术部主导建立的公共卫生与人口科学数据共享国家平台。该中心汇聚并开放来自国家科研项目的健康调查数据集、流行病学研究数据、临床研究数据及人口健康统计数据。覆盖领域包括慢性病监测、妇幼健康调查、营养与健康数据以及传染病监测,是中国公共卫生、医学和人口科学研究人员的重要开放数据平台。" + }, + "website": "https://www.phsciencedata.cn", + "data_url": "https://www.phsciencedata.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "health", + "epidemiology", + "demographics", + "social" + ], + "update_frequency": "irregular", + "tags": [ + "国家人口与健康科学数据中心", + "nphsd", + "public-health-data", + "公共卫生数据", + "population-health", + "人口健康", + "epidemiology", + "流行病学", + "chronic-disease", + "慢性病", + "maternal-health", + "妇幼健康", + "nutrition", + "营养", + "health-survey", + "健康调查", + "infectious-disease", + "传染病", + "science-data-sharing", + "科学数据共享", + "clinical-research-data", + "临床研究数据" + ], + "data_content": { + "en": [ + "Chronic Disease Surveillance Data - National monitoring datasets on hypertension, diabetes, cardiovascular disease, and cancer", + "Maternal and Child Health Survey Data - Nationwide survey data on maternal mortality, child nutrition, and reproductive health", + "Nutrition and Health Survey - Results from national nutrition and health examination surveys by age group and region", + "Infectious Disease Monitoring Data - Epidemiological datasets on notifiable infectious diseases and outbreak investigations", + "Clinical Research Datasets - Anonymized patient data from national clinical trials and cohort studies", + "Population Health Statistics - Demographic and vital statistics datasets including mortality, morbidity, and disability data", + "Aging and Geriatric Data - Health status, functional ability, and care needs data for elderly populations" + ], + "zh": [ + "慢性病监测数据 - 全国高血压、糖尿病、心血管疾病和癌症监测数据集", + "妇幼健康调查数据 - 全国孕产妇死亡率、儿童营养及生殖健康调查数据", + "营养与健康调查 - 按年龄组和地区划分的全国营养与健康体检调查结果", + "传染病监测数据 - 法定传染病及疫情调查流行病学数据集", + "临床研究数据集 - 国家临床试验和队列研究的脱敏患者数据", + "人口健康统计 - 包含死亡率、发病率和残疾数据的人口与生命统计数据集", + "老龄化与老年医学数据 - 老年人群健康状况、功能能力和照护需求数据" + ] + } +} diff --git a/firstdata/sources/china/health/china-phirda.json b/firstdata/sources/china/health/china-phirda.json new file mode 100644 index 00000000..2e8ba0b8 --- /dev/null +++ b/firstdata/sources/china/health/china-phirda.json @@ -0,0 +1,67 @@ +{ + "id": "china-phirda", + "name": { + "en": "China Pharmaceutical Innovation and Research Development Association", + "zh": "中国医药创新促进会" + }, + "description": { + "en": "The China Pharmaceutical Innovation and Research Development Association (PhIRDA, 中国医药创新促进会) is a national industry association representing innovative pharmaceutical companies, biotechnology firms, and clinical research organizations in China. Founded in 2012, PhIRDA promotes R&D-based drug development, policy advocacy for pharmaceutical innovation, and regulatory dialogue between industry and government agencies including NMPA (National Medical Products Administration). PhIRDA publishes annual innovation reports on China's pharmaceutical R&D pipeline, clinical trial statistics, drug approval data, R&D investment benchmarks, and policy analyses. Its research provides authoritative insights into China's pharmaceutical innovation landscape, new drug development trends, biopharma industry competitiveness, and regulatory environment for novel therapies.", + "zh": "中国医药创新促进会(PhIRDA)是代表中国创新药企业、生物技术公司和临床研究机构的全国性行业协会,成立于2012年。PhIRDA致力于推动研发驱动型新药研发,开展医药创新政策倡导,并促进行业与国家药品监督管理局(NMPA)等监管机构的对话。协会发布中国医药研发管线年度创新报告、临床试验统计、新药批准数据、研发投入基准和政策分析,为了解中国医药创新格局、新药研发趋势、生物制药行业竞争力和新疗法监管环境提供权威参考。" + }, + "website": "https://www.phirda.com", + "data_url": "https://www.phirda.com", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "health", + "research", + "industry" + ], + "update_frequency": "annual", + "tags": [ + "中国医药创新促进会", + "phirda", + "医药创新", + "pharmaceutical-innovation", + "新药研发", + "drug-development", + "生物制药", + "biopharma", + "临床试验", + "clinical-trials", + "新药审批", + "drug-approval", + "nmpa", + "国家药监局", + "研发投入", + "rnd-investment", + "创新药", + "innovative-drugs" + ], + "data_content": { + "en": [ + "Annual innovation report - overview of China's pharmaceutical R&D pipeline including small molecules, biologics, and cell/gene therapies", + "Clinical trial statistics - number of IND applications, ongoing Phase I/II/III trials, and completion rates in China", + "New drug approval data - NDA and BLA approvals by NMPA, approval timelines, and therapeutic area breakdown", + "R&D investment benchmarks - pharmaceutical industry R&D spending as percentage of revenue by company type and therapeutic focus", + "Global competitiveness analysis - comparison of China's innovative drug pipeline with US, EU, and Japan", + "Patent cliff and genericization data - key drugs facing patent expiry and biosimilar development activity", + "Regulatory policy analyses - impact assessments of NMPA policy reforms, MAH system implementation, and drug pricing linkage", + "Biopharma company landscape reports - profiling of leading domestic innovative companies, R&D capabilities, and licensed-in assets", + "Medical device innovation data - innovative device pipeline and NMPA approval statistics for high-risk devices" + ], + "zh": [ + "年度创新报告 - 中国医药研发管线综述,涵盖小分子、生物制品及细胞/基因治疗", + "临床试验统计 - IND申请数量、在研I/II/III期临床试验及完成率", + "新药批准数据 - 国家药监局NDA和BLA审批情况、审评时限和治疗领域分布", + "研发投入基准 - 按企业类型和治疗重点分类的医药行业研发投入占营收比例", + "全球竞争力分析 - 中国创新药管线与美国、欧盟和日本的比较", + "专利悬崖与仿制化数据 - 面临专利到期的重点药品及生物类似药研发动态", + "监管政策分析 - 药监局政策改革、MAH制度实施和药品价格联动影响评估", + "生物制药企业图谱报告 - 国内领先创新企业、研发能力和引进资产概况", + "医疗器械创新数据 - 创新器械管线及高风险器械NMPA审批统计" + ] + } +} diff --git a/firstdata/sources/china/industry/aerospace/china-avic.json b/firstdata/sources/china/industry/aerospace/china-avic.json new file mode 100644 index 00000000..3a0137f0 --- /dev/null +++ b/firstdata/sources/china/industry/aerospace/china-avic.json @@ -0,0 +1,66 @@ +{ + "id": "china-avic", + "name": { + "en": "Aviation Industry Corporation of China (AVIC)", + "zh": "中国航空工业集团有限公司" + }, + "description": { + "en": "The Aviation Industry Corporation of China (AVIC, 中国航空工业集团) is a central state-owned enterprise under the State Council and China's primary aerospace and defense conglomerate. AVIC is responsible for the research, development, and manufacturing of military and civil aviation products, including fighter jets, helicopters, transport aircraft, aero-engines, avionics systems, and aerospace components. As one of the world's largest aviation companies by revenue, AVIC encompasses over 100 subsidiary enterprises and research institutes, with more than 400,000 employees. AVIC and its listed subsidiaries publish annual reports, operational data on aviation manufacturing output, delivery volumes of civil and military aircraft, and technology development disclosures. The group's data provides critical insights into China's aviation industrial capacity, defense manufacturing trends, and the development of China's domestic commercial aviation supply chain.", + "zh": "中国航空工业集团有限公司(航空工业)是国务院直属的中央国有企业,是中国航空和国防工业的主体。主要承担军民用航空产品的研发和制造,包括战斗机、直升机、运输机、航空发动机、航空电子系统和航空零部件。作为全球营收规模最大的航空企业之一,航空工业拥有100余家成员企业和科研院所,员工逾40万人。航空工业集团及其上市子公司发布年度报告、航空制造产量运营数据、军民机交付数量及技术研发披露,为了解中国航空工业能力、国防制造趋势和国产民用航空供应链发展提供重要参考。" + }, + "website": "https://www.avic.com", + "data_url": "https://www.avic.com", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "aerospace", + "defense", + "manufacturing", + "economics" + ], + "update_frequency": "annual", + "tags": [ + "avic", + "航空工业", + "航空制造", + "aviation-manufacturing", + "军用飞机", + "military-aircraft", + "民用飞机", + "civil-aircraft", + "航空发动机", + "aero-engine", + "国防工业", + "defense-industry", + "央企", + "central-soe", + "直升机", + "helicopter", + "航电系统", + "avionics" + ], + "data_content": { + "en": [ + "Annual reports - consolidated financial statements, revenue, profit, and operating highlights for AVIC Group", + "Aircraft manufacturing output - production volumes and delivery records for military fighters, trainers, transport aircraft, and helicopters", + "Civil aviation supply chain data - components and systems supplied to domestic and international civil aviation OEMs", + "Listed subsidiary disclosures - financial and operational data from AVIC subsidiaries listed on Shanghai and Shenzhen stock exchanges", + "R&D investment and technology milestones - annual R&D expenditure, patent registrations, and major technical achievements", + "Workforce statistics - total employees, engineering and technical staff, and education-level breakdown", + "Export and international cooperation - foreign military sales, international joint ventures, and overseas delivery data", + "Subsidiary enterprise profiles - business scope, production capacity, and key products of major member companies" + ], + "zh": [ + "年度报告 - 航空工业集团的合并财务报表、营业收入、利润及运营要点", + "飞机制造产量 - 军用战斗机、教练机、运输机和直升机的生产数量和交付记录", + "民用航空供应链数据 - 向国内外民用航空整机制造商提供的零部件和系统数据", + "上市子公司披露 - 在沪深两市上市的航空工业成员企业的财务和运营数据", + "研发投入和技术里程碑 - 年度研发支出、专利申请数量和重大技术成就", + "劳动力统计 - 员工总数、工程技术人员及学历层次分布", + "出口和国际合作 - 对外军售、国际合资合作及境外交付数据", + "成员企业概况 - 主要成员单位的业务范围、生产能力和拳头产品" + ] + } +} diff --git a/firstdata/sources/china/industry/aerospace/china-casc.json b/firstdata/sources/china/industry/aerospace/china-casc.json new file mode 100644 index 00000000..aad30751 --- /dev/null +++ b/firstdata/sources/china/industry/aerospace/china-casc.json @@ -0,0 +1,70 @@ +{ + "id": "china-casc", + "name": { + "en": "China Aerospace Science and Technology Corporation (CASC)", + "zh": "中国航天科技集团有限公司" + }, + "description": { + "en": "China Aerospace Science and Technology Corporation (CASC) is China's premier state-owned aerospace enterprise and the principal contractor for China's national space program. Founded in 1999 as a restructuring of the former Ministry of Aerospace Industry, CASC develops and manufactures China's Long March launch vehicles, Shenzhou crewed spacecraft, Tianzhou cargo ships, Chang'e lunar probes, Tianwen Mars spacecraft, and the Beidou satellite constellation. CASC operates eight major subsidiaries and over 100 research institutes, with more than 160,000 employees. The corporation publishes annual reports, launch statistics, satellite manufacturing output data, aerospace technology development disclosures, and sustainability reports. As the backbone of China's space industry, CASC data provides authoritative insights into China's space launch cadence, crewed spaceflight progress, deep space exploration missions, and the commercial aerospace sector, making it essential for space industry analysis, international space cooperation research, and China's strategic technology assessment.", + "zh": "中国航天科技集团有限公司(航天科技集团)是中国最重要的国有航天企业,是国家航天工程的主要承包商。集团成立于1999年,由原航天工业部重组而来,负责研制长征系列运载火箭、神舟载人飞船、天舟货运飞船、嫦娥月球探测器、天问火星探测器及北斗卫星导航系统。集团下设八大研究院及百余家研究所,员工逾16万人。集团发布年度报告、发射统计、卫星制造产量数据、航天技术研发披露及可持续发展报告。作为中国航天工业的核心力量,航天科技集团数据为了解中国航天发射节奏、载人航天进展、深空探测任务和商业航天发展提供权威参考,是航天产业分析、国际航天合作研究和中国战略技术评估的重要数据来源。" + }, + "website": "https://www.spacechina.com", + "data_url": "https://www.spacechina.com/n25/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "aerospace", + "technology", + "defense" + ], + "update_frequency": "annual", + "tags": [ + "中国航天科技集团", + "casc", + "china-aerospace-science-technology", + "航天", + "space", + "长征火箭", + "long-march-rocket", + "神舟", + "shenzhou", + "嫦娥", + "chang'e", + "天问", + "tianwen", + "卫星", + "satellite", + "航天发射", + "space-launch", + "载人航天", + "crewed-spaceflight", + "北斗", + "beidou", + "商业航天", + "commercial-space" + ], + "data_content": { + "en": [ + "Annual reports: financial performance, operational highlights, and strategic development disclosures for CASC and its major subsidiaries", + "Launch statistics: Long March rocket launch frequency, success rates, payload types, and orbital delivery data by year", + "Crewed spaceflight data: Shenzhou mission profiles, crew schedules, and China Space Station (Tiangong) operational status", + "Satellite production: number of satellites manufactured, constellation expansion progress (Beidou, Yaogan, Gaofen series)", + "Deep space missions: mission status updates for Chang'e lunar program and Tianwen Mars exploration", + "Commercial aerospace market: launch service pricing, satellite in-orbit delivery contracts, and commercial payload statistics", + "R&D investment: annual research and development expenditure, technology development milestones, and patent filings", + "Sustainability reports: carbon footprint data, energy consumption in manufacturing, and green development initiatives" + ], + "zh": [ + "年度报告:航天科技集团及主要子公司的财务业绩、运营亮点和战略发展披露", + "发射统计:长征系列火箭年度发射次数、成功率、有效载荷类型和入轨数据", + "载人航天数据:神舟任务参数、航天员任务时间表及中国空间站(天宫)在轨状态", + "卫星生产:年度卫星研制数量、星座扩展进度(北斗、遥感、高分系列)", + "深空探测:嫦娥月球工程和天问火星探测任务状态更新", + "商业航天市场:发射服务报价、卫星在轨交付合同及商业载荷统计", + "研发投入:年度研发支出、技术研发里程碑及专利申请", + "可持续发展报告:碳排放数据、制造业能耗及绿色发展举措" + ] + } +} diff --git a/firstdata/sources/china/industry/china-ceeia.json b/firstdata/sources/china/industry/china-ceeia.json new file mode 100644 index 00000000..6ef1f394 --- /dev/null +++ b/firstdata/sources/china/industry/china-ceeia.json @@ -0,0 +1,47 @@ +{ + "id": "china-ceeia", + "name": { + "en": "China Electrical Equipment Industry Association", + "zh": "中国电器工业协会" + }, + "description": { + "en": "The China Electrical Equipment Industry Association (CEEIA) is the national industry organization representing China's electrical equipment manufacturing sector. It publishes comprehensive industry statistics, market analysis reports, production data, export figures, and policy recommendations covering power generation equipment, transmission equipment, industrial motors, household appliances, and energy-efficient products.", + "zh": "中国电器工业协会(CEEIA)是代表中国电器制造行业的全国性行业组织,发布涵盖发电设备、输配电设备、工业电机、家用电器及节能产品的行业统计数据、市场分析报告、产量数据、出口数据及政策建议。" + }, + "website": "https://www.ceeia.com", + "data_url": "https://www.ceeia.com", + "api_url": null, + "country": "CN", + "domains": [ + "industry", + "energy", + "manufacturing" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "china", + "electrical-equipment", + "manufacturing", + "power-equipment" + ], + "data_content": { + "en": [ + "Electrical Equipment Production Statistics - Monthly and annual output data for major electrical product categories", + "Industry Market Analysis - Market size, growth trends, and competitive landscape reports", + "Export Data - Electrical equipment export volumes and destination markets", + "Energy-Efficiency Standards - Industry benchmarks and compliance data for energy-efficient products", + "Power Generation Equipment - Statistics on turbines, generators, and transformer production", + "Industry Development Report - Annual overview of China's electrical equipment industry performance" + ], + "zh": [ + "电器产品产量统计 - 主要电器品类月度和年度产量数据", + "行业市场分析 - 市场规模、增长趋势及竞争格局报告", + "出口数据 - 电器设备出口量及目标市场统计", + "能效标准 - 节能产品行业基准及合规数据", + "发电设备统计 - 汽轮机、发电机及变压器产量数据", + "行业发展报告 - 中国电器工业年度发展情况综述" + ] + }, + "authority_level": "commercial" +} diff --git a/firstdata/sources/china/industry/china-csei.json b/firstdata/sources/china/industry/china-csei.json new file mode 100644 index 00000000..0e6cda0b --- /dev/null +++ b/firstdata/sources/china/industry/china-csei.json @@ -0,0 +1,57 @@ +{ + "id": "china-csei", + "name": { + "en": "China Special Equipment Inspection and Research Institute", + "zh": "中国特种设备检测研究院" + }, + "description": { + "en": "The China Special Equipment Inspection and Research Institute (CSEI) is a national-level research and technical service institution under the State Administration for Market Regulation (SAMR), focusing on safety inspection of special equipment including pressure vessels, pressure piping, boilers, elevators, cranes, passenger ropeways, and large amusement rides. CSEI publishes annual special equipment safety situation reports, accident statistics, safety supervision data, and technical standards. Its data is the authoritative source for special equipment safety risk assessment and industrial accident prevention in China.", + "zh": "中国特种设备检测研究院(中国特检院)是国家市场监督管理总局直属的国家级特种设备安全检测技术机构,专注于压力容器、压力管道、锅炉、电梯、起重机械、客运索道及大型游乐设施等特种设备的安全检测研究。研究院发布年度特种设备安全状况报告、事故统计、安全监察数据及技术标准,是中国特种设备安全风险评估和工业事故预防的权威数据来源。" + }, + "website": "https://www.csei.org.cn", + "data_url": "https://www.csei.org.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "update_frequency": "annual", + "domains": [ + "safety", + "industrial-equipment", + "standards", + "governance" + ], + "tags": [ + "china", + "csei", + "特检院", + "special-equipment", + "特种设备", + "safety-inspection", + "安全检测", + "pressure-vessel", + "压力容器", + "elevator", + "电梯", + "industrial-safety", + "工业安全", + "accident-statistics", + "事故统计" + ], + "data_content": { + "en": [ + "Annual Special Equipment Safety Reports - National statistics on special equipment quantities, accidents, and safety supervision", + "Accident Statistics - Detailed breakdowns of accidents by equipment type, cause, severity, and region", + "Equipment Registration Data - Counts of registered special equipment by category and province", + "Safety Inspection Standards - Technical specifications and methods for special equipment safety assessment", + "Research Publications - Academic and technical reports on failure analysis, risk assessment, and safety engineering" + ], + "zh": [ + "年度特种设备安全状况报告 - 全国特种设备数量、事故及安全监察统计", + "事故统计 - 按设备类型、事故原因、严重程度及地区分类的详细事故数据", + "设备登记数据 - 各类特种设备按类别和省份的登记数量", + "安全检测标准 - 特种设备安全评估的技术规范和检测方法", + "科研出版物 - 失效分析、风险评估及安全工程学术与技术报告" + ] + } +} diff --git a/firstdata/sources/china/industry/china-csia.json b/firstdata/sources/china/industry/china-csia.json new file mode 100644 index 00000000..9230642c --- /dev/null +++ b/firstdata/sources/china/industry/china-csia.json @@ -0,0 +1,23 @@ +{ + "id": "china-csia", + "name": { + "en": "China Semiconductor Industry Association", + "zh": "中国半导体行业协会" + }, + "description": { + "en": "The China Semiconductor Industry Association (CSIA) is the national industry body representing China's semiconductor sector. It publishes IC industry statistics, market reports, and semiconductor trade data.", + "zh": "中国半导体行业协会是代表中国半导体产业的全国性行业组织。发布集成电路产业统计数据、市场报告和半导体贸易数据。" + }, + "data_content": { + "en": ["IC industry statistics", "semiconductor market reports", "chip trade data", "industry development reports", "member enterprise data"], + "zh": ["集成电路产业统计", "半导体市场报告", "芯片贸易数据", "产业发展报告", "会员企业数据"] + }, + "country": "CN", + "authority_level": "other", + "geographic_scope": "national", + "website": "https://web.csia.net.cn", + "data_url": "https://web.csia.net.cn", + "domains": ["technology", "manufacturing"], + "tags": ["semiconductor", "ic", "chip", "electronics"], + "update_frequency": "quarterly" +} diff --git a/firstdata/sources/china/industry/china-miit-eidc.json b/firstdata/sources/china/industry/china-miit-eidc.json new file mode 100644 index 00000000..feec85fe --- /dev/null +++ b/firstdata/sources/china/industry/china-miit-eidc.json @@ -0,0 +1,76 @@ +{ + "id": "china-miit-eidc", + "name": { + "en": "MIIT Equipment Industry Development Center", + "zh": "工业和信息化部装备工业发展中心" + }, + "description": { + "en": "The Equipment Industry Development Center (EIDC) of China's Ministry of Industry and Information Technology (MIIT) is a national-level policy research and data analysis institution specializing in China's equipment manufacturing sector. EIDC tracks and analyzes the development of high-end equipment industries including machine tools, industrial robots, rail transit equipment, aerospace equipment, marine engineering machinery, energy equipment, and agricultural machinery. The center publishes industry analysis reports, equipment manufacturing operation data, enterprise rankings, and policy research outputs that serve as authoritative references for government planning, industry benchmarking, and investment decisions. EIDC data covers production output, market scale, technology advancement indicators, and international competitiveness metrics for China's strategic equipment manufacturing industries, which are central to the Made in China 2025 and dual circulation strategy implementation.", + "zh": "工业和信息化部装备工业发展中心(EIDC)是工业和信息化部下属的国家级政策研究与数据分析机构,专注于中国装备制造业发展研究。EIDC追踪和分析机床、工业机器人、轨道交通装备、航空航天装备、海洋工程机械、能源装备和农业机械等高端装备产业发展动态,发布行业分析报告、装备制造业运行数据、企业排名和政策研究成果,是政府规划制定、行业对标和投资决策的权威参考。EIDC数据涵盖中国战略性装备制造产业的生产产出、市场规模、技术进步指标和国际竞争力评估,是「中国制造2025」和双循环战略落实情况的重要数据来源。" + }, + "website": "https://www.miit-eidc.org.cn/", + "data_url": "https://www.miit-eidc.org.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "industry", + "technology", + "economics" + ], + "update_frequency": "monthly", + "tags": [ + "工业和信息化部装备工业发展中心", + "miit", + "eidc", + "装备制造", + "equipment-manufacturing", + "高端装备", + "high-end-equipment", + "机床", + "machine-tools", + "工业机器人", + "industrial-robots", + "轨道交通", + "rail-transit-equipment", + "航空航天装备", + "aerospace-equipment", + "海洋工程", + "marine-engineering", + "农业机械", + "agricultural-machinery", + "中国制造2025", + "made-in-china-2025", + "制造业", + "manufacturing", + "工业统计", + "industrial-statistics", + "产业分析", + "industry-analysis", + "企业排名", + "enterprise-rankings" + ], + "data_content": { + "en": [ + "Equipment manufacturing operation data: monthly and annual output statistics for key equipment categories including machine tools, industrial robots, rail equipment, and energy machinery", + "Industry analysis reports: sector assessments covering market scale, growth trends, enterprise concentration, and regional distribution of equipment manufacturing", + "Enterprise rankings: performance rankings of major equipment manufacturers by revenue, output, R&D investment, and market share", + "Technology advancement indicators: tracking innovation metrics, patent filings, and technology maturity levels across strategic equipment sectors", + "Policy research outputs: analysis of domestic and international policies affecting equipment manufacturing competitiveness", + "International comparison data: benchmarking China's equipment industry against major manufacturing nations including Germany, Japan, South Korea, and the United States", + "Market demand forecasts: projections for downstream industry demand driving equipment purchases in sectors such as energy, transportation, and construction", + "Import substitution tracking: progress data on replacing imported equipment with domestically produced alternatives across strategic sectors" + ], + "zh": [ + "装备制造业运行数据:机床、工业机器人、轨道装备和能源机械等主要装备类别的月度和年度产量统计", + "行业分析报告:涵盖市场规模、增长趋势、企业集中度和装备制造业区域分布的行业评估报告", + "企业排名:按营收、产量、研发投入和市场份额对主要装备制造企业进行排名", + "技术进步指标:追踪战略性装备领域的创新指标、专利申请和技术成熟度水平", + "政策研究成果:影响装备制造竞争力的国内外政策分析", + "国际比较数据:中国装备工业与德国、日本、韩国和美国等主要制造大国的横向对比", + "市场需求预测:能源、交通运输和建筑等下游产业拉动装备需求的展望预测", + "进口替代跟踪:战略领域以国产装备替代进口设备的进展数据" + ] + } +} diff --git a/firstdata/sources/china/infrastructure/china-camet.json b/firstdata/sources/china/infrastructure/china-camet.json new file mode 100644 index 00000000..86e6ff0a --- /dev/null +++ b/firstdata/sources/china/infrastructure/china-camet.json @@ -0,0 +1,76 @@ +{ + "id": "china-camet", + "name": { + "en": "China Association of Metros (CAMET)", + "zh": "中国城市轨道交通协会" + }, + "description": { + "en": "The China Association of Metros (CAMET) is the national industry association for urban rail transit in China, established in 2000 and headquartered in Beijing. CAMET represents subway, light rail, monorail, and automated guideway transit operators across all major Chinese cities. The association publishes the authoritative annual Urban Rail Transit Statistical Report, which is the primary national data source for the industry, covering total network mileage, number of lines, passenger volumes, operating revenues, investment, and ridership trends across China's urban rail systems. As of 2023, China operates the world's largest urban rail network with over 10,000 kilometers of routes across 55 cities. CAMET data are essential for urban transport planning, smart city investment analysis, and benchmarking China's transit expansion against global peers.", + "zh": "中国城市轨道交通协会(CAMET)是全国性城市轨道交通行业协会,2000年在北京成立,代表全国各大城市的地铁、轻轨、单轨和自动导轨交通运营商。协会每年发布权威的《城市轨道交通统计和分析报告》,是该行业最主要的全国数据来源,涵盖全国城市轨道交通总里程、线路数量、客运量、运营收入、投资规模和客流趋势等数据。截至2023年,中国已运营全球最大规模的城市轨道交通网络,在55个城市运营总里程超过1万公里。CAMET数据是城市交通规划、智慧城市投资分析及与全球同行进行基准比较的重要参考。" + }, + "website": "https://www.camet.org.cn", + "data_url": "https://www.camet.org.cn", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "infrastructure", + "transportation", + "urban", + "statistics" + ], + "update_frequency": "annual", + "tags": [ + "中国城市轨道交通协会", + "camet", + "地铁", + "metro", + "城市轨道交通", + "urban-rail-transit", + "轻轨", + "light-rail", + "客运量", + "passenger-volume", + "运营里程", + "operating-mileage", + "地铁统计", + "metro-statistics", + "城市交通", + "urban-transportation", + "轨道交通投资", + "rail-transit-investment", + "智慧交通", + "smart-transportation", + "城市建设", + "urban-construction", + "公共交通", + "public-transit" + ], + "data_content": { + "en": [ + "Annual urban rail transit statistical report: comprehensive industry-wide data published each year for all operating cities", + "Network scale: total route mileage, number of lines, number of stations by city and nationwide aggregate", + "Passenger volume: annual and monthly ridership, passenger-kilometers, peak-hour loads by city and system", + "Operating revenues: fare revenue, ancillary income, operating costs, and subsidy data for urban rail operators", + "Infrastructure investment: annual capital expenditure on new lines, extensions, and renovation projects", + "Fleet and equipment: number of vehicles, train composition, average train age, and energy consumption", + "Line-by-line statistics: mileage, station count, daily ridership, and opening year for each urban rail line in China", + "City-level comparison: cross-city benchmarking of network size, efficiency, and ridership density", + "Expansion plans: data on under-construction mileage and approved future projects by city", + "Safety and punctuality: key performance indicators including on-time rate and incident statistics" + ], + "zh": [ + "年度城市轨道交通统计分析报告:每年发布,涵盖所有运营城市的全行业数据", + "网络规模:按城市和全国汇总的总运营里程、线路数量和车站数量", + "客运量:各城市和系统的年度及月度客运量、旅客周转量和高峰小时负荷", + "运营收入:城市轨道交通运营商的票务收入、附属收入、运营成本和补贴数据", + "基础设施投资:新线、延伸线和改造项目的年度资本支出", + "车辆装备:车辆数量、列车编组、平均车龄和能耗数据", + "分线统计:中国每条城市轨道交通线路的里程、车站数、日均客流和开通年份", + "城市横向比较:各城市网络规模、运营效率和客流密度的跨城市基准分析", + "建设规划:各城市在建里程和已批未建项目数据", + "安全与准点率:准点率和事故统计等关键绩效指标" + ] + } +} diff --git a/firstdata/sources/china/infrastructure/china-cata.json b/firstdata/sources/china/infrastructure/china-cata.json new file mode 100644 index 00000000..b7b3295c --- /dev/null +++ b/firstdata/sources/china/infrastructure/china-cata.json @@ -0,0 +1,74 @@ +{ + "id": "china-cata", + "name": { + "en": "China Air Transport Association", + "zh": "中国航空运输协会" + }, + "description": { + "en": "The China Air Transport Association (CATA) is the national industry association representing China's civil aviation sector. Founded in 2005, CATA serves airlines, airports, aviation service providers, and related enterprises in China's rapidly growing civil aviation market. CATA publishes industry reports and statistical data covering airline passenger and cargo volumes, operational performance, aviation safety, airport throughput, ticket pricing trends, and the financial health of China's carriers. It also advocates for policy positions on behalf of the civil aviation industry and organizes capacity-building programs. CATA's data complements official CAAC statistics by providing industry-level analysis and benchmarking across China's aviation ecosystem, making it a key reference for investors, airlines, and transport policy researchers.", + "zh": "中国航空运输协会(CATA)是代表中国民航业的全国性行业协会,成立于2005年,为航空公司、机场、航空服务提供商及相关企业服务。CATA发布涵盖航空公司旅客和货物运输量、运营绩效、航空安全、机场吞吐量、机票价格趋势和中国航空公司财务状况的行业报告和统计数据,并代表民航业进行政策倡导、组织能力建设项目。CATA数据通过提供行业层面分析和基准对比,对官方民航局统计数据形成有效补充,是投资机构、航空公司和交通政策研究人员的重要参考。" + }, + "website": "https://www.cata.org.cn/", + "data_url": "https://www.cata.org.cn/NewsList.aspx?id=11", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "transportation", + "industry", + "statistics" + ], + "update_frequency": "monthly", + "tags": [ + "民航", + "civil-aviation", + "航空运输", + "air-transport", + "航空公司", + "airline", + "机场", + "airport", + "旅客吞吐量", + "passenger-throughput", + "货运量", + "cargo-volume", + "航班", + "flight", + "cata", + "中国航空", + "china-aviation", + "机票价格", + "airfare", + "航空安全", + "aviation-safety", + "运输总周转量", + "total-traffic-volume", + "load-factor", + "座位利用率" + ], + "data_content": { + "en": [ + "Monthly airline passenger statistics: domestic and international passenger volumes for all Chinese carriers by route and airport", + "Cargo and mail traffic: air freight and mail transport volumes, growth rates, and major cargo hub performance", + "Total traffic volume (RTK): revenue tonne-kilometers broken down by airline, route type, and domestic versus international operations", + "Airline operational performance: on-time departure and arrival rates, load factors, and capacity utilization metrics", + "Airport throughput ranking: China's major airports ranked by annual passenger and cargo volumes", + "Ticket price trend analysis: average domestic and international airfare indices, seasonal fluctuation reports", + "Airline financial health: industry-level revenue, profit, cost structure, and fuel expenditure statistics", + "Aviation safety incident statistics: accident and incident reports compiled from national regulatory data", + "Annual China Civil Aviation Development Report: comprehensive overview of industry scale, structure, and outlook" + ], + "zh": [ + "月度航空公司旅客统计:全国各航空公司按航线和机场分类的国内外旅客运输量", + "货邮运输量:航空货物和邮件运输量、增长率及主要货运枢纽表现", + "运输总周转量(RTK):按航空公司、航线类型及国内外业务分类的收入吨公里数", + "航空公司运营绩效:准点率、客座率及运力利用率指标", + "机场吞吐量排名:全国主要机场年度旅客吞吐量和货运量排行", + "机票价格趋势分析:国内外平均票价指数及季节性波动报告", + "航空公司财务状况:行业整体营收、利润、成本结构和燃油支出统计", + "航空安全事故统计:汇编自国家监管数据的事故和事件报告", + "年度中国民航发展报告:行业规模、结构及发展前景综合概览" + ] + } +} diff --git a/firstdata/sources/china/infrastructure/china-ccs.json b/firstdata/sources/china/infrastructure/china-ccs.json new file mode 100644 index 00000000..0cf50eb0 --- /dev/null +++ b/firstdata/sources/china/infrastructure/china-ccs.json @@ -0,0 +1,76 @@ +{ + "id": "china-ccs", + "name": { + "en": "China Classification Society", + "zh": "中国船级社" + }, + "description": { + "en": "China Classification Society (CCS) is the only national ship classification society in China, authorized by the Chinese government under the Ministry of Transport. Established in 1956, CCS develops and enforces technical standards for ship design, construction, and materials; surveys and certifies vessels, offshore platforms, and marine equipment; and issues certificates of compliance with international maritime conventions. CCS is a full member of the International Association of Classification Societies (IACS). It publishes annual statistics on the Chinese-flagged fleet, classification rules, technical circulars, and reports on marine safety and green shipping. CCS data is widely used by shipbuilders, shipowners, insurers, regulators, and maritime researchers to track China's shipbuilding output, fleet condition, and compliance with international maritime standards such as SOLAS, MARPOL, and the ISM Code.", + "zh": "中国船级社(CCS)是中国唯一的国家级船舶检验机构,依法受交通运输部授权。成立于1956年,CCS负责制定和执行船舶设计、建造及材料的技术标准,对船舶、海洋平台和船用设备进行检验和认证,并出具符合国际海事公约的合规证书。CCS是国际船级社协会(IACS)的正式成员,每年发布中国籍船队统计数据、船级规范、技术通函和海洋安全与绿色航运报告。CCS数据被造船企业、船东、保险机构、监管部门和海事研究人员广泛用于追踪中国造船产量、船队状况,以及对SOLAS、MARPOL、ISM规则等国际海事标准的遵守情况。" + }, + "website": "https://www.ccs.org.cn/", + "data_url": "https://www.ccs.org.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "transportation", + "safety", + "standards", + "statistics" + ], + "update_frequency": "annual", + "tags": [ + "船级社", + "classification-society", + "船舶检验", + "ship-survey", + "船舶认证", + "vessel-certification", + "海洋平台", + "offshore-platform", + "造船", + "shipbuilding", + "船队统计", + "fleet-statistics", + "航运安全", + "maritime-safety", + "绿色航运", + "green-shipping", + "iacs", + "solas", + "marpol", + "ISM规则", + "中国船级社", + "ccs", + "海事标准", + "maritime-standards", + "船舶规范", + "classification-rules" + ], + "data_content": { + "en": [ + "Chinese-flagged fleet statistics: annual data on number, tonnage, and age distribution of CCS-classed vessels by ship type (bulk carriers, tankers, container ships, LNG carriers)", + "Ship classification rules: technical standards for hull structure, machinery, electrical systems, fire protection, and stability applicable to new builds and existing vessels", + "Survey and certification records: number of ships surveyed, certificates issued, and deficiency findings by flag state and vessel type", + "Marine equipment type approvals: list of approved marine equipment and materials certified to CCS standards", + "Green shipping reports: data on ship energy efficiency (EEDI, CII), alternative fuel adoption, and decarbonization progress for the Chinese fleet", + "Technical circulars and safety bulletins: notifications on regulatory changes, accident lessons learned, and updated technical requirements", + "Annual China Ship Quality Report: comprehensive statistics on ship construction quality, major deficiencies, and safety performance", + "Offshore platform and marine structure data: classification statistics for drilling rigs, FPSOs, and fixed platforms operating in Chinese waters", + "International convention compliance data: PSC detention rates and deficiency statistics for CCS-classed vessels in foreign ports" + ], + "zh": [ + "中国籍船队统计:CCS入级船舶数量、吨位及船龄分布年度数据,按船型(散货船、油轮、集装箱船、LNG船)分类", + "船舶入级规范:适用于新造船和现有船舶的船体结构、机械、电气系统、防火和稳性技术标准", + "检验与证书记录:按船旗国和船型分类的检验船舶数量、颁证数量和缺陷发现", + "船用设备型式认可:经CCS认证的船用设备和材料认可名录", + "绿色航运报告:中国船队能效(EEDI、CII)、替代燃料应用和脱碳进展数据", + "技术通函和安全通告:法规变更通知、事故经验教训和更新的技术要求", + "年度中国船舶质量报告:船舶建造质量、主要缺陷和安全表现综合统计", + "海洋平台和海洋结构物数据:在中国海域运营的钻井平台、FPSO和固定平台入级统计", + "国际公约合规数据:CCS入级船舶在外国港口的PSC滞留率和缺陷统计" + ] + } +} diff --git a/firstdata/sources/china/infrastructure/china-crg.json b/firstdata/sources/china/infrastructure/china-crg.json new file mode 100644 index 00000000..dfcd593d --- /dev/null +++ b/firstdata/sources/china/infrastructure/china-crg.json @@ -0,0 +1,74 @@ +{ + "id": "china-crg", + "name": { + "en": "China State Railway Group", + "zh": "中国国家铁路集团有限公司" + }, + "description": { + "en": "China State Railway Group Co., Ltd. (China Railway, CRG) is the state-owned enterprise responsible for operating and managing China's national railway network, the world's largest high-speed rail system. As the sole operator of China's national rail network, CRG publishes official statistics on railway passenger traffic, freight volumes, operating mileage, infrastructure investment, high-speed rail operations, and network expansion. Its annual statistical bulletins are the authoritative source for China's rail transportation data, covering over 155,000 km of railway lines including more than 45,000 km of high-speed rail.", + "zh": "中国国家铁路集团有限公司(国铁集团,CRG)是负责运营管理中国国家铁路网的国有企业,运营着全球最大的高速铁路系统。作为全国铁路网唯一运营主体,国铁集团发布铁路旅客运输量、货物运输量、营业里程、基础设施投资、高铁运营及路网扩建等官方统计数据。其年度统计公报是中国铁路运输数据的权威来源,覆盖超过15.5万公里铁路线路,其中高速铁路超过4.5万公里。" + }, + "website": "http://www.china-railway.com.cn/", + "data_url": "http://www.china-railway.com.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "transportation", + "logistics", + "infrastructure", + "economics" + ], + "update_frequency": "monthly", + "tags": [ + "铁路", + "railway", + "高铁", + "high-speed-rail", + "铁路运输统计", + "railway-transport-statistics", + "旅客发送量", + "passenger-traffic", + "货物运输", + "freight-volume", + "铁路里程", + "railway-mileage", + "高速铁路", + "hsr", + "春运", + "spring-festival-travel", + "铁路基础设施", + "railway-infrastructure", + "轨道交通", + "rail-transit", + "铁路投资", + "railway-investment" + ], + "data_content": { + "en": [ + "Passenger traffic statistics: monthly and annual railway passenger volume by line and region", + "Freight transport data: goods volume, turnover, and commodity breakdown by rail", + "High-speed rail operations: HSR ridership, punctuality rates, and fleet statistics", + "Railway network mileage: total operating length, by speed class and electrification", + "Infrastructure investment: fixed asset investment in railway construction by year and region", + "Station and line data: number of stations, route lengths, and service frequencies", + "Spring Festival (Chunyun) travel statistics: annual peak travel period passenger data", + "Locomotive and rolling stock: fleet composition, utilization rates", + "Operating revenue and efficiency indicators: ton-kilometers, passenger-kilometers", + "Annual Railway Statistical Bulletin: comprehensive review of national rail system performance" + ], + "zh": [ + "旅客运输统计:按线路和地区划分的月度及年度铁路旅客发送量", + "货物运输数据:铁路货运量、换算周转量及分品类货物统计", + "高速铁路运营:高铁客运量、正点率及车辆编组统计", + "铁路网里程:按速度等级及电气化程度划分的运营总里程", + "基础设施投资:按年度及地区划分的铁路建设固定资产投资", + "车站与线路数据:车站数量、线路长度及运营频次", + "春运旅客统计:年度春运高峰期旅客发送量数据", + "机车车辆:车辆编组构成、使用效率", + "运营收入与效率指标:换算吨公里、旅客公里", + "铁路统计年报:全国铁路系统运营绩效综合报告" + ] + } +} diff --git a/firstdata/sources/china/infrastructure/china-crrc.json b/firstdata/sources/china/infrastructure/china-crrc.json new file mode 100644 index 00000000..7a436cd0 --- /dev/null +++ b/firstdata/sources/china/infrastructure/china-crrc.json @@ -0,0 +1,57 @@ +{ + "id": "china-crrc", + "name": { + "en": "CRRC Corporation Limited", + "zh": "中国中车股份有限公司" + }, + "description": { + "en": "CRRC Corporation Limited (中国中车) is the world's largest rolling stock manufacturer, formed by the merger of CNR and CSR in 2015 and listed on both Shanghai and Hong Kong stock exchanges. As a central state-owned enterprise, CRRC designs and manufactures high-speed trains, locomotives, metro vehicles, trams, and freight wagons, serving over 100 countries. CRRC publishes annual reports, production statistics, R&D investment data, and export performance figures, providing authoritative insight into China's rail equipment manufacturing, high-speed rail technology, and global transportation industry supply chains.", + "zh": "中国中车股份有限公司(中国中车)是全球最大的轨道交通装备制造商,2015年由中国北车与中国南车合并组建,在上海和香港两地上市,为国务院国资委直属中央企业。中国中车研制生产高速列车、机车、城轨车辆、有轨电车及货运车辆,产品遍布全球100多个国家。公司发布年度报告、生产统计、研发投入数据及出口业绩,是了解中国轨道交通装备制造、高速铁路技术和全球交通产业供应链的权威数据来源。" + }, + "website": "https://www.crrcgc.cc", + "data_url": "https://www.crrcgc.cc", + "api_url": null, + "authority_level": "commercial", + "country": "CN", + "geographic_scope": "national", + "update_frequency": "annual", + "domains": [ + "transportation", + "manufacturing", + "rail", + "technology" + ], + "tags": [ + "china", + "crrc", + "中国中车", + "rail", + "轨道交通", + "high-speed-rail", + "高铁", + "rolling-stock", + "机车车辆", + "manufacturing", + "制造业", + "metro", + "城轨", + "state-owned-enterprise", + "央企" + ], + "data_content": { + "en": [ + "Annual Reports - Revenue breakdown by product type (EMU, locomotives, metro vehicles, components), domestic and export markets", + "Production Statistics - Number of vehicles delivered, track km equivalent, and production capacity by plant", + "R&D Investment Data - Research expenditure, patent filings, technology platform development", + "Export Performance - Rolling stock exports by country and region, international project contracts", + "ESG Reports - Energy consumption per vehicle, carbon footprint of manufacturing operations, labor statistics" + ], + "zh": [ + "年度报告 - 按产品类型(动车组、机车、城轨车辆、零部件)分类的营收及内外销数据", + "生产统计 - 交付车辆数量、折算公里数及各基地产能", + "研发投入数据 - 研究经费、专利申请、技术平台建设", + "出口业绩 - 按国家和地区分类的轨道交通装备出口及海外项目合同", + "ESG报告 - 单车能耗、制造运营碳足迹、用工统计" + ] + } +} diff --git a/firstdata/sources/china/infrastructure/china-crta.json b/firstdata/sources/china/infrastructure/china-crta.json new file mode 100644 index 00000000..0cabacd9 --- /dev/null +++ b/firstdata/sources/china/infrastructure/china-crta.json @@ -0,0 +1,76 @@ +{ + "id": "china-crta", + "name": { + "en": "China Road Transport Association", + "zh": "中国道路运输协会" + }, + "description": { + "en": "The China Road Transport Association (CRTA) is the national industry organization representing China's road transport sector, including passenger transport, freight logistics, bus and coach services, and road-based supply chain businesses. China operates the world's largest road transport network by volume, and CRTA serves as the authoritative voice for the industry's 30 million-plus practitioners. The association publishes statistical reports on road passenger and freight volumes, vehicle fleet composition, fuel consumption, road safety data, new energy vehicle adoption in transport fleets, and industry revenue. CRTA also tracks emerging trends in logistics digitization, platform economy in transport, and cross-border freight. Its data is essential for supply chain analysts, logistics operators, transport policy researchers, and investors tracking China's vast land-based transport economy.", + "zh": "中国道路运输协会(CRTA)是代表中国道路运输行业的全国性行业组织,涵盖旅客运输、货运物流、公路客车及公路供应链等业务。中国拥有全球运量最大的道路运输网络,中国道路运输协会是代表行业3000万余名从业人员的权威机构。协会发布公路客货运量、车辆结构、燃料消耗、道路安全、运输车队新能源汽车普及率及行业营收等统计报告,同时追踪物流数字化、平台经济在运输领域的发展及跨境货运新趋势。其数据对于供应链分析师、物流运营商、交通政策研究人员以及追踪中国陆路运输经济的投资者具有重要参考价值。" + }, + "website": "https://www.crta.org.cn/", + "data_url": "https://www.crta.org.cn/news.html?id=42", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "transportation", + "logistics", + "economics" + ], + "update_frequency": "monthly", + "tags": [ + "道路运输", + "road-transport", + "货运", + "freight-transport", + "旅客运输", + "passenger-transport", + "物流", + "logistics", + "运输统计", + "transport-statistics", + "新能源商用车", + "new-energy-commercial-vehicles", + "公路货运量", + "road-freight-volume", + "供应链", + "supply-chain", + "跨境货运", + "cross-border-freight", + "crta", + "运输平台", + "transport-platform", + "货车", + "trucks", + "道路安全", + "road-safety" + ], + "data_content": { + "en": [ + "Road freight volume: total road freight tonnage and ton-kilometer data at national and regional levels", + "Road passenger transport: passenger trips and passenger-kilometer data by service type", + "Vehicle fleet statistics: registered commercial vehicle counts by category (trucks, buses, coaches, taxis)", + "New energy vehicle adoption: penetration rate of electric and alternative fuel vehicles in road transport fleets", + "Industry revenue and operators: total business revenue and count of road transport enterprises", + "Fuel consumption and energy: diesel and gasoline consumption by road transport sector", + "Road safety data: traffic accident rates, fatalities, and injury statistics for commercial transport", + "Cross-border freight: China-Europe land freight volumes, China-ASEAN road cargo data", + "Logistics platform economy: data on digital freight matching platforms and transport sharing economy", + "Annual industry development report: comprehensive overview of China road transport sector trends and outlook" + ], + "zh": [ + "公路货运量:全国及分地区公路货运总量和货物周转量(吨公里)数据", + "公路旅客运输:按服务类型分类的旅客出行次数和旅客周转量数据", + "车辆结构统计:按类型(货车、公共汽车、长途客车、出租车)统计的营运车辆注册数量", + "新能源汽车普及:电动及替代燃料车辆在道路运输车队中的渗透率", + "行业营收与经营者:道路运输企业总营业收入和数量", + "燃料消耗与能源:道路运输行业柴油和汽油消耗量", + "道路安全数据:营运交通的交通事故率、死亡人数和伤亡统计", + "跨境货运:中欧陆路货运量、中国—东盟公路货运数据", + "物流平台经济:数字货运匹配平台和运输共享经济数据", + "年度行业发展报告:中国道路运输行业趋势与展望综合报告" + ] + } +} diff --git a/firstdata/sources/china/infrastructure/china-cttic.json b/firstdata/sources/china/infrastructure/china-cttic.json new file mode 100644 index 00000000..fdc78903 --- /dev/null +++ b/firstdata/sources/china/infrastructure/china-cttic.json @@ -0,0 +1,58 @@ +{ + "id": "china-cttic", + "name": { + "en": "China Transport Telecommunications & Information Center", + "zh": "中国交通通信信息中心" + }, + "description": { + "en": "China Transport Telecommunications & Information Center (CTTIC) is the specialized public service institution under the Ministry of Transport of China, responsible for transport-sector telecommunications, informatization and satellite navigation services. It publishes integrated transportation statistics, road and waterway network data, logistics operation indicators, and supports national transport information systems including the BeiDou application in commercial vehicles and vessels.", + "zh": "中国交通通信信息中心(CTTIC)是中华人民共和国交通运输部直属的专业公共服务机构,承担交通行业通信、信息化与卫星导航服务,发布综合交通运输统计、公路和水路网络数据、物流运行指标等,并支持北斗在营运车辆和船舶中的应用等国家级交通信息系统。" + }, + "website": "https://www.cttic.cn", + "data_url": "https://www.cttic.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "transportation", + "infrastructure", + "logistics", + "technology" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "china", + "transport", + "telecommunications", + "informatization", + "logistics", + "beidou", + "satellite-navigation", + "commercial-vehicles", + "交通通信信息中心", + "交通运输部", + "北斗", + "营运车辆", + "交通信息化", + "CTTIC" + ], + "data_content": { + "en": [ + "Integrated transport operation monitoring data", + "National road freight and passenger volume indicators", + "Waterway and coastal shipping statistics", + "BeiDou navigation applications in commercial fleets", + "Transport informatization standards and datasets", + "Industry think-tank reports on smart transportation" + ], + "zh": [ + "综合交通运行监测数据", + "全国公路货运与客运运行指标", + "水路及沿海航运统计", + "营运车辆北斗导航应用数据", + "交通信息化标准与数据集", + "智慧交通行业智库报告" + ] + } +} diff --git a/firstdata/sources/china/infrastructure/china-highway-society.json b/firstdata/sources/china/infrastructure/china-highway-society.json new file mode 100644 index 00000000..f9e146ea --- /dev/null +++ b/firstdata/sources/china/infrastructure/china-highway-society.json @@ -0,0 +1,66 @@ +{ + "id": "china-highway-society", + "name": { + "en": "China Highway and Transportation Society", + "zh": "中国公路学会" + }, + "description": { + "en": "The China Highway and Transportation Society (CHTS) is a national academic and professional organization for China's highway and transportation sector, affiliated with the Ministry of Transport. CHTS publishes research reports, technical standards, and data covering highway construction, road infrastructure, traffic volume, transportation technology, and highway safety. It is a key reference for policy research, engineering standards, and transportation planning in China.", + "zh": "中国公路学会(CHTS)是中国公路与交通运输行业的全国性学术和专业组织,隶属于交通运输部。学会发布研究报告、技术标准和数据,内容涵盖公路建设、道路基础设施、交通流量、交通运输技术和公路安全。是中国政策研究、工程标准和交通规划的重要参考来源。" + }, + "website": "https://www.chts.cn", + "data_url": "https://www.chts.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "infrastructure", + "transportation", + "construction", + "technology" + ], + "update_frequency": "annual", + "tags": [ + "公路", + "highway", + "交通运输", + "transportation", + "道路建设", + "road-construction", + "交通流量", + "traffic-volume", + "公路安全", + "highway-safety", + "交通工程", + "traffic-engineering", + "路网", + "road-network", + "技术标准", + "technical-standards", + "chts", + "中国公路" + ], + "data_content": { + "en": [ + "Highway mileage statistics: total road network length by grade (expressway, national highway, provincial highway, rural road)", + "Highway construction investment: annual investment data in road infrastructure by region and project type", + "Traffic volume data: vehicle counts, passenger and freight transport volume on major highway corridors", + "Highway safety statistics: accident frequency, fatality rates, major incident analysis by road type", + "Bridge and tunnel statistics: number, length, and structural condition of highway bridges and tunnels", + "Technical research reports: pavement technology, bridge engineering, tunnel construction innovations", + "Highway freight transport: cargo volume and turnover by transport mode and highway grade", + "Transportation planning and policy research reports for China's road network" + ], + "zh": [ + "公路里程统计:按等级(高速公路、国道、省道、农村公路)的公路网总里程", + "公路建设投资:按地区和项目类型的道路基础设施年度投资数据", + "交通流量数据:主要公路走廊的车辆计数、客运和货运量", + "公路安全统计:按道路类型分类的事故频率、死亡率和重大事故分析", + "桥梁和隧道统计:公路桥梁和隧道的数量、长度和结构状况", + "技术研究报告:路面技术、桥梁工程、隧道建设创新", + "公路货运:按运输方式和公路等级的货运量和货运周转量", + "中国公路网交通规划和政策研究报告" + ] + } +} diff --git a/firstdata/sources/china/infrastructure/china-mot.json b/firstdata/sources/china/infrastructure/china-mot.json new file mode 100644 index 00000000..d63dd697 --- /dev/null +++ b/firstdata/sources/china/infrastructure/china-mot.json @@ -0,0 +1,76 @@ +{ + "id": "china-mot", + "name": { + "en": "Ministry of Transport of China", + "zh": "中华人民共和国交通运输部", + "native": "中华人民共和国交通运输部" + }, + "description": { + "en": "The Ministry of Transport (MOT) is responsible for planning, policy, and regulation of transportation in China, covering highways, waterways, civil aviation coordination, and postal services. It publishes comprehensive transportation statistics through annual statistical bulletins and monthly reports, including data on road and waterway infrastructure, passenger and freight volumes, vehicle registrations, port throughput, and transportation safety.", + "zh": "中华人民共和国交通运输部负责中国交通运输的规划、政策和监管,涵盖公路、水路、民航协调和邮政等领域。通过年度统计公报和月度报告发布全面的交通运输统计数据,包括公路和水路基础设施、客货运量、车辆登记、港口吞吐量和交通安全数据。" + }, + "website": "https://www.mot.gov.cn", + "data_url": "https://www.mot.gov.cn/shuju/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "transportation", + "infrastructure", + "logistics" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "交通运输部", + "ministry-of-transport", + "公路", + "highway", + "水路", + "waterway", + "港口", + "port", + "客运量", + "passenger-volume", + "货运量", + "freight-volume", + "物流", + "logistics", + "交通基础设施", + "transport-infrastructure", + "高速公路", + "expressway", + "内河航运", + "inland-waterway", + "春运", + "spring-festival-travel", + "mot", + "china" + ], + "data_content": { + "en": [ + "Highway infrastructure - Total mileage, expressway length, road grades, bridges, and tunnels", + "Waterway infrastructure - Navigable inland waterway mileage, berths, port facilities", + "Passenger transport - Passenger volumes and turnover by highway, waterway, and urban transit", + "Freight transport - Freight volumes and turnover by highway and waterway", + "Port throughput - Cargo and container throughput for major coastal and inland ports", + "Vehicle statistics - Registered commercial vehicles, vessels, and urban transit vehicles", + "Transportation safety - Accident statistics, casualties, and safety indicators", + "Urban public transport - Bus routes, metro lines, ridership, and operational data", + "Fixed asset investment - Investment in transportation infrastructure by sector", + "Spring Festival travel rush (Chunyun) - Daily cross-regional passenger flow statistics" + ], + "zh": [ + "公路基础设施 - 公路总里程、高速公路里程、公路等级、桥梁和隧道", + "水路基础设施 - 内河航道里程、泊位数、港口设施", + "客运 - 按公路、水路和城市公交分类的客运量和旅客周转量", + "货运 - 按公路和水路分类的货运量和货物周转量", + "港口吞吐量 - 主要沿海和内河港口的货物和集装箱吞吐量", + "车辆统计 - 营运车辆、船舶和城市公交车辆登记数", + "交通安全 - 事故统计、伤亡人数和安全指标", + "城市公共交通 - 公交线路、地铁线路、客运量和运营数据", + "固定资产投资 - 按行业分类的交通基础设施投资", + "春运 - 每日跨区域人员流动量统计" + ] + } +} diff --git a/firstdata/sources/china/infrastructure/china-msa.json b/firstdata/sources/china/infrastructure/china-msa.json new file mode 100644 index 00000000..0ac0e9b5 --- /dev/null +++ b/firstdata/sources/china/infrastructure/china-msa.json @@ -0,0 +1,76 @@ +{ + "id": "china-msa", + "name": { + "en": "China Maritime Safety Administration", + "zh": "中国海事局" + }, + "description": { + "en": "The China Maritime Safety Administration (MSA), operating under the Ministry of Transport, is the principal authority responsible for maritime safety supervision, vessel registration and inspection, seafarer certification, port state control, and navigation aid management in China. MSA publishes authoritative statistics on China's inland and coastal maritime activities, including vessel registration volumes, maritime accident statistics, seafarer certificate issuance, port state control inspection results, and pollution incident records. China operates one of the world's largest merchant fleets and busiest port systems; MSA data is therefore essential for understanding maritime safety trends, shipping industry compliance, and China's evolving role in global maritime trade. MSA also manages the Ship Automatic Identification System (AIS) data infrastructure for Chinese waters.", + "zh": "中国海事局隶属于交通运输部,是负责中国海事安全监管、船舶登记检验、船员证书管理、港口国监督检查和航标管理的主要权威机构。海事局发布内河和沿海航运活动权威统计数据,包括船舶登记数量、海事事故统计、船员证书签发、港口国监督检查结果和污染事故记录。中国拥有世界上最大的商船队之一和最繁忙的港口体系,因此海事局数据是了解海事安全趋势、航运行业合规状况及中国在全球海上贸易中作用的重要参考。海事局还管理中国水域的船舶自动识别系统(AIS)数据基础设施。" + }, + "website": "https://www.msa.gov.cn/", + "data_url": "https://www.msa.gov.cn/page/zxgk/tjsj.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "transportation", + "safety", + "statistics" + ], + "update_frequency": "annual", + "tags": [ + "海事", + "maritime", + "海事安全", + "maritime-safety", + "船舶", + "vessel", + "船舶登记", + "ship-registration", + "港口国监督", + "port-state-control", + "船员", + "seafarer", + "航运", + "shipping", + "海事事故", + "maritime-accident", + "海上污染", + "marine-pollution", + "ais", + "内河航运", + "inland-waterway", + "商船队", + "merchant-fleet", + "中国海事局", + "msa", + "海上交通", + "maritime-traffic" + ], + "data_content": { + "en": [ + "Vessel registration statistics: number and tonnage of registered ships by type (cargo, tanker, passenger, fishing) and flag", + "Maritime accident records: annual statistics on ship collisions, groundings, fires, sinkings, and casualties by vessel type and water area", + "Port state control (PSC) inspection results: deficiency rates, detention statistics, and compliance performance of foreign vessels in Chinese ports", + "Seafarer certification data: number of maritime professional certificates issued by grade and certificate type", + "Inland waterway traffic statistics: cargo volumes, vessel trips, and throughput on major Chinese rivers including the Yangtze and Pearl River systems", + "Coastal shipping statistics: domestic short-sea shipping volumes and major cargo route performance", + "Marine pollution incidents: oil spill, hazardous substance discharge, and other pollution event statistics", + "Navigation aid and channel data: lighthouse, buoy, and fairway maintenance statistics for Chinese waters", + "Annual China Maritime Development Report: comprehensive overview of China's maritime safety environment and shipping industry" + ], + "zh": [ + "船舶登记统计:按类型(货船、油轮、客船、渔船)和船旗分类的登记船舶数量和吨位", + "海事事故记录:按船型和水域分类的年度船舶碰撞、搁浅、火灾、沉没及人员伤亡统计", + "港口国监督(PSC)检查结果:外国船舶在中国港口的缺陷率、滞留统计和合规表现", + "船员证书数据:按等级和证书类型颁发的水上专业证书数量", + "内河航运统计:长江、珠江等主要水系的货运量、船次和吞吐量", + "沿海航运统计:国内短程海运运量和主要货运航线表现", + "海洋污染事故:溢油、危险物质泄漏及其他污染事故统计", + "航标和航道数据:中国水域灯塔、浮标和航道维护统计", + "年度中国航运发展报告:中国海事安全环境和航运行业综合概览" + ] + } +} diff --git a/firstdata/sources/china/infrastructure/china-nra.json b/firstdata/sources/china/infrastructure/china-nra.json new file mode 100644 index 00000000..4fa288a4 --- /dev/null +++ b/firstdata/sources/china/infrastructure/china-nra.json @@ -0,0 +1,75 @@ +{ + "id": "china-nra", + "name": { + "en": "National Railway Administration of China", + "zh": "国家铁路局" + }, + "description": { + "en": "The National Railway Administration (NRA) is China's government regulatory authority for the railway industry, responsible for safety supervision, licensing, technical standards, and industry monitoring across all rail operations including high-speed rail, conventional rail, and urban transit. Established in 2013 under the Ministry of Transport, NRA publishes the Annual Statistical Bulletin on Railway Transportation (铁道统计公报) containing comprehensive data on railway network length, passenger volume, freight tonnage, locomotive and rolling stock inventory, safety incidents, fixed asset investment, and employment. As China operates the world's largest high-speed rail network, NRA's data is critical for understanding China's transportation infrastructure, logistics capacity, and regional economic connectivity.", + "zh": "国家铁路局是中国铁路行业的政府监管机构,负责涵盖高铁、普铁和城市轨道交通在内的全路网安全监管、行政许可、技术标准制定和行业监测。2013年在交通运输部领导下组建成立。铁路局每年发布《铁道统计公报》,收录铁路网里程、旅客发送量、货物发送量、机车车辆保有量、安全事故、固定资产投资及从业人员等全面数据。中国已建成全球最大高铁网络,铁路局数据对于研究中国交通基础设施、物流能力和区域经济互联互通具有重要价值。" + }, + "website": "https://www.nra.gov.cn/", + "data_url": "https://www.nra.gov.cn/xxgk/gkml/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "transportation", + "infrastructure", + "economics" + ], + "update_frequency": "annual", + "tags": [ + "国家铁路局", + "nra", + "national-railway-administration", + "铁道统计公报", + "railway-statistics", + "高铁", + "high-speed-rail", + "hsr", + "铁路里程", + "railway-mileage", + "旅客发送量", + "passenger-volume", + "货物运输", + "freight-transport", + "铁路投资", + "railway-investment", + "铁路安全", + "railway-safety", + "动车组", + "emu-trains", + "高铁网络", + "hsr-network", + "铁路运营", + "railway-operation", + "轨道交通", + "rail-transit", + "物流", + "logistics" + ], + "data_content": { + "en": [ + "Railway network length: total operating mileage of national railways, broken down by high-speed rail (250km/h+), electrified lines, double-track lines, and regional distribution", + "Passenger statistics: total passenger trips, passenger-kilometers, average trip distance, and breakdown by high-speed vs. conventional rail", + "Freight statistics: total freight volume (tonnes), tonne-kilometers, cargo types (coal, grain, steel, containers), and major corridor flows", + "Rolling stock inventory: number of locomotives, EMU (high-speed) trainsets, passenger cars, and freight wagons in service", + "Fixed asset investment: annual capital expenditure on new line construction, electrification, and infrastructure upgrades", + "Station and facility data: number of operating railway stations, maintenance depots, and freight terminals", + "Safety statistics: number of railway accidents, casualties, and near-miss incidents by category", + "Industry employment: total workforce in the national railway system by function" + ], + "zh": [ + "铁路网里程:全国铁路营业里程,按高铁(250公里/小时及以上)、电气化铁路、复线及区域分布细分", + "旅客统计:旅客发送量、旅客周转量、平均运距,以及高铁与普铁分类数据", + "货物统计:货物发送量(万吨)、货物周转量、货物品类(煤炭、粮食、钢铁、集装箱)及主要通道运量", + "机车车辆保有量:在役机车、动车组、客车和货车数量", + "固定资产投资:新线建设、电气化改造和基础设施提升年度资本支出", + "车站及设施数据:运营铁路客站、维修基地和货运站数量", + "安全统计:按类别分类的铁路事故数量、人员伤亡及险情情况", + "行业就业:全国铁路系统按职能分类的从业人员总数" + ] + } +} diff --git a/firstdata/sources/china/infrastructure/china-ports-association.json b/firstdata/sources/china/infrastructure/china-ports-association.json new file mode 100644 index 00000000..01a69586 --- /dev/null +++ b/firstdata/sources/china/infrastructure/china-ports-association.json @@ -0,0 +1,61 @@ +{ + "id": "china-ports-association", + "name": { + "en": "China Ports & Harbours Association", + "zh": "中国港口协会" + }, + "description": { + "en": "The China Ports & Harbours Association (CPHA) is a national non-profit industry organization supervised by the Ministry of Transport of China. It brings together port enterprises, shipping terminals, logistics companies and research institutions, releasing official industry statistics including port cargo throughput, container throughput, shipping capacity utilization, port productivity indicators and industry development reports covering mainland Chinese ports.", + "zh": "中国港口协会(CPHA)是由中华人民共和国交通运输部主管的全国性港航业非营利社团组织,汇聚港口企业、码头运营商、航运物流公司及科研机构,发布包括港口货物吞吐量、集装箱吞吐量、船舶运力利用率、港口生产效率指标及行业发展报告等官方行业统计数据,覆盖中国大陆各港口。" + }, + "website": "http://www.port.org.cn", + "data_url": "http://www.port.org.cn", + "api_url": null, + "authority_level": "other", + "country": "CN", + "domains": [ + "transportation", + "infrastructure", + "trade", + "logistics" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "china", + "ports", + "harbours", + "shipping", + "port-throughput", + "container-throughput", + "cargo", + "logistics", + "中国港口协会", + "港口协会", + "港口吞吐量", + "集装箱吞吐量", + "港航业", + "水运", + "CPHA" + ], + "data_content": { + "en": [ + "Monthly and annual port cargo throughput statistics", + "Container throughput (TEU) rankings by port", + "Shipping capacity and fleet utilization", + "Port productivity and operational efficiency indicators", + "Port infrastructure investment and construction data", + "Industry development reports and market analysis", + "Membership directory of Chinese ports and terminals" + ], + "zh": [ + "月度及年度港口货物吞吐量统计", + "港口集装箱吞吐量(TEU)排名", + "船舶运力与船队利用率", + "港口生产效率与运营指标", + "港口基础设施投资与建设数据", + "行业发展报告与市场分析", + "全国港口与码头会员名录" + ] + } +} diff --git a/firstdata/sources/china/infrastructure/china-post-group.json b/firstdata/sources/china/infrastructure/china-post-group.json new file mode 100644 index 00000000..be39b3aa --- /dev/null +++ b/firstdata/sources/china/infrastructure/china-post-group.json @@ -0,0 +1,74 @@ +{ + "id": "china-post-group", + "name": { + "en": "China Post Group Corporation", + "zh": "中国邮政集团有限公司" + }, + "description": { + "en": "China Post Group Corporation is China's state-owned postal and logistics enterprise, operating under the supervision of the State Post Bureau. As the national postal service operator, China Post Group collects and publishes comprehensive statistics on postal services, express delivery, e-commerce logistics, savings banking, and insurance. Its statistical data, together with reports from the State Post Bureau, form the authoritative source for China's postal industry metrics, covering mail volumes, express parcel counts, rural postal coverage, and postal savings balances. China Post operates the world's most extensive postal network and is a key indicator of China's consumer economy and e-commerce growth.", + "zh": "中国邮政集团有限公司是国家邮政局监管的国有邮政和物流企业,是全国邮政业务运营主体。中国邮政集团收集并发布邮政服务、快递、电商物流、储蓄银行及保险业务的综合统计数据,与国家邮政局统计报告共同构成中国邮政行业指标的权威来源,涵盖函件量、快递包裹量、农村邮政覆盖率及邮政储蓄余额等数据。中国邮政运营着全球规模最大的邮政网络,是反映中国消费经济和电商增长的重要指标。" + }, + "website": "https://www.chinapost.com.cn/", + "data_url": "https://www.chinapost.com.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "logistics", + "transportation", + "economics", + "finance" + ], + "update_frequency": "annual", + "tags": [ + "邮政", + "postal-service", + "快递", + "express-delivery", + "邮政统计", + "postal-statistics", + "包裹量", + "parcel-volume", + "电商物流", + "e-commerce-logistics", + "邮政储蓄", + "postal-savings", + "农村邮政", + "rural-postal", + "物流", + "logistics", + "邮政年报", + "postal-annual-report", + "国家邮政局", + "state-post-bureau", + "寄递服务", + "delivery-services" + ], + "data_content": { + "en": [ + "Mail volumes: letters, parcels, and printed matter by class and destination", + "Express delivery statistics: parcel counts, weight, and revenue from express services", + "E-commerce logistics: online shopping-driven parcel volumes and regional distribution", + "Postal network coverage: number of postal outlets, rural coverage ratio, delivery routes", + "Postal Savings Bank: deposit balances, loan data, and customer counts", + "Revenue and financial data: total postal service revenue, breakdown by business line", + "Rural postal services: coverage of administrative villages, delivery frequency statistics", + "International mail: cross-border postal flows, international express volumes", + "Postal industry employment: workforce size and distribution across service types", + "Annual Report: comprehensive review of China Post Group's business and financial performance" + ], + "zh": [ + "函件量:按类别和目的地划分的信函、包裹及印刷品数据", + "快递统计:快递包裹数量、重量及收入", + "电商物流:网购驱动的包裹量及地区分布", + "邮政网络覆盖:邮政网点数量、农村覆盖率及投递路线", + "邮政储蓄银行:存款余额、贷款数据及客户数量", + "收入与财务数据:邮政服务总收入及各业务线分类", + "农村邮政服务:行政村覆盖率、投递频次统计", + "国际邮件:跨境邮政流量及国际快递量", + "邮政行业就业:各类服务类型的从业人员规模及分布", + "年度报告:中国邮政集团业务与财务绩效综合报告" + ] + } +} diff --git a/firstdata/sources/china/infrastructure/china-spb.json b/firstdata/sources/china/infrastructure/china-spb.json new file mode 100644 index 00000000..aa53e3cf --- /dev/null +++ b/firstdata/sources/china/infrastructure/china-spb.json @@ -0,0 +1,70 @@ +{ + "id": "china-spb", + "name": { + "en": "State Post Bureau of China", + "zh": "国家邮政局" + }, + "description": { + "en": "The State Post Bureau of China (SPB) is the national regulatory authority overseeing the postal and express delivery industry in China. It publishes official statistics on China's postal and courier services, including parcel volumes, revenue, business entities, and delivery network capacity. With China being the world's largest express delivery market, SPB's data provides critical insights into the country's e-commerce logistics backbone, consumer demand trends, and the rapid growth of domestic and cross-border express services.", + "zh": "国家邮政局是负责监管中国邮政和快递业的国家级监管机构。国家邮政局发布中国邮政和快递服务的官方统计数据,包括快件业务量、业务收入、企业数量和配送网络能力。中国是全球最大的快递市场,国家邮政局的数据为了解中国电子商务物流支撑体系、消费需求趋势以及国内外快递服务的快速增长提供了关键参考。" + }, + "website": "https://www.spb.gov.cn/", + "data_url": "https://www.spb.gov.cn/gjyzj/c100009/c100014/xxgk_index.shtml", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "economics", + "industry", + "infrastructure" + ], + "update_frequency": "monthly", + "tags": [ + "国家邮政局", + "state-post-bureau", + "快递统计", + "express-delivery-statistics", + "邮政业务", + "postal-services", + "快件业务量", + "parcel-volume", + "电商物流", + "e-commerce-logistics", + "快递行业", + "courier-industry", + "跨境快递", + "cross-border-express", + "spb", + "业务收入", + "postal-revenue", + "配送网络", + "delivery-network", + "邮政行业", + "postal-industry" + ], + "data_content": { + "en": [ + "Monthly express delivery volume: total number of parcels handled, year-on-year growth rates", + "Postal and express revenue statistics: total industry revenue, breakdown by service type", + "Enterprise data: number of postal and express delivery enterprises by type and region", + "Cross-border e-commerce logistics: international express parcel volumes and key trade lanes", + "Delivery network capacity: courier stations, delivery vehicles, employees, and sorting center data", + "Regional parcel statistics: express volume and revenue by province and major cities", + "Postal savings bank and financial services data", + "Complaint and service quality reports: consumer complaint statistics, delivery timeliness rates", + "China Postal Industry Annual Report: comprehensive annual review of the postal and courier sector" + ], + "zh": [ + "月度快递业务量:处理快件总量及同比增长率", + "邮政和快递收入统计:行业总收入及按服务类型分类数据", + "企业数据:各类型和地区的邮政和快递企业数量", + "跨境电商物流:国际快递包裹量及主要贸易通道数据", + "配送网络能力:快递网点、配送车辆、从业人员及分拣中心数据", + "各地区快递统计:各省市快递业务量及收入", + "邮政储蓄银行及金融服务数据", + "申诉及服务质量报告:消费者投诉统计、配送时效率", + "中国邮政行业年度报告:邮政和快递行业综合年度回顾" + ] + } +} diff --git a/firstdata/sources/china/national/china-acwf.json b/firstdata/sources/china/national/china-acwf.json new file mode 100644 index 00000000..9cb4e469 --- /dev/null +++ b/firstdata/sources/china/national/china-acwf.json @@ -0,0 +1,58 @@ +{ + "id": "china-acwf", + "name": { + "en": "All-China Women's Federation", + "zh": "中华全国妇女联合会" + }, + "description": { + "en": "The All-China Women's Federation (ACWF) is China's national women's organization operating under the Chinese Communist Party. It publishes research reports, periodic surveys, and statistics on the social status of women, gender equality, women's employment, marriage and family trends, and women's rights protection across China.", + "zh": "中华全国妇女联合会(全国妇联)是在中国共产党领导下的全国性妇女组织,发布有关中国妇女社会地位、性别平等、妇女就业、婚姻家庭动态和妇女权益保护的研究报告、定期调查和统计资料。" + }, + "website": "https://www.women.org.cn", + "data_url": "https://www.women.org.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "social", + "demographics", + "gender-equality" + ], + "geographic_scope": "national", + "update_frequency": "irregular", + "tags": [ + "women", + "gender", + "gender-equality", + "social-status", + "marriage", + "family", + "employment", + "妇女", + "性别平等", + "妇联", + "社会地位", + "women-rights", + "china" + ], + "data_content": { + "en": [ + "Chinese Women's Social Status Survey (periodic national survey)", + "Women's employment and labor market participation statistics", + "Marriage and family structure data", + "Women's education attainment statistics", + "Domestic violence and rights protection reports", + "Women's health and reproductive rights data", + "Gender gap indicators across provinces" + ], + "zh": [ + "中国妇女社会地位调查(定期全国调查)", + "妇女就业和劳动参与率统计", + "婚姻和家庭结构数据", + "妇女受教育程度统计", + "家庭暴力和权益保护报告", + "妇女健康和生育权利数据", + "各省性别差距指标" + ] + } +} diff --git a/firstdata/sources/china/national/china-cncaprc.json b/firstdata/sources/china/national/china-cncaprc.json new file mode 100644 index 00000000..131c813c --- /dev/null +++ b/firstdata/sources/china/national/china-cncaprc.json @@ -0,0 +1,49 @@ +{ + "id": "china-cncaprc", + "name": { + "en": "China National Committee on Ageing", + "zh": "中国老龄协会" + }, + "description": { + "en": "The China National Committee on Ageing (CNCAPRC), also known as China Association of Gerontology and Geriatrics, is the government-affiliated national organization overseeing ageing affairs in China. It publishes authoritative data on China's ageing population including demographic statistics, elderly care services, pension coverage, health status of older adults, and policy research on population ageing.", + "zh": "中国老龄协会(CNCAPRC)是负责中国老龄事业管理的政府关联全国性组织,发布中国老龄人口权威数据,包括人口统计数据、养老服务、养老金覆盖情况、老年人健康状况及人口老龄化政策研究报告。" + }, + "website": "https://www.cncaprc.gov.cn", + "data_url": "https://www.cncaprc.gov.cn", + "api_url": null, + "country": "CN", + "domains": [ + "demographics", + "health", + "social", + "government" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "china", + "ageing", + "elderly", + "demographics", + "pension" + ], + "data_content": { + "en": [ + "Ageing Population Statistics - Comprehensive data on China's elderly population size, growth, and distribution", + "Elderly Care Services - Data on nursing homes, community care facilities, and home care coverage", + "Pension System Coverage - Statistics on urban and rural pension enrollment and benefit levels", + "Health Status of Older Adults - Chronic disease prevalence, disability rates, and mental health data", + "Ageing Policy Research - Reports on social security reform, long-term care insurance, and ageing in place", + "China Report on Ageing - Annual flagship report on the state of China's ageing population" + ], + "zh": [ + "老龄人口统计 - 中国老年人口规模、增长及分布综合数据", + "养老服务数据 - 养老院、社区养老设施及居家养老覆盖情况", + "养老金体系覆盖 - 城乡养老保险参保及待遇水平统计", + "老年人健康状况 - 慢性病患病率、残疾率及心理健康数据", + "老龄政策研究 - 社会保障改革、长期护理保险及居家养老报告", + "中国老龄事业发展报告 - 中国老龄人口状况年度旗舰报告" + ] + }, + "authority_level": "government" +} diff --git a/firstdata/sources/china/national/china-cta.json b/firstdata/sources/china/national/china-cta.json new file mode 100644 index 00000000..e12a8efd --- /dev/null +++ b/firstdata/sources/china/national/china-cta.json @@ -0,0 +1,63 @@ +{ + "id": "china-cta", + "name": { + "en": "China Tourism Academy", + "zh": "中国旅游研究院" + }, + "description": { + "en": "The China Tourism Academy (CTA) is the national-level research institution under the Ministry of Culture and Tourism, serving as China's authoritative think tank for tourism industry data and policy research. CTA publishes comprehensive statistical reports on domestic and inbound tourism, including visitor numbers, tourism revenue, hotel occupancy rates, destination rankings, travel patterns, and consumer spending. Its annual China Tourism Statistical Bulletin and thematic reports on rural tourism, red tourism, and international visitor flows are official primary sources for understanding China's tourism economy and industry trends.", + "zh": "中国旅游研究院是文化和旅游部直属的国家级研究机构,是中国旅游行业数据和政策研究的权威智库。研究院发布国内旅游和入境旅游的综合统计报告,涵盖游客数量、旅游收入、酒店入住率、目的地排名、出行规律和消费支出等数据。年度《中国旅游统计公报》及乡村旅游、红色旅游和入境客流等专题报告,是了解中国旅游经济和行业趋势的官方一手数据来源。" + }, + "website": "https://www.ctaweb.org.cn", + "data_url": "https://www.ctaweb.org.cn/index.php?m=home&c=Lists&a=index&tid=21", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "tourism", + "economics", + "statistics", + "consumer-behavior" + ], + "update_frequency": "quarterly", + "tags": [ + "china", + "tourism", + "travel", + "visitor-statistics", + "hotel", + "domestic-tourism", + "inbound-tourism", + "outbound-tourism", + "destination", + "旅游统计", + "旅游收入", + "旅游研究院", + "国内旅游", + "入境旅游", + "出境旅游", + "乡村旅游", + "文化旅游" + ], + "data_content": { + "en": [ + "Domestic Tourism Statistics - Annual and quarterly domestic visitor trips, tourism revenue, and average spending per trip", + "Inbound Tourism - International visitor arrivals by country of origin, purpose of visit, and port of entry", + "Outbound Tourism - Chinese outbound travelers, top destination countries, and spending abroad", + "Hotel Industry - Star-rated hotel occupancy rates, revenue per available room (RevPAR), and regional hotel performance", + "Destination Rankings - Top domestic tourist destinations by visitor volume, revenue, and satisfaction index", + "Rural and Red Tourism - Statistics on rural tourism revenue, visitors, and employment impact; red tourism site visit data", + "Tourism Economy Forecast - Quarterly and annual forecasts for China's tourism industry growth and recovery indicators" + ], + "zh": [ + "国内旅游统计 - 年度和季度国内旅游人次、旅游收入和人均消费", + "入境旅游 - 按客源地、出行目的和入境口岸分类的国际游客入境情况", + "出境旅游 - 中国出境旅游人数、热门目的地国家和境外消费情况", + "住宿业 - 星级酒店入住率、每间可售房收入(RevPAR)和各地区酒店业绩", + "目的地排名 - 按游客量、旅游收入和满意度指数排名的国内热门旅游目的地", + "乡村和红色旅游 - 乡村旅游收入、游客数量和就业带动统计;红色旅游景区参观数据", + "旅游经济预测 - 中国旅游行业增长与复苏指标的季度和年度预测" + ] + } +} diff --git a/firstdata/sources/china/national/china-mca.json b/firstdata/sources/china/national/china-mca.json new file mode 100644 index 00000000..69a1895b --- /dev/null +++ b/firstdata/sources/china/national/china-mca.json @@ -0,0 +1,74 @@ +{ + "id": "china-mca", + "name": { + "en": "Ministry of Civil Affairs of China", + "zh": "中华人民共和国民政部", + "native": "中华人民共和国民政部" + }, + "description": { + "en": "The Ministry of Civil Affairs (MCA) is responsible for social welfare, social organization management, grassroots governance, administrative divisions, marriage registration, and disaster relief in China. It publishes comprehensive statistical data through the China Civil Affairs Statistical Yearbook and quarterly statistical bulletins, covering social services, social organizations, community governance, and welfare institutions.", + "zh": "中华人民共和国民政部负责社会福利、社会组织管理、基层治理、行政区划、婚姻登记和救灾救济等工作。通过《中国民政统计年鉴》和季度统计公报发布全面的统计数据,涵盖社会服务、社会组织、社区治理和福利机构等领域。" + }, + "website": "https://www.mca.gov.cn", + "data_url": "https://www.mca.gov.cn/n156/n2679/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "social", + "demographics", + "governance" + ], + "geographic_scope": "national", + "update_frequency": "quarterly", + "tags": [ + "民政部", + "civil-affairs", + "社会福利", + "social-welfare", + "社会组织", + "social-organizations", + "行政区划", + "administrative-divisions", + "婚姻登记", + "marriage-registration", + "救灾", + "disaster-relief", + "养老", + "elderly-care", + "社区治理", + "community-governance", + "低保", + "minimum-living-standard", + "ngo", + "民间组织", + "mca", + "china" + ], + "data_content": { + "en": [ + "Social service statistics - Total expenditures, institutions, beds, and personnel in social services", + "Social organizations - Registration and management of social groups, foundations, and private non-enterprise units", + "Community governance - Urban and rural community statistics, residents' committees, villagers' committees", + "Administrative divisions - County-level and above administrative division codes and changes", + "Marriage registration - Marriage and divorce registration statistics by region", + "Disaster relief - Natural disaster statistics, affected populations, relief expenditures", + "Elderly care services - Nursing homes, elderly care institutions, beds, and residents", + "Minimum living standard guarantee (Dibao) - Urban and rural subsistence allowance recipients and expenditures", + "Orphan care and child welfare - Child welfare institutions, orphans, and adoption statistics", + "Funeral and burial services - Cremation rates, funeral service institutions" + ], + "zh": [ + "社会服务统计 - 社会服务事业费支出、机构数、床位数和从业人员", + "社会组织 - 社会团体、基金会和民办非企业单位的登记管理统计", + "社区治理 - 城乡社区统计、居委会、村委会数据", + "行政区划 - 县级以上行政区划代码和变更情况", + "婚姻登记 - 分地区结婚和离婚登记统计", + "救灾 - 自然灾害统计、受灾人口、救灾支出", + "养老服务 - 养老院、养老机构、床位数和入住人数", + "最低生活保障(低保) - 城乡低保对象人数和支出", + "孤儿和儿童福利 - 儿童福利机构、孤儿和收养统计", + "殡葬服务 - 火化率、殡葬服务机构统计" + ] + } +} diff --git a/firstdata/sources/china/national/china-mps.json b/firstdata/sources/china/national/china-mps.json new file mode 100644 index 00000000..314c1e20 --- /dev/null +++ b/firstdata/sources/china/national/china-mps.json @@ -0,0 +1,57 @@ +{ + "id": "china-mps", + "name": { + "en": "Ministry of Public Security of China", + "zh": "中华人民共和国公安部" + }, + "description": { + "en": "The Ministry of Public Security (MPS) of the People's Republic of China is the principal government department responsible for public security, law enforcement, and household registration (hukou) management. MPS publishes statistical data on population registration, migration, public safety, traffic management, and crime statistics. Its household registration data is a primary source for China's population demographics and urbanization metrics.", + "zh": "中华人民共和国公安部是负责公共安全、执法和户籍管理的主要政府部门。公安部发布人口登记、人口迁移、公共安全、交通管理和犯罪统计数据。其户籍登记数据是中国人口统计和城镇化指标的主要来源之一。" + }, + "website": "https://www.mps.gov.cn", + "data_url": "https://www.mps.gov.cn/n6557558/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "demographics", + "public-safety", + "migration", + "social" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "population", + "hukou", + "public-safety", + "migration", + "urbanization", + "crime-statistics", + "traffic", + "demographics", + "household-registration" + ], + "data_content": { + "en": [ + "Household Registration (Hukou) Statistics - Registered population by province, urban/rural classification, and demographic characteristics", + "Population Migration Data - Inter-provincial and intra-provincial population movements, temporary residence registrations", + "Urbanization Metrics - Hukou-based urbanization rates by province, urban population growth trends", + "Public Safety Statistics - Crime rates, case filing and resolution statistics by category", + "Traffic Management Data - Motor vehicle registrations, driver's license statistics, traffic accident data", + "Exit and Entry Statistics - Passport issuance, visa processing, cross-border travel volumes", + "Cybersecurity Data - Internet security incidents, cybercrime statistics and enforcement actions", + "Fire Safety Statistics - Fire incidents, casualties, property losses, and fire department response data" + ], + "zh": [ + "户籍登记统计 - 按省份、城乡分类和人口特征的户籍人口数据", + "人口迁移数据 - 省际和省内人口流动、暂住登记", + "城镇化指标 - 按省份分类的户籍城镇化率、城镇人口增长趋势", + "公共安全统计 - 犯罪率、按类别分类的立案和破案统计", + "交通管理数据 - 机动车保有量、驾驶证统计、交通事故数据", + "出入境统计 - 护照签发、签证办理、跨境出行量", + "网络安全数据 - 网络安全事件、网络犯罪统计和执法行动", + "消防安全统计 - 火灾事故、伤亡人数、财产损失和消防救援数据" + ] + } +} diff --git a/firstdata/sources/china/national/meteorology/china-cma.json b/firstdata/sources/china/national/meteorology/china-cma.json new file mode 100644 index 00000000..e718f6a1 --- /dev/null +++ b/firstdata/sources/china/national/meteorology/china-cma.json @@ -0,0 +1,55 @@ +{ + "id": "china-cma", + "name": { + "en": "China Meteorological Administration", + "zh": "中国气象局" + }, + "description": { + "en": "The China Meteorological Administration (CMA) is the national meteorological authority responsible for weather monitoring, climate research, and meteorological services. Through its National Meteorological Information Center and China Meteorological Data Service Centre (data.cma.cn), it provides comprehensive weather observations, climate datasets, satellite imagery, and environmental monitoring data.", + "zh": "中国气象局是国家气象主管机构,负责天气监测、气候研究和气象服务。通过国家气象信息中心和中国气象数据网(data.cma.cn),提供全面的气象观测、气候数据集、卫星影像和环境监测数据。" + }, + "website": "https://www.cma.gov.cn", + "data_url": "https://data.cma.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "meteorology", + "climate", + "environment", + "earth-science" + ], + "update_frequency": "daily", + "tags": [ + "china", + "weather", + "climate", + "meteorology", + "satellite", + "environment", + "气象", + "天气", + "气候", + "气象数据", + "卫星遥感" + ], + "data_content": { + "en": [ + "Surface Observations - Temperature, precipitation, humidity, wind, pressure from 2000+ weather stations nationwide", + "Climate Data - Historical climate records, climate normals, extreme weather events, and climate change indicators", + "Satellite Data - FY-series meteorological satellite imagery, cloud products, and remote sensing data", + "Radar Data - Weather radar observations covering precipitation, severe weather detection", + "Climate Projections - Regional climate model outputs, climate change scenarios, and impact assessments", + "Agrometeorological Data - Crop weather conditions, soil moisture, growing season data for agricultural planning" + ], + "zh": [ + "地面观测 - 全国2000+气象站的温度、降水、湿度、风速、气压数据", + "气候数据 - 历史气候记录、气候标准值、极端天气事件和气候变化指标", + "卫星数据 - 风云系列气象卫星影像、云产品和遥感数据", + "雷达数据 - 覆盖降水、强对流天气的气象雷达观测", + "气候预估 - 区域气候模式输出、气候变化情景和影响评估", + "农业气象 - 作物气象条件、土壤湿度、生长季数据" + ] + } +} diff --git a/firstdata/sources/china/national/meteorology/china-ncc.json b/firstdata/sources/china/national/meteorology/china-ncc.json new file mode 100644 index 00000000..684c6ceb --- /dev/null +++ b/firstdata/sources/china/national/meteorology/china-ncc.json @@ -0,0 +1,53 @@ +{ + "id": "china-ncc", + "name": { + "en": "National Climate Center of China (NCC-CMA)", + "zh": "国家气候中心" + }, + "description": { + "en": "The National Climate Center (NCC) under the China Meteorological Administration (CMA) is China's authoritative research and service institution for climate monitoring, prediction, climate change assessment, and climate applications. It provides national climate bulletins, seasonal outlooks, climate change monitoring products, and historical climate data.", + "zh": "国家气候中心隶属于中国气象局,是中国气候监测、预测、气候变化评估与气候应用的权威研究与业务机构。提供国家气候公报、季节气候预测、气候变化监测产品及历史气候数据。" + }, + "website": "https://www.ncc-cma.net", + "data_url": "https://cmdp.ncc-cma.net", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "climate", + "meteorology", + "environment" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "climate", + "气候", + "climate-change", + "气候变化", + "climate-monitoring", + "气候监测", + "climate-prediction", + "气候预测", + "china-climate", + "中国气候", + "NCC", + "CMA" + ], + "data_content": { + "en": [ + "National climate bulletins and annual climate assessment reports", + "Seasonal and monthly climate outlook products", + "Climate change monitoring indicators (temperature, precipitation, extreme events)", + "Historical climate datasets and drought/flood records", + "Climate system diagnostic products (ENSO, monsoon, teleconnections)" + ], + "zh": [ + "国家气候公报和年度气候评估报告", + "季节和月度气候预测产品", + "气候变化监测指标(气温、降水、极端事件)", + "历史气候数据集和旱涝灾害记录", + "气候系统诊断产品(ENSO、季风、遥相关)" + ] + } +} diff --git a/firstdata/sources/china/national/meteorology/china-nmc.json b/firstdata/sources/china/national/meteorology/china-nmc.json new file mode 100644 index 00000000..1db60a3f --- /dev/null +++ b/firstdata/sources/china/national/meteorology/china-nmc.json @@ -0,0 +1,71 @@ +{ + "id": "china-nmc", + "name": { + "en": "National Meteorological Centre of China", + "zh": "中央气象台" + }, + "description": { + "en": "The National Meteorological Centre (NMC) is China's national weather forecasting and meteorological service center, operating under the China Meteorological Administration (CMA). NMC is responsible for issuing official national weather forecasts, severe weather warnings, and meteorological disaster early warnings covering the entire Chinese territory. It provides real-time weather observation data from thousands of ground stations, ocean buoys, weather balloons, and satellites. NMC operates China's numerical weather prediction (NWP) models and produces the authoritative daily and extended-range weather forecasts. Key products include national weather charts, precipitation forecasts, temperature trend predictions, typhoon tracks, drought and flood monitoring, and seasonal climate outlooks. NMC's data feeds directly into agriculture, transportation, disaster prevention, public health, and energy sector planning across China.", + "zh": "中央气象台是中国国家气象局(中国气象局)下属的国家级天气预报和气象服务中心。中央气象台负责发布覆盖全国的官方天气预报、强对流天气预警和气象灾害预警。提供来自全国数千个地面气象站、海洋浮标、探空气球和气象卫星的实时气象观测数据。中央气象台运行中国数值天气预报(NWP)模式,制作权威的日常天气预报和中长期天气预报。主要产品包括全国天气图、降水预报、气温趋势预测、台风路径预报、旱涝监测和季节气候展望。中央气象台数据直接服务于全国农业、交通运输、防灾减灾、公共卫生和能源规划。" + }, + "website": "https://www.nmc.cn", + "data_url": "https://www.nmc.cn/publish/observations.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "meteorology", + "climate", + "environment", + "disaster-prevention" + ], + "update_frequency": "real-time", + "tags": [ + "中央气象台", + "nmc", + "national-meteorological-centre", + "天气预报", + "weather-forecast", + "气象预警", + "meteorological-warning", + "实时气象", + "real-time-weather", + "气象观测", + "weather-observation", + "台风", + "typhoon", + "暴雨预警", + "rainstorm-warning", + "数值天气预报", + "numerical-weather-prediction", + "旱涝监测", + "drought-flood-monitoring", + "气候预测", + "climate-prediction", + "中国气象局", + "china-meteorological-administration" + ], + "data_content": { + "en": [ + "Real-time national weather observations: surface data from thousands of ground stations across China including temperature, precipitation, wind speed, humidity, and air pressure", + "Official national weather forecasts: daily and extended-range (10-day) forecasts for all provinces, cities, and counties in China", + "Severe weather warnings: official color-coded alerts for rainstorms, typhoons, high winds, snowstorms, frost, fog, haze, thunderstorms, and other extreme events", + "Typhoon tracking and forecasts: real-time path predictions, intensity forecasts, and landfall risk assessments for tropical cyclones affecting China", + "Precipitation and drought monitoring: nationwide maps of rainfall distribution, accumulated precipitation anomalies, and drought severity indices", + "Climate outlook products: monthly, seasonal, and annual climate trend forecasts including temperature and precipitation anomaly predictions", + "Numerical weather prediction model outputs: analysis fields, forecast fields, and ensemble prediction data from CMA's operational NWP systems", + "Radar and satellite data: composite radar reflectivity maps, satellite cloud imagery, and derived meteorological products for the national domain" + ], + "zh": [ + "全国实时气象观测:来自全国数千个地面站的地面数据,包括气温、降水、风速、湿度和气压", + "官方全国天气预报:全国各省市县的逐日和中期(10天)天气预报", + "强对流天气预警:暴雨、台风、大风、暴雪、霜冻、大雾、霾、雷暴等极端天气事件的官方色码预警", + "台风路径追踪和预报:影响中国的热带气旋实时路径预测、强度预报和登陆风险评估", + "降水与旱涝监测:全国降雨分布图、累积降水距平图和干旱严重程度指数", + "气候展望产品:月度、季节和年度气候趋势预报,包括气温和降水距平预测", + "数值天气预报模式产品:中国气象局业务NWP系统的分析场、预报场和集合预报数据", + "雷达和卫星数据:全国合成雷达反射率图、气象卫星云图及衍生气象产品" + ] + } +} diff --git a/firstdata/sources/china/national/meteorology/china-nmic.json b/firstdata/sources/china/national/meteorology/china-nmic.json new file mode 100644 index 00000000..62c408f1 --- /dev/null +++ b/firstdata/sources/china/national/meteorology/china-nmic.json @@ -0,0 +1,80 @@ +{ + "id": "china-nmic", + "name": { + "en": "National Meteorological Information Center", + "zh": "国家气象信息中心" + }, + "description": { + "en": "The National Meteorological Information Center (NMIC), operating under the China Meteorological Administration, is China's primary hub for meteorological data collection, processing, archiving, and distribution. Its public platform, the China Meteorological Data Service Centre (data.cma.cn), provides open and authorized access to decades of surface observations, upper-air soundings, satellite products, radar mosaics, ocean-atmosphere data, and climate reanalysis datasets. Researchers, government agencies, and enterprises can register for tiered data access ranging from free public datasets to professional-grade high-resolution archives. NMIC maintains the National Basic Meteorological Dataset, which records over 2,400 national stations and more than 60,000 automatic weather stations. The center also hosts agrometeorological, marine meteorological, and global exchange datasets from WMO partner nations.", + "zh": "国家气象信息中心是中国气象局下属专业机构,负责全国气象数据的采集、加工、存档和分发。其公众服务平台——中国气象数据网(data.cma.cn)提供从免费公开数据到专业级高分辨率档案的分级开放访问。数据内容涵盖数十年地面观测、高空探测、卫星产品、雷达拼图、海气观测和气候再分析数据集。国家基本气象数据集记录了全国2400余个国家站和6万余个自动气象站的观测数据。中心还托管农业气象、海洋气象及世界气象组织成员国交换数据集,是中国气象科研和业务的核心数据枢纽。" + }, + "website": "https://data.cma.cn", + "data_url": "https://data.cma.cn/data/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "meteorology", + "climate", + "environment", + "agriculture", + "earth-science" + ], + "update_frequency": "daily", + "tags": [ + "国家气象信息中心", + "nmic", + "中国气象数据网", + "weather-data", + "meteorology", + "climate-data", + "气象数据", + "天气", + "气候", + "地面观测", + "surface-observation", + "高空探测", + "upper-air-sounding", + "卫星数据", + "satellite-data", + "雷达", + "radar", + "再分析", + "reanalysis", + "农业气象", + "agrometeorological", + "自动气象站", + "automatic-weather-station", + "气候变化", + "climate-change", + "降水", + "precipitation", + "温度", + "temperature", + "风速", + "wind" + ], + "data_content": { + "en": [ + "Surface Observations: Temperature, precipitation, humidity, wind, pressure, and visibility from 2,400+ national stations and 60,000+ automatic weather stations", + "Upper-Air Soundings: Radiosonde profiles of temperature, humidity, and wind at pressure levels from the global upper-air network", + "Satellite Products: FY-series meteorological satellite imagery including cloud products, precipitation estimation, land surface temperature, and sea surface temperature", + "Radar Mosaics: Nationwide composite weather radar reflectivity and doppler wind products", + "Climate Reanalysis: Long-term atmospheric reanalysis datasets for climate research and model validation", + "Ocean-Atmosphere Data: Marine meteorological observations including sea surface parameters and wave data", + "Agrometeorological Data: Crop phenology, soil moisture, growing degree days, and agricultural weather indices", + "Global Exchange Data: Meteorological datasets received from WMO Global Telecommunication System partner countries" + ], + "zh": [ + "地面观测:全国2400余个国家站和6万余个自动气象站的温度、降水、湿度、风速、气压、能见度数据", + "高空探测:探空仪测量各气压层的温度、湿度和风场廓线", + "卫星产品:风云系列气象卫星云产品、降水估算、地表温度和海面温度", + "雷达拼图:全国天气雷达反射率合成图及多普勒风场产品", + "气候再分析:供气候研究和模型验证的长期大气再分析数据集", + "海洋气象:海面气象观测、海浪等海气界面参数", + "农业气象:作物物候、土壤水分、积温和农业天气指数", + "全球交换数据:通过世界气象组织全球电信系统接收的各国气象数据集" + ] + } +} diff --git a/firstdata/sources/china/national/meteorology/china-nsmc.json b/firstdata/sources/china/national/meteorology/china-nsmc.json new file mode 100644 index 00000000..ce0b115f --- /dev/null +++ b/firstdata/sources/china/national/meteorology/china-nsmc.json @@ -0,0 +1,74 @@ +{ + "id": "china-nsmc", + "name": { + "en": "National Satellite Meteorological Center of China", + "zh": "国家卫星气象中心" + }, + "description": { + "en": "The National Satellite Meteorological Center (NSMC), under the China Meteorological Administration, is responsible for operating China's FengYun (FY) series of meteorological satellites and providing satellite-derived meteorological and environmental data products. NSMC operates both geostationary satellites (FY-2, FY-4) and polar-orbiting satellites (FY-1, FY-3), providing global and regional data for weather forecasting, climate monitoring, disaster warning, and environmental surveillance.", + "zh": "国家卫星气象中心(NSMC)隶属于中国气象局,负责运营中国风云系列气象卫星并提供卫星遥感气象与环境数据产品。中心运营静止轨道卫星(风云二号、风云四号)和极轨卫星(风云一号、风云三号),为天气预报、气候监测、灾害预警和环境监测提供全球和区域数据。" + }, + "website": "https://www.nsmc.org.cn", + "data_url": "https://www.nsmc.org.cn/nsmc/cn/satellite/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "global", + "domains": [ + "meteorology", + "climate", + "remote-sensing" + ], + "update_frequency": "daily", + "tags": [ + "风云卫星", + "fengyun", + "气象卫星", + "meteorological-satellite", + "卫星遥感", + "satellite-remote-sensing", + "气象数据", + "weather-data", + "气候监测", + "climate-monitoring", + "灾害预警", + "disaster-warning", + "fy-2", + "fy-3", + "fy-4", + "nsmc", + "国家卫星气象中心", + "云图", + "satellite-imagery", + "大气探测", + "atmospheric-sounding" + ], + "data_content": { + "en": [ + "FengYun Satellite Products - Real-time and archived satellite imagery from FY-2, FY-3, and FY-4 series", + "Cloud Analysis Products - Cloud top temperature, cloud type classification, and cloud cover maps", + "Precipitation Estimation - Satellite-derived rainfall and snowfall estimates at national and global scale", + "Land Surface Temperature - Daily and composite land surface temperature products", + "Sea Surface Temperature - Ocean surface temperature monitoring using FY satellite data", + "Vegetation Index (NDVI) - National and global vegetation health monitoring products", + "Snow and Ice Cover - Extent and depth monitoring for polar and mountain regions", + "Atmospheric Motion Vectors - Upper-level wind field data derived from consecutive satellite images", + "Fire Detection Products - Active fire points and burned area estimates from satellite thermal channels", + "Dust and Aerosol Products - Sand-dust storm tracking, aerosol optical depth mapping", + "Typhoon Monitoring - Real-time typhoon track, intensity, and structural analysis" + ], + "zh": [ + "风云卫星产品 - 风云二号、三号、四号系列卫星实时和存档遥感图像", + "云分析产品 - 云顶温度、云型分类和云覆盖图", + "降水估算 - 国家和全球尺度卫星遥感降雨和降雪估算", + "地表温度 - 日产品和合成地表温度产品", + "海面温度 - 基于风云卫星数据的海洋表面温度监测", + "植被指数(NDVI)- 国家和全球植被健康监测产品", + "雪冰覆盖 - 极地和山区雪冰范围与厚度监测", + "大气运动矢量 - 基于连续卫星图像的高层风场数据", + "火点探测产品 - 卫星热通道主动火点和过火面积估算", + "沙尘与气溶胶产品 - 沙尘暴路径追踪、气溶胶光学厚度制图", + "台风监测 - 台风路径、强度和结构实时分析" + ] + } +} diff --git a/firstdata/sources/china/national/nbs.json b/firstdata/sources/china/national/nbs.json index 9b71575b..9aa3cea0 100644 --- a/firstdata/sources/china/national/nbs.json +++ b/firstdata/sources/china/national/nbs.json @@ -9,7 +9,7 @@ "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", + "website": "https://www.stats.gov.cn", "data_url": "https://www.stats.gov.cn/sj/", "api_url": "http://data.stats.gov.cn/api.htm", "country": "CN", diff --git a/firstdata/sources/china/research/china-cabr.json b/firstdata/sources/china/research/china-cabr.json new file mode 100644 index 00000000..56288dcb --- /dev/null +++ b/firstdata/sources/china/research/china-cabr.json @@ -0,0 +1,76 @@ +{ + "id": "china-cabr", + "name": { + "en": "China Academy of Building Research", + "zh": "中国建筑科学研究院有限公司" + }, + "description": { + "en": "The China Academy of Building Research (CABR) is China's top comprehensive research and development institution in the field of engineering construction, founded in 1953 and formerly under the Ministry of Housing and Urban-Rural Development (MOHURD). CABR is the primary technical body responsible for drafting and revising China's national and industry standards for construction, including the national Building Code (GB 50010), Seismic Design Code, Energy Efficiency Standards, and Fire Protection Code. The academy operates multiple national laboratories and testing centers, and maintains authoritative databases on building energy performance, structural safety, fire resistance ratings, and building materials quality. CABR has led the development of China's green building evaluation standard (GB/T 50378) and publishes research on building technology, energy efficiency, indoor environment quality, and smart buildings. It is the national technical authority that supports MOHURD policies and urban-rural construction regulation.", + "zh": "中国建筑科学研究院有限公司(中国建研院,CABR)成立于1953年,是中国工程建设领域顶级综合性科学研究开发机构,原属住房和城乡建设部管理。CABR是负责起草和修订中国建筑国家标准和行业标准的主要技术机构,包括《混凝土结构设计标准》(GB 50010)、抗震设计规范、建筑节能标准和消防规范。学院运营多个国家实验室和检测中心,维护建筑能效、结构安全、防火性能等级和建筑材料质量权威数据库。CABR主导制定了中国绿色建筑评价标准(GB/T 50378),并发布建筑技术、节能、室内环境质量和智慧建筑研究成果,是支撑住建部政策和城乡建设监管的国家技术权威机构。" + }, + "website": "https://www.cabr.cn", + "data_url": "https://www.cabr.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "construction", + "engineering", + "science", + "environment" + ], + "update_frequency": "irregular", + "tags": [ + "中国建筑科学研究院", + "cabr", + "建筑标准", + "construction-standards", + "建筑规范", + "building-code", + "抗震设计", + "seismic-design", + "建筑节能", + "building-energy-efficiency", + "绿色建筑", + "green-building", + "gb-50010", + "gb/t-50378", + "结构安全", + "structural-safety", + "防火性能", + "fire-resistance", + "建筑材料", + "building-materials", + "室内环境", + "indoor-environment", + "智慧建筑", + "smart-buildings", + "住房和城乡建设部", + "mohurd", + "国家实验室", + "national-laboratory", + "工程建设", + "engineering-construction", + "城乡建设", + "urban-rural-construction" + ], + "data_content": { + "en": [ + "Construction standards and codes database: full texts and technical interpretations of major national and industry standards drafted by CABR, including structural design codes (GB 50010 concrete, GB 50017 steel), seismic design standards, fire protection codes, and building energy efficiency standards", + "Building energy performance data: research datasets on energy consumption benchmarks for residential and public buildings across different climate zones in China, supporting the implementation of mandatory energy efficiency standards and green building certification", + "Structural safety testing results: laboratory test data on concrete, steel, composite structures, and building materials under static, dynamic, and extreme loading conditions, underpinning national standard development", + "Green building evaluation data: assessment results from China's Green Building Label certification program (GB/T 50378), including energy, water, material, indoor environment, and site management performance indicators for certified buildings", + "Indoor environment quality research: datasets on indoor air quality, thermal comfort, acoustics, and lighting in Chinese buildings, informing national health and safety standards for construction", + "Construction technology research outputs: technical reports, engineering case studies, and data on innovative construction technologies including prefabricated buildings, BIM applications, and smart building systems published by CABR research institutes" + ], + "zh": [ + "建筑标准和规范数据库:CABR起草的主要国家标准和行业标准全文及技术解读,包括结构设计规范(GB 50010混凝土、GB 50017钢结构)、抗震设计标准、消防规范和建筑节能标准", + "建筑能效数据:中国不同气候区住宅和公共建筑能耗基准研究数据集,支持强制性节能标准实施和绿色建筑认证", + "结构安全测试数据:混凝土、钢材、组合结构和建筑材料在静态、动态和极端荷载条件下的实验室测试数据,支撑国家标准制定", + "绿色建筑评估数据:中国绿色建筑标识认证项目(GB/T 50378)的评估结果,包括认证建筑的能源、水资源、材料、室内环境和场地管理绩效指标", + "室内环境质量研究:中国建筑室内空气质量、热舒适度、声学和照明数据集,为建筑健康与安全国家标准提供依据", + "建筑技术研究成果:CABR各研究院所发布的技术报告、工程案例研究以及装配式建筑、BIM应用和智慧建筑系统等创新建筑技术数据" + ] + } +} diff --git a/firstdata/sources/china/research/china-cae.json b/firstdata/sources/china/research/china-cae.json new file mode 100644 index 00000000..6df76dc2 --- /dev/null +++ b/firstdata/sources/china/research/china-cae.json @@ -0,0 +1,72 @@ +{ + "id": "china-cae", + "name": { + "en": "Chinese Academy of Engineering", + "zh": "中国工程院" + }, + "description": { + "en": "The Chinese Academy of Engineering (CAE) is China's highest honorary and consultative academic institution in the field of engineering and technology sciences. Founded in 1994, CAE comprises over 900 elected academicians across nine disciplinary divisions including mechanical and vehicle engineering, information and electronics, chemical and metallurgical engineering, construction and environment, energy and mining, agriculture, medicine and health, and management engineering. CAE publishes the annual China Engineering Science and Technology Development Report (蓝皮书) for key industrial sectors, strategic research reports on national engineering and technology priorities, and the Engineering (工程) academic journal. CAE's advisory reports directly inform national industrial policy, major infrastructure decisions, and technology development roadmaps.", + "zh": "中国工程院是中国工程技术领域最高荣誉性和咨询性学术机构,成立于1994年,现有院士900余名,分布于机械与运载、信息与电子、化工冶金与材料、建筑环境与土木、能源与矿业、农业、医药卫生、工程管理等九个学部。中国工程院发布分行业年度《中国工程科技发展报告》(蓝皮书)、国家工程科技重大战略研究报告,主办《Engineering》学术期刊。工程院的咨询报告直接服务于国家产业政策制定、重大基础设施决策和技术发展路线图规划。" + }, + "website": "https://www.cae.cn/", + "data_url": "https://www.cae.cn/cae/html/main/col73/column_73_1.html", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "science", + "research", + "technology" + ], + "update_frequency": "annual", + "tags": [ + "中国工程院", + "cae", + "chinese-academy-of-engineering", + "工程院院士", + "cae-academicians", + "工程科技蓝皮书", + "engineering-bluebook", + "工程技术", + "engineering-technology", + "战略研究", + "strategic-research", + "产业政策", + "industrial-policy", + "重大工程", + "major-engineering-projects", + "技术路线图", + "technology-roadmap", + "中国制造", + "made-in-china", + "智能制造", + "intelligent-manufacturing", + "新材料", + "new-materials", + "新能源", + "new-energy", + "国家重大战略", + "national-major-strategy" + ], + "data_content": { + "en": [ + "China Engineering Science and Technology Development Report (blue books): annual sector-specific reports on engineering advances in manufacturing, information technology, energy, agriculture, medicine, and construction", + "CAE strategic research reports: advisory studies on national engineering and technology priorities submitted to the State Council, covering AI, semiconductors, advanced manufacturing, and green energy transitions", + "Academician elections: biennial list of newly elected CAE academicians by discipline, institution affiliation, and research field", + "Engineering journal publications: peer-reviewed research articles in the CAE's flagship English-language journal covering major engineering disciplines", + "National major engineering project assessments: technical reviews and recommendations on large-scale infrastructure, aerospace, and industrial projects", + "Science and technology foresight studies: technology trend forecasting and emerging field identification reports", + "Engineering talent statistics: data on engineering workforce, graduate education trends, and R&D personnel in China's engineering sectors" + ], + "zh": [ + "中国工程科技发展报告(蓝皮书):制造业、信息技术、能源、农业、医学和建筑等领域工程技术进展年度分行业报告", + "中国工程院战略研究报告:向国务院提交的国家工程科技重大战略咨询研究,涵盖人工智能、半导体、先进制造和绿色能源转型", + "院士增选:按学科、所在机构和研究领域分类的双年度新增选院士名单", + "《Engineering》期刊成果:工程院旗舰英文期刊发表的涵盖主要工程学科的同行评审研究论文", + "国家重大工程项目评估:大型基础设施、航空航天和工业项目技术评审及建议", + "工程科技前瞻研究:技术趋势预测和新兴领域识别报告", + "工程人才统计:中国工程领域工程技术人员队伍、研究生教育动态及研发人员数据" + ] + } +} diff --git a/firstdata/sources/china/research/china-caict.json b/firstdata/sources/china/research/china-caict.json index 5b3e8505..2871f5ca 100644 --- a/firstdata/sources/china/research/china-caict.json +++ b/firstdata/sources/china/research/china-caict.json @@ -23,28 +23,28 @@ ], "update_frequency": "irregular", "tags": [ - "CAICT", + "caict", "中国信通院", "云计算", - "cloud computing", + "cloud-computing", "算力发展指数", - "computing power index", + "computing-power-index", "ICT产业", - "ICT industry", + "ict-industry", "数字经济", - "digital economy", + "digital-economy", "白皮书", - "white paper", + "white-paper", "蓝皮书", - "blue book", + "blue-book", "信息通信", "telecommunications", "人工智能", - "artificial intelligence", + "artificial-intelligence", "工信部", - "MIIT", + "miit", "行业报告", - "industry report" + "industry-report" ], "data_content": { "en": [ diff --git a/firstdata/sources/china/research/china-cas.json b/firstdata/sources/china/research/china-cas.json new file mode 100644 index 00000000..92f0a08d --- /dev/null +++ b/firstdata/sources/china/research/china-cas.json @@ -0,0 +1,75 @@ +{ + "id": "china-cas", + "name": { + "en": "Chinese Academy of Sciences - Science Data Bank", + "zh": "中国科学院科学数据库" + }, + "description": { + "en": "The Chinese Academy of Sciences (CAS) is China's highest academic institution and national comprehensive research center for natural sciences, with over 100 research institutes across disciplines. CAS operates the CAS Science Data Bank (scidb.cn), a national open science data repository that aggregates research datasets from CAS institutes covering earth sciences, astronomy, physics, chemistry, biology, ecology, materials science, and ocean sciences. The platform provides free access to peer-reviewed scientific datasets produced by China's premier research institutions, supporting reproducibility of published findings and enabling data-driven research across disciplines. CAS also publishes the annual China Science and Technology Development Report and manages several domain-specific data centers recognized as national scientific data centers.", + "zh": "中国科学院是中国自然科学领域最高学术机构和国家综合性科研中心,设有100余个研究院所。中科院运营科学数据库(scidb.cn),这是一个汇聚各研究院所科研数据集的国家开放科学数据仓储平台,覆盖地球科学、天文学、物理、化学、生物、生态、材料科学和海洋科学等领域。平台提供中国顶尖科研机构产出的同行评审数据集免费访问服务,支持已发表成果的可重复性验证,促进跨学科数据驱动研究。中科院同时发布年度《中国科学技术发展报告》,并管理多个被认定为国家科学数据中心的专题数据中心。" + }, + "website": "https://www.cas.cn/", + "data_url": "https://www.scidb.cn/", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "science", + "research", + "environment" + ], + "update_frequency": "irregular", + "tags": [ + "中国科学院", + "cas", + "chinese-academy-of-sciences", + "科学数据库", + "science-data-bank", + "scidb", + "科研数据", + "research-data", + "开放科学", + "open-science", + "地球科学", + "earth-science", + "生态数据", + "ecological-data", + "天文数据", + "astronomical-data", + "材料科学", + "materials-science", + "海洋科学", + "ocean-science", + "国家科学数据中心", + "national-science-data-center", + "可重复性", + "reproducibility", + "中国科研", + "china-research", + "基础研究", + "basic-research" + ], + "data_content": { + "en": [ + "Earth and environmental science datasets: atmospheric chemistry, soil surveys, watershed hydrology, glacier monitoring, and land use change data from CAS field stations", + "Astronomy and space science data: observational data from NAOC telescopes, space mission telemetry from NSSC, and sky survey catalogs", + "Biological and ecological datasets: species distribution records, biodiversity surveys, ecosystem monitoring from China's Ecosystem Research Network (CERN)", + "Materials science data: crystallographic databases, materials properties datasets from CAS institutes including NIMTE and IMR", + "Ocean science datasets: observational data from South China Sea Institute, deep-sea survey data, and marine biogeochemistry records", + "Physics and chemistry research data: experimental datasets from major CAS research facilities and national laboratories", + "China Science and Technology Development Report: annual statistical report on R&D investment, patent output, publication counts, and technology transfer", + "National scientific data center outputs: domain-specific curated datasets from CAS-managed centers for high-energy physics, genomics, and remote sensing" + ], + "zh": [ + "地球与环境科学数据集:大气化学、土壤调查、流域水文、冰川监测及来自中科院野外台站的土地利用变化数据", + "天文与空间科学数据:国家天文台望远镜观测数据、国家空间科学中心空间任务遥测及巡天星表", + "生物与生态数据集:物种分布记录、生物多样性调查及中国生态系统研究网络(CERN)生态系统监测数据", + "材料科学数据:晶体学数据库,以及来自宁波材料技术与工程研究所、金属研究所等中科院院所的材料性能数据集", + "海洋科学数据集:南海海洋研究所观测数据、深海调查数据及海洋生物地球化学记录", + "物理与化学研究数据:来自中科院重大科研装置和国家实验室的实验数据集", + "中国科学技术发展报告:研发投入、专利产出、论文发表量及技术转移情况年度统计报告", + "国家科学数据中心成果:高能物理、基因组学、遥感等中科院管理的专题数据中心精选数据集" + ] + } +} diff --git a/firstdata/sources/china/research/china-casm.json b/firstdata/sources/china/research/china-casm.json new file mode 100644 index 00000000..02cb5e08 --- /dev/null +++ b/firstdata/sources/china/research/china-casm.json @@ -0,0 +1,76 @@ +{ + "id": "china-casm", + "name": { + "en": "Chinese Academy of Surveying and Mapping", + "zh": "中国测绘科学研究院" + }, + "description": { + "en": "The Chinese Academy of Surveying and Mapping (CASM) is the national research institution for surveying, mapping, and geoinformation under China's Ministry of Natural Resources. Founded in 1959, CASM conducts cutting-edge research on geodesy, cartography, remote sensing, geographic information systems (GIS), and spatial data infrastructure. It is responsible for developing national surveying and mapping standards, technical norms, and theoretical frameworks for China's geospatial information industry. CASM maintains and produces key national geodetic datasets, digital elevation models, topographic maps, and geospatial reference frameworks. It also conducts research on satellite navigation and positioning (BeiDou/GNSS), photogrammetry, and marine surveying technologies, contributing to national spatial data infrastructure development and international mapping cooperation.", + "zh": "中国测绘科学研究院(CASM)是自然资源部下属的测绘、地图制图和地理信息国家级研究机构,成立于1959年。中心在大地测量、地图制图、遥感、地理信息系统(GIS)和空间数据基础设施领域开展前沿研究,负责制定中国测绘行业国家标准、技术规范和理论框架。中心维护和生产国家大地测量数据集、数字高程模型、地形图和地理空间参考框架,并在卫星导航定位(北斗/GNSS)、摄影测量和海洋测绘技术领域开展研究,推动国家空间数据基础设施建设和国际测绘合作。" + }, + "website": "https://www.casm.ac.cn", + "data_url": "https://www.casm.ac.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "geography", + "remote-sensing", + "infrastructure", + "technology" + ], + "update_frequency": "irregular", + "tags": [ + "中国测绘科学研究院", + "casm", + "chinese-academy-of-surveying-and-mapping", + "测绘", + "surveying-and-mapping", + "大地测量", + "geodesy", + "地图制图", + "cartography", + "地理信息", + "geographic-information", + "gis", + "遥感", + "remote-sensing", + "空间数据", + "spatial-data", + "数字高程模型", + "dem", + "digital-elevation-model", + "地形图", + "topographic-map", + "北斗", + "beidou", + "gnss", + "摄影测量", + "photogrammetry", + "测绘标准", + "mapping-standards", + "地理空间", + "geospatial" + ], + "data_content": { + "en": [ + "Geodetic datasets: national geodetic control networks, reference frames, and precise coordinate data for surveying benchmarks across China", + "Digital elevation models: national DEM products at various resolutions derived from topographic surveys and remote sensing", + "Topographic maps: digital and paper topographic map series covering mainland China at multiple scales", + "Geospatial standards: national standards and technical specifications for surveying, mapping, and geographic information systems in China", + "Remote sensing data products: processed satellite and airborne remote sensing imagery for mapping and change detection applications", + "BeiDou/GNSS positioning: research datasets and technical documentation related to China's BeiDou Navigation Satellite System applications", + "Marine surveying data: bathymetric charts and coastal zone survey datasets from China's territorial waters" + ], + "zh": [ + "大地测量数据集:全国大地控制网、参考框架及遍布中国的测量基准精密坐标数据", + "数字高程模型:由地形测量和遥感数据生成的多分辨率国家DEM产品", + "地形图:覆盖中国大陆多比例尺的数字及纸质地形图系列", + "地理空间标准:中国测绘和地理信息系统领域的国家标准和技术规范", + "遥感数据产品:用于测绘和变化检测的星载及机载遥感影像处理产品", + "北斗/GNSS定位:与中国北斗卫星导航系统应用相关的研究数据集及技术文档", + "海洋测绘数据:中国领海区域水深图和海岸带测量数据集" + ] + } +} diff --git a/firstdata/sources/china/research/china-cass.json b/firstdata/sources/china/research/china-cass.json new file mode 100644 index 00000000..c01eb611 --- /dev/null +++ b/firstdata/sources/china/research/china-cass.json @@ -0,0 +1,78 @@ +{ + "id": "china-cass", + "name": { + "en": "Chinese Academy of Social Sciences", + "zh": "中国社会科学院" + }, + "description": { + "en": "The Chinese Academy of Social Sciences (CASS) is China's highest academic institution and national-level comprehensive research center in philosophy and social sciences. Founded in 1977 as a spin-off from the Chinese Academy of Sciences, CASS operates more than 40 research institutes covering economics, sociology, political science, law, history, literature, philosophy, international studies, regional studies, and ethnic studies. CASS publishes the authoritative China Social Sciences yearbook and numerous research reports that inform national policy. Its affiliated institutes produce major economic forecasts, social development assessments, and international relations analyses. CASS data and publications are widely referenced in government policymaking and academic research both within China and internationally.", + "zh": "中国社会科学院是中国哲学社会科学领域最高学术机构和综合性全国研究中心,1977年从中国科学院独立组建。社科院下设40余个研究所,覆盖经济学、社会学、政治学、法学、历史学、文学、哲学、国际问题、区域研究和民族学等领域。社科院发布权威性的《中国社会科学年鉴》及大量研究报告,直接服务国家政策制定。各附属研究所出具重要的经济预测、社会发展评估和国际关系分析报告,研究成果在国内外政府决策和学术研究中被广泛引用。" + }, + "website": "http://www.cass.ac.cn", + "data_url": "http://www.cass.ac.cn/list/zw_sscp.html", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "economics", + "social", + "political-science", + "law", + "history" + ], + "update_frequency": "irregular", + "tags": [ + "中国社会科学院", + "cass", + "chinese-academy-of-social-sciences", + "社会科学", + "social-sciences", + "哲学", + "philosophy", + "经济学", + "economics", + "社会学", + "sociology", + "政治学", + "political-science", + "法学", + "law", + "历史学", + "history", + "国际问题", + "international-studies", + "区域研究", + "regional-studies", + "社科院蓝皮书", + "cass-bluebook", + "社会科学年鉴", + "social-sciences-yearbook", + "中国经济形势分析", + "china-economic-outlook", + "社会发展报告", + "social-development-report" + ], + "data_content": { + "en": [ + "China Social Sciences Yearbook: comprehensive annual overview of developments across all social science disciplines in China", + "Economic outlook reports: macroeconomic forecasts and analysis of China's economic trends, growth drivers, and structural transformation", + "Social development blue books: annual assessments of social stability, inequality, urbanization, public services, and quality of life in China", + "International relations research: analytical reports on China's foreign policy, bilateral relations, and global geopolitical dynamics", + "Legal studies publications: research on Chinese law, judicial system, and law reform covering civil, criminal, commercial, and constitutional law", + "Historical research data: archives, primary sources, and research output covering Chinese and world history", + "Ethnic and regional studies: data and research on minority nationalities, regional development, and border area studies", + "Philosophy and cultural research: studies on Chinese and comparative philosophy, literary theory, and cultural policy" + ], + "zh": [ + "《中国社会科学年鉴》:中国各社会科学学科年度发展综合概览", + "经济形势报告:中国宏观经济预测分析,涵盖经济趋势、增长动力和结构转型", + "社会发展蓝皮书:社会稳定、不平等、城镇化、公共服务和生活质量年度评估", + "国际问题研究:中国外交政策、双边关系和全球地缘政治动态分析报告", + "法学研究出版物:涵盖民商法、刑法、宪法和法制改革的中国法律与司法制度研究", + "历史研究资料:中国史与世界史档案、原始史料和研究成果", + "民族与区域研究:少数民族、区域发展和边疆研究数据与研究成果", + "哲学与文化研究:中国哲学、比较哲学、文艺理论和文化政策研究" + ] + } +} diff --git a/firstdata/sources/china/research/china-cast.json b/firstdata/sources/china/research/china-cast.json new file mode 100644 index 00000000..d992d26c --- /dev/null +++ b/firstdata/sources/china/research/china-cast.json @@ -0,0 +1,75 @@ +{ + "id": "china-cast", + "name": { + "en": "China Association for Science and Technology", + "zh": "中国科学技术协会" + }, + "description": { + "en": "The China Association for Science and Technology (CAST) is China's largest national mass organization of scientific and technological workers, with over 10 million individual members and more than 200 affiliated national-level academic societies. CAST plays a central role in bridging the scientific community with government policymaking, publishing annual science and technology policy reports, assessments of disciplinary frontiers, and surveys of scientific talent. CAST's affiliated societies publish peer-reviewed journals, discipline-specific statistics, and research benchmark data across engineering, natural sciences, agriculture, and medicine. CAST also produces the annual China Science and Technology Development Report, surveys the status of scientific literacy among the Chinese public, and manages the Blue Book series on science and technology policy. It coordinates international scientific exchanges and jointly produces comparative datasets with UNESCO and major global science organizations.", + "zh": "中国科学技术协会(科协)是中国规模最大的科技工作者全国性群众团体,拥有逾千万名个人会员和200余个全国性学会。科协在科技界与政府决策之间发挥重要桥梁作用,出版年度科技政策报告、学科前沿评估和科技人才调查报告。科协所属学会在工程、自然科学、农业和医学等领域出版学术期刊、学科统计数据和研究基准数据。科协还出版年度《中国科技发展报告》,开展全国公民科学素质调查,管理科技政策蓝皮书系列,协调国际科技交流,并与联合国教科文组织及全球主要科学组织联合制作比较数据集。" + }, + "website": "https://www.cast.org.cn/", + "data_url": "https://www.cast.org.cn/xw/", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "technology", + "research", + "science", + "education" + ], + "update_frequency": "annual", + "tags": [ + "中国科学技术协会", + "cast", + "china-association-for-science-and-technology", + "科技政策", + "science-and-technology-policy", + "科学素质", + "scientific-literacy", + "科技人才", + "scientific-talent", + "学术学会", + "academic-societies", + "科技报告", + "science-report", + "学科前沿", + "research-frontiers", + "蓝皮书", + "blue-book", + "中国科研", + "china-research", + "科技创新", + "science-and-technology-innovation", + "学术期刊", + "academic-journals", + "国际科技合作", + "international-science-cooperation", + "公民科学", + "citizen-science" + ], + "data_content": { + "en": [ + "China Science and Technology Development Report: annual statistical overview of R&D investment, patent filings, scientific publications, and technology transfer outcomes", + "Scientific literacy surveys: nationally representative survey data on public understanding of science and technology, conducted every five years", + "Science and technology workforce: surveys of scientists, engineers, and technical workers by sector, age group, gender, and geographic distribution", + "Disciplinary frontier assessments: annual reports identifying breakthrough research areas and emerging fields across key scientific disciplines", + "Academic society statistics: membership counts, journal output, conference activity, and citation metrics for CAST's 200+ affiliated national societies", + "Science policy blue books: policy analysis and recommendations on innovation ecosystems, talent development, and technology transfer", + "International science indicators: comparative data on China's global research output, collaboration networks, and citation impact benchmarked against major countries", + "Youth science education data: participation rates in science competitions, technology activity engagement, and STEM education outcomes" + ], + "zh": [ + "中国科技发展报告:研发投入、专利申请、科学论文发表及技术转移成果的年度统计综述", + "科学素质调查:每五年开展一次的全国公民科学技术素质代表性调查数据", + "科技人才状况:按行业、年龄、性别和地域分布的科学家、工程师及技术人员调查数据", + "学科前沿评估:各重点科学领域突破性研究方向和新兴领域的年度报告", + "学术学会统计:科协200余个所属全国学会的会员人数、期刊产出、会议活动及引用指标", + "科技政策蓝皮书:关于创新生态系统、人才培养和技术转移的政策分析与建议", + "国际科学指标:与主要国家基准比较的中国全球科研产出、合作网络及引用影响力数据", + "青少年科学教育数据:科技竞赛参与率、科技活动参与情况和STEM教育成果" + ] + } +} diff --git a/firstdata/sources/china/research/china-casted.json b/firstdata/sources/china/research/china-casted.json new file mode 100644 index 00000000..c3ba7522 --- /dev/null +++ b/firstdata/sources/china/research/china-casted.json @@ -0,0 +1,63 @@ +{ + "id": "china-casted", + "name": { + "en": "China Academy of Science and Technology for Development", + "zh": "中国科学技术发展战略研究院" + }, + "description": { + "en": "The China Academy of Science and Technology for Development (CASTED) is a government-affiliated research institute under the Ministry of Science and Technology. It serves as a national think tank specializing in science and technology policy research, innovation system analysis, and technology development strategy. CASTED produces the National Innovation Index, technology competitiveness rankings, R&D investment analysis reports, innovation ecosystem assessments, and science policy evaluations. Its annual publications on China's regional innovation capacity and global science and technology competitiveness are widely referenced by policymakers, researchers, and international organizations.", + "zh": "中国科学技术发展战略研究院是科学技术部下属的政府直属研究机构,专注于科技政策研究、创新体系分析和技术发展战略,是国家级科技政策智库。研究院编制国家创新指数、技术竞争力排名、研发投入分析报告、创新生态系统评估和科学政策评价,每年发布的中国区域创新能力和全球科技竞争力系列报告被政策制定者、研究人员和国际组织广泛引用。" + }, + "website": "http://www.casted.org.cn", + "data_url": "http://www.casted.org.cn/channel/", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "science-technology", + "innovation", + "research", + "economics", + "statistics" + ], + "update_frequency": "annual", + "tags": [ + "china", + "science-technology", + "innovation", + "r&d", + "technology-policy", + "national-innovation-index", + "research-development", + "science-policy", + "competitiveness", + "科技政策", + "创新指数", + "研发投入", + "科技竞争力", + "区域创新", + "科技发展战略", + "科技部" + ], + "data_content": { + "en": [ + "National Innovation Index - Composite index measuring China's overall innovation capabilities and global ranking trends", + "R&D Investment Analysis - Gross expenditure on R&D (GERD), R&D intensity, sectoral and regional breakdowns", + "Regional Innovation Capacity - Province-level rankings of innovation inputs, outputs, and ecosystem quality", + "Technology Competitiveness - China's position in global technology rankings, patent analysis, and scientific output metrics", + "Science and Technology Statistics - Basic S&T statistics on personnel, funding, outputs, and enterprise innovation", + "Innovation Policy Evaluation - Assessment of major science and technology policies and their implementation outcomes", + "Global S&T Comparison - Benchmarking China's innovation performance against major economies" + ], + "zh": [ + "国家创新指数 - 衡量中国整体创新能力的综合指数及全球排名趋势", + "研发投入分析 - 研发总支出(GERD)、研发强度、行业和区域分类数据", + "区域创新能力 - 省级创新投入、产出和生态系统质量排名", + "科技竞争力 - 中国在全球科技排名中的地位、专利分析和科学产出指标", + "科技统计数据 - 关于科技人才、经费、产出和企业创新的基础科技统计数据", + "创新政策评价 - 重大科技政策及其实施成效的评估", + "全球科技对比 - 中国创新绩效与主要经济体的基准比较" + ] + } +} diff --git a/firstdata/sources/china/research/china-catarc.json b/firstdata/sources/china/research/china-catarc.json new file mode 100644 index 00000000..0beb56a4 --- /dev/null +++ b/firstdata/sources/china/research/china-catarc.json @@ -0,0 +1,23 @@ +{ + "id": "china-catarc", + "name": { + "en": "China Automotive Technology and Research Center", + "zh": "中国汽车技术研究中心" + }, + "description": { + "en": "The China Automotive Technology and Research Center (CATARC) is a national-level research institution under SASAC, providing automotive industry testing, certification, standards development, and policy research. It publishes vehicle sales data, new energy vehicle statistics, and automotive safety reports.", + "zh": "中国汽车技术研究中心(中汽中心)是国资委直属的国家级研究机构,提供汽车行业测试、认证、标准制定和政策研究服务。发布汽车销量数据、新能源汽车统计和汽车安全报告。" + }, + "data_content": { + "en": ["vehicle sales statistics", "new energy vehicle data", "automotive safety reports", "emission standards data", "vehicle certification records"], + "zh": ["汽车销量统计", "新能源汽车数据", "汽车安全报告", "排放标准数据", "车辆认证记录"] + }, + "country": "CN", + "authority_level": "research", + "geographic_scope": "national", + "website": "https://www.catarc.ac.cn", + "data_url": "https://www.catarc.ac.cn", + "domains": ["transportation", "manufacturing"], + "tags": ["automotive", "vehicles", "new-energy", "safety", "certification", "sasac"], + "update_frequency": "monthly" +} diff --git a/firstdata/sources/china/research/china-cciee.json b/firstdata/sources/china/research/china-cciee.json new file mode 100644 index 00000000..e0e5eda3 --- /dev/null +++ b/firstdata/sources/china/research/china-cciee.json @@ -0,0 +1,72 @@ +{ + "id": "china-cciee", + "name": { + "en": "China Center for International Economic Exchanges", + "zh": "中国国际经济交流中心" + }, + "description": { + "en": "The China Center for International Economic Exchanges (CCIEE) is a high-level government think tank established in 2009 under the State Council's Development Research Center, led by senior government officials and economists. CCIEE conducts strategic policy research on major international and domestic economic issues, publishes influential research reports on global economic governance, trade policy, the Belt and Road Initiative, financial opening, and China's macroeconomic outlook. It hosts the annual China Development Forum supplement sessions and produces widely cited macroeconomic forecasts and policy recommendations. CCIEE serves as a key advisory body for China's economic policymaking and international economic diplomacy, and its research outputs are used by government agencies, international organizations, and financial institutions.", + "zh": "中国国际经济交流中心(CCIEE)是2009年成立的高级别国家智库,隶属于国务院发展研究中心,由资深政府官员和经济学家领导。CCIEE就重大国际和国内经济问题开展战略政策研究,发布全球经济治理、贸易政策、一带一路、金融开放及中国宏观经济展望等方面的权威研究报告。CCIEE主办中国发展论坛配套会议,发布广泛引用的宏观经济预测及政策建议。作为中国经济决策和国际经济外交的重要咨询机构,其研究成果被政府机构、国际组织和金融机构广泛使用。" + }, + "website": "https://www.cciee.org.cn", + "data_url": "https://www.cciee.org.cn/ktcglistall.aspx?clmId=650", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "economics", + "trade", + "finance" + ], + "update_frequency": "irregular", + "tags": [ + "中国经济", + "china-economy", + "宏观经济", + "macroeconomics", + "经济预测", + "economic-forecast", + "全球经济治理", + "global-economic-governance", + "贸易政策", + "trade-policy", + "一带一路", + "belt-and-road", + "bri", + "金融开放", + "financial-opening", + "中国发展论坛", + "china-development-forum", + "政策研究", + "policy-research", + "国际贸易", + "international-trade", + "人民币国际化", + "rmb-internationalization", + "智库", + "think-tank", + "cciee", + "国务院智库" + ], + "data_content": { + "en": [ + "Macroeconomic forecasts: quarterly and annual forecasts for China's GDP growth, inflation, trade balance, and key economic indicators", + "Policy research reports: strategic analysis on trade policy, financial regulation, industrial policy, and international economic cooperation", + "Belt and Road Initiative research: investment flows, infrastructure project data, and economic impact assessments along BRI corridors", + "Global economic governance: analysis of G20, WTO, IMF, and other multilateral economic governance frameworks from a Chinese perspective", + "Financial opening research: reports on capital account liberalization, RMB internationalization, and China's financial sector reform", + "Blue book publications: annual China economic outlook and strategic economic reports", + "Conference proceedings: summaries and keynote content from CCIEE-hosted international economic forums" + ], + "zh": [ + "宏观经济预测:中国GDP增长、通货膨胀、贸易差额及主要经济指标的季度和年度预测", + "政策研究报告:贸易政策、金融监管、产业政策及国际经济合作战略分析", + "一带一路研究:沿线投资流量、基础设施项目数据及经济影响评估", + "全球经济治理:从中国视角分析G20、WTO、IMF等多边经济治理框架", + "金融开放研究:资本账户自由化、人民币国际化及中国金融部门改革报告", + "蓝皮书出版物:年度中国经济展望及战略经济报告", + "会议文集:CCIEE主办国际经济论坛的摘要及主旨内容" + ] + } +} diff --git a/firstdata/sources/china/research/china-ccs-crop.json b/firstdata/sources/china/research/china-ccs-crop.json new file mode 100644 index 00000000..cbd2d59e --- /dev/null +++ b/firstdata/sources/china/research/china-ccs-crop.json @@ -0,0 +1,60 @@ +{ + "id": "china-ccs-crop", + "name": { + "en": "Chinese Crop Science Society", + "zh": "中国作物学会" + }, + "description": { + "en": "The Chinese Crop Science Society (CCSS) is the national academic society for crop science under the China Association for Science and Technology (CAST), established in 1978. Representing researchers, breeders, and agronomists across China, CCSS is the authoritative academic body for crop genetics, breeding, cultivation, and production research. The society administers the National Crop Variety Data Platform, which provides data on varieties approved through the national examination and approval process, including variety characteristics, adaptability regions, cultivation guidelines, and yield benchmarks. CCSS publishes leading academic journals including Acta Agronomica Sinica and Crops, and compiles crop production statistics, germplasm resource data, and national trial datasets for major field crops including rice, wheat, maize, soybean, cotton, and rapeseed. Its data serves as the authoritative reference for agricultural R&D, seed industry regulation, and food production capacity assessment.", + "zh": "中国作物学会(CCSS)是中国科学技术协会下属的作物科学全国性学术社团,成立于1978年。学会代表全国作物遗传、育种、栽培和生产领域的研究人员,是作物遗传育种、栽培技术及生产研究的权威学术机构。学会管理全国作物品种数据平台,提供通过国家审定和登记的品种特征特性、适宜种植区域、栽培技术规程及产量基准数据。学会出版《作物学报》《作物杂志》等权威学术期刊,汇编作物生产统计数据、种质资源数据及水稻、小麦、玉米、大豆、棉花、油菜等主要大田作物国家试验数据集。其数据是农业科研、种子行业监管及粮食生产能力评估的权威参考依据。" + }, + "website": "https://www.chinacrops.org", + "data_url": "https://www.chinacrops.org", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "agriculture", + "research", + "food-security" + ], + "update_frequency": "annual", + "tags": [ + "ccss", + "中国作物学会", + "作物科学", + "作物育种", + "农作物", + "品种审定", + "粮食生产", + "crop-science", + "crop-breeding", + "agriculture", + "food-security", + "rice", + "wheat", + "maize", + "种质资源" + ], + "data_content": { + "en": [ + "National crop variety approval and registration database", + "Variety characteristic data (yield, quality, disease resistance, regional adaptability)", + "Germplasm resource catalog for major field crops", + "National crop variety trial datasets (DUS and VCU trials)", + "Crop production statistics and regional yield benchmarks", + "Cultivation technical guidelines by variety and region", + "Annual crop science research progress reports" + ], + "zh": [ + "全国农作物品种审定与登记数据库", + "品种特征特性数据(产量、品质、抗病性、适宜种植区域)", + "主要大田作物种质资源目录", + "全国农作物品种试验数据集(DUS测试和VCU试验)", + "作物生产统计及区域产量基准数据", + "按品种和区域的栽培技术规程", + "作物科学研究年度进展报告" + ] + } +} diff --git a/firstdata/sources/china/research/china-cdrf.json b/firstdata/sources/china/research/china-cdrf.json new file mode 100644 index 00000000..ecd3bd79 --- /dev/null +++ b/firstdata/sources/china/research/china-cdrf.json @@ -0,0 +1,68 @@ +{ + "id": "china-cdrf", + "name": { + "en": "China Development Research Foundation (CDRF)", + "zh": "中国发展研究基金会" + }, + "description": { + "en": "The China Development Research Foundation (CDRF) is a public fundraising foundation established in 1997 under the State Council, affiliated with the Development Research Center of the State Council (DRC). CDRF focuses on policy research and practical interventions in areas including early childhood development, poverty alleviation, social safety nets, education equity, and sustainable development. It organizes the annual China Development Forum (CDF), China's premier high-level economic dialogue between Chinese government leaders and global business and academic figures. CDRF publishes the China Development Report — an influential annual publication covering China's urbanization, population dynamics, social policy, and inclusive growth challenges. CDRF data and reports provide authoritative analysis of China's social policy evolution, human capital development, rural-urban migration trends, and the intersection of government policy with economic transformation. Its research informs domestic policy and is widely cited in international development economics literature.", + "zh": "中国发展研究基金会(发展基金会)是1997年经国务院批准成立的公募基金会,隶属于国务院发展研究中心。基金会聚焦早期儿童发展、扶贫减贫、社会保障、教育公平和可持续发展领域的政策研究和实践干预。基金会主办年度《中国发展高层论坛》—中国政府与全球工商界及学术界领袖的高级别对话平台。基金会出版《中国发展报告》,是涵盖中国城镇化、人口动态、社会政策和包容性增长挑战的重要年度读本。基金会数据和报告为中国社会政策演变、人力资本发展、城乡流动趋势及政府政策与经济转型交汇提供权威分析,对国内政策制定和国际发展经济学研究均有重要参考价值。" + }, + "website": "https://www.cdrf.org.cn", + "data_url": "https://www.cdrf.org.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "economics", + "social", + "education" + ], + "update_frequency": "annual", + "tags": [ + "中国发展研究基金会", + "cdrf", + "china-development-research-foundation", + "中国发展高层论坛", + "china-development-forum", + "中国发展报告", + "china-development-report", + "社会政策", + "social-policy", + "城镇化", + "urbanization", + "扶贫", + "poverty-alleviation", + "早期儿童发展", + "early-childhood-development", + "人力资本", + "human-capital", + "包容性增长", + "inclusive-growth", + "农村", + "rural-development" + ], + "data_content": { + "en": [ + "China Development Report: annual flagship publication covering urbanization, population aging, education, health, and social protection policy", + "China Development Forum proceedings: speeches and policy positions from Chinese government ministers, global CEOs, and leading economists", + "Early childhood development studies: longitudinal data on preschool access, nutrition interventions, and cognitive development outcomes in rural China", + "Poverty alleviation research: household survey data, program evaluations of targeted poverty relief, and post-poverty transition challenges", + "Social safety net analysis: coverage rates, benefit levels, and equity gaps in pension, unemployment insurance, and medical insurance systems", + "Education equity reports: access to quality education across urban-rural and regional divides, compulsory education completion rates", + "Population and labor market studies: migration patterns, aging society projections, and workforce skills gap analyses", + "Sustainable development assessments: SDG progress tracking for China, green finance policy research, and carbon transition social impact" + ], + "zh": [ + "《中国发展报告》:年度旗舰出版物,涵盖城镇化、人口老龄化、教育、卫生和社会保障政策", + "中国发展高层论坛成果:中国政府部长、全球企业CEO和知名经济学家的演讲及政策立场", + "早期儿童发展研究:农村地区学前教育普及率、营养干预和认知发展成果追踪数据", + "扶贫研究:住户调查数据、精准扶贫项目评估及后扶贫时代转型挑战", + "社会保障体系分析:养老保险、失业保险和医疗保险的覆盖率、待遇水平及公平差距", + "教育公平报告:城乡和地区间优质教育获得差距、义务教育完成率", + "人口和劳动力市场研究:人口迁移规律、老龄化社会预测及劳动力技能缺口分析", + "可持续发展评估:中国SDG进展追踪、绿色金融政策研究及碳转型社会影响" + ] + } +} diff --git a/firstdata/sources/china/research/china-cf40.json b/firstdata/sources/china/research/china-cf40.json new file mode 100644 index 00000000..f52d4004 --- /dev/null +++ b/firstdata/sources/china/research/china-cf40.json @@ -0,0 +1,81 @@ +{ + "id": "china-cf40", + "name": { + "en": "China Finance 40 Forum (CF40)", + "zh": "中国金融四十人论坛" + }, + "description": { + "en": "The China Finance 40 Forum (CF40) is one of China's most influential non-governmental, non-profit financial think tanks, established in 2008 and composed of 40 prominent Chinese economists and financial professionals aged 40 and under at the time of admission. CF40 focuses on policy research in economics and finance and has grown into a strategic think tank family including CF40 Institute, Shanghai Institute of Finance and Development (SIFD), Beijing Wealth Management Institute (BWMI), China Pension Finance 50 Forum (CAFF50), and New Finance 50 Forum (NFF50). CF40 publishes authoritative research on monetary policy, financial regulation, capital markets, exchange rate, international finance, fintech, and wealth management. Its members include current and former senior officials from the People's Bank of China, State Administration of Foreign Exchange, China Securities Regulatory Commission, and leading economists. CF40 reports directly inform Chinese economic policymaking and its annual Bund Summit is one of Asia's top-tier financial conferences.", + "zh": "中国金融四十人论坛(CF40)是中国最具影响力的非官方、非营利性金融专业智库之一,2008年成立,由40位杰出的中青年金融经济学家和金融从业者组成(入会时年龄不超过40岁)。CF40聚焦经济金融领域的政策研究,已发展成为涵盖CF40研究院、上海金融与发展实验室(SIFD)、北京大学国家发展研究院、中国养老金融50人论坛(CAFF50)、新金融50人论坛(NFF50)等在内的战略智库家族。CF40在货币政策、金融监管、资本市场、汇率、国际金融、金融科技及财富管理等领域发布权威研究成果。其成员包括中国人民银行、国家外汇管理局、中国证监会等机构的现任和前任高级官员以及顶尖经济学家。CF40的研究报告直接服务于中国经济决策,年度“外滩金融峰会”为亚洲顶级金融会议。" + }, + "website": "https://www.cf40.com/", + "data_url": "https://www.cf40.com/research", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "economics", + "research" + ], + "update_frequency": "weekly", + "tags": [ + "中国金融四十人论坛", + "cf40", + "金融智库", + "financial-think-tank", + "货币政策", + "monetary-policy", + "金融监管", + "financial-regulation", + "资本市场", + "capital-markets", + "汇率政策", + "exchange-rate", + "人民币国际化", + "rmb-internationalization", + "金融科技", + "fintech", + "财富管理", + "wealth-management", + "宏观经济", + "macroeconomics", + "国际金融", + "international-finance", + "养老金融", + "pension-finance", + "外滩金融峰会", + "bund-summit", + "新金融", + "new-finance", + "金融改革", + "financial-reform" + ], + "data_content": { + "en": [ + "Research reports: policy analysis on monetary policy, financial regulation, exchange rate, and capital account opening", + "Macroeconomic outlook: quarterly and annual forecasts on China's GDP, inflation, trade, and key economic indicators", + "Working papers and briefings: member-authored analytical papers on current economic and financial policy issues", + "Bund Summit publications: proceedings, keynote speeches, and analytical outputs from the annual Bund Financial Summit in Shanghai", + "China Financial Reform Report: annual assessment of China's financial sector reform progress", + "RMB internationalization research: studies on RMB's role in global payments, reserves, and bond markets", + "Fintech research: reports on digital currency, blockchain, mobile payments, and financial inclusion", + "Pension finance research: policy studies on China's pension system, retirement investing, and longevity finance via CAFF50", + "Wealth management research: outputs from the Beijing Wealth Management Institute on asset management industry trends", + "Podcast and video content: expert interviews and policy discussions from CF40 members" + ], + "zh": [ + "研究报告:货币政策、金融监管、汇率及资本账户开放的政策分析", + "宏观经济展望:中国GDP、通货膨胀、贸易及主要经济指标的季度和年度预测", + "工作论文与简报:成员撰写的当前经济金融政策分析论文", + "外滩金融峰会出版物:年度上海外滩金融峰会的会议文集、主旨演讲与分析成果", + "《中国金融改革报告》:中国金融业改革进展年度评估", + "人民币国际化研究:人民币在全球支付、储备及债券市场角色的研究", + "金融科技研究:数字货币、区块链、移动支付及普惠金融的研究报告", + "养老金融研究:CAFF50发布的中国养老金体系、养老投资及长寿金融政策研究", + "财富管理研究:北京大学国家发展研究院北京大学汇丰商学院财富管理研究中心关于资产管理行业趋势的成果", + "播客与视频内容:CF40成员的专家访谈和政策讨论" + ] + } +} diff --git a/firstdata/sources/china/research/china-cfps.json b/firstdata/sources/china/research/china-cfps.json new file mode 100644 index 00000000..58329bce --- /dev/null +++ b/firstdata/sources/china/research/china-cfps.json @@ -0,0 +1,78 @@ +{ + "id": "china-cfps", + "name": { + "en": "China Family Panel Studies (CFPS)", + "zh": "中国家庭追踪调查(CFPS)" + }, + "description": { + "en": "The China Family Panel Studies (CFPS) is a nationally representative longitudinal survey of Chinese communities, families, and individuals, conducted biennially by the Institute of Social Science Survey (ISSS) at Peking University. Launched in 2010, CFPS tracks approximately 15,000 households across 25 provinces and collects multi-dimensional data on economic activities, education, health, and family dynamics. CFPS is one of China's most influential household panel surveys, freely accessible to registered academic users via Peking University's Open Research Data platform.", + "zh": "中国家庭追踪调查(CFPS)是由北京大学中国社会科学调查中心(ISSS)负责执行的全国性、综合性大型追踪调查,每两年开展一次,追踪约15000户家庭,涵盖全国25个省份。CFPS自2010年启动,收集经济活动、教育、健康和家庭动态等多维度数据,是中国最具影响力的家庭追踪调查之一,通过北京大学开放研究数据平台向注册学术用户免费开放。" + }, + "website": "https://www.isss.pku.edu.cn/cfps/", + "data_url": "https://opendata.pku.edu.cn/dataverse/CFPS", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "social", + "economics", + "health", + "education", + "demographics" + ], + "update_frequency": "irregular", + "tags": [ + "家庭追踪调查", + "cfps", + "panel-study", + "追踪调查", + "北京大学", + "peking-university", + "household-panel", + "家庭调查", + "longitudinal-survey", + "education", + "教育", + "health", + "健康", + "income", + "收入", + "migration", + "人口流动", + "intergenerational", + "代际", + "family-dynamics", + "家庭动态", + "child-development", + "儿童发展", + "cognitive-ability", + "认知能力" + ], + "data_content": { + "en": [ + "Individual and household economic data: income, assets, liabilities, expenditures", + "Education: school enrollment, educational attainment, cognitive assessments for children and adults", + "Health: physical health, mental health, chronic disease, disability, healthcare access", + "Family dynamics: marriage, fertility, intergenerational transfers, parenting", + "Labor market: employment, wages, job characteristics, labor market transitions", + "Subjective well-being and life satisfaction measures", + "Social relationships and networks: trust, social participation, community ties", + "Migration and residential history: urban-rural migration, return migration", + "Community-level data: local infrastructure, public services, economic environment", + "Survey waves: 2010, 2012, 2014, 2016, 2018, 2020 (biennial, covering 25 provinces)" + ], + "zh": [ + "个人和家庭经济数据:收入、资产、负债、消费支出", + "教育:在校情况、教育程度、儿童和成人认知能力测试", + "健康:身体健康、心理健康、慢性病、残障、医疗卫生服务获取", + "家庭动态:婚姻、生育、代际转移、育儿行为", + "劳动力市场:就业状况、工资收入、工作特征、职业转换", + "主观幸福感和生活满意度测量", + "社会关系与网络:社会信任、社会参与、社区联系", + "流动与居住历史:城乡流动、回流迁移", + "社区层面数据:基础设施、公共服务、经济环境", + "调查波次:2010、2012、2014、2016、2018、2020年(每两年一次,覆盖25个省份)" + ] + } +} diff --git a/firstdata/sources/china/research/china-cgss.json b/firstdata/sources/china/research/china-cgss.json new file mode 100644 index 00000000..f7966530 --- /dev/null +++ b/firstdata/sources/china/research/china-cgss.json @@ -0,0 +1,78 @@ +{ + "id": "china-cgss", + "name": { + "en": "Chinese General Social Survey (CGSS)", + "zh": "中国综合社会调查(CGSS)" + }, + "description": { + "en": "The Chinese General Social Survey (CGSS) is China's first nationally representative, continuous academic social survey, conducted annually by the National Survey Research Center at Renmin University of China (NSRC@RUC). Launched in 2003, CGSS collects data from over 10,000 households across urban and rural China on demographic characteristics, economic behavior, social attitudes, education, employment, health, political participation, family structure, and values. The survey is freely available to registered academic researchers and is widely cited in Chinese social science research.", + "zh": "中国综合社会调查(CGSS)是中国第一个全国性、综合性、连续性学术调查项目,由中国人民大学中国调查与数据中心(NSRC@RUC)负责执行。CGSS自2003年起每年对全国城乡1万余户家庭开展调查,收集人口特征、经济行为、社会态度、教育就业、健康状况、政治参与、家庭结构和价值观念等数据,是中国社会科学研究中被引用最广泛的数据集之一,向注册学术用户免费开放。" + }, + "website": "http://cgss.ruc.edu.cn/", + "data_url": "http://cgss.ruc.edu.cn/", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "social", + "demographics", + "economics", + "health", + "education" + ], + "update_frequency": "annual", + "tags": [ + "综合社会调查", + "cgss", + "social-survey", + "社会调查", + "人民大学", + "renmin-university", + "household-survey", + "家庭调查", + "social-attitudes", + "社会态度", + "education", + "教育", + "employment", + "就业", + "income", + "收入", + "social-stratification", + "社会分层", + "political-participation", + "政治参与", + "family-structure", + "家庭结构", + "panel-data", + "longitudinal", + "中国社会" + ], + "data_content": { + "en": [ + "Demographic data: age, gender, ethnicity, marital status, household composition", + "Education: highest education level attained, educational history, school type", + "Employment: employment status, occupation, work unit type, income sources", + "Income and consumption: household income, expenditure, savings, assets", + "Health: self-rated health, chronic conditions, disability, healthcare utilization", + "Social attitudes: trust in institutions, subjective well-being, political attitudes, values", + "Religion and culture: religious beliefs, cultural practices, media consumption", + "Migration: residential history, rural-to-urban migration patterns", + "Social networks: social capital, community participation, voluntary associations", + "Annual survey waves from 2003 to present covering all provinces of China" + ], + "zh": [ + "人口学数据:年龄、性别、民族、婚姻状况、家庭成员构成", + "教育:最高学历、教育经历、就读学校类型", + "就业:就业状况、职业类型、工作单位性质、收入来源", + "收入与消费:家庭收入、支出、储蓄、资产", + "健康:自评健康状况、慢性病、残疾、医疗服务利用", + "社会态度:对机构的信任、主观幸福感、政治态度、价值观念", + "宗教与文化:宗教信仰、文化习俗、媒体使用", + "人口流动:居住历史、农村人口城镇化迁移", + "社会网络:社会资本、社区参与、志愿组织", + "2003年至今各年度调查波次数据,覆盖全国各省份" + ] + } +} diff --git a/firstdata/sources/china/research/china-chfs.json b/firstdata/sources/china/research/china-chfs.json new file mode 100644 index 00000000..9c30cb98 --- /dev/null +++ b/firstdata/sources/china/research/china-chfs.json @@ -0,0 +1,80 @@ +{ + "id": "china-chfs", + "name": { + "en": "China Household Finance Survey (CHFS)", + "zh": "中国家庭金融调查(CHFS)" + }, + "description": { + "en": "The China Household Finance Survey (CHFS) is a large-scale, nationally representative longitudinal survey conducted by the Survey and Research Center for China Household Finance at Southwestern University of Finance and Economics (SWUFE). Launched in 2011, CHFS covers approximately 40,000 households across 29 provinces and provides comprehensive data on household assets, liabilities, income, consumption, insurance, and financial behavior. CHFS is China's leading household finance dataset and is freely accessible to qualified academic researchers, widely used to analyze wealth distribution, financial inclusion, and housing market dynamics in China.", + "zh": "中国家庭金融调查(CHFS)是由西南财经大学中国家庭金融调查与研究中心负责执行的大规模全国性追踪调查,自2011年启动,覆盖全国29个省约40000户家庭,收集家庭资产、负债、收入、消费、保险和金融行为等综合数据。CHFS是中国最权威的家庭金融数据集,向合格的学术研究者免费开放,广泛用于研究中国财富分配、普惠金融和房地产市场动态。" + }, + "website": "https://chfs.swufe.edu.cn", + "data_url": "https://chfs.swufe.edu.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "economics", + "social", + "housing" + ], + "update_frequency": "irregular", + "tags": [ + "家庭金融调查", + "chfs", + "household-finance", + "家庭金融", + "西南财经大学", + "swufe", + "household-wealth", + "家庭财富", + "asset-allocation", + "资产配置", + "housing", + "住房", + "real-estate", + "房地产", + "income-distribution", + "收入分配", + "wealth-inequality", + "财富不平等", + "financial-inclusion", + "普惠金融", + "insurance", + "保险", + "savings", + "储蓄", + "debt", + "负债", + "investment", + "投资" + ], + "data_content": { + "en": [ + "Household assets: financial assets (stocks, bonds, deposits, funds), real estate, business assets, durable goods", + "Household liabilities: mortgage loans, consumer loans, business loans, informal borrowing", + "Income: wage income, business income, transfer income, investment returns by source", + "Consumption expenditure: food, education, healthcare, housing, and major categories", + "Financial behavior: stock market participation, insurance purchase, wealth management products", + "Housing: ownership status, purchase price, mortgage details, rental income", + "Social security and insurance: pension participation, medical insurance, commercial insurance coverage", + "Demographic characteristics: age, education, employment, household structure", + "Wealth distribution and Gini coefficient analysis at provincial and national level", + "Survey waves: 2011, 2013, 2015, 2017, 2019, 2021 covering 29 provinces" + ], + "zh": [ + "家庭资产:金融资产(股票、债券、存款、基金)、房产、工商业资产、耐用品", + "家庭负债:住房贷款、消费贷款、工商业贷款、民间借贷", + "收入:工资性收入、工商业收入、转移性收入、投资性收入", + "消费支出:食品、教育、医疗、住房及主要类别消费", + "金融行为:股市参与、保险购买、理财产品投资", + "住房:拥有状况、购买价格、贷款详情、租金收入", + "社会保障与保险:养老金参保、医疗保险、商业保险覆盖情况", + "人口特征:年龄、教育程度、就业状况、家庭结构", + "省级和全国财富分布与基尼系数分析", + "调查波次:2011、2013、2015、2017、2019、2021年,覆盖29个省份" + ] + } +} diff --git a/firstdata/sources/china/research/china-ciecc.json b/firstdata/sources/china/research/china-ciecc.json new file mode 100644 index 00000000..b1b07a5d --- /dev/null +++ b/firstdata/sources/china/research/china-ciecc.json @@ -0,0 +1,23 @@ +{ + "id": "china-ciecc", + "name": { + "en": "China International Engineering Consulting Corporation", + "zh": "中国国际工程咨询有限公司" + }, + "description": { + "en": "The China International Engineering Consulting Corporation (CIECC) is a state-owned consulting firm under the State Council, providing engineering consulting, project evaluation, and policy research services. It publishes investment analysis reports and infrastructure development assessments for national-level projects.", + "zh": "中国国际工程咨询有限公司是国务院国资委直属的国有咨询企业,提供工程咨询、项目评估和政策研究服务。发布投资分析报告和国家级项目基础设施发展评估。" + }, + "data_content": { + "en": ["infrastructure project evaluations", "investment analysis reports", "engineering consulting data", "policy research publications", "economic feasibility studies"], + "zh": ["基础设施项目评估", "投资分析报告", "工程咨询数据", "政策研究出版物", "经济可行性研究"] + }, + "country": "CN", + "authority_level": "government", + "geographic_scope": "national", + "website": "https://www.ciecc.com.cn", + "data_url": "https://www.ciecc.com.cn", + "domains": ["infrastructure", "economics"], + "tags": ["engineering", "consulting", "infrastructure", "investment", "state-council"], + "update_frequency": "irregular" +} diff --git a/firstdata/sources/china/research/china-cipd.json b/firstdata/sources/china/research/china-cipd.json new file mode 100644 index 00000000..4ba78079 --- /dev/null +++ b/firstdata/sources/china/research/china-cipd.json @@ -0,0 +1,23 @@ +{ + "id": "china-cipd", + "name": { + "en": "China Population and Development Research Center", + "zh": "中国人口与发展研究中心" + }, + "description": { + "en": "The China Population and Development Research Center (CPDRC) is a national-level research institution under the National Health Commission, focusing on population dynamics, demographic trends, family planning evaluation, and population forecasting models for policy support.", + "zh": "中国人口与发展研究中心是国家卫健委直属的国家级研究机构,专注于人口动态、人口趋势、计划生育评估和人口预测模型等领域的研究,为政策制定提供支撑。" + }, + "data_content": { + "en": ["population statistics", "demographic projections", "fertility surveys", "family planning data", "population development reports"], + "zh": ["人口统计数据", "人口预测", "生育调查", "计划生育数据", "人口发展报告"] + }, + "country": "CN", + "authority_level": "research", + "geographic_scope": "national", + "website": "https://www.cpirc.org.cn", + "data_url": "https://www.cpirc.org.cn", + "domains": ["demographics", "health"], + "tags": ["population", "demographics", "fertility", "family-planning", "health-commission"], + "update_frequency": "irregular" +} diff --git a/firstdata/sources/china/research/china-cisri.json b/firstdata/sources/china/research/china-cisri.json new file mode 100644 index 00000000..dfece7ba --- /dev/null +++ b/firstdata/sources/china/research/china-cisri.json @@ -0,0 +1,79 @@ +{ + "id": "china-cisri", + "name": { + "en": "China Iron & Steel Research Institute Group", + "zh": "中国钢研科技集团有限公司" + }, + "description": { + "en": "The China Iron & Steel Research Institute Group (CISRI), formerly the Iron and Steel Research Institute, is China's premier state-owned research institution specializing in metallurgy, advanced steel materials, and new materials technology. Founded in 1952 and affiliated with the State-owned Assets Supervision and Administration Commission (SASAC), CISRI is the national authority for steel and metallic materials research, testing, and standardization. It operates the National Steel Quality Supervision and Inspection Center and maintains reference material databases for Chinese metallurgical standards. CISRI publishes authoritative technical data on steel grades, material properties, failure analysis, and corrosion behavior, serving as the technical backbone for China's iron and steel industry. The institute develops national and industry standards for steel products and contributes to international standards bodies including ISO TC17 (steel). CISRI's research spans special steels for aerospace, energy, transportation, and defense applications, as well as environmental metallurgy and recycling.", + "zh": "中国钢研科技集团有限公司(中国钢研)原为冶金研究院,是中国顶级冶金、先进钢铁材料和新材料技术领域的国有研究机构,1952年创建,隶属国务院国有资产监督管理委员会(国资委)。中国钢研是钢铁和金属材料研究、检测和标准化领域的国家权威机构,运营国家钢铁质量监督检验中心,维护中国冶金标准标准物质数据库。公司发布钢铁牌号、材料性能、失效分析和腐蚀行为权威技术数据,是中国钢铁工业技术支撑核心。研究所制定钢铁产品国家和行业标准,并参与ISO TC17(钢铁)等国际标准化机构。中国钢研的研究涵盖航空、能源、交通和国防应用的特种钢,以及环境冶金和再生利用。" + }, + "website": "https://www.cisri.com.cn", + "data_url": "https://www.cisri.com.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "industry", + "science", + "technology" + ], + "update_frequency": "irregular", + "tags": [ + "中国钢研科技集团", + "cisri", + "china-iron-steel-research-institute", + "冶金", + "metallurgy", + "钢铁", + "steel", + "金属材料", + "metallic-materials", + "特种钢", + "special-steel", + "钢铁标准", + "steel-standards", + "材料性能", + "material-properties", + "失效分析", + "failure-analysis", + "腐蚀", + "corrosion", + "标准物质", + "reference-materials", + "国家钢铁质量监督检验", + "steel-quality-inspection", + "新材料", + "new-materials", + "航空材料", + "aerospace-materials", + "iso-tc17", + "国资委", + "sasac", + "环境冶金", + "environmental-metallurgy" + ], + "data_content": { + "en": [ + "Steel grade standards database: comprehensive records of Chinese national steel grade classifications (GB standards), chemical composition specifications, and mechanical property requirements for thousands of steel products", + "Material property databases: tensile strength, yield strength, hardness, impact toughness, fatigue life, and creep data for carbon steels, alloy steels, stainless steels, and tool steels under various conditions", + "Failure analysis case data: metallurgical failure investigation reports for industrial accidents, equipment failures, and product defects, supporting industry safety and quality improvement", + "Corrosion behavior data: electrochemical corrosion, stress corrosion cracking, and environmentally-assisted cracking data for steels in atmospheric, marine, and industrial environments", + "Reference materials: certified standard reference materials for spectrochemical analysis of iron and steel, providing traceability for quality control in steel production", + "Special and advanced materials research: data on high-strength steels, heat-resistant steels, electrical steels, bearing steels, and tool steels for aerospace, energy, and defense applications", + "Steel production process data: research outputs on iron and steelmaking technologies, continuous casting, rolling, heat treatment, and surface treatment optimization", + "Environmental metallurgy and recycling: scrap steel characterization data, secondary metallurgy research, and life cycle assessment for steel production processes" + ], + "zh": [ + "钢铁牌号标准数据库:数千种钢铁产品的中国国家钢铁牌号分类(GB标准)、化学成分规范和力学性能要求综合记录", + "材料性能数据库:碳钢、合金钢、不锈钢和工具钢在各种条件下的抗拉强度、屈服强度、硬度、冲击韧性、疲劳寿命和蠕变数据", + "失效分析案例数据:工业事故、设备故障和产品缺陷的冶金失效调查报告,支持行业安全和质量改进", + "腐蚀行为数据:钢铁在大气、海洋和工业环境中的电化学腐蚀、应力腐蚀开裂和环境辅助开裂数据", + "标准物质:钢铁光谱化学分析认证标准物质,为钢铁生产质量控制提供溯源性依据", + "特种和先进材料研究:航空、能源和国防应用的高强度钢、耐热钢、电工钢、轴承钢和工具钢数据", + "钢铁生产工艺数据:炼铁炼钢技术、连铸、轧制、热处理和表面处理优化的研究成果", + "环境冶金和再生利用:废钢特征化数据、二次冶金研究和钢铁生产工艺的生命周期评估" + ] + } +} diff --git a/firstdata/sources/china/research/china-cncbd.json b/firstdata/sources/china/research/china-cncbd.json new file mode 100644 index 00000000..e9dd1a0b --- /dev/null +++ b/firstdata/sources/china/research/china-cncbd.json @@ -0,0 +1,23 @@ +{ + "id": "china-cncbd", + "name": { + "en": "China National Center for Biotechnology Development", + "zh": "中国生物技术发展中心" + }, + "description": { + "en": "The China National Center for Biotechnology Development (CNCBD) is a public institution under the Ministry of Science and Technology, responsible for biotechnology policy research, project management, and biosafety assessment. It publishes annual biotechnology development reports and manages national key biotech programs.", + "zh": "中国生物技术发展中心是科技部直属事业单位,负责生物技术政策研究、项目管理和生物安全评估。发布年度生物技术发展报告,管理国家重点生物技术计划。" + }, + "data_content": { + "en": ["biotechnology development reports", "biosafety assessments", "biotech project data", "pharmaceutical R&D statistics", "gene technology policies"], + "zh": ["生物技术发展报告", "生物安全评估", "生物技术项目数据", "医药研发统计", "基因技术政策"] + }, + "country": "CN", + "authority_level": "government", + "geographic_scope": "national", + "website": "https://www.cncbd.org.cn", + "data_url": "https://www.cncbd.org.cn", + "domains": ["science", "health"], + "tags": ["biotechnology", "biosafety", "pharmaceutical", "most", "science-policy"], + "update_frequency": "annual" +} diff --git a/firstdata/sources/china/research/china-csic.json b/firstdata/sources/china/research/china-csic.json new file mode 100644 index 00000000..dbc1b856 --- /dev/null +++ b/firstdata/sources/china/research/china-csic.json @@ -0,0 +1,23 @@ +{ + "id": "china-csic", + "name": { + "en": "Institute of Sociology, Chinese Academy of Social Sciences", + "zh": "中国社会科学院社会学研究所" + }, + "description": { + "en": "The Institute of Sociology at the Chinese Academy of Social Sciences (CASS) is China's leading research institution for sociological studies. It conducts large-scale national surveys and publishes authoritative reports on social stratification, urbanization, family dynamics, and social governance.", + "zh": "中国社会科学院社会学研究所是中国社会学研究的核心机构,开展大规模全国性调查并发布社会分层、城镇化、家庭变迁和社会治理等领域的权威报告。" + }, + "data_content": { + "en": ["social stratification surveys", "urbanization research data", "family dynamics studies", "social governance reports", "community development data"], + "zh": ["社会分层调查", "城镇化研究数据", "家庭变迁研究", "社会治理报告", "社区发展数据"] + }, + "country": "CN", + "authority_level": "research", + "geographic_scope": "national", + "website": "https://sociology.cssn.cn", + "data_url": "https://sociology.cssn.cn", + "domains": ["social-sciences"], + "tags": ["sociology", "social-sciences", "surveys", "urbanization", "cass"], + "update_frequency": "irregular" +} diff --git a/firstdata/sources/china/research/china-cste.json b/firstdata/sources/china/research/china-cste.json new file mode 100644 index 00000000..a8615da8 --- /dev/null +++ b/firstdata/sources/china/research/china-cste.json @@ -0,0 +1,58 @@ +{ + "id": "china-cste", + "name": { + "en": "China Society for Technology Economics", + "zh": "中国技术经济学会" + }, + "description": { + "en": "The China Society for Technology Economics (CSTE) is a national academic society founded in 1981, affiliated with the China Association for Science and Technology and supervised by the National Development and Reform Commission (NDRC). It is China's leading professional organization specializing in the intersection of technology and economic analysis, focusing on technology innovation economics, science and technology investment evaluation, industrial policy research, and the economic impact of technological progress. CSTE publishes research reports, policy analyses, and academic papers on innovation-driven development, technology commercialization, and the economic returns of R&D investment in China.", + "zh": "中国技术经济学会(CSTE)成立于1981年,是中国科学技术协会所属、国家发展和改革委员会指导的全国性学术团体,是中国技术与经济交叉分析领域最重要的专业机构,专注于技术创新经济学、科技投资评估、产业政策研究及技术进步的经济影响。学会发布创新驱动发展、技术商业化及中国研发投资经济效益等方面的研究报告、政策分析和学术论文。" + }, + "data_content": { + "en": [ + "technology innovation economics research reports", + "science and technology investment evaluation data", + "industrial technology policy analysis", + "R&D investment returns and efficiency studies", + "technology commercialization statistics", + "innovation-driven development indicators", + "technology economics academic publications", + "enterprise technology innovation surveys" + ], + "zh": [ + "技术创新经济学研究报告", + "科技投资评估数据", + "产业技术政策分析", + "研发投资回报与效率研究", + "技术商业化统计数据", + "创新驱动发展指标", + "技术经济学学术出版物", + "企业技术创新调查" + ] + }, + "country": "CN", + "authority_level": "research", + "geographic_scope": "national", + "website": "https://www.cste.org.cn", + "data_url": "https://www.cste.org.cn", + "api_url": null, + "domains": [ + "economics", + "science" + ], + "tags": [ + "technology-economics", + "innovation", + "r&d", + "科技经济", + "技术创新", + "技术经济", + "创新经济学", + "ndrc", + "cste", + "中国技术经济学会", + "industrial-policy", + "science-technology-policy" + ], + "update_frequency": "irregular" +} diff --git a/firstdata/sources/china/research/china-cstr.json b/firstdata/sources/china/research/china-cstr.json new file mode 100644 index 00000000..ee237c5f --- /dev/null +++ b/firstdata/sources/china/research/china-cstr.json @@ -0,0 +1,80 @@ +{ + "id": "china-cstr", + "name": { + "en": "China Science & Technology Resource Identifier Platform", + "zh": "科技资源标识服务平台" + }, + "description": { + "en": "The China Science and Technology Resource Identifier (CSTR) Platform is China's national persistent identifier system for scientific data resources, operated by the National Science and Technology Infrastructure Center (NSTIC) under the Ministry of Science and Technology. Analogous to DOIs for publications, CSTR assigns permanent, resolvable identifiers to scientific datasets, instruments, specimens, and other research resources managed by China's major scientific data centers. The platform serves as the authoritative registry and resolution service for scientific resources from institutions including the Chinese Academy of Sciences, national key laboratories, and data centers under the National Science and Technology Basic Conditions Platform. Through CSTR, users can discover, cite, and access standardized scientific data across disciplines such as earth sciences, life sciences, materials, astronomy, and social sciences.", + "zh": "科技资源标识服务平台(CSTR)是中国科技部国家科技基础条件平台中心运营的国家级科学数据资源持久标识体系。类似于学术出版物的DOI,CSTR为中国主要科学数据中心管理的数据集、仪器设备、标本和其他研究资源分配永久可解析标识符。平台作为科学院、国家重点实验室和国家科技基础条件平台下属数据中心科学资源的权威注册和解析服务,支持跨地球科学、生命科学、材料科学、天文学和社会科学等领域的科学数据发现、引用和访问。" + }, + "website": "https://cstr.cn", + "data_url": "https://cstr.cn/resreg", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "science", + "earth-science", + "biology", + "materials", + "astronomy" + ], + "update_frequency": "irregular", + "tags": [ + "科技资源标识", + "cstr", + "科学数据", + "scientific-data", + "数据标识", + "data-identifier", + "持久标识", + "persistent-identifier", + "doi", + "科学数据中心", + "scientific-data-center", + "国家科技基础条件平台", + "national-science-infrastructure", + "中国科学院", + "chinese-academy-of-sciences", + "地球科学", + "earth-science", + "生命科学", + "life-science", + "材料科学", + "materials-science", + "天文学", + "astronomy", + "数据共享", + "data-sharing", + "科研数据管理", + "research-data-management", + "开放科学", + "open-science", + "数据仓库", + "data-repository" + ], + "data_content": { + "en": [ + "Scientific Dataset Registry: Persistent identifiers linking to datasets from China's national scientific data centers across all major disciplines", + "Earth and Environment Data: Geoscience, climate, ecology, and environmental observation datasets from CAS institutes and national observatories", + "Life Science Data: Biological specimen collections, genomics, biodiversity, and biomedical research datasets", + "Materials Science Data: Crystallography, materials properties, and experimental materials datasets from national labs", + "Astronomy and Space Data: Observational astronomy data, space science mission products, and cosmological datasets", + "Social Science Data: Survey and census data from social science research centers and population studies institutes", + "Instrument and Facility Registry: Records of major scientific instruments and facilities available to the research community", + "Cross-domain Discovery: Unified search and citation system for all CSTR-identified resources across participating data centers" + ], + "zh": [ + "科学数据集注册:链接至中国各主要学科国家科学数据中心数据集的持久标识符", + "地球与环境数据:来自中科院研究所和国家观测站的地球科学、气候、生态和环境观测数据集", + "生命科学数据:生物标本馆藏、基因组学、生物多样性和生物医学研究数据集", + "材料科学数据:来自国家实验室的晶体学、材料性质和实验材料数据集", + "天文与空间数据:天文观测数据、航天任务产品和宇宙学数据集", + "社会科学数据:社会科学研究中心和人口研究所的调查和普查数据", + "仪器设备注册:向科研界开放的大型科学仪器和设施信息", + "跨领域发现:面向各参与数据中心所有CSTR标识资源的统一检索和引用系统" + ] + } +} diff --git a/firstdata/sources/china/research/china-cufe-iigf.json b/firstdata/sources/china/research/china-cufe-iigf.json new file mode 100644 index 00000000..2c8444e9 --- /dev/null +++ b/firstdata/sources/china/research/china-cufe-iigf.json @@ -0,0 +1,85 @@ +{ + "id": "china-cufe-iigf", + "name": { + "en": "International Institute of Green Finance (IIGF), Central University of Finance and Economics", + "zh": "中央财经大学绿色金融国际研究院" + }, + "description": { + "en": "The International Institute of Green Finance (IIGF) at the Central University of Finance and Economics (CUFE) is China's leading academic research institute dedicated to green finance, sustainable finance, and climate finance research. Established in 2016, IIGF conducts policy research, develops green finance indices, and publishes authoritative reports on green bonds, ESG investing, climate risk, carbon markets, and sustainable development. The institute provides technical support to the People's Bank of China (PBOC), the China Securities Regulatory Commission (CSRC), the Ministry of Ecology and Environment, and other regulators in designing China's green finance framework. IIGF hosts the annual China Green Finance Development Report, publishes the IIGF Green Bond Index, and maintains databases on China's green bond issuance, carbon market transactions, and ESG ratings of listed companies. It is a founding partner of the Green Finance Committee of the China Society for Finance and Banking and collaborates with UN Environment, Climate Bonds Initiative, and other global sustainability organizations.", + "zh": "中央财经大学绿色金融国际研究院(IIGF)是中国领先的绿色金融、可持续金融和气候金融学术研究机构,2016年成立。IIGF开展政策研究,开发绿色金融指数,并发布绿色债券、ESG投资、气候风险、碳市场及可持续发展等领域的权威报告。研究院为中国人民银行、中国证监会、生态环境部等监管机构提供绿色金融框架设计的技术支持。IIGF每年发布《中国绿色金融发展报告》,编制IIGF绿色债券指数,并维护中国绿色债券发行、碳市场交易及上市公司ESG评级的数据库。作为中国金融学会绿色金融专业委员会的创始成员,IIGF与联合国环境署、气候债券倡议组织等全球可持续发展机构保持长期合作。" + }, + "website": "https://iigf.cufe.edu.cn/", + "data_url": "https://iigf.cufe.edu.cn/yjcg/yjbg.htm", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "environment", + "climate", + "economics", + "research" + ], + "update_frequency": "monthly", + "tags": [ + "中央财经大学绿色金融国际研究院", + "iigf", + "cufe", + "绿色金融", + "green-finance", + "可持续金融", + "sustainable-finance", + "气候金融", + "climate-finance", + "esg", + "ESG投资", + "esg-investing", + "绿色债券", + "green-bonds", + "碳市场", + "carbon-market", + "碳金融", + "carbon-finance", + "气候风险", + "climate-risk", + "转型金融", + "transition-finance", + "可持续发展", + "sustainable-development", + "气候债券", + "climate-bonds", + "绿色金融指数", + "green-finance-index", + "气候投资", + "climate-investment", + "低碳经济", + "low-carbon-economy" + ], + "data_content": { + "en": [ + "China green bond database: issuance data, issuers, use of proceeds, third-party verification, and market analytics for China's green bond market", + "IIGF Green Bond Index: performance index tracking the returns and yield of labeled and unlabeled green bonds in China's interbank and exchange markets", + "Annual China Green Finance Development Report: comprehensive review of policy, market development, product innovation, and international comparison", + "ESG research reports: ESG ratings methodology, Chinese listed companies' ESG disclosure analysis, ESG investing trends", + "Carbon market analysis: trading data from national and pilot carbon markets, carbon price projections, CCER market tracking", + "Climate risk assessment: physical and transition climate risk analysis for Chinese financial institutions and corporates", + "Green finance policy research: analysis of central bank green finance policies, green taxonomy development, mandatory climate disclosure rules", + "International green finance research: Belt and Road green investment tracking, China-EU taxonomy alignment, G20 sustainable finance initiatives", + "Industry databases: green industry classification, green credit statistics, green insurance products, green funds", + "Technical reports and working papers: peer-reviewed academic research and policy briefings" + ], + "zh": [ + "中国绿色债券数据库:中国绿色债券市场的发行数据、发行人、资金用途、第三方认证及市场分析", + "IIGF绿色债券指数:跟踪中国银行间和交易所市场贴标与未贴标绿色债券回报率与收益率的表现指数", + "《中国绿色金融发展报告》年度报告:政策、市场发展、产品创新及国际比较的全面综述", + "ESG研究报告:ESG评级方法论、中国上市公司ESG信息披露分析、ESG投资趋势", + "碳市场分析:全国和试点碳市场交易数据、碳价预测、CCER市场跟踪", + "气候风险评估:中国金融机构及企业的物理性和转型气候风险分析", + "绿色金融政策研究:央行绿色金融政策、绿色分类目录发展、强制性气候信息披露规则分析", + "国际绿色金融研究:一带一路绿色投资追踪、中欧分类目录对接、G20可持续金融倡议", + "行业数据库:绿色产业分类、绿色信贷统计、绿色保险产品、绿色基金", + "技术报告与工作论文:同行评议学术研究与政策简报" + ] + } +} diff --git a/firstdata/sources/china/research/china-drc.json b/firstdata/sources/china/research/china-drc.json new file mode 100644 index 00000000..ffeceb37 --- /dev/null +++ b/firstdata/sources/china/research/china-drc.json @@ -0,0 +1,78 @@ +{ + "id": "china-drc", + "name": { + "en": "Development Research Center of the State Council of China", + "zh": "国务院发展研究中心" + }, + "description": { + "en": "The Development Research Center of the State Council (DRC) is China's premier government think tank, directly under the State Council. Founded in 1981, DRC conducts policy research and provides strategic advisory services on macroeconomics, rural development, industry and technology, market economy, social development, regional economy, open economy, and resource and environmental policy. DRC publishes influential research reports including the China Development Report, annual economic outlook assessments, and sector-specific policy analyses that directly inform national economic planning and State Council decision-making. Its research covers medium- and long-term development strategies, major reform initiatives, and international economic trends.", + "zh": "国务院发展研究中心是国务院直属的综合性政策研究机构,成立于1981年,承担宏观经济、农村发展、产业与技术、市场经济、社会发展、区域经济、开放经济、资源与环境政策等领域的研究工作,为国务院决策提供战略咨询服务。发展研究中心发布《中国发展报告》、年度经济形势研判报告及行业政策分析,直接服务于国家经济规划和国务院重大决策。研究领域涵盖中长期发展战略、重大改革举措和国际经济形势。" + }, + "website": "https://www.drc.gov.cn", + "data_url": "https://www.drc.gov.cn/yjcg.htm", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "economics", + "governance", + "environment", + "agriculture", + "science" + ], + "update_frequency": "monthly", + "tags": [ + "国务院发展研究中心", + "drc", + "development-research-center", + "国家智库", + "national-think-tank", + "中国发展报告", + "china-development-report", + "宏观经济", + "macroeconomics", + "经济政策", + "economic-policy", + "农村发展", + "rural-development", + "产业政策", + "industrial-policy", + "区域经济", + "regional-economy", + "资源环境政策", + "resource-environmental-policy", + "改革研究", + "reform-research", + "中长期发展战略", + "medium-long-term-development-strategy", + "国际经济", + "international-economy", + "经济形势", + "economic-outlook" + ], + "data_content": { + "en": [ + "China Development Report: annual comprehensive assessment of China's economic and social development progress, challenges, and policy recommendations", + "Macroeconomic outlook reports: quarterly and annual economic growth forecasts, inflation analysis, and fiscal and monetary policy assessments", + "Rural development research: reports on agricultural modernization, rural income, land policy, and urbanization trends", + "Industrial policy studies: sector-specific analyses on manufacturing transformation, strategic emerging industries, and industrial upgrade strategies", + "Regional economic research: studies on balanced regional development, urbanization, and major regional strategies such as the Belt and Road Initiative", + "Resource and environmental policy: research on energy transition, carbon neutrality pathways, green development, and ecological civilization policies", + "Reform policy assessments: evaluations of major reform initiatives in state-owned enterprises, financial systems, and market regulation", + "International economic analysis: research on global economic trends, trade policy, and China's foreign economic relations", + "Social development studies: research on income distribution, social security systems, pension reform, and public services" + ], + "zh": [ + "中国发展报告:中国经济社会发展进展、挑战及政策建议年度综合评估", + "宏观经济形势报告:季度和年度经济增长预测、通胀分析及财政货币政策评估", + "农村发展研究:农业现代化、农村居民收入、土地政策和城镇化趋势研究", + "产业政策研究:制造业转型、战略性新兴产业和产业升级策略的行业专项分析", + "区域经济研究:区域协调发展、城镇化及「一带一路」等重大区域战略研究", + "资源与环境政策:能源转型、碳中和路径、绿色发展和生态文明政策研究", + "改革政策评估:国有企业、金融体系和市场监管等重大改革举措评估", + "国际经济分析:全球经济形势、贸易政策及中国对外经济关系研究", + "社会发展研究:收入分配、社会保障体系、养老金改革和公共服务研究" + ] + } +} diff --git a/firstdata/sources/china/research/china-giec.json b/firstdata/sources/china/research/china-giec.json new file mode 100644 index 00000000..ac5ba5df --- /dev/null +++ b/firstdata/sources/china/research/china-giec.json @@ -0,0 +1,77 @@ +{ + "id": "china-giec", + "name": { + "en": "Guangzhou Institute of Energy Conversion, Chinese Academy of Sciences", + "zh": "中国科学院广州能源研究所" + }, + "description": { + "en": "The Guangzhou Institute of Energy Conversion (GIEC) under the Chinese Academy of Sciences (CAS) is one of China's premier national research institutions focused on renewable energy, energy efficiency, and clean energy technology. Founded in 1978 and headquartered in Guangzhou, GIEC conducts comprehensive research on solar energy, wind energy, biomass energy, hydrogen energy, marine energy, and natural gas hydrates. As a key national research base for new and renewable energy, GIEC operates multiple national-level key laboratories including the State Key Lab for Combustion, the Guangdong New Energy Engineering Technology Research Center, and key labs for renewable energy and gas hydrates. GIEC publishes widely cited research outputs on energy conversion technologies, energy storage, carbon capture, and clean fuel production. Its research directly supports China's energy transition and carbon neutrality policy goals. GIEC also manages China's strategic research program on natural gas hydrate (methane hydrate) extraction from the South China Sea, a critical emerging energy resource.", + "zh": "中国科学院广州能源研究所(GIEC)是中国科学院下属的顶级国家科研机构,专注于可再生能源、节能和清洁能源技术研究。1978年成立,总部位于广州。GIEC开展太阳能、风能、生物质能、氢能、海洋能和天然气水合物的综合研究,是国家新能源与可再生能源重要研究基地,建有燃烧国家重点实验室、广东省新能源工程技术研究中心、可再生能源和天然气水合物重点实验室。GIEC在能源转换技术、储能、碳捕集和清洁燃料生产领域发表了大量引用广泛的研究成果,研究直接支撑中国能源转型和碳中和政策目标。GIEC还负责中国南海天然气水合物(甲烷水合物)开采战略研究项目,这是一种重要的新兴能源资源。" + }, + "website": "http://www.giec.ac.cn", + "data_url": "http://www.giec.ac.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "energy", + "environment", + "technology", + "climate" + ], + "update_frequency": "irregular", + "tags": [ + "中国科学院广州能源研究所", + "giec", + "guangzhou-institute-of-energy-conversion", + "中国科学院", + "chinese-academy-of-sciences", + "可再生能源", + "renewable-energy", + "太阳能", + "solar-energy", + "生物质能", + "biomass-energy", + "氢能", + "hydrogen-energy", + "海洋能", + "marine-energy", + "天然气水合物", + "gas-hydrate", + "甲烷水合物", + "methane-hydrate", + "碳捕集", + "carbon-capture", + "储能", + "energy-storage", + "清洁能源", + "clean-energy", + "节能", + "energy-efficiency", + "碳中和", + "carbon-neutrality" + ], + "data_content": { + "en": [ + "Renewable energy technology research publications: peer-reviewed studies on solar photovoltaics, concentrated solar power, biomass conversion, wind energy systems, and marine current energy", + "Gas hydrate (methane clathrate) research: exploration data, extraction technology research, and resource assessment reports for natural gas hydrates in China's South China Sea", + "Energy conversion efficiency data: experimental results and performance metrics for fuel cells, heat pumps, thermochemical energy storage, and advanced combustion systems", + "Hydrogen energy research: hydrogen production, storage, transportation, and fuel cell technology data from GIEC's hydrogen energy program", + "Biomass energy data: gasification efficiency, biogas yield, bio-oil properties, and biofuel conversion research outputs from China's agricultural and forestry residues", + "Carbon capture and utilization research: CO2 capture efficiency, conversion pathways, and carbon fixation technology assessments", + "Energy policy and transition analysis: technical assessments supporting China's renewable energy development plans and carbon neutrality roadmaps", + "National key laboratory outputs: research results from the State Key Laboratory on Combustion and affiliated renewable energy research platforms" + ], + "zh": [ + "可再生能源技术研究成果:太阳能光伏、聚光太阳能、生物质转化、风能系统和海洋潮流能同行评审研究", + "天然气水合物(甲烷笼合物)研究:中国南海天然气水合物勘探数据、开采技术研究和资源评估报告", + "能源转换效率数据:燃料电池、热泵、热化学储能和先进燃烧系统实验结果和性能指标", + "氢能研究:GIEC氢能计划中氢气制备、储存、运输和燃料电池技术数据", + "生物质能数据:中国农林废弃物气化效率、沼气产率、生物油性质和生物燃料转化研究成果", + "碳捕集与利用研究:CO2捕集效率、转化路径和固碳技术评估", + "能源政策与转型分析:支撑中国可再生能源发展规划和碳中和路线图的技术评估", + "国家重点实验室产出:燃烧国家重点实验室及附属可再生能源研究平台的研究成果" + ] + } +} diff --git a/firstdata/sources/china/research/china-gscloud.json b/firstdata/sources/china/research/china-gscloud.json new file mode 100644 index 00000000..7bd11c3a --- /dev/null +++ b/firstdata/sources/china/research/china-gscloud.json @@ -0,0 +1,79 @@ +{ + "id": "china-gscloud", + "name": { + "en": "Geospatial Data Cloud - Computer Network Information Center, CAS", + "zh": "地理空间数据云(中国科学院计算机网络信息中心)" + }, + "description": { + "en": "The Geospatial Data Cloud (GSCloud) is China's premier free geospatial and remote sensing data platform, operated by the Computer Network Information Center (CNIC) of the Chinese Academy of Sciences (CAS). It provides global and China-specific satellite imagery, digital elevation models, land cover data, and environmental remote sensing datasets. Key datasets include Landsat series (1-9), Sentinel-1/2, MODIS, NOAA satellite data, ASTER Global DEM, SRTM DEM, and China-specific high-resolution imagery from domestic satellites. GSCloud serves over 2 million registered users globally and is the primary access point for freely available geospatial data in China. It supports research in land use change, urban expansion, disaster monitoring, agricultural assessment, climate change, and ecosystem monitoring.", + "zh": "地理空间数据云(GSCloud)是中国领先的免费地理空间和遥感数据平台,由中国科学院计算机网络信息中心(CNIC)运营。平台提供全球及中国特定地区的卫星影像、数字高程模型、土地覆盖数据及环境遥感数据集。主要数据集包括Landsat系列(1-9)、Sentinel-1/2、MODIS、NOAA卫星数据、ASTER全球数字高程模型、SRTM数字高程模型及国产卫星高分辨率影像。GSCloud全球注册用户超200万,是中国免费地理空间数据的主要获取渠道,支持土地利用变化、城市扩张、灾害监测、农业评估、气候变化和生态系统监测研究。" + }, + "website": "https://www.gscloud.cn", + "data_url": "https://www.gscloud.cn/search", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "global", + "domains": [ + "environment", + "science", + "geography", + "climate", + "research" + ], + "update_frequency": "daily", + "tags": [ + "地理空间数据云", + "gscloud", + "遥感数据", + "remote-sensing", + "卫星影像", + "satellite-imagery", + "landsat", + "sentinel", + "modis", + "数字高程模型", + "dem", + "土地覆盖", + "land-cover", + "lucc", + "中科院", + "cas", + "cnic", + "计算机网络信息中心", + "土地利用", + "land-use", + "城市扩张", + "urban-expansion", + "生态监测", + "ecosystem-monitoring", + "气候变化", + "climate-change", + "灾害监测", + "disaster-monitoring", + "免费数据", + "free-data" + ], + "data_content": { + "en": [ + "Landsat imagery series (1-9): historical and current 30-meter resolution multispectral satellite imagery dating back to 1972, global coverage", + "Sentinel-1 and Sentinel-2: ESA Copernicus satellite data including SAR and multispectral imagery at 10-meter resolution", + "MODIS datasets: daily, 8-day, and monthly global land surface products including NDVI, land surface temperature, and fire detection", + "Digital Elevation Models: SRTM (30m/90m), ASTER GDEM, and TanDEM-X global elevation datasets", + "NOAA satellite data: weather and environmental monitoring data from NOAA meteorological satellites", + "China high-resolution imagery: data from China's domestic earth observation satellites including HJ, GF series", + "Land use and land cover change (LUCC): China and global LUCC datasets at multiple spatial resolutions and time periods", + "Hydrological data: river basin boundaries, watershed delineations, and hydrological remote sensing products" + ], + "zh": [ + "Landsat系列影像(1-9):全球覆盖、30米分辨率多光谱卫星影像,历史数据追溯至1972年", + "Sentinel-1和Sentinel-2:欧空局哥白尼卫星数据,包括10米分辨率SAR和多光谱影像", + "MODIS数据集:日度、8天和月度全球陆地产品,包含NDVI、地表温度和火点监测", + "数字高程模型:SRTM(30m/90m)、ASTER GDEM及TanDEM-X全球高程数据集", + "NOAA卫星数据:来自NOAA气象卫星的天气和环境监测数据", + "中国高分辨率影像:环境卫星(HJ)、高分(GF)系列等国产对地观测卫星数据", + "土地利用/覆盖变化(LUCC):中国及全球多空间分辨率和时间序列的土地利用变化数据集", + "水文数据:流域边界、集水区划定及水文遥感产品" + ] + } +} diff --git a/firstdata/sources/china/research/china-iap.json b/firstdata/sources/china/research/china-iap.json new file mode 100644 index 00000000..c43b4032 --- /dev/null +++ b/firstdata/sources/china/research/china-iap.json @@ -0,0 +1,78 @@ +{ + "id": "china-iap", + "name": { + "en": "Institute of Atmospheric Physics, Chinese Academy of Sciences", + "zh": "中国科学院大气物理研究所" + }, + "description": { + "en": "The Institute of Atmospheric Physics (IAP) under the Chinese Academy of Sciences is China's premier research institution for atmospheric science and climate change. Founded in 1928 and reorganized under CAS in 1950, IAP leads China's research in atmospheric dynamics, physical climatology, atmospheric chemistry, boundary layer meteorology, and middle atmosphere research. IAP operates key observational facilities including China's tallest meteorological tower in Beijing and contributes to multiple international climate observation networks. The institute develops and maintains China's leading climate models, produces authoritative climate change assessments, and publishes major research findings on global warming, East Asian monsoon dynamics, air pollution meteorology, and atmospheric composition. IAP's data products are widely used in IPCC assessments and international climate science.", + "zh": "中国科学院大气物理研究所是中国大气科学和气候变化领域的最高研究机构,1928年创建,1950年并入中国科学院。大气所在大气动力学、物理气候学、大气化学、边界层气象和中层大气研究方面引领中国研究前沿,运营北京325米气象铁塔等核心观测设施,参与多个国际气候观测网络。研究所开发维护中国主流气候模式,发布气候变化权威评估报告,在全球变暖、东亚季风动力学、大气污染气象学和大气成分等方面发表重要研究成果。大气所数据产品被IPCC评估报告和国际气候科学界广泛引用。" + }, + "website": "https://www.iap.ac.cn", + "data_url": "https://www.iap.ac.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "climate", + "environment", + "science", + "weather" + ], + "update_frequency": "irregular", + "tags": [ + "中国科学院大气物理研究所", + "iap", + "institute-of-atmospheric-physics", + "大气物理", + "atmospheric-physics", + "气候变化", + "climate-change", + "大气科学", + "atmospheric-science", + "东亚季风", + "east-asian-monsoon", + "气候模式", + "climate-model", + "全球变暖", + "global-warming", + "大气化学", + "atmospheric-chemistry", + "边界层气象", + "boundary-layer-meteorology", + "大气污染", + "air-pollution-meteorology", + "气象观测", + "meteorological-observation", + "ipcc", + "气候评估", + "climate-assessment", + "中层大气", + "middle-atmosphere", + "海洋热含量", + "ocean-heat-content" + ], + "data_content": { + "en": [ + "Climate model output: simulation data from IAP's Earth System Models (CAS-ESM) contributed to CMIP6 for global and East Asian climate projections", + "Atmospheric observation data: long-term measurements from Beijing 325m meteorological tower including temperature, humidity, wind profiles, and turbulence", + "Ocean heat content datasets: authoritative global ocean warming records maintained by IAP, widely referenced for tracking long-term climate change", + "East Asian monsoon research: historical and projected changes in monsoon onset, intensity, precipitation patterns, and teleconnections", + "Atmospheric chemistry data: observations and model outputs on aerosol composition, trace gas concentrations, and air quality impacts on climate", + "Climate change assessment reports: China National Assessment Reports on Climate Change and contributions to IPCC Working Group I assessment reports", + "Stratosphere and middle atmosphere data: observations of ozone layer, upper atmosphere dynamics, and solar-climate interactions", + "Boundary layer meteorology data: surface energy budget, turbulent flux measurements, and urban heat island research" + ], + "zh": [ + "气候模式输出:大气所地球系统模式(CAS-ESM)参与CMIP6的全球及东亚气候预测模拟数据", + "大气观测数据:北京325米气象铁塔长期气温、湿度、风廓线及湍流观测数据", + "海洋热含量数据集:大气所维护的全球海洋变暖权威记录,被广泛用于长期气候变化追踪", + "东亚季风研究:季风开始时间、强度、降水型态和遥相关的历史变化及预测研究", + "大气化学数据:气溶胶成分、微量气体浓度和大气污染对气候影响的观测与模拟数据", + "气候变化评估报告:《中国气候变化国家评估报告》及参与IPCC第一工作组评估报告", + "平流层与中层大气数据:臭氧层、高层大气动力学和太阳-气候相互作用观测", + "边界层气象数据:地表能量收支、湍流通量观测和城市热岛研究" + ] + } +} diff --git a/firstdata/sources/china/research/china-ibcas.json b/firstdata/sources/china/research/china-ibcas.json new file mode 100644 index 00000000..eeda17fd --- /dev/null +++ b/firstdata/sources/china/research/china-ibcas.json @@ -0,0 +1,82 @@ +{ + "id": "china-ibcas", + "name": { + "en": "Institute of Botany, Chinese Academy of Sciences", + "zh": "中国科学院植物研究所" + }, + "description": { + "en": "The Institute of Botany (IBCAS) under the Chinese Academy of Sciences is China's flagship research institution for plant science, established in 1928. IBCAS maintains the China National Herbarium (PE), one of the world's largest plant specimen repositories, housing over 2.8 million voucher specimens representing China's extraordinary plant diversity. The institute operates the Beijing Botanical Garden and the China Specimen Information System, and contributes to international flora databases. IBCAS leads research in plant systematics and evolution, plant ecology, plant physiology, and molecular biology of plants. It coordinates the Flora of China project—a landmark collaboration with Missouri Botanical Garden—and publishes the authoritative Chinese Flora records. IBCAS manages critical plant diversity databases including the Chinese Virtual Herbarium and China Species Information Service, providing foundational data for biodiversity conservation, ecological restoration, and phytochemistry research.", + "zh": "中国科学院植物研究所是中国植物科学领域的旗舰研究机构,1928年建立。植物所保管中国国家植物标本馆(PE),是世界上最大的植物标本库之一,收藏280余万份植物标本,代表中国卓越的植物多样性。研究所运营北京植物园和中国标本信息系统,并为国际植物志数据库做出重要贡献。植物所在植物系统学与进化、植物生态学、植物生理学和植物分子生物学领域引领全国研究,与密苏里植物园合作主持《中国植物志》英文版项目,发布权威中国植物志记录。植物所管理中国虚拟植物标本馆和中国物种信息服务等重要植物多样性数据库,为生物多样性保护、生态修复和植物化学研究提供基础数据。" + }, + "website": "https://www.ibcas.ac.cn", + "data_url": "https://www.ibcas.ac.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "biology", + "environment", + "science" + ], + "update_frequency": "irregular", + "tags": [ + "中国科学院植物研究所", + "ibcas", + "institute-of-botany", + "植物学", + "botany", + "植物多样性", + "plant-diversity", + "生物多样性", + "biodiversity", + "植物标本", + "plant-herbarium", + "中国国家植物标本馆", + "china-national-herbarium", + "pe", + "flora-of-china", + "中国植物志", + "植物系统学", + "plant-systematics", + "植物进化", + "plant-evolution", + "植物生态学", + "plant-ecology", + "中国科学院", + "chinese-academy-of-sciences", + "cas", + "北京植物园", + "beijing-botanical-garden", + "种质资源", + "germplasm-resources", + "植物化学", + "phytochemistry", + "生态修复", + "ecological-restoration", + "中国虚拟植物标本馆", + "chinese-virtual-herbarium" + ], + "data_content": { + "en": [ + "China National Herbarium (PE) specimen database: 2.8+ million digitized plant voucher specimens with geographic coordinates, collection dates, taxonomic identifications, and high-resolution images", + "Flora of China records: comprehensive taxonomic treatments of approximately 31,000 Chinese vascular plant species, including descriptions, distribution maps, and synonymy", + "Chinese Virtual Herbarium: aggregated specimen data from major Chinese herbaria, enabling species distribution modeling and gap analysis for biodiversity conservation", + "China Species Information Service: authoritative species name lists, threat status assessments, and distribution data for Chinese plant species aligned with IUCN Red List criteria", + "Plant ecology datasets: vegetation survey data, plant community composition studies, phenological records, and ecosystem productivity measurements across Chinese biomes", + "Molecular phylogenetics data: DNA sequence databases and phylogenetic trees for Chinese plant families, supporting evolutionary biology research and species delimitation", + "Germplasm and conservation data: records of endangered plant species, in-situ and ex-situ conservation status, and genetic diversity assessments for priority conservation species", + "Phytochemistry research data: secondary metabolite databases, bioactive compound screening results, and ethnobotanical records of medicinal plants in China" + ], + "zh": [ + "中国国家植物标本馆(PE)标本数据库:280余万份数字化植物凭证标本,含地理坐标、采集日期、分类鉴定和高分辨率图像", + "中国植物志记录:约31,000种中国维管植物的综合分类处理,包括描述、分布图和异名", + "中国虚拟植物标本馆:整合中国主要植物标本馆标本数据,支持物种分布模型和生物多样性保护空缺分析", + "中国物种信息服务:中国植物物种权威名录、受威胁状态评估和分布数据,与IUCN红色名录标准对接", + "植物生态学数据集:覆盖中国各生物群系的植被调查、植物群落组成研究、物候记录和生态系统生产力测量", + "分子系统学数据:中国植物科的DNA序列数据库和系统发育树,支持进化生物学研究和物种界定", + "种质和保护数据:濒危植物物种记录、就地与迁地保护状态和优先保护物种遗传多样性评估", + "植物化学研究数据:次生代谢产物数据库、生物活性化合物筛选结果和中国药用植物民族植物学记录" + ] + } +} diff --git a/firstdata/sources/china/research/china-igsnrr.json b/firstdata/sources/china/research/china-igsnrr.json new file mode 100644 index 00000000..d86af9f8 --- /dev/null +++ b/firstdata/sources/china/research/china-igsnrr.json @@ -0,0 +1,23 @@ +{ + "id": "china-igsnrr", + "name": { + "en": "Institute of Geographic Sciences and Natural Resources Research, Chinese Academy of Sciences", + "zh": "中国科学院地理科学与资源研究所" + }, + "description": { + "en": "The Institute of Geographic Sciences and Natural Resources Research (IGSNRR) is a leading research institution under the Chinese Academy of Sciences, focusing on geography, natural resources, and ecosystem studies. It provides open datasets on land use, remote sensing, population distribution, and natural resource assessments across China.", + "zh": "中国科学院地理科学与资源研究所(地理资源所)是中国科学院下属的重要研究机构,专注于地理学、自然资源和生态系统研究。研究所提供土地利用、遥感、人口分布和自然资源评估等领域的开放数据集。" + }, + "data_content": { + "en": ["land use and land cover data", "remote sensing datasets", "population distribution data", "natural resource assessments", "ecosystem observation data", "geographic information datasets"], + "zh": ["土地利用与地表覆盖数据", "遥感数据集", "人口分布数据", "自然资源评估", "生态系统观测数据", "地理信息数据集"] + }, + "country": "CN", + "authority_level": "research", + "geographic_scope": "national", + "website": "http://www.igsnrr.ac.cn", + "data_url": "http://www.igsnrr.ac.cn", + "domains": ["geography", "environment", "remote-sensing"], + "tags": ["geography", "natural-resources", "land-use", "remote-sensing", "ecosystem", "chinese-academy-of-sciences"], + "update_frequency": "irregular" +} diff --git a/firstdata/sources/china/research/china-imcas.json b/firstdata/sources/china/research/china-imcas.json new file mode 100644 index 00000000..4b97a123 --- /dev/null +++ b/firstdata/sources/china/research/china-imcas.json @@ -0,0 +1,78 @@ +{ + "id": "china-imcas", + "name": { + "en": "Institute of Microbiology, Chinese Academy of Sciences", + "zh": "中国科学院微生物研究所" + }, + "description": { + "en": "The Institute of Microbiology (IMCAS) under the Chinese Academy of Sciences is China's premier research institution for microbiology, mycology, and microbial resources. Founded in 1958, IMCAS maintains the China General Microbiological Culture Collection Center (CGMCC), one of Asia's largest biological resource centers, housing hundreds of thousands of microbial strains, fungi, and viruses. The institute leads research in pathogenic microbiology, industrial microbiology, environmental microbiology, and bioinformatics. IMCAS publishes authoritative datasets on microbial diversity, antimicrobial resistance, and fungal taxonomy, contributing to global biological resource databases. Its research supports national biosafety, food fermentation industry, agricultural biocontrol, and pharmaceutical bioproduction. The institute is a key node in international microbial culture collection networks including WFCC and ECCO.", + "zh": "中国科学院微生物研究所是中国微生物学、真菌学和微生物资源领域的最高研究机构,1958年建立。微生物所维护中国普通微生物菌种保藏管理中心(CGMCC),是亚洲最大的生物资源库之一,保藏数十万株微生物菌株、真菌和病毒。研究所在病原微生物学、工业微生物学、环境微生物学和生物信息学领域引领全国研究,发布微生物多样性、抗微生物耐药性和真菌分类学权威数据集,为全球生物资源数据库贡献重要内容。其研究支撑国家生物安全、食品发酵产业、农业生物防治和医药生物生产。微生物所是世界菌种联合会(WFCC)和ECCO等国际微生物菌种保藏网络的重要节点。" + }, + "website": "https://www.im.cas.cn", + "data_url": "https://www.im.cas.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "biology", + "health", + "science" + ], + "update_frequency": "irregular", + "tags": [ + "中国科学院微生物研究所", + "imcas", + "institute-of-microbiology", + "微生物学", + "microbiology", + "真菌学", + "mycology", + "菌种保藏", + "microbial-culture-collection", + "cgmcc", + "中国普通微生物菌种保藏管理中心", + "微生物多样性", + "microbial-diversity", + "抗微生物耐药性", + "antimicrobial-resistance", + "amr", + "生物安全", + "biosafety", + "工业微生物", + "industrial-microbiology", + "病原微生物", + "pathogenic-microbiology", + "真菌分类", + "fungal-taxonomy", + "环境微生物", + "environmental-microbiology", + "中国科学院", + "chinese-academy-of-sciences", + "cas", + "微生物资源", + "microbial-resources" + ], + "data_content": { + "en": [ + "Microbial strain collections: CGMCC holds hundreds of thousands of authenticated bacterial, fungal, and viral strains available for research and industrial applications", + "Microbial diversity databases: catalogues of microbial species diversity across Chinese ecosystems, soil, marine, and extreme environments", + "Fungal taxonomy data: comprehensive records of fungal species classification, nomenclature, and morphological descriptions maintained by the Mycological Society of China", + "Antimicrobial resistance (AMR) monitoring: research datasets on drug-resistant pathogens, resistance gene databases, and surveillance reports", + "Genome sequence data: whole-genome sequences of bacteria, fungi, and viruses deposited in national and international databases", + "Industrial microbiology data: fermentation process parameters, enzyme databases, and biotransformation research for food, pharmaceutical, and agricultural applications", + "Environmental microbiology surveys: microbial community composition in soil, wastewater, and atmospheric environments across China", + "Biosafety research: risk assessment data for pathogenic microorganisms and containment standards for laboratory biosafety" + ], + "zh": [ + "微生物菌种保藏:CGMCC保藏数十万株经鉴定的细菌、真菌和病毒菌株,供研究和工业应用", + "微生物多样性数据库:覆盖中国生态系统、土壤、海洋和极端环境的微生物物种多样性目录", + "真菌分类数据:中国菌物学会维护的真菌物种分类、命名和形态描述综合记录", + "抗微生物耐药性(AMR)监测:耐药病原体研究数据集、耐药基因数据库和监测报告", + "基因组序列数据:存入国内外数据库的细菌、真菌和病毒全基因组序列", + "工业微生物数据:食品、制药和农业应用的发酵工艺参数、酶数据库和生物转化研究", + "环境微生物调查:中国土壤、废水和大气环境中微生物群落组成", + "生物安全研究:病原微生物风险评估数据和实验室生物安全的防控标准" + ] + } +} diff --git a/firstdata/sources/china/research/china-ioz.json b/firstdata/sources/china/research/china-ioz.json new file mode 100644 index 00000000..715a8b02 --- /dev/null +++ b/firstdata/sources/china/research/china-ioz.json @@ -0,0 +1,23 @@ +{ + "id": "china-ioz", + "name": { + "en": "Institute of Zoology, Chinese Academy of Sciences", + "zh": "中国科学院动物研究所" + }, + "description": { + "en": "The Institute of Zoology (IOZ) under the Chinese Academy of Sciences is a leading research institution focused on animal taxonomy, evolutionary biology, reproductive biology, and pest management. It maintains major biodiversity databases and species catalogues.", + "zh": "中国科学院动物研究所是从事动物分类学、进化生物学、生殖生物学和害虫防治研究的顶级机构。维护重要的生物多样性数据库和物种名录。" + }, + "data_content": { + "en": ["species catalogues", "biodiversity surveys", "animal genome data", "pest monitoring data", "evolutionary biology research"], + "zh": ["物种名录", "生物多样性调查", "动物基因组数据", "害虫监测数据", "进化生物学研究"] + }, + "country": "CN", + "authority_level": "research", + "geographic_scope": "national", + "website": "http://www.ioz.ac.cn", + "data_url": "http://www.ioz.ac.cn", + "domains": ["biology", "environment"], + "tags": ["zoology", "biodiversity", "species", "genome", "cas"], + "update_frequency": "irregular" +} diff --git a/firstdata/sources/china/research/china-istic.json b/firstdata/sources/china/research/china-istic.json new file mode 100644 index 00000000..36dbb5da --- /dev/null +++ b/firstdata/sources/china/research/china-istic.json @@ -0,0 +1,73 @@ +{ + "id": "china-istic", + "name": { + "en": "Institute of Scientific and Technical Information of China", + "zh": "中国科学技术信息研究所" + }, + "description": { + "en": "The Institute of Scientific and Technical Information of China (ISTIC), founded in 1956 and operating under the Ministry of Science and Technology, is China's leading government agency for scientific and technical information research and data publishing. ISTIC produces authoritative bibliometric analyses, including the Chinese Science Citation Database (CSCD), Chinese Scientific Journal Citation Reports, and annual rankings of China's most-cited journals and researchers. It publishes the Chinese S&T Journal Impact Factor (中国科技期刊引证报告), the ISTIC Discipline Assessment Reports, and China's performance in global scientific publications. ISTIC data is essential for evaluating research output, journal quality, academic influence, and China's position in the global science system.", + "zh": "中国科学技术信息研究所(中信所,ISTIC)成立于1956年,隶属科学技术部,是中国权威的科技信息研究与数据发布机构。中信所承担中文科学引文数据库(CSCD)建设、中国科技期刊引证报告编制及年度高被引期刊和研究者排名发布。主要出版物包括《中国科技期刊引证报告》(核心版)、学科评价报告以及中国在全球科学出版物中的表现分析。中信所数据是评估科研产出、期刊质量、学术影响力及中国在全球科学体系中地位的重要依据。" + }, + "website": "https://www.istic.ac.cn", + "data_url": "https://www.istic.ac.cn/", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "science", + "research", + "education", + "statistics" + ], + "update_frequency": "annual", + "tags": [ + "中信所", + "istic", + "科技信息", + "scientific-information", + "科学引文", + "science-citation", + "cscd", + "中文科学引文数据库", + "chinese-science-citation-database", + "期刊引证", + "journal-citation", + "影响因子", + "impact-factor", + "科技期刊", + "scientific-journal", + "学术评价", + "academic-evaluation", + "科研产出", + "research-output", + "高被引", + "highly-cited", + "科技部", + "ministry-of-science-and-technology", + "中国科技", + "china-science-and-technology" + ], + "data_content": { + "en": [ + "Chinese S&T Journal Citation Reports: impact factors, total citations, and h-index for thousands of Chinese scientific journals", + "CSCD database: comprehensive citation index for China's core scientific journals across all disciplines", + "Annual journal rankings: top Chinese journals by impact factor, citation frequency, and international influence", + "Chinese researcher citation analysis: highly cited Chinese scientists and their publication metrics", + "China's global scientific output: comparison of China's publications and citations with major scientific nations", + "Discipline assessment reports: bibliometric analysis by academic discipline and research institution", + "Science and technology information resources: statistical reports on library collections and digital resources in China", + "National sci-tech award statistics: data on China's national science and technology prize winners and research areas" + ], + "zh": [ + "中国科技期刊引证报告:数千种中国科技期刊的影响因子、总被引频次及h指数", + "CSCD数据库:覆盖各学科的中国核心科技期刊综合引文索引", + "年度期刊排名:按影响因子、被引频次和国际影响力排列的中国顶级期刊", + "中国学者被引分析:高被引中国科学家及其发表成果计量指标", + "中国全球科学产出:中国论文发表和引文数量与主要科学大国的比较", + "学科评价报告:按学术学科和科研机构的文献计量分析", + "科技信息资源:中国图书馆馆藏和数字资源统计报告", + "国家科技奖励统计:国家科学技术奖获奖者及研究领域数据" + ] + } +} diff --git a/firstdata/sources/china/research/china-ncsti.json b/firstdata/sources/china/research/china-ncsti.json new file mode 100644 index 00000000..992d515f --- /dev/null +++ b/firstdata/sources/china/research/china-ncsti.json @@ -0,0 +1,23 @@ +{ + "id": "china-ncsti", + "name": { + "en": "National Center for Science and Technology Information", + "zh": "中国科学技术信息研究所" + }, + "description": { + "en": "NCSTI is a national research institution under the Ministry of Science and Technology, providing science and technology information services, bibliometric analysis, and S&T statistics including the Chinese Science Citation Database.", + "zh": "中国科学技术信息研究所是科技部直属国家级科技信息研究机构,提供科技信息服务、文献计量分析和科技统计数据,包括中国科技论文统计数据库。" + }, + "data_content": { + "en": ["science citation database", "bibliometric analysis", "S&T statistics", "technology transfer data", "research output reports"], + "zh": ["科技论文统计数据库", "文献计量分析", "科技统计数据", "技术转移数据", "科研产出报告"] + }, + "country": "CN", + "authority_level": "research", + "geographic_scope": "national", + "website": "https://www.ncsti.gov.cn", + "data_url": "https://www.ncsti.gov.cn", + "domains": ["science", "technology"], + "tags": ["bibliometrics", "citation", "research-output", "most"], + "update_frequency": "annual" +} diff --git a/firstdata/sources/china/research/china-ngeos.json b/firstdata/sources/china/research/china-ngeos.json new file mode 100644 index 00000000..7bfef3e5 --- /dev/null +++ b/firstdata/sources/china/research/china-ngeos.json @@ -0,0 +1,76 @@ +{ + "id": "china-ngeos", + "name": { + "en": "National Earth System Science Data Center", + "zh": "国家地球系统科学数据中心" + }, + "description": { + "en": "The National Earth System Science Data Center (NGEOS) is one of China's 20 national science data centers, hosted by the Institute of Geographic Sciences and Natural Resources Research at the Chinese Academy of Sciences (CAS). NGEOS is the primary national repository for earth system science datasets in China, integrating multidisciplinary data on the atmosphere, hydrosphere, lithosphere, biosphere, and cryosphere. It provides open access to climate, hydrology, ecology, land use, remote sensing, and socioeconomic data for China and the Asia-Pacific region, supporting research on global change, carbon cycles, disaster risk, and sustainable development. NGEOS serves as a hub for sharing field observation data from research stations across China.", + "zh": "国家地球系统科学数据中心(NGEOS)是中国20个国家科学数据中心之一,依托中国科学院地理科学与资源研究所建设。该中心是中国地球系统科学数据的主要国家存储库,整合大气圈、水圈、岩石圈、生物圈和冰冻圈多学科数据。开放共享中国及亚太地区气候、水文、生态、土地利用、遥感和社会经济数据,支持全球变化、碳循环、灾害风险和可持续发展研究。中心是汇聚全国各地野外观测站实地观测数据共享的重要平台。" + }, + "website": "https://www.geodata.cn", + "data_url": "https://www.geodata.cn/data/", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "environmental-science", + "earth-science", + "climate" + ], + "update_frequency": "irregular", + "tags": [ + "地球系统科学", + "earth-system-science", + "气候数据", + "climate-data", + "水文数据", + "hydrological-data", + "生态数据", + "ecological-data", + "土地利用", + "land-use", + "遥感数据", + "remote-sensing-data", + "碳循环", + "carbon-cycle", + "全球变化", + "global-change", + "冰冻圈", + "cryosphere", + "中国科学院", + "chinese-academy-of-sciences", + "野外台站", + "field-research-station", + "开放数据", + "open-data", + "资源环境", + "resources-and-environment", + "可持续发展", + "sustainable-development", + "ngeos" + ], + "data_content": { + "en": [ + "Climate and meteorological datasets: long-term surface temperature, precipitation, wind speed, humidity, and solar radiation records from China's meteorological observation network, including gridded datasets at multiple resolutions from 1951 to present", + "Hydrological data: river discharge, groundwater levels, lake area and depth, evapotranspiration, and basin-scale water balance datasets for China's major river systems including Yangtze, Yellow, Pearl, and inland rivers", + "Land use and land cover change data: multi-temporal national land use classification at 100m and 1km resolutions from 1980-2020, tracking urbanization, deforestation, wetland loss, and agricultural land changes across China", + "Ecological and biodiversity datasets: vegetation coverage (NDVI) time series, species distribution models, forest biomass, grassland productivity, and biodiversity indices for China's major ecosystems", + "Cryosphere data: glacier area and volume changes, permafrost distribution and active layer depth, snow cover extent and snow water equivalent from the Qinghai-Tibetan Plateau and high-altitude regions", + "Socioeconomic geographic data: spatial datasets on population distribution, GDP per capita by county, poverty mapping, agricultural production zones, and infrastructure accessibility across China", + "Carbon flux and greenhouse gas data: ecosystem carbon uptake and release measurements from flux tower networks, soil respiration rates, and methane emissions from wetlands and rice paddies across China", + "Remote sensing satellite products: derived Earth observation products from Chinese satellites (FY, HJ, GF series) including land surface temperature, vegetation indices, aerosol optical depth, and soil moisture" + ], + "zh": [ + "气候和气象数据集:来自中国气象观测网络的长期地表温度、降水量、风速、湿度和太阳辐射记录,包含1951年至今不同分辨率的格网化数据集", + "水文数据:长江、黄河、珠江及内陆河等中国主要流域的河流径流量、地下水位、湖泊面积和深度、蒸散量及流域水量平衡数据集", + "土地利用与土地覆盖变化数据:1980—2020年100米和1千米分辨率的全国多时相土地利用分类,追踪全国城镇化、森林减少、湿地消失和农业用地变化", + "生态和生物多样性数据集:植被覆盖度(NDVI)时间序列、物种分布模型、森林生物量、草地生产力及中国主要生态系统生物多样性指数", + "冰冻圈数据:青藏高原和高海拔地区冰川面积和体积变化、多年冻土分布及活动层深度、积雪范围和雪水当量", + "社会经济地理数据:全国人口分布、各县GDP、贫困地图、农业生产区划和基础设施可达性空间数据集", + "碳通量和温室气体数据:通量塔网络生态系统碳吸收和释放测量值、土壤呼吸速率及全国湿地和稻田甲烷排放量", + "遥感卫星产品:中国卫星(风云、环境、高分系列)衍生的地球观测产品,包括地表温度、植被指数、气溶胶光学厚度和土壤湿度" + ] + } +} diff --git a/firstdata/sources/china/research/china-nigpas.json b/firstdata/sources/china/research/china-nigpas.json new file mode 100644 index 00000000..88cc22ea --- /dev/null +++ b/firstdata/sources/china/research/china-nigpas.json @@ -0,0 +1,67 @@ +{ + "id": "china-nigpas", + "name": { + "en": "Nanjing Institute of Geology and Palaeontology, Chinese Academy of Sciences", + "zh": "中国科学院南京地质古生物研究所" + }, + "description": { + "en": "The Nanjing Institute of Geology and Palaeontology (NIGPAS), established in 1951 under the Chinese Academy of Sciences, is China's only dedicated institution for palaeontology and stratigraphy research. NIGPAS maintains one of the world's largest fossil collections with over 200,000 specimens covering invertebrate palaeontology, palaeobotany, micropaleontology, and biostratigraphy. The institute operates the Nanjing Museum of Palaeontology and manages comprehensive databases of fossil specimens, stratigraphic sections, and geological time calibration data. NIGPAS plays a central role in establishing China's biostratigraphic framework and contributes to international efforts in geological time scale calibration. Its research data supports studies in Earth's life evolution, mass extinction events, palaeoclimate reconstruction, and petroleum exploration stratigraphy.", + "zh": "中国科学院南京地质古生物研究所成立于1951年,是中国唯一专门从事古生物学和地层学研究的机构。NIGPAS维护着世界上最大的化石收藏之一,拥有超过20万件标本,涵盖无脊椎古生物学、古植物学、微体古生物学和生物地层学。研究所运营南京古生物博物馆,管理化石标本、地层剖面和地质年代标定数据的综合数据库。NIGPAS在建立中国生物地层学框架中发挥核心作用,并为国际地质年代表标定工作作出贡献。其研究数据支持地球生命演化、大灭绝事件、古气候重建和石油勘探地层学等领域的研究。" + }, + "website": "http://www.nigpas.ac.cn", + "data_url": "http://www.nigpas.ac.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "science", + "geology" + ], + "update_frequency": "irregular", + "tags": [ + "古生物", + "palaeontology", + "paleontology", + "地层学", + "stratigraphy", + "化石", + "fossil", + "nigpas", + "南京地质古生物研究所", + "地质年代", + "geological-time", + "古植物", + "palaeobotany", + "微体古生物", + "micropaleontology", + "生物地层", + "biostratigraphy", + "大灭绝", + "mass-extinction", + "古气候", + "palaeoclimate", + "中国科学院", + "cas", + "标本", + "specimen" + ], + "data_content": { + "en": [ + "Fossil specimen database: taxonomic records, locality data, geological age, and imaging for over 200,000 fossil specimens in the NIGPAS collection", + "Stratigraphic section data: measured sections with lithological descriptions, biostratigraphic zonation, and chronostratigraphic correlation across China", + "Geological time scale calibration: high-resolution age data from GSSP (Global Boundary Stratotype Section and Point) candidates studied by NIGPAS", + "Palaeobotanical records: fossil plant morphology, taxonomy, and distribution data from Palaeozoic through Cenozoic periods", + "Micropaleontological datasets: conodont, foraminifer, and other microfossil biostratigraphic range data", + "Mass extinction event data: geochemical, isotopic, and fossil occurrence records for major Phanerozoic extinction boundaries" + ], + "zh": [ + "化石标本数据库:NIGPAS收藏的超过20万件化石标本的分类记录、产地数据、地质年代和影像资料", + "地层剖面数据:中国各地实测剖面的岩性描述、生物地层带划分和年代地层对比", + "地质年代表标定:NIGPAS研究的GSSP(全球界线层型剖面和点位)候选剖面高分辨率年龄数据", + "古植物学记录:古生代至新生代化石植物形态学、分类学和分布数据", + "微体古生物数据集:牙形石、有孔虫及其他微体化石生物地层延限数据", + "大灭绝事件数据:显生宙主要灭绝界线的地球化学、同位素和化石产出记录" + ] + } +} diff --git a/firstdata/sources/china/research/china-nsfc.json b/firstdata/sources/china/research/china-nsfc.json new file mode 100644 index 00000000..3c261549 --- /dev/null +++ b/firstdata/sources/china/research/china-nsfc.json @@ -0,0 +1,77 @@ +{ + "id": "china-nsfc", + "name": { + "en": "National Natural Science Foundation of China", + "zh": "国家自然科学基金委员会" + }, + "description": { + "en": "The National Natural Science Foundation of China (NSFC) is the primary government agency responsible for funding basic and applied research in natural sciences in China. Established in 1986, NSFC manages over 40 billion RMB in annual grants across disciplines including mathematics, physics, chemistry, life sciences, earth sciences, engineering, information sciences, and management. NSFC publishes comprehensive annual reports detailing funded projects, grant recipients, research outcomes, and strategic funding priorities. Its project database covers hundreds of thousands of funded research grants since inception, serving as a key indicator of China's scientific research investment, emerging disciplines, and talent development in academia. NSFC also collaborates with foreign counterparts to fund bilateral research programs, producing comparative data on international science cooperation.", + "zh": "国家自然科学基金委员会(自然科学基金委)是负责资助中国自然科学基础研究和应用基础研究的主要政府机构,成立于1986年。基金委每年管理超过400亿元人民币的资助经费,覆盖数学、物理、化学、生命科学、地球科学、工程科学、信息科学和管理科学等学科。基金委发布详尽的年度报告,包括资助项目、获资助研究人员、研究成果及战略资助重点。其项目数据库收录自成立以来数十万个资助研究项目,是衡量中国科研投入、新兴学科发展和学术人才培养的重要指标。基金委还与境外同行合作开展双边研究资助计划,产出国际科技合作比较数据。" + }, + "website": "https://www.nsfc.gov.cn/", + "data_url": "https://www.nsfc.gov.cn/p1/2961/2964/3655/cg.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "research", + "science", + "technology", + "education" + ], + "update_frequency": "annual", + "tags": [ + "国家自然科学基金", + "nsfc", + "national-natural-science-foundation-of-china", + "自然科学基金", + "natural-science-fund", + "科研立项", + "research-grants", + "基础研究", + "basic-research", + "应用基础研究", + "applied-basic-research", + "科学资助", + "science-funding", + "立项数据", + "project-database", + "科研人才", + "research-talent", + "学科前沿", + "disciplinary-frontiers", + "中国科研投入", + "china-r&d-investment", + "国际合作", + "international-cooperation", + "年度报告", + "annual-report", + "杰出青年基金", + "outstanding-young-scientist-fund", + "重大项目", + "major-projects" + ], + "data_content": { + "en": [ + "Annual funded projects database: searchable records of all NSFC-funded grants by year, discipline, institution, and principal investigator", + "Science funding statistics: total annual appropriations, grant counts, and funding rates by discipline and grant type (General Program, Key Program, Major Program, etc.)", + "Talent development data: statistics on funded young scientists, outstanding youth, and distinguished senior researchers", + "Research outcomes: publication counts, patents, and other outputs attributed to NSFC-funded projects", + "Institutional rankings: university and research institute performance in NSFC funding competition by discipline", + "International cooperation projects: bilateral grant programs with foreign funding agencies including NSF, DFG, ANR, and others", + "Annual reports: comprehensive yearly overview of NSFC strategy, priorities, funded science, and policy direction", + "Disciplinary planning: medium and long-term development plans for each major scientific discipline funded by NSFC" + ], + "zh": [ + "年度资助项目数据库:按年度、学科、承担单位和项目负责人可检索的全部资助项目记录", + "科学资助统计:按学科和项目类型(面上项目、重点项目、重大项目等)分列的年度总经费、资助数量和资助率", + "人才培养数据:青年科学家、优秀青年科学基金和杰出青年科学基金获资助者统计", + "研究成果:归属于基金委资助项目的论文发表数量、专利及其他产出", + "机构排名:各高校和科研院所按学科在基金委资助竞争中的表现", + "国际合作项目:与美国NSF、德国DFG、法国ANR等境外资助机构开展的双边资助计划", + "年度报告:基金委战略、重点、资助科学和政策方向的全面年度综述", + "学科规划:基金委各重大资助科学学科的中长期发展规划" + ] + } +} diff --git a/firstdata/sources/china/research/china-nsii.json b/firstdata/sources/china/research/china-nsii.json new file mode 100644 index 00000000..6734f9fd --- /dev/null +++ b/firstdata/sources/china/research/china-nsii.json @@ -0,0 +1,76 @@ +{ + "id": "china-nsii", + "name": { + "en": "National Specimen Information Infrastructure of China", + "zh": "中国国家标本资源平台" + }, + "description": { + "en": "The National Specimen Information Infrastructure of China (NSII) is a national scientific data platform established by the Ministry of Science and Technology and jointly built by major Chinese natural history museums, herbaria, and biological research institutions of the Chinese Academy of Sciences. NSII digitizes and integrates biological specimen data—including plants, animals, fungi, and microorganisms—collected across China's diverse ecosystems. The platform aggregates over 30 million specimen records from more than 100 partner institutions, representing one of the world's largest regional biodiversity specimen databases. NSII data is used in biodiversity conservation research, species distribution modeling, ecological baseline assessments, invasive species tracking, and environmental impact evaluations. It contributes data to global biodiversity informatics initiatives including the Global Biodiversity Information Facility (GBIF) and supports China's obligations under the Convention on Biological Diversity (CBD).", + "zh": "中国国家标本资源平台(NSII)是由科学技术部主导建立、中国科学院各大自然历史博物馆、植物标本馆和生物研究机构共同参与建设的国家科学数据平台。NSII对中国多样生态系统中采集的生物标本数据进行数字化整合,涵盖植物、动物、真菌和微生物。平台汇聚来自100余家合作机构的逾3000万条标本记录,是全球规模最大的区域性生物多样性标本数据库之一。NSII数据广泛用于生物多样性保护研究、物种分布建模、生态基线评估、入侵物种追踪和环境影响评价,并向全球生物多样性信息网络(GBIF)贡献数据,支持中国履行《生物多样性公约》(CBD)相关义务。" + }, + "website": "https://www.nsii.org.cn/", + "data_url": "https://www.nsii.org.cn/2017/home.php", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "ecology", + "biodiversity", + "natural-history", + "science" + ], + "update_frequency": "irregular", + "tags": [ + "生物标本", + "biological-specimen", + "生物多样性", + "biodiversity", + "植物标本", + "herbarium", + "动物标本", + "zoological-specimen", + "物种分布", + "species-distribution", + "入侵物种", + "invasive-species", + "生态学", + "ecology", + "自然历史", + "natural-history", + "中国科学院", + "chinese-academy-of-sciences", + "gbif", + "生物多样性公约", + "convention-on-biological-diversity", + "cbd", + "国家标本资源", + "natural-specimen-resources", + "博物馆数字化", + "museum-digitization" + ], + "data_content": { + "en": [ + "Plant specimen records: over 10 million herbarium specimens from Chinese botanical gardens and herbaria, with geographic coordinates, collection date, and taxonomic classification", + "Zoological specimen database: vertebrate and invertebrate specimen records from natural history museums across China including mammals, birds, reptiles, amphibians, fish, and insects", + "Fungal and microbial specimens: culture collection records and field samples for fungi, bacteria, and other microorganisms from Chinese ecosystems", + "Species occurrence data: geospatially referenced occurrence records enabling species distribution modeling and habitat assessment across China's major biomes", + "Invasive alien species records: distribution data and occurrence history for invasive plant and animal species threatening native Chinese biodiversity", + "Endangered and protected species data: specimen records and occurrence points for species listed under China's national wildlife protection law and IUCN Red List", + "Historical collection data: digitized specimen records from legacy collections spanning over 100 years, enabling long-term ecological change analysis", + "Image and morphological data: high-resolution specimen photographs and morphological measurements linked to individual specimen records", + "Regional and ecosystem surveys: specimen data from targeted biodiversity surveys in key ecological function zones and biodiversity hotspots" + ], + "zh": [ + "植物标本记录:来自中国各植物园和植物标本馆的逾1000万份腊叶标本,含地理坐标、采集日期和分类信息", + "动物标本数据库:全国自然历史博物馆脊椎动物和无脊椎动物标本记录,涵盖哺乳类、鸟类、爬行类、两栖类、鱼类和昆虫", + "真菌和微生物标本:中国生态系统真菌、细菌和其他微生物的菌种保藏记录和野外采集样本", + "物种分布数据:带地理参考的物种出现记录,支持中国主要生物群系的物种分布建模和栖息地评估", + "入侵外来物种记录:威胁中国本土生物多样性的入侵植物和动物物种分布数据和历史记录", + "濒危和受保护物种数据:列入中国野生动物保护法和IUCN红色名录物种的标本记录和出现点位", + "历史馆藏数据:逾百年历史馆藏的数字化标本记录,支持长时序生态变化分析", + "图像和形态数据:与个体标本记录关联的高分辨率标本照片和形态测量数据", + "区域和生态系统调查:重点生态功能区和生物多样性热点地区专项生物多样性调查标本数据" + ] + } +} diff --git a/firstdata/sources/china/research/china-nssdc.json b/firstdata/sources/china/research/china-nssdc.json new file mode 100644 index 00000000..2c31a53a --- /dev/null +++ b/firstdata/sources/china/research/china-nssdc.json @@ -0,0 +1,67 @@ +{ + "id": "china-nssdc", + "name": { + "en": "National Space Science Data Center", + "zh": "国家空间科学数据中心" + }, + "description": { + "en": "The National Space Science Data Center (NSSDC) is one of China's 20 national science data centers, managed by the National Space Science Center of the Chinese Academy of Sciences. NSSDC serves as the authoritative repository for space science mission data in China, providing long-term preservation, curation, and open sharing of data from China's space science satellite programs including DAMPE (Wukong), HXMT (Insight), EP (Einstein Probe), QUESS (Mozi), and other missions. The center also archives solar-terrestrial space environment monitoring data, geomagnetic field observations, and cosmic ray measurements. NSSDC offers standardized data access services with DOI-based data citation, supporting domestic and international researchers in space physics, astrophysics, planetary science, and space weather forecasting.", + "zh": "国家空间科学数据中心是中国20个国家科学数据中心之一,由中国科学院国家空间科学中心管理。NSSDC是中国空间科学任务数据的权威存储库,提供来自悟空号、慧眼号、爱因斯坦探针、墨子号等中国空间科学卫星项目数据的长期保存、整理和开放共享服务。中心还归档日地空间环境监测数据、地磁场观测和宇宙线测量数据。NSSDC提供基于DOI数据引用的标准化数据访问服务,支持国内外研究人员在空间物理、天体物理、行星科学和空间天气预报等领域的研究。" + }, + "website": "https://www.nssdc.ac.cn", + "data_url": "https://www.nssdc.ac.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "science", + "space" + ], + "update_frequency": "irregular", + "tags": [ + "空间科学", + "space-science", + "nssdc", + "国家科学数据中心", + "national-science-data-center", + "卫星数据", + "satellite-data", + "悟空号", + "dampe", + "慧眼号", + "hxmt", + "爱因斯坦探针", + "einstein-probe", + "墨子号", + "quess", + "空间天气", + "space-weather", + "宇宙线", + "cosmic-ray", + "地磁场", + "geomagnetic-field", + "天体物理", + "astrophysics", + "中国科学院", + "cas" + ], + "data_content": { + "en": [ + "Space science satellite mission data: calibrated scientific data products from DAMPE, HXMT, EP, QUESS, and other Chinese space science missions", + "Solar-terrestrial environment monitoring: solar wind parameters, interplanetary magnetic field measurements, and magnetospheric observation data", + "Geomagnetic field observations: ground-based geomagnetic station network data including geomagnetic indices and field component measurements", + "Cosmic ray measurement data: ground-based and space-based cosmic ray flux, energy spectrum, and composition observations", + "Space weather forecasting data: real-time and archival space environment condition data for solar activity and geomagnetic storm prediction", + "Planetary science data: lunar and Mars exploration mission data products from Chang'e and Tianwen programs" + ], + "zh": [ + "空间科学卫星任务数据:悟空号、慧眼号、爱因斯坦探针、墨子号等中国空间科学任务的定标科学数据产品", + "日地环境监测:太阳风参数、行星际磁场测量及磁层观测数据", + "地磁场观测:地面地磁台站网络数据,包括地磁指数和磁场分量测量", + "宇宙线测量数据:地面和空间宇宙线通量、能谱和成分观测数据", + "空间天气预报数据:用于太阳活动和地磁暴预报的实时与存档空间环境状态数据", + "行星科学数据:嫦娥和天问系列月球与火星探测任务数据产品" + ] + } +} diff --git a/firstdata/sources/china/research/china-nstl.json b/firstdata/sources/china/research/china-nstl.json new file mode 100644 index 00000000..bbb64a6a --- /dev/null +++ b/firstdata/sources/china/research/china-nstl.json @@ -0,0 +1,72 @@ +{ + "id": "china-nstl", + "name": { + "en": "National Science and Technology Library of China", + "zh": "国家科技图书文献中心" + }, + "description": { + "en": "The National Science and Technology Library (NSTL) is China's national-level science and technology document resource sharing service institution, established by the Ministry of Science and Technology. NSTL provides authoritative access to global scientific and technological literature including journal articles, conference papers, dissertations, standards, and patents. It maintains one of China's largest collections of foreign-language scientific literature, with over 24 million records. NSTL serves as a critical data source for China's science and technology information system, supporting research institutions, universities, and government agencies with comprehensive bibliographic and full-text document services.", + "zh": "国家科技图书文献中心(NSTL)是科学技术部建立的国家级科技文献资源共享服务机构,提供涵盖期刊论文、会议论文、学位论文、标准及专利的全球科技文献权威检索服务。NSTL是中国规模最大的外文科技文献馆藏之一,收录超过2400万条记录,是中国科技信息体系的核心数据来源,为科研机构、高校及政府部门提供全面的文献检索和全文服务。" + }, + "website": "https://www.nstl.gov.cn/", + "data_url": "https://www.nstl.gov.cn/search.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "science", + "technology", + "research", + "education" + ], + "update_frequency": "daily", + "tags": [ + "科技文献", + "science-and-technology-literature", + "期刊论文", + "journal-articles", + "学位论文", + "dissertations", + "专利文献", + "patent-literature", + "技术标准", + "technical-standards", + "科技信息", + "s&t-information", + "文献检索", + "document-retrieval", + "外文文献", + "foreign-language-literature", + "科研数据", + "research-data", + "科技部", + "ministry-of-science-and-technology" + ], + "data_content": { + "en": [ + "Journal articles: full-text and bibliographic access to international and Chinese scientific journals", + "Conference papers: proceedings from major scientific and engineering conferences worldwide", + "Dissertations: Chinese and selected international doctoral and master's theses", + "Technical standards: national and international standards (GB, ISO, ANSI, etc.)", + "Patent documents: Chinese and international patent databases and full texts", + "Science and technology statistics: R&D expenditure, publication counts, and citation metrics for China", + "Research reports: government-commissioned S&T research and evaluation reports", + "Foreign-language literature collection: over 24 million records from global publications", + "Preprints and working papers: emerging research documents across scientific disciplines", + "Annual S&T Document Resource Report: summary of national scientific literature acquisition" + ], + "zh": [ + "期刊论文:国内外科技期刊全文及文献检索服务", + "会议论文:全球主要科技工程会议论文集", + "学位论文:中国及部分国际博士、硕士学位论文", + "技术标准:国家及国际标准(GB、ISO、ANSI等)", + "专利文献:中国及国际专利数据库及全文", + "科技统计:中国研发经费、论文发表数量及引用指标", + "科研报告:政府委托科技研究及评估报告", + "外文馆藏:来自全球出版物的2400余万条文献记录", + "预印本及工作文件:各科学领域最新研究文档", + "科技文献资源年报:国家科技文献资源采集年度综述" + ] + } +} diff --git a/firstdata/sources/china/research/china-pku-opendata.json b/firstdata/sources/china/research/china-pku-opendata.json new file mode 100644 index 00000000..71b2822c --- /dev/null +++ b/firstdata/sources/china/research/china-pku-opendata.json @@ -0,0 +1,77 @@ +{ + "id": "china-pku-opendata", + "name": { + "en": "Peking University Open Research Data Platform", + "zh": "北京大学开放研究数据平台" + }, + "description": { + "en": "The Peking University Open Research Data Platform (PKU Open Data) is China's first comprehensive institutional open research data repository, built on the Harvard Dataverse framework and launched by Peking University Library. The platform enables PKU researchers and affiliated institutions to deposit, share, and cite research datasets across all disciplines, including social sciences, economics, public health, environmental studies, humanities, and natural sciences. Datasets are assigned DOI identifiers and linked to published papers, promoting reproducibility and open science. PKU Open Data hosts unique surveys, longitudinal studies, and experimental datasets from one of China's leading universities, making primary research data accessible to the global scholarly community.", + "zh": "北京大学开放研究数据平台是中国第一个综合性机构开放研究数据库,由北京大学图书馆依托哈佛大学Dataverse框架建立。平台支持北大研究人员及附属机构在社会科学、经济学、公共卫生、环境研究、人文学科和自然科学等各领域的数据集存档、共享和引用。数据集被分配DOI标识符并与发表论文关联,推动可重复研究和开放科学。平台托管了来自中国顶尖高校的独特调查、纵向研究和实验数据集,向全球学术界开放原始研究数据。" + }, + "website": "https://opendata.pku.edu.cn", + "data_url": "https://opendata.pku.edu.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "social", + "economics", + "health", + "environment", + "science" + ], + "update_frequency": "irregular", + "tags": [ + "北京大学", + "peking-university", + "pku", + "开放数据", + "open-data", + "研究数据", + "research-data", + "数据仓库", + "data-repository", + "dataverse", + "社会科学数据", + "social-science-data", + "调查数据", + "survey-data", + "纵向研究", + "longitudinal-study", + "doi", + "开放科学", + "open-science", + "可重复研究", + "reproducibility", + "经济数据", + "economic-data", + "公共卫生", + "public-health", + "环境数据", + "environmental-data", + "中国学术", + "chinese-academia", + "北大图书馆" + ], + "data_content": { + "en": [ + "Social Science Datasets: Surveys, experiments, and longitudinal studies on Chinese society, demographics, labor markets, and social behavior", + "Economic Research Data: Firm-level datasets, economic experiments, trade data, and financial market studies from PKU economics research", + "Public Health Data: Epidemiological surveys, clinical study datasets, and population health monitoring data", + "Environmental Science Data: Ecological observations, pollution monitoring, and environmental impact assessment datasets", + "Humanities and Cultural Data: Historical records, digital humanities datasets, and cultural heritage documentation", + "Natural Sciences Data: Experimental datasets from physics, chemistry, biology, and materials science research", + "Multidisciplinary Survey Data: Cross-disciplinary surveys on topics such as education, poverty, inequality, and governance in China" + ], + "zh": [ + "社会科学数据集:关于中国社会、人口、劳动力市场和社会行为的调查、实验和纵向研究", + "经济研究数据:来自北大经济学研究的企业级数据集、经济实验、贸易数据和金融市场研究", + "公共卫生数据:流行病学调查、临床研究数据集和人口健康监测数据", + "环境科学数据:生态观测、污染监测和环境影响评估数据集", + "人文与文化数据:历史档案、数字人文数据集和文化遗产记录", + "自然科学数据:物理、化学、生物和材料科学研究实验数据集", + "多学科调查数据:涵盖中国教育、贫困、不平等和治理等主题的跨学科调查" + ] + } +} diff --git a/firstdata/sources/china/research/china-plant-csdb.json b/firstdata/sources/china/research/china-plant-csdb.json new file mode 100644 index 00000000..7713fb28 --- /dev/null +++ b/firstdata/sources/china/research/china-plant-csdb.json @@ -0,0 +1,79 @@ +{ + "id": "china-plant-csdb", + "name": { + "en": "China Plant Thematic Database (CAS Science Database)", + "zh": "中国植物主题数据库" + }, + "description": { + "en": "The China Plant Thematic Database is part of the Chinese Academy of Sciences Science Database (CSDB) system, maintained by CAS and accessible through plant.csdb.cn. It is one of China's most comprehensive authoritative databases for plant taxonomy, distribution, and botanical information. The database integrates data from major herbaria, botanical gardens, and field surveys across China, covering vascular plants, bryophytes, algae, fungi, and lichens found in China. It provides species occurrence records, taxonomic classification, morphological descriptions, distribution maps, ecological habitat information, and nomenclature references. The China Plant Thematic Database is a key resource for biodiversity conservation planning, ecological impact assessments, and floristic research on China's exceptionally rich plant diversity — China harbors approximately 35,000 higher plant species, the third highest in the world.", + "zh": "中国植物主题数据库是中国科学院科学数据库(CSDB)体系的重要组成部分,由中科院维护,通过plant.csdb.cn访问,是中国最全面的权威植物分类学、分布和植物学信息综合数据库之一。该数据库整合了中国各大标本馆、植物园和野外调查的数据,收录中国产维管束植物、苔藓植物、藻类、真菌和地衣。数据库提供物种分布记录、分类学归属、形态描述、分布图、生态生境信息和命名参考资料,是生物多样性保护规划、生态影响评估和中国丰富植物多样性区系研究的关键资源。中国约有高等植物35,000种,位居全球第三。" + }, + "website": "https://www.plant.csdb.cn", + "data_url": "https://www.plant.csdb.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "biodiversity", + "environment", + "science", + "ecology" + ], + "update_frequency": "irregular", + "tags": [ + "中国植物主题数据库", + "china-plant-database", + "植物分类学", + "plant-taxonomy", + "植物多样性", + "plant-diversity", + "中国科学院", + "chinese-academy-of-sciences", + "csdb", + "科学数据库", + "science-database", + "维管束植物", + "vascular-plants", + "苔藓植物", + "bryophytes", + "物种分布", + "species-distribution", + "植物标本", + "herbarium-specimens", + "植物区系", + "flora", + "生物多样性", + "biodiversity", + "植物园", + "botanical-garden", + "濒危植物", + "endangered-plants", + "植物命名", + "plant-nomenclature", + "生态调查", + "ecological-survey" + ], + "data_content": { + "en": [ + "Plant species records: taxonomic information for vascular plants, mosses, algae, fungi, and lichens native to or naturalized in China, with scientific names, synonyms, and authority citations", + "Species distribution data: georeferenced occurrence records and distribution maps showing plant species ranges across China's provinces and ecological zones", + "Morphological descriptions: standardized botanical descriptions of plant families, genera, and species including diagnostic characters, growth forms, and phenological data", + "Herbarium specimen data: digitized specimen records from major Chinese herbaria including the PE Herbarium of the Institute of Botany CAS, with collection localities, dates, and collectors", + "Ecological habitat information: vegetation community associations, altitudinal ranges, soil preferences, and biome affiliations for plant species", + "Conservation status data: information on nationally protected plant species, IUCN Red List assessments, and endemic species of China", + "Floristic diversity statistics: species richness data by region, family, and ecosystem type across China's 31 provinces and major ecological regions", + "Economic and medicinal plant data: records of plants with documented economic, medicinal, or agricultural significance in China" + ], + "zh": [ + "植物物种记录:中国原产或归化的维管束植物、苔藓、藻类、真菌和地衣分类信息,含学名、异名和命名引证", + "物种分布数据:带地理坐标的物种分布记录和分布图,呈现植物物种在各省和生态区的分布范围", + "形态描述:植物科、属、种的标准化植物学描述,包括鉴别特征、生长型和物候数据", + "标本数据:中国各大标本馆(含中科院植物研究所PE标本馆)的数字化标本记录,含采集地、采集日期和采集人", + "生态生境信息:植物物种的植被群落关联、海拔范围、土壤偏好和生物群系归属", + "保护状况数据:国家保护植物物种信息、IUCN红色名录评估和中国特有植物", + "植物区系多样性统计:中国31个省及主要生态区的物种丰富度分科、按生态系统类型统计数据", + "经济与药用植物数据:具有记录在案经济、药用或农业价值的中国植物记录" + ] + } +} diff --git a/firstdata/sources/china/research/china-pmo.json b/firstdata/sources/china/research/china-pmo.json new file mode 100644 index 00000000..4bfa72d4 --- /dev/null +++ b/firstdata/sources/china/research/china-pmo.json @@ -0,0 +1,65 @@ +{ + "id": "china-pmo", + "name": { + "en": "Purple Mountain Observatory, Chinese Academy of Sciences", + "zh": "中国科学院紫金山天文台" + }, + "description": { + "en": "The Purple Mountain Observatory (PMO), established in 1934 and located in Nanjing, is one of China's oldest and most prestigious astronomical research institutions under the Chinese Academy of Sciences. PMO is renowned for its pioneering work in asteroid discovery and tracking, solar physics, and space exploration. The observatory operates multiple observation stations across China and manages key research programs in near-Earth object monitoring, millimeter-wave astronomy, and dark matter detection. PMO has discovered numerous asteroids and comets, and maintains authoritative datasets on minor planet orbits. As a leading institution in Chinese astronomy, PMO publishes research data including asteroid ephemerides, solar activity observations, and astronomical catalogs that serve both the scientific community and national space situational awareness programs.", + "zh": "紫金山天文台成立于1934年,位于南京,是中国科学院下属最悠久、最具声望的天文研究机构之一。紫台在小行星发现与跟踪、太阳物理学和空间探测领域享有盛誉。天文台在全国运营多个观测站,管理近地天体监测、毫米波天文学和暗物质探测等关键研究项目。紫台已发现众多小行星和彗星,维护着权威的小行星轨道数据集。作为中国天文学的领军机构,紫台发布包括小行星星历表、太阳活动观测和天文星表在内的研究数据,服务于科学界和国家空间态势感知项目。" + }, + "website": "http://www.pmo.ac.cn", + "data_url": "http://www.pmo.ac.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "science", + "astronomy" + ], + "update_frequency": "irregular", + "tags": [ + "紫金山天文台", + "purple-mountain-observatory", + "pmo", + "天文学", + "astronomy", + "小行星", + "asteroid", + "近地天体", + "near-earth-object", + "太阳物理", + "solar-physics", + "暗物质", + "dark-matter", + "毫米波", + "millimeter-wave", + "星表", + "astronomical-catalog", + "中国科学院", + "cas", + "南京", + "nanjing", + "天文观测", + "astronomical-observation" + ], + "data_content": { + "en": [ + "Asteroid and minor planet data: orbital elements, ephemerides, and discovery records for asteroids discovered and tracked by PMO", + "Near-Earth object monitoring: tracking data and orbit calculations for potentially hazardous asteroids", + "Solar observation data: solar activity monitoring records including sunspot counts, solar flare events, and chromospheric observations", + "Millimeter-wave astronomical observations: spectral line survey data from the PMO 13.7m radio telescope at Delingha station", + "Dark matter detection experiment data: results from the DAMPE (Dark Matter Particle Explorer) satellite mission", + "Comet discovery and observation records: astrometric and photometric data for comets discovered by PMO astronomers" + ], + "zh": [ + "小行星和小天体数据:紫台发现和跟踪的小行星轨道根数、星历表及发现记录", + "近地天体监测:潜在危险小行星的跟踪数据和轨道计算", + "太阳观测数据:太阳活动监测记录,包括太阳黑子计数、太阳耀斑事件和色球观测", + "毫米波天文观测:德令哈观测站13.7米射电望远镜谱线巡天数据", + "暗物质探测实验数据:悟空号(暗物质粒子探测卫星)任务成果数据", + "彗星发现与观测记录:紫台天文学家发现的彗星天体测量和测光数据" + ] + } +} diff --git a/firstdata/sources/china/research/china-polar-service.json b/firstdata/sources/china/research/china-polar-service.json new file mode 100644 index 00000000..0931bca3 --- /dev/null +++ b/firstdata/sources/china/research/china-polar-service.json @@ -0,0 +1,86 @@ +{ + "id": "china-polar-service", + "name": { + "en": "China Polar Operations Service Platform (CHINARE Data)", + "zh": "中国极地业务服务平台" + }, + "description": { + "en": "The China Polar Operations Service Platform (chinare.org.cn) is the official operational data and service platform for China's National Arctic and Antarctic Expeditions (CHINAREs), managed by the Chinese Arctic and Antarctic Administration (CAA) under the Ministry of Natural Resources. The platform provides public access to observational data, expedition records, and scientific datasets collected during China's polar expeditions across Antarctica and the Arctic. China has maintained a continuous presence in Antarctica since 1985, with research stations including Zhongshan Station, Great Wall Station, Kunlun Station, and Taishan Station, plus Yellow River Station in the Arctic (Svalbard). The platform hosts multi-disciplinary polar science data including atmospheric observations, ice and snow data, marine environment monitoring, geological surveys, ecology datasets, and expedition logistics records spanning over 40 years of Chinese polar exploration. This data is critical for global climate change research, sea-level rise assessment, and understanding Earth's cryosphere.", + "zh": "中国极地业务服务平台(chinare.org.cn)是中国南北极科学考察(CHINARE)的官方业务数据与服务平台,由自然资源部中国极地研究中心(国家海洋局极地考察办公室)管理。平台向公众提供中国南北极历次科考的观测数据、科考记录和科学数据集。自1985年起,中国在南极建立了中山站、长城站、昆仑站和泰山站,并在北极斯瓦尔巴群岛建立了黄河站,保持长期科学考察。平台汇聚了跨越40余年中国极地探索的多学科极地科学数据,涵盖大气观测、冰雪数据、海洋环境监测、地质调查、生态数据集和科考后勤记录。这些数据对全球气候变化研究、海平面上升评估和地球冰冻圈研究至关重要。" + }, + "website": "https://www.chinare.org.cn/", + "data_url": "https://www.chinare.org.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "global", + "domains": [ + "environment", + "climate", + "ocean", + "science" + ], + "update_frequency": "irregular", + "tags": [ + "中国极地业务服务平台", + "chinare", + "中国南极科学考察", + "china-antarctic-expedition", + "中国北极科学考察", + "china-arctic-expedition", + "南极", + "antarctica", + "北极", + "arctic", + "极地", + "polar", + "中山站", + "zhongshan-station", + "长城站", + "great-wall-station", + "昆仑站", + "kunlun-station", + "黄河站", + "yellow-river-station", + "冰川", + "glacier", + "冰盖", + "ice-sheet", + "海冰", + "sea-ice", + "气候变化", + "climate-change", + "冰冻圈", + "cryosphere", + "海平面", + "sea-level", + "极地大气", + "polar-atmosphere", + "自然资源部", + "ministry-of-natural-resources", + "极地科学数据", + "polar-science-data" + ], + "data_content": { + "en": [ + "Atmospheric observations: meteorological data from Antarctic and Arctic stations including temperature, pressure, humidity, wind, solar radiation, and ozone measurements", + "Ice and snow data: snow accumulation, ice thickness, glacier dynamics, and cryosphere change datasets from ground surveys and remote sensing", + "Marine environment monitoring: oceanographic data collected during expeditions including sea ice extent, salinity, current measurements, and marine biological surveys", + "Geological surveys: geological mapping, bedrock topography, and geophysical data from Antarctic ice sheet surveys", + "Ecology and biology datasets: records of Antarctic marine ecosystems, krill populations, penguin colonies, and microbial ecology studies", + "Expedition records: logistics and scientific records from over 40 Chinese Antarctic (CHINARE) and Arctic expeditions", + "Remote sensing imagery: satellite-derived data products for polar ice, snow cover, and surface change monitoring", + "Permafrost and geothermal data: subsurface temperature and permafrost thickness measurements from polar stations" + ], + "zh": [ + "大气观测:南极和北极站点的气象数据,包括气温、气压、湿度、风速、太阳辐射和臭氧测量", + "冰雪数据:地面调查和遥感获取的积雪累积量、冰层厚度、冰川动力学和冰冻圈变化数据集", + "海洋环境监测:科考期间采集的海洋学数据,包括海冰范围、盐度、洋流测量和海洋生物调查", + "地质调查:南极冰盖地质制图、基岩地形和地球物理数据", + "生态与生物数据集:南极海洋生态系统、磷虾种群、企鹅种群和微生物生态学研究记录", + "科考记录:40余次中国南极(CHINARE)和北极科学考察的后勤和科研记录", + "遥感影像:用于极地冰雪、积雪覆盖和地表变化监测的卫星衍生数据产品", + "永久冻土和地热数据:极地站点的地下温度和多年冻土厚度测量数据" + ] + } +} diff --git a/firstdata/sources/china/research/china-pric.json b/firstdata/sources/china/research/china-pric.json new file mode 100644 index 00000000..6cb361c6 --- /dev/null +++ b/firstdata/sources/china/research/china-pric.json @@ -0,0 +1,87 @@ +{ + "id": "china-pric", + "name": { + "en": "Polar Research Institute of China", + "zh": "中国极地研究中心" + }, + "description": { + "en": "The Polar Research Institute of China (PRIC), also known as the Chinese Arctic and Antarctic Administration Research Institute, is China's principal organization for polar research under the Ministry of Natural Resources. PRIC operates and maintains China's polar research stations including Zhongshan Station and Great Wall Station in Antarctica, and Yellow River Station in the Arctic (Svalbard, Norway). PRIC manages the National Cryosphere Desert Data Center, which provides multi-decadal observational datasets on ice sheet dynamics, sea ice extent, permafrost, glacier mass balance, polar meteorology, and atmospheric chemistry in both polar regions. PRIC also coordinates China's National Arctic and Antarctic Expeditions (CHINAREs), archiving expedition data, biological samples, ice core records, and oceanographic observations spanning over 40 years of polar exploration. The institute publishes annual Chinese Antarctic Expedition Reports and Arctic Research Progress Reports that are primary references for global polar science.", + "zh": "中国极地研究中心(PRIC,又称中国极地研究所)是自然资源部下属的极地研究主体机构,负责建设和维护中国在南极的中山站、长城站以及北极黄河站(位于挪威斯瓦尔巴群岛)。中心管理国家冰冻圈沙漠数据中心,提供南北极冰盖动力学、海冰范围、多年冻土、冰川物质平衡、极地气象及大气化学的多年代际观测数据集。PRIC还统筹协调中国南北极科学考察(CHINAREs),归档跨越40余年极地探索的科考数据、生物样本、冰芯记录及海洋观测资料。中心发布年度中国南极考察报告和北极研究进展报告,是全球极地科学研究的重要参考来源。" + }, + "website": "https://www.pric.org.cn/", + "data_url": "https://www.pric.org.cn/", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "global", + "domains": [ + "environment", + "climate", + "ocean", + "science" + ], + "update_frequency": "annual", + "tags": [ + "中国极地研究中心", + "pric", + "polar-research-institute-of-china", + "南极", + "antarctica", + "北极", + "arctic", + "冰盖", + "ice-sheet", + "海冰", + "sea-ice", + "多年冻土", + "permafrost", + "冰川", + "glacier", + "极地气象", + "polar-meteorology", + "中山站", + "zhongshan-station", + "长城站", + "great-wall-station", + "黄河站", + "yellow-river-station", + "中国南极科学考察", + "chinare", + "冰芯", + "ice-core", + "极地海洋", + "polar-ocean", + "气候变化", + "climate-change", + "冰冻圈", + "cryosphere", + "自然资源部", + "ministry-of-natural-resources" + ], + "data_content": { + "en": [ + "Sea ice extent data: long-term records of Arctic and Antarctic sea ice area, concentration, and thickness derived from satellite remote sensing and in-situ observations", + "Ice sheet dynamics: mass balance measurements, ice velocity, and surface elevation change data for Antarctic ice sheets from Chinese expedition surveys", + "Polar meteorological observations: surface and upper-atmosphere temperature, pressure, wind, humidity, and radiation data from China's polar stations dating back to 1985", + "Glacier and snow datasets: glacier mass balance, snow depth, and snowpack water equivalent measurements from polar and high-altitude monitoring programs", + "Permafrost data: active layer thickness, permafrost temperature profiles, and thaw settlement measurements from Arctic and sub-Antarctic sites", + "Ice core records: chemical, isotopic, and physical properties of ice cores from Antarctic inland drilling projects, providing paleoclimate proxies spanning centuries", + "Oceanographic observations: water temperature, salinity, current, and biogeochemical profiles from polar ocean expedition cruises", + "Atmospheric chemistry: trace gas (CO2, CH4, N2O) and aerosol data from polar stations, contributing to global baseline monitoring", + "Annual Antarctic expedition reports: comprehensive documentation of each Chinese National Antarctic Research Expedition including scientific findings, logistics, and environmental data", + "Polar biodiversity: biological sample data from Antarctic marine ecosystems, penguins, krill populations, and microbial communities" + ], + "zh": [ + "海冰范围数据:基于卫星遥感和现场观测的南北极海冰面积、密集度和厚度长时间序列记录", + "冰盖动力学:中国科考队对南极冰盖物质平衡测量、冰流速度及表面高程变化数据", + "极地气象观测:中国极地考察站1985年以来的地面和高空温度、气压、风速、湿度及辐射数据", + "冰川和积雪数据集:极地及高海拔监测项目的冰川物质平衡、雪深和雪水当量测量数据", + "多年冻土数据:北极和亚南极地区活动层厚度、冻土温度剖面及融化沉降测量", + "冰芯记录:南极内陆钻探项目冰芯的化学、同位素和物理特性数据,提供跨越数百年的古气候代用指标", + "海洋观测:极地科考航次的水温、盐度、洋流和生物地球化学剖面数据", + "大气化学:极地考察站温室气体(CO2、CH4、N2O)和气溶胶数据,为全球基线监测提供贡献", + "年度南极科考报告:中国历次南极科学考察的科学发现、后勤保障和环境数据综合记录", + "极地生物多样性:南极海洋生态系统、企鹅、磷虾种群及微生物群落生物样本数据" + ] + } +} diff --git a/firstdata/sources/china/research/china-resdc.json b/firstdata/sources/china/research/china-resdc.json new file mode 100644 index 00000000..9d7fb6c6 --- /dev/null +++ b/firstdata/sources/china/research/china-resdc.json @@ -0,0 +1,52 @@ +{ + "id": "china-resdc", + "name": { + "en": "Resource and Environment Science and Data Center, Chinese Academy of Sciences", + "zh": "中国科学院资源环境科学与数据中心" + }, + "description": { + "en": "The Resource and Environment Science and Data Center (RESDC), operated by the Institute of Geographic Sciences and Natural Resources Research, Chinese Academy of Sciences, provides authoritative geospatial and environmental datasets for China and East Asia. It covers land use, natural resources, environmental quality, and socioeconomic spatial data.", + "zh": "中国科学院资源环境科学与数据中心由中国科学院地理科学与资源研究所运维,提供中国及东亚地区的权威地理空间和环境数据集,涵盖土地利用、自然资源、环境质量和社会经济空间数据。" + }, + "website": "https://www.resdc.cn", + "data_url": "https://www.resdc.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "earth-science", + "environment", + "natural-resources", + "geospatial" + ], + "update_frequency": "irregular", + "tags": [ + "china", + "land-use", + "remote-sensing", + "natural-resources", + "environment", + "geospatial", + "资源环境", + "土地利用", + "遥感", + "地理空间" + ], + "data_content": { + "en": [ + "Land Use/Cover - Multi-temporal land use classification data for China at 1km and 30m resolution from 1980s to present", + "Natural Resources - Datasets on water resources, mineral resources, soil types, and vegetation distribution", + "Environmental Quality - Air quality, water quality, and ecological environment assessment data", + "Socioeconomic Spatial Data - GDP spatial distribution, population density grids, and urbanization data", + "Climate and Meteorology - Spatial interpolation datasets of temperature, precipitation, and other climate variables" + ], + "zh": [ + "土地利用/覆盖 - 1980年代至今中国1km和30m分辨率的多时相土地利用分类数据", + "自然资源 - 水资源、矿产资源、土壤类型和植被分布数据", + "环境质量 - 大气质量、水质和生态环境评估数据", + "社会经济空间数据 - GDP空间分布、人口密度格网和城镇化数据", + "气候气象 - 温度、降水等气候要素的空间插值数据集" + ] + } +} diff --git a/firstdata/sources/china/research/china-sass.json b/firstdata/sources/china/research/china-sass.json new file mode 100644 index 00000000..bb6b6aa6 --- /dev/null +++ b/firstdata/sources/china/research/china-sass.json @@ -0,0 +1,69 @@ +{ + "id": "china-sass", + "name": { + "en": "Shanghai Academy of Social Sciences", + "zh": "上海社会科学院" + }, + "description": { + "en": "The Shanghai Academy of Social Sciences (SASS) is one of China's premier comprehensive research institutions in philosophy and social sciences, and among the oldest and most influential provincial-level academies. Founded in 1958, SASS operates over 15 research institutes covering economics, world economy, finance and development, urban and demographic studies, sociology, law, history, international relations, literature, philosophy, and religious studies. As a leading think tank focused on China's international gateway city, SASS produces the influential Shanghai Urban Development Report, Shanghai International Financial Center Index, Yangtze River Delta Integration reports, and annual World Economy Yellow Book. SASS research directly informs municipal and national policymaking on megacity governance, economic opening-up, and Yangtze River Delta regional integration.", + "zh": "上海社会科学院(SASS)是中国首屈一指的哲学社会科学综合性研究机构之一,是历史最悠久、影响力最大的省级社会科学院之一,成立于1958年。上海社科院设有15个以上研究所,覆盖经济学、世界经济、金融与发展、城市与人口研究、社会学、法学、历史学、国际关系、文学、哲学和宗教研究等领域。作为聚焦中国国际门户城市的领先智库,上海社科院发布具有影响力的《上海城市发展报告》《上海国际金融中心指数》《长三角一体化报告》和年度《世界经济黄皮书》。研究成果直接服务于上海市和国家在超大城市治理、经济开放和长三角区域一体化方面的决策。" + }, + "website": "https://www.sass.org.cn", + "data_url": "https://www.sass.org.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "social", + "economics", + "urban-studies", + "international-relations", + "finance", + "regional-development" + ], + "update_frequency": "irregular", + "tags": [ + "上海社会科学院", + "sass", + "shanghai-academy-of-social-sciences", + "社科院", + "academy-of-social-sciences", + "智库", + "think-tank", + "世界经济", + "world-economy", + "城市发展", + "urban-development", + "长三角", + "yangtze-river-delta", + "国际金融中心", + "international-financial-center", + "蓝皮书", + "bluebook", + "黄皮书", + "yellowbook", + "上海研究", + "shanghai-studies" + ], + "data_content": { + "en": [ + "Shanghai Urban Development Report: annual bluebook analyzing Shanghai's economic growth, demographic change, social governance, and global city indicators", + "World Economy Yellow Book: annual forecasts and analyses of global economic trends, trade dynamics, and major economies' macroeconomic performance", + "International Financial Center Index: proprietary ranking and evaluation of Shanghai and other global financial centers with financial market data", + "Yangtze River Delta integration reports: regional economic, transportation, innovation, and environmental integration assessments for the YRD megaregion", + "Urban and demographic studies: research on megacity population aging, migration, urbanization patterns, and housing affordability", + "Economic research papers: working papers and monographs on macroeconomic policy, industrial upgrading, and opening-up strategy", + "International relations analyses: studies on China-US relations, BRI research, and comparative regional studies" + ], + "zh": [ + "《上海城市发展报告》:年度蓝皮书,分析上海经济增长、人口变化、社会治理和全球城市指标", + "《世界经济黄皮书》:全球经济趋势、贸易动态和主要经济体宏观经济表现的年度预测和分析", + "国际金融中心指数:上海及其他全球金融中心的专属排名和评估,含金融市场数据", + "长三角一体化报告:长三角都市圈区域经济、交通、创新和环境一体化评估", + "城市与人口研究:超大城市人口老龄化、迁移、城镇化模式和住房可负担性研究", + "经济研究论文:宏观经济政策、产业升级和开放战略的工作论文与专著", + "国际关系分析:中美关系、一带一路研究和比较区域研究" + ] + } +} diff --git a/firstdata/sources/china/research/china-scidb.json b/firstdata/sources/china/research/china-scidb.json new file mode 100644 index 00000000..b52575c2 --- /dev/null +++ b/firstdata/sources/china/research/china-scidb.json @@ -0,0 +1,84 @@ +{ + "id": "china-scidb", + "name": { + "en": "Science Data Bank (ScienceDB)", + "zh": "中国科学数据银行" + }, + "description": { + "en": "Science Data Bank (ScienceDB) is China's premier general-purpose open research data repository, operated by the Computer Network Information Center of the Chinese Academy of Sciences (CAS). Established to support the FAIR data principles (Findable, Accessible, Interoperable, Reusable), ScienceDB accepts research data submissions from researchers across all disciplines including earth science, life science, physics, chemistry, social science, and humanities. The platform assigns persistent identifiers (DOI and CSTR) to datasets, supports data peer review, and provides long-term preservation. As of 2024, ScienceDB hosts hundreds of thousands of datasets from thousands of research organizations worldwide and is recognized by major international publishers including Nature, Science, and PLOS as a trusted data repository. ScienceDB serves as the backbone of China's national research data infrastructure and is recommended by funders such as the National Natural Science Foundation of China (NSFC) and the Chinese Academy of Sciences.", + "zh": "中国科学数据银行(ScienceDB)是由中国科学院计算机网络信息中心运营的国家级综合性开放科学数据存储库,基于FAIR数据原则(可发现、可访问、可互操作、可重用)建设。该平台接受来自所有学科研究者的数据提交,涵盖地球科学、生命科学、物理、化学、社会科学和人文等领域。ScienceDB为数据集分配持久性标识符(DOI和CSTR),支持数据同行评议,并提供长期保存。截至2024年,平台已存储数十万数据集,涵盖全球数千家研究机构,被Nature、Science、PLOS等国际主流出版商列为可信数据仓储。ScienceDB是中国国家科学数据基础设施的重要组成部分,得到国家自然科学基金委员会(NSFC)和中国科学院的推荐支持。" + }, + "website": "https://www.scidb.cn/", + "data_url": "https://www.scidb.cn/list?type=all", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "global", + "domains": [ + "science", + "research", + "earth-science", + "life-science", + "environment", + "health", + "social-sciences" + ], + "update_frequency": "daily", + "tags": [ + "中国科学数据银行", + "sciencedb", + "科学数据", + "scientific-data", + "开放数据", + "open-data", + "数据仓储", + "data-repository", + "FAIR原则", + "fair-principles", + "中国科学院", + "chinese-academy-of-sciences", + "cas", + "计算机网络信息中心", + "cnic", + "doi", + "cstr", + "数据集", + "datasets", + "数据发布", + "data-publication", + "科研数据", + "research-data", + "国家自然科学基金", + "nsfc", + "数据共享", + "data-sharing", + "持久标识符", + "persistent-identifier" + ], + "data_content": { + "en": [ + "Earth and environmental science datasets: climate observations, remote sensing data, geological surveys, biodiversity records", + "Life science datasets: genomics data, proteomics, clinical trial data, microbiology sequences, ecological observations", + "Physics and chemistry datasets: experimental physics data, materials science, chemical analysis, spectroscopy", + "Social science and humanities datasets: survey data, economic indicators, demographic data, historical records", + "Engineering and technology datasets: computer science benchmarks, machine learning training data, engineering measurements", + "Data citation services: DOI and CSTR persistent identifier assignment for research datasets", + "Dataset search and metadata: searchable catalog with rich metadata, subject classification, and temporal-spatial indexing", + "Data peer review: quality-assessed datasets with community review processes", + "Long-term preservation: versioned archival storage with disaster recovery backup", + "API access: programmatic data retrieval for large-scale data analytics" + ], + "zh": [ + "地球与环境科学数据集:气候观测、遥感数据、地质调查、生物多样性记录", + "生命科学数据集:基因组学数据、蛋白质组学、临床试验数据、微生物序列、生态观测", + "物理与化学数据集:实验物理数据、材料科学、化学分析、光谱学", + "社会科学与人文数据集:调查数据、经济指标、人口统计数据、历史档案", + "工程与技术数据集:计算机科学基准、机器学习训练数据、工程测量", + "数据引用服务:为科研数据集分配DOI和CSTR持久性标识符", + "数据集检索与元数据:具有丰富元数据、学科分类和时空索引的可检索目录", + "数据同行评议:经社区评审的高质量数据集", + "长期保存:带灾难恢复备份的版本化归档存储", + "API接入:支持大规模数据分析的程序化数据调用" + ] + } +} diff --git a/firstdata/sources/china/research/china-tpdc.json b/firstdata/sources/china/research/china-tpdc.json new file mode 100644 index 00000000..10f3e88f --- /dev/null +++ b/firstdata/sources/china/research/china-tpdc.json @@ -0,0 +1,54 @@ +{ + "id": "china-tpdc", + "name": { + "en": "National Tibetan Plateau Data Center", + "zh": "国家青藏高原科学数据中心" + }, + "description": { + "en": "The National Tibetan Plateau Data Center (TPDC), hosted by the Institute of Tibetan Plateau Research, Chinese Academy of Sciences, is a national-level scientific data center focused on the Tibetan Plateau and surrounding regions. It provides open access to datasets on glaciology, hydrology, ecology, atmospheric science, and geoscience for the Third Pole region.", + "zh": "国家青藏高原科学数据中心由中国科学院青藏高原研究所运维,是面向青藏高原及周边区域的国家级科学数据中心。提供冰川学、水文学、生态学、大气科学和地球科学等领域的开放数据。" + }, + "website": "https://data.tpdc.ac.cn", + "data_url": "https://data.tpdc.ac.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "regional", + "domains": [ + "earth-science", + "climate", + "ecology", + "glaciology", + "hydrology" + ], + "update_frequency": "irregular", + "tags": [ + "china", + "tibetan-plateau", + "third-pole", + "glaciers", + "climate", + "ecology", + "geoscience", + "青藏高原", + "冰川", + "生态", + "第三极" + ], + "data_content": { + "en": [ + "Glaciology - Glacier inventories, ice thickness, mass balance, and permafrost distribution for the Tibetan Plateau and High Mountain Asia", + "Hydrology - River discharge, lake levels, water resources, and watershed data for major Asian river headwaters", + "Ecology - Vegetation indices, land cover, biodiversity surveys, and ecosystem monitoring on the plateau", + "Atmospheric Science - Meteorological observations, radiation data, and atmospheric composition from high-altitude stations", + "Remote Sensing Products - Satellite-derived datasets including snow cover, land surface temperature, and terrain models" + ], + "zh": [ + "冰川学 - 青藏高原和高亚洲的冰川编目、冰厚度、物质平衡和冻土分布", + "水文学 - 亚洲主要河流源区的河流径流、湖泊水位、水资源和流域数据", + "生态学 - 高原植被指数、土地覆盖、生物多样性调查和生态系统监测", + "大气科学 - 高海拔站点的气象观测、辐射数据和大气成分", + "遥感产品 - 卫星衍生数据集,包括积雪覆盖、地表温度和地形模型" + ] + } +} diff --git a/firstdata/sources/china/research/china-wanfang.json b/firstdata/sources/china/research/china-wanfang.json new file mode 100644 index 00000000..ceeecac2 --- /dev/null +++ b/firstdata/sources/china/research/china-wanfang.json @@ -0,0 +1,64 @@ +{ + "id": "china-wanfang", + "name": { + "en": "Wanfang Data", + "zh": "万方数据" + }, + "description": { + "en": "Wanfang Data is one of China's largest academic and scientific information databases, operated by Wanfang Data Co., Ltd. (a subsidiary of the China Institute of Scientific and Technical Information, ISTIC). It aggregates millions of academic journals, dissertations, conference papers, patents, standards, and scientific reports from Chinese institutions. Wanfang is widely used by researchers, universities, and enterprises for literature retrieval and scientific intelligence across all major disciplines.", + "zh": "万方数据是中国最大的学术和科技信息数据库之一,由万方数据股份有限公司(中国科学技术信息研究所旗下子公司)运营,汇聚了来自中国各科研机构的数百万篇学术期刊论文、学位论文、会议论文、专利、标准和科技报告,广泛服务于高校、科研院所和企业的文献检索与科技情报工作。" + }, + "website": "https://www.wanfangdata.com.cn/", + "data_url": "https://www.wanfangdata.com.cn/", + "api_url": null, + "authority_level": "commercial", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "education", + "research", + "science", + "technology" + ], + "update_frequency": "daily", + "tags": [ + "万方数据", + "wanfang", + "academic-database", + "学术数据库", + "chinese-journals", + "中文期刊", + "dissertations", + "学位论文", + "scientific-literature", + "科技文献", + "patents", + "专利", + "conference-papers", + "会议论文", + "istic", + "中国科学技术信息研究所", + "research-database", + "科研数据库" + ], + "data_content": { + "en": [ + "Academic journals: over 8,000 Chinese academic periodicals covering science, engineering, medicine, agriculture, humanities, and social sciences", + "Dissertations: doctoral and master's theses from Chinese universities and research institutions, dating back to 1980", + "Conference papers: proceedings from major Chinese and international conferences held in or related to China", + "Patents: Chinese patent documents including invention patents, utility models, and design patents", + "Standards: Chinese national standards (GB), industry standards, local standards, and some international standards", + "Scientific and technical reports: research reports from Chinese government agencies and research institutes", + "Science and technology achievements: records of technology awards, registered scientific achievements, and transformation outcomes" + ], + "zh": [ + "学术期刊:涵盖理工、医学、农业、人文和社会科学的8000余种中文学术期刊", + "学位论文:1980年至今中国高校及科研机构的博士、硕士学位论文", + "会议论文:在中国举办或与中国相关的重大国内外会议论文集", + "专利文献:中国发明专利、实用新型专利和外观设计专利文件", + "标准文献:中国国家标准(GB)、行业标准、地方标准及部分国际标准", + "科技报告:中国政府部门和科研院所的研究报告", + "科技成果:科技奖励记录、登记科技成果及成果转化情况" + ] + } +} diff --git a/firstdata/sources/china/research/ngdc.json b/firstdata/sources/china/research/ngdc.json new file mode 100644 index 00000000..21937054 --- /dev/null +++ b/firstdata/sources/china/research/ngdc.json @@ -0,0 +1,69 @@ +{ + "id": "china-ngdc", + "name": { + "en": "National Genomics Data Center", + "zh": "国家基因组科学数据中心" + }, + "description": { + "en": "The National Genomics Data Center (NGDC) is China's national repository for genomics and bioinformatics data, operated by the Beijing Institute of Genomics, Chinese Academy of Sciences (China National Center for Bioinformation). It hosts the Genome Sequence Archive (GSA), BIG Data Center databases, and provides comprehensive resources for genomic sequences, gene expression, population genetics, and related omics data from Chinese and international research projects.", + "zh": "国家基因组科学数据中心(NGDC)是中国国家级基因组与生物信息学数据仓库,由中国科学院北京基因组研究所(国家生物信息中心)运营。托管基因组序列档案(GSA)和BIG数据中心数据库,为来自中国及国际研究项目的基因组序列、基因表达、群体遗传学及相关组学数据提供全面资源支持。" + }, + "website": "https://ngdc.cncb.ac.cn", + "data_url": "https://ngdc.cncb.ac.cn/gsub/", + "api_url": "https://ngdc.cncb.ac.cn/api/", + "authority_level": "research", + "country": "CN", + "domains": [ + "health", + "science", + "research" + ], + "geographic_scope": "national", + "update_frequency": "irregular", + "tags": [ + "china", + "genomics", + "bioinformatics", + "dna-sequence", + "gene-expression", + "population-genetics", + "omics", + "cas", + "gsa", + "genome-archive", + "国家基因组科学数据中心", + "中国科学院", + "基因组学", + "生物信息学", + "基因序列", + "基因表达", + "群体遗传", + "组学数据", + "生命科学", + "ncbi-equivalent" + ], + "data_content": { + "en": [ + "Genome Sequence Archive (GSA) - Raw sequencing data repository for nucleotide sequences from China and globally", + "BioProject - Project-level metadata for genomic research studies", + "BioSample - Biological sample metadata linked to sequence data", + "Gene Expression Nebulas (GEN) - Single-cell and bulk RNA-seq gene expression datasets", + "Genome Variation Map (GVM) - Human genomic variation data including SNPs and structural variants", + "GWAS Atlas - Curated genome-wide association study data and results", + "Integrated Microbial Genomes - Microbial genome sequences and functional annotation", + "Population Genomics Data - Large-scale human population sequencing datasets from Chinese cohort studies", + "Proteomics and Metabolomics - Mass spectrometry-based protein and metabolite datasets" + ], + "zh": [ + "基因组序列档案(GSA) - 来自中国及全球的核苷酸序列原始数据仓库", + "BioProject - 基因组研究项目的项目级元数据", + "BioSample - 与序列数据关联的生物样本元数据", + "基因表达星云(GEN) - 单细胞和bulk RNA-seq基因表达数据集", + "基因组变异图谱(GVM) - 人类基因组变异数据,包括SNP和结构变异", + "GWAS图集 - 已审编的全基因组关联研究数据及结果", + "整合微生物基因组 - 微生物基因组序列和功能注释", + "群体基因组数据 - 来自中国队列研究的大规模人群测序数据集", + "蛋白质组与代谢组 - 基于质谱的蛋白质和代谢物数据集" + ] + } +} diff --git a/firstdata/sources/china/resources/china-caea.json b/firstdata/sources/china/resources/china-caea.json new file mode 100644 index 00000000..df6903dc --- /dev/null +++ b/firstdata/sources/china/resources/china-caea.json @@ -0,0 +1,47 @@ +{ + "id": "china-caea", + "name": { + "en": "China National Nuclear Safety Administration", + "zh": "国家原子能机构" + }, + "description": { + "en": "The China National Nuclear Safety Administration (CAEA), known as the National Atomic Energy Agency, is the government authority responsible for managing China's nuclear energy and atomic energy affairs. It publishes official data on nuclear power generation, radioactive materials management, nuclear safety inspections, uranium resources, and China's nuclear industry development.", + "zh": "国家原子能机构(CAEA)是负责管理中国核能与原子能事务的政府主管部门,发布核电发电量、放射性材料管理、核安全监察、铀资源及中国核工业发展等方面的权威数据。" + }, + "website": "https://www.caea.gov.cn", + "data_url": "https://www.caea.gov.cn", + "api_url": null, + "country": "CN", + "domains": [ + "energy", + "environment", + "industry" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "china", + "nuclear", + "atomic-energy", + "nuclear-power" + ], + "data_content": { + "en": [ + "Nuclear Power Generation - Annual electricity output from China's nuclear power plants", + "Nuclear Reactors - Status and capacity data for operational and under-construction reactors", + "Uranium Resources - Domestic uranium exploration, mining, and reserves data", + "Nuclear Safety Reports - Annual safety inspection results and incident reports", + "Radioactive Waste Management - Statistics on radioactive material classification and disposal", + "Nuclear Industry Development - China's nuclear technology exports and international cooperation" + ], + "zh": [ + "核电发电量 - 中国核电站年度发电量统计", + "核反应堆 - 在运及在建反应堆状态与容量数据", + "铀资源 - 国内铀矿勘探、开采及储量数据", + "核安全报告 - 年度安全监察结果及事件报告", + "放射性废物管理 - 放射性材料分类与处置统计", + "核工业发展 - 中国核技术出口及国际合作情况" + ] + }, + "authority_level": "government" +} diff --git a/firstdata/sources/china/resources/china-chnenergy.json b/firstdata/sources/china/resources/china-chnenergy.json new file mode 100644 index 00000000..cc53d29a --- /dev/null +++ b/firstdata/sources/china/resources/china-chnenergy.json @@ -0,0 +1,70 @@ +{ + "id": "china-chnenergy", + "name": { + "en": "China Energy Investment Corporation (CHN Energy)", + "zh": "国家能源投资集团有限责任公司" + }, + "description": { + "en": "China Energy Investment Corporation (CHN Energy, 国家能源集团) is the world's largest coal producer and one of China's largest power generation groups, formed in 2017 through the merger of China Shenhua Group and China Guodian Corporation. As a central state-owned enterprise, CHN Energy operates across coal mining, coal-fired power, hydropower, wind power, solar power, chemical industry, railway, and port logistics. With over 200 GW of installed power generation capacity and annual coal output exceeding 600 million tonnes, CHN Energy is central to understanding China's energy security, coal market dynamics, and the transition toward clean energy. The corporation publishes annual reports, coal production and sales statistics, power generation data by energy type, carbon emission reduction reports, and renewable energy expansion disclosures. CHN Energy data is indispensable for global coal market analysis, China's energy mix transition tracking, and assessing progress toward peak carbon emissions.", + "zh": "国家能源投资集团有限责任公司(国家能源集团)是全球最大的煤炭生产商之一,也是中国最大的发电集团之一,于2017年由中国神华集团与中国国电集团合并组建。作为中央国有企业,集团业务横跨煤炭开采、火力发电、水电、风电、光伏、煤化工、铁路和港口物流。集团装机超2亿千瓦,年产煤炭逾6亿吨,是了解中国能源安全、煤炭市场动态和清洁能源转型的核心数据主体。集团发布年度报告、煤炭产销统计、分能源品类发电量数据、碳减排报告及可再生能源扩展披露。国家能源集团数据是全球煤炭市场分析、中国能源结构转型追踪及碳达峰进展评估的必备参考。" + }, + "website": "https://www.chnenergy.com.cn", + "data_url": "https://www.chnenergy.com.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "energy", + "economics", + "environment" + ], + "update_frequency": "annual", + "tags": [ + "国家能源集团", + "chnenergy", + "china-energy-investment", + "煤炭", + "coal", + "发电", + "power-generation", + "神华", + "shenhua", + "国电", + "guodian", + "风电", + "wind-power", + "清洁能源", + "clean-energy", + "能源安全", + "energy-security", + "碳排放", + "carbon-emission", + "煤化工", + "coal-chemical", + "能源转型", + "energy-transition" + ], + "data_content": { + "en": [ + "Annual reports: consolidated financial statements, operational KPIs, coal production volumes, and power generation breakdown by energy type", + "Coal production statistics: annual and quarterly raw coal output by mining region (Shendong, Zhungeer, Wuhai, etc.), sales volumes, and coal quality grades", + "Power generation data: installed capacity and actual generation by thermal, wind, solar, and hydropower assets; utilization hours", + "Carbon emissions and reduction: scope 1 and scope 2 emissions data, carbon intensity per MWh, and carbon reduction commitments", + "Renewable energy expansion: new wind and solar capacity additions by year and province, offshore wind deployment progress", + "Coal price indices: reference prices for Shenhua brand thermal coal, a benchmark for domestic coal market pricing", + "Railway and port logistics: Shuohuang Railway freight volume, Huanghua and Tianjin port throughput for coal export", + "Coal chemical production: coal-to-liquids, coal-to-gas, and methanol output statistics from Ningxia and Inner Mongolia bases" + ], + "zh": [ + "年度报告:合并财务报表、运营KPI、煤炭产量及分能源品类发电量明细", + "煤炭产量统计:神东、准格尔、乌海等矿区年度及季度原煤产量、销量及煤质等级", + "发电量数据:火电、风电、光伏、水电资产装机容量和实际发电量;利用小时数", + "碳排放与减碳:范围1和范围2排放数据、每兆瓦时碳强度及碳减排承诺", + "可再生能源扩展:年度及省级风电、光伏新增装机容量,海上风电开发进展", + "煤炭价格指数:神华品牌动力煤参考价格,国内煤市基准定价参考", + "铁路与港口物流:朔黄铁路货运量、黄骅港和天津港煤炭出港吞吐量", + "煤化工产量:宁夏、内蒙古基地的煤制油、煤制气和甲醇产量统计" + ] + } +} diff --git a/firstdata/sources/china/resources/china-cnooc.json b/firstdata/sources/china/resources/china-cnooc.json new file mode 100644 index 00000000..c12fff79 --- /dev/null +++ b/firstdata/sources/china/resources/china-cnooc.json @@ -0,0 +1,58 @@ +{ + "id": "china-cnooc", + "name": { + "en": "China National Offshore Oil Corporation", + "zh": "中国海洋石油集团有限公司" + }, + "description": { + "en": "China National Offshore Oil Corporation (CNOOC) is China's largest offshore oil and gas producer and a central state-owned enterprise. It publishes annual reports, sustainability reports, offshore oil and gas production data, deepwater exploration results, LNG import and terminal operation statistics, and marine environmental protection reports. Note: some sub-sections use server-side redirects that loop for non-browser clients; landing page (root) is stable and lists all reports.", + "zh": "中国海洋石油集团有限公司(中国海油)是中国最大的海上油气生产商,中央企业。发布年度报告、可持续发展报告、海上油气产量数据、深水勘探成果、LNG进口及接收站运营统计和海洋环境保护报告。" + }, + "website": "https://www.cnooc.com.cn", + "data_url": "https://www.cnooc.com.cn", + "api_url": null, + "country": "CN", + "domains": [ + "energy", + "petroleum", + "maritime" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "china", + "cnooc", + "offshore-oil", + "natural-gas", + "lng", + "deepwater", + "marine-energy", + "state-owned-enterprise", + "中国海油", + "中海油", + "海上石油", + "天然气", + "液化天然气", + "深水", + "央企" + ], + "data_content": { + "en": [ + "Annual Reports - Financial performance, production, and reserves data", + "Offshore Production - Crude oil and natural gas production from offshore fields", + "Deepwater Exploration - Deepwater and ultra-deepwater exploration discoveries and results", + "LNG Operations - LNG import volumes, receiving terminal throughput, and trade data", + "Reserves Reports - Proven and probable offshore oil and gas reserves", + "Sustainability Reports - Marine environmental protection, carbon emissions, and ESG metrics" + ], + "zh": [ + "年度报告 - 财务业绩、产量和储量数据", + "海上生产 - 海上油田原油和天然气产量", + "深水勘探 - 深水和超深水勘探发现及成果", + "LNG业务 - LNG进口量、接收站吞吐量和贸易数据", + "储量报告 - 探明和概算海上油气储量", + "可持续发展报告 - 海洋环境保护、碳排放和ESG指标" + ] + }, + "authority_level": "government" +} diff --git a/firstdata/sources/china/resources/china-cnpc.json b/firstdata/sources/china/resources/china-cnpc.json new file mode 100644 index 00000000..240e5dc7 --- /dev/null +++ b/firstdata/sources/china/resources/china-cnpc.json @@ -0,0 +1,59 @@ +{ + "id": "china-cnpc", + "name": { + "en": "China National Petroleum Corporation", + "zh": "中国石油天然气集团有限公司" + }, + "description": { + "en": "China National Petroleum Corporation (CNPC) is the largest state-owned oil and gas company in China and one of the world's largest energy companies. It publishes annual reports, sustainability reports, oil and gas production statistics, reserves data, and energy market analyses covering crude oil, natural gas, refining, and petrochemical operations. Note: site is behind a WAF and may return HTTP 412 to automated requests; content accessible via standard browsers.", + "zh": "中国石油天然气集团有限公司(中国石油)是中国最大的国有油气企业,也是全球最大的能源企业之一。发布年度报告、可持续发展报告、油气产量统计、储量数据及能源市场分析,涵盖原油、天然气、炼化及石化业务。" + }, + "website": "https://www.cnpc.com.cn", + "data_url": "https://www.cnpc.com.cn/cnpc/nybg/common_index.shtml", + "api_url": null, + "country": "CN", + "domains": [ + "energy", + "petroleum", + "natural-gas" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "china", + "cnpc", + "petrochina", + "oil", + "gas", + "petroleum", + "crude-oil", + "natural-gas", + "energy", + "state-owned-enterprise", + "中国石油", + "中石油", + "原油", + "天然气", + "油气", + "央企" + ], + "data_content": { + "en": [ + "Annual Reports - Financial performance, production, and operational statistics", + "Oil and Gas Production - Crude oil and natural gas output by region and field", + "Reserves Data - Proven and probable oil and gas reserves", + "Sustainability Reports - Environmental, social, and governance (ESG) metrics", + "Refining and Petrochemical Output - Processed crude oil volume and chemical product yields", + "Energy Market Analysis - Domestic and international oil and gas market trends" + ], + "zh": [ + "年度报告 - 财务业绩、产量及运营统计", + "油气产量 - 按地区和油田分类的原油和天然气产出", + "储量数据 - 探明和概算油气储量", + "可持续发展报告 - 环境、社会和治理(ESG)指标", + "炼化产出 - 原油加工量和化工产品产量", + "能源市场分析 - 国内外油气市场趋势" + ] + }, + "authority_level": "government" +} diff --git a/firstdata/sources/china/resources/china-ctg.json b/firstdata/sources/china/resources/china-ctg.json new file mode 100644 index 00000000..8fb40f31 --- /dev/null +++ b/firstdata/sources/china/resources/china-ctg.json @@ -0,0 +1,70 @@ +{ + "id": "china-ctg", + "name": { + "en": "China Three Gorges Corporation (CTG)", + "zh": "中国长江三峡集团有限公司" + }, + "description": { + "en": "China Three Gorges Corporation (CTG) is a central state-owned enterprise and the world's largest hydropower company by installed capacity and generation. CTG operates the Three Gorges Dam — the world's largest power station — along with the Gezhouba, Xiluodu, Xiangjiaba, and Baihetan hydropower plants, the latter being the world's second-largest hydropower station. With total installed capacity exceeding 100 GW (including hydropower, wind, solar, and other clean energy), CTG is a cornerstone of China's clean energy transition strategy. The corporation publishes annual reports, hydropower generation statistics, renewable energy capacity data, carbon reduction metrics, Yangtze River ecological conservation reports, and international clean energy investment disclosures. CTG's data is authoritative for global hydropower capacity analysis, China's carbon neutrality progress tracking, Yangtze River basin water management, and Belt and Road clean energy investment trends.", + "zh": "中国长江三峡集团有限公司(三峡集团)是中央国有企业,是全球装机容量和发电量最大的水电企业。集团管理三峡水电站(全球最大发电站)、葛洲坝、溪洛渡、向家坝、白鹤滩(全球第二大水电站)等巨型水电工程。集团清洁能源总装机超1亿千瓦(含水电、风电、光伏等),是中国清洁能源转型战略的重要支柱。集团发布年度报告、水电发电量统计、可再生能源装机数据、碳减排指标、长江生态保护报告及国际清洁能源投资披露。三峡集团数据是全球水电装机分析、中国碳中和进展追踪、长江流域水资源管理及一带一路清洁能源投资趋势研究的权威参考。" + }, + "website": "https://www.ctg.com.cn", + "data_url": "https://www.ctg.com.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "energy", + "environment", + "economics" + ], + "update_frequency": "annual", + "tags": [ + "中国长江三峡集团", + "ctg", + "china-three-gorges", + "三峡大坝", + "three-gorges-dam", + "水电", + "hydropower", + "清洁能源", + "clean-energy", + "可再生能源", + "renewable-energy", + "长江", + "yangtze-river", + "碳中和", + "carbon-neutrality", + "风电", + "wind-power", + "光伏", + "solar-power", + "白鹤滩", + "baihetan", + "能源转型", + "energy-transition" + ], + "data_content": { + "en": [ + "Annual reports: comprehensive financial statements, operational performance, and clean energy capacity expansion data", + "Hydropower generation statistics: annual and quarterly power generation by plant, including Three Gorges, Baihetan, Xiluodu, Xiangjiaba, and Gezhouba", + "Renewable energy capacity: installed wind, solar, and pumped-storage capacity by region and year", + "Carbon reduction metrics: CO2 emissions avoided through clean power generation, carbon footprint data", + "Yangtze River ecological conservation: fish migration passage data, water quality monitoring results, and ecological flow release records", + "International investment data: overseas clean energy project portfolio (Africa, South America, Europe), financing structures, and capacity additions", + "Energy storage projects: pumped-storage and battery storage deployment statistics", + "Flood control and water regulation: Three Gorges reservoir water level management and flood season discharge data" + ], + "zh": [ + "年度报告:完整财务报表、运营业绩及清洁能源装机扩展数据", + "水电发电量统计:三峡、白鹤滩、溪洛渡、向家坝、葛洲坝各电站年度及季度发电量", + "可再生能源装机:按地区和年份统计的风电、光伏及抽水蓄能装机容量", + "碳减排指标:清洁发电避免的二氧化碳排放量及碳足迹数据", + "长江生态保护:鱼类过鱼通道数据、水质监测结果及生态流量下泄记录", + "国际投资数据:境外清洁能源项目组合(非洲、南美、欧洲)、融资结构和装机新增", + "储能项目:抽水蓄能和电池储能部署统计", + "防洪调度:三峡水库水位管理及汛期泄洪数据" + ] + } +} diff --git a/firstdata/sources/china/resources/china-guangdong-nr.json b/firstdata/sources/china/resources/china-guangdong-nr.json new file mode 100644 index 00000000..e5e1451b --- /dev/null +++ b/firstdata/sources/china/resources/china-guangdong-nr.json @@ -0,0 +1,68 @@ +{ + "id": "china-guangdong-nr", + "name": { + "en": "Guangdong Provincial Department of Natural Resources", + "zh": "广东省自然资源厅" + }, + "description": { + "en": "The Guangdong Provincial Department of Natural Resources is the provincial government agency responsible for managing land, mineral, marine, and other natural resources in Guangdong Province, one of China's most economically significant regions and the core of the Greater Bay Area. It publishes data on land use planning, real estate land supply, mineral resource reserves, geological surveys, and marine resource management. The department releases annual land use change surveys, construction land approval data, land transaction records, and geographic information. Its data is essential for understanding land market dynamics, urban planning, and resource allocation in the Pearl River Delta region.", + "zh": "广东省自然资源厅是负责管理广东省土地、矿产、海洋等自然资源的省级政府部门。广东是中国经济最发达的省份之一,也是粤港澳大湾区的核心区域。该厅发布土地利用规划、房地产用地供应、矿产资源储量、地质调查及海洋资源管理等数据,定期公布年度土地利用变更调查、建设用地审批、土地交易记录及地理信息数据。其数据对了解珠三角地区土地市场动态、城市规划和资源配置具有重要参考价值。" + }, + "website": "https://nr.gd.gov.cn", + "data_url": "https://nr.gd.gov.cn/zwgknew/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "natural-resources", + "land-use", + "geology", + "real-estate" + ], + "update_frequency": "monthly", + "tags": [ + "广东自然资源", + "guangdong-natural-resources", + "广东土地", + "guangdong-land", + "土地供应", + "land-supply", + "矿产资源", + "mineral-resources", + "建设用地", + "construction-land", + "土地出让", + "land-transfer", + "粤港澳大湾区", + "greater-bay-area", + "地质调查", + "geological-survey", + "不动产登记", + "real-estate-registration", + "海洋资源", + "marine-resources" + ], + "data_content": { + "en": [ + "Land use planning: provincial land use master plans, annual land use change surveys, and spatial planning data", + "Construction land approval: annual and monthly construction land approval records by city and project type", + "Land transactions: land auction results, transfer records, and price statistics for Guangdong Province", + "Mineral resources: mineral resource reserves, exploration permits, and mining rights data", + "Geological surveys: geological hazard monitoring, groundwater surveys, and geological environment reports", + "Marine resources: coastal zone management, marine area use permits, and marine economic statistics", + "Geographic information: provincial geographic information data and surveying achievements", + "Real estate land supply: residential and commercial land supply plans and execution data" + ], + "zh": [ + "土地利用规划:全省土地利用总体规划、年度土地利用变更调查及国土空间规划数据", + "建设用地审批:按城市和项目类型分类的年度和月度建设用地审批记录", + "土地交易:广东省土地拍卖结果、出让记录和价格统计", + "矿产资源:矿产资源储量、勘探许可和采矿权数据", + "地质调查:地质灾害监测、地下水调查和地质环境报告", + "海洋资源:海岸带管理、海域使用许可和海洋经济统计", + "地理信息:全省地理信息数据和测绘成果", + "房地产用地供应:住宅和商业用地供应计划及执行数据" + ] + } +} diff --git a/firstdata/sources/china/resources/china-huaneng.json b/firstdata/sources/china/resources/china-huaneng.json new file mode 100644 index 00000000..d327d2f2 --- /dev/null +++ b/firstdata/sources/china/resources/china-huaneng.json @@ -0,0 +1,57 @@ +{ + "id": "china-huaneng", + "name": { + "en": "China Huaneng Group", + "zh": "中国华能集团有限公司" + }, + "description": { + "en": "China Huaneng Group (CHNG) is one of China's five major state-owned power generation groups and a central enterprise under SASAC. It operates thermal, hydro, wind, solar, and nuclear power assets across China and internationally, with total installed capacity exceeding 300 GW. CHNG publishes annual reports, sustainability reports, power generation statistics, renewable energy deployment data, carbon emission indicators, and R&D outcomes, serving as an authoritative source for China's power sector capacity, energy transition progress, and clean energy development benchmarks.", + "zh": "中国华能集团有限公司(华能集团)是中国五大发电央企之一,为国务院国资委直属中央企业。集团拥有遍布中国及海外的火电、水电、风电、光伏及核电资产,总装机容量超3亿千瓦。华能集团发布年度报告、可持续发展报告、发电量统计、可再生能源布局数据、碳排放指标及科研成果,是了解中国电力行业装机规模、能源转型进展和清洁能源发展基准的权威数据来源。" + }, + "website": "https://www.chng.com.cn", + "data_url": "https://www.chng.com.cn", + "api_url": null, + "authority_level": "commercial", + "country": "CN", + "geographic_scope": "national", + "update_frequency": "annual", + "domains": [ + "energy", + "electricity", + "renewable-energy", + "climate" + ], + "tags": [ + "china", + "huaneng", + "chng", + "中国华能", + "energy", + "能源", + "power-generation", + "发电", + "thermal-power", + "火电", + "renewable-energy", + "可再生能源", + "carbon-emissions", + "碳排放", + "央企" + ], + "data_content": { + "en": [ + "Annual Reports - Total installed capacity, power generation output, revenue, and profit breakdown by energy type", + "Sustainability Reports - Carbon dioxide emissions, coal consumption, water usage, and green development KPIs", + "Renewable Energy Statistics - Wind, solar, and hydropower capacity additions and generation output", + "Nuclear Power Data - Operating status and performance of Shidaowan nuclear power plant", + "R&D Achievements - Technology innovations in clean coal, carbon capture, energy storage, and smart grid" + ], + "zh": [ + "年度报告 - 总装机容量、发电量、营收及按能源类型分类的利润", + "可持续发展报告 - 二氧化碳排放量、煤炭消耗、用水量及绿色发展KPI", + "可再生能源统计 - 风电、光伏及水电新增装机与发电量", + "核电数据 - 石岛湾核电站运营状态及生产绩效", + "科研成果 - 清洁煤、碳捕集、储能及智能电网技术创新" + ] + } +} diff --git a/firstdata/sources/china/resources/china-landchina.json b/firstdata/sources/china/resources/china-landchina.json new file mode 100644 index 00000000..b9d284eb --- /dev/null +++ b/firstdata/sources/china/resources/china-landchina.json @@ -0,0 +1,58 @@ +{ + "id": "china-landchina", + "name": { + "en": "China Land Market Network", + "zh": "中国土地市场网" + }, + "description": { + "en": "The China Land Market Network is the official land transaction information platform operated under the supervision of the Ministry of Natural Resources. It provides comprehensive data on land supply plans, land auction listings (zhaopaihua), transaction results, benchmark land prices, and land use rights transfers across China. The platform is the authoritative source for tracking national and regional land market dynamics, including residential, commercial, and industrial land transactions. It serves as a critical data infrastructure for real estate market analysis, urban development research, and land policy evaluation. Note: The website may return HTTP 418 due to WAF (Web Application Firewall) protection; access from mainland China is typically unaffected.", + "zh": "中国土地市场网是在自然资源部监管下运营的官方土地交易信息平台,提供全国土地供应计划、土地招拍挂公告、成交结果、基准地价和土地使用权出让等全面数据。该平台是追踪全国及地区土地市场动态的权威数据源,覆盖住宅、商业和工业用地交易信息,是房地产市场分析、城市发展研究和土地政策评估的重要数据基础设施。注意:该网站可能因WAF(Web应用防火墙)保护返回HTTP 418状态码,境内访问通常不受影响。" + }, + "website": "https://www.landchina.com", + "data_url": "https://www.landchina.com/default.aspx?tabid=226", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "real-estate", + "land-resources", + "urban-development" + ], + "update_frequency": "daily", + "tags": [ + "land-market", + "land-transfer", + "land-auction", + "land-supply", + "land-transaction", + "benchmark-land-price", + "ministry-of-natural-resources", + "real-estate", + "land-use-rights", + "residential-land", + "commercial-land", + "industrial-land", + "urban-land" + ], + "data_content": { + "en": [ + "Land supply plans: annual and quarterly land supply plans by city and land use type", + "Land auction announcements: detailed listings for land parcels available through bidding, auction, and listing processes (zhaopaihua)", + "Transaction results: completed land transactions including price, area, buyer, and land use type", + "Benchmark land prices: government-assessed baseline land values by region and land classification", + "Land use rights transfers: records of land rights transfers between entities", + "Regional land market analysis: aggregate statistics on land market activity by province and city", + "Land supply structure: breakdown of residential, commercial, industrial, and public land allocation" + ], + "zh": [ + "土地供应计划:按城市和用地类型分类的年度和季度土地供应计划", + "土地招拍挂公告:通过招标、拍卖和挂牌方式出让的地块详细公告信息", + "成交结果:已完成的土地交易信息,包括价格、面积、受让方和用途", + "基准地价:按区域和地类分类的政府评估基准地价", + "土地使用权转让:企业间土地使用权转让记录", + "区域土地市场分析:按省市分类的土地市场活动汇总统计", + "供地结构:住宅、商业、工业和公共用地供应分配情况" + ] + } +} diff --git a/firstdata/sources/china/resources/china-ngcc.json b/firstdata/sources/china/resources/china-ngcc.json new file mode 100644 index 00000000..27a83d5f --- /dev/null +++ b/firstdata/sources/china/resources/china-ngcc.json @@ -0,0 +1,74 @@ +{ + "id": "china-ngcc", + "name": { + "en": "National Geomatics Center of China", + "zh": "国家基础地理信息中心" + }, + "description": { + "en": "The National Geomatics Center of China (NGCC) is the primary national agency responsible for surveying, mapping, and maintaining China's national geographic information infrastructure. Under the Ministry of Natural Resources, NGCC manages the National Basic Geographic Database, the most authoritative source of fundamental geographic data in China, including topographic maps, digital elevation models (DEM), satellite imagery, administrative boundaries, and land use data. NGCC provides public access to standardized geographic datasets at multiple scales (1:50,000 to 1:1,000,000) used in urban planning, environmental monitoring, disaster response, infrastructure development, and national census operations. It also coordinates China's geodetic reference systems and national mapping standards.", + "zh": "国家基础地理信息中心是负责中国国家地理信息基础设施测绘、制图和维护的主要国家机构,隶属于自然资源部。中心管理国家基础地理信息数据库,是全国最权威的基础地理数据来源,包括地形图、数字高程模型(DEM)、卫星影像、行政区划边界和土地利用数据。中心提供多比例尺(1:5万至1:100万)标准化地理数据集,广泛应用于城市规划、环境监测、灾害救援、基础设施建设和全国人口普查。同时负责协调中国大地测量参考系统和全国测绘标准。" + }, + "website": "https://www.ngcc.cn", + "data_url": "https://www.ngcc.cn/dlxxzy/gjjcdlxxsjk/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "geography", + "environmental-science", + "infrastructure" + ], + "update_frequency": "annual", + "tags": [ + "基础地理信息", + "basic-geographic-information", + "国家地理数据库", + "national-geographic-database", + "数字高程模型", + "digital-elevation-model", + "地形图", + "topographic-map", + "行政区划", + "administrative-boundary", + "土地利用", + "land-use", + "地理信息系统", + "gis", + "测绘", + "surveying-and-mapping", + "卫星影像", + "satellite-imagery", + "国家测绘", + "national-mapping", + "空间数据", + "spatial-data", + "大地测量", + "geodesy", + "ngcc", + "自然资源部", + "ministry-of-natural-resources" + ], + "data_content": { + "en": [ + "National Basic Geographic Database: fundamental geographic datasets at 1:50,000, 1:250,000, and 1:1,000,000 scales including terrain, hydrography, transportation networks, settlements, and administrative boundaries for all of China", + "Digital elevation model (DEM) data: national digital terrain models derived from topographic surveys and satellite imagery, providing elevation data at 25m and 90m resolutions for terrain analysis and hydrological modeling", + "Administrative boundary data: official authoritative datasets of county-level, prefecture-level, and provincial administrative boundaries with regularly updated polygon and line features for China's 34 provincial-level units", + "Satellite and aerial imagery archives: multi-temporal satellite image datasets for China including optical and synthetic aperture radar (SAR) imagery used for land cover classification and change detection", + "Land use and land cover data: national land use classification datasets at 1:50,000 scale including cultivated land, forest, grassland, water bodies, built-up areas, and unused land based on remote sensing interpretation", + "Geodetic reference network data: China's national coordinate reference system (CGCS2000), gravity network benchmarks, and height datum information supporting precise positioning and engineering surveys", + "Urban geographic database: large-scale urban geographic datasets at 1:2,000 and 1:5,000 scales for major cities, including building footprints, road networks, utility infrastructure, and points of interest", + "Geographic names database: national standardized database of geographic place names including mountains, rivers, lakes, villages, and administrative areas with official Chinese and romanized designations" + ], + "zh": [ + "国家基础地理信息数据库:1:5万、1:25万、1:100万比例尺全国基础地理数据集,包含地形、水系、交通网络、居民地和行政区划要素", + "数字高程模型(DEM)数据:基于地形测量和卫星影像生成的全国数字地形模型,提供25米和90米分辨率高程数据,用于地形分析和水文建模", + "行政区划数据:县级、地级和省级行政区划的权威官方数据集,含定期更新的34个省级行政单位矢量面和线要素", + "卫星和航空影像档案:全国多时相卫星影像数据集,包括光学和合成孔径雷达(SAR)影像,用于土地覆盖分类和变化检测", + "土地利用和土地覆盖数据:1:5万比例尺全国土地利用分类数据,基于遥感解译,涵盖耕地、林地、草地、水体、建设用地和未利用地", + "大地测量参考网数据:中国国家坐标参考系(CGCS2000)、重力网基准点和高程基准信息,支持精密定位和工程测量", + "城市地理数据库:主要城市1:2000和1:5000比例尺大比例尺城市地理数据集,含建筑轮廓、道路网络、公共设施基础设施和兴趣点", + "地名数据库:全国标准化地名数据库,包含山脉、河流、湖泊、村庄和行政区的官方中文及罗马化名称" + ] + } +} diff --git a/firstdata/sources/china/resources/china-shenzhen-pnr.json b/firstdata/sources/china/resources/china-shenzhen-pnr.json new file mode 100644 index 00000000..46eb69b8 --- /dev/null +++ b/firstdata/sources/china/resources/china-shenzhen-pnr.json @@ -0,0 +1,48 @@ +{ + "id": "china-shenzhen-pnr", + "name": { + "en": "Shenzhen Municipal Planning and Natural Resources Bureau", + "zh": "深圳市规划和自然资源局" + }, + "description": { + "en": "The Shenzhen Municipal Planning and Natural Resources Bureau oversees urban planning, land management, natural resource administration, and spatial development in Shenzhen. It publishes land supply plans, land auction and transfer data, urban master plans, construction land statistics, and geographic information. As the primary authority for land resource allocation in one of China's most land-scarce cities, its data is essential for real estate market analysis, urban development research, and land use policy studies.", + "zh": "深圳市规划和自然资源局负责深圳市城市规划、土地管理、自然资源管理和空间发展。发布土地供应计划、土地出让数据、城市总体规划、建设用地统计和地理信息。作为中国土地资源最稀缺城市之一的土地资源配置主管部门,其数据对房地产市场分析、城市发展研究和土地使用政策研究至关重要。" + }, + "website": "https://pnr.sz.gov.cn", + "data_url": "https://pnr.sz.gov.cn/xxgk/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "land-use", + "urban-planning", + "natural-resources", + "real-estate" + ], + "geographic_scope": "subnational", + "update_frequency": "monthly", + "tags": [ + "shenzhen", + "land", + "planning", + "natural-resources" + ], + "data_content": { + "en": [ + "Land Supply Plans - Annual and quarterly land supply plans for residential, commercial, and industrial use", + "Land Auction Data - Land transfer prices, floor prices, and transaction records", + "Urban Master Plans - City-level spatial development plans and zoning regulations", + "Construction Land Statistics - Approved construction land area and utilization data", + "Geographic Information - Surveying and mapping data, geographic information services", + "Natural Resource Surveys - Land resource surveys and mineral resource assessments" + ], + "zh": [ + "土地供应计划 - 住宅、商业和工业用地年度及季度供应计划", + "土地出让数据 - 土地成交价格、楼面地价和交易记录", + "城市总体规划 - 城市空间发展规划和分区规定", + "建设用地统计 - 已批建设用地面积和利用数据", + "地理信息 - 测绘数据和地理信息服务", + "自然资源调查 - 土地资源调查和矿产资源评估" + ] + } +} diff --git a/firstdata/sources/china/resources/china-sinopec.json b/firstdata/sources/china/resources/china-sinopec.json new file mode 100644 index 00000000..a3a5652d --- /dev/null +++ b/firstdata/sources/china/resources/china-sinopec.json @@ -0,0 +1,57 @@ +{ + "id": "china-sinopec", + "name": { + "en": "China Petrochemical Corporation (Sinopec Group)", + "zh": "中国石油化工集团有限公司" + }, + "description": { + "en": "China Petrochemical Corporation (Sinopec Group) is one of the world's largest integrated energy and chemical companies and a central state-owned enterprise of China. It publishes annual reports, sustainability reports, refining and chemical production statistics, oil and gas exploration data, and energy transition progress reports covering upstream, midstream, and downstream operations. Note: HTTPS endpoint is not reliably reachable from some networks; HTTP works.", + "zh": "中国石油化工集团有限公司(中国石化)是全球最大的综合性能源化工企业之一,中国中央企业。发布年度报告、可持续发展报告、炼化生产统计、油气勘探数据及能源转型进展报告,涵盖上游、中游和下游业务。" + }, + "website": "http://www.sinopecgroup.com", + "data_url": "http://www.sinopecgroup.com/group/xhtml/shzr/", + "api_url": null, + "country": "CN", + "domains": [ + "energy", + "petroleum", + "petrochemical" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "china", + "sinopec", + "petrochemical", + "oil", + "refining", + "chemical", + "energy", + "state-owned-enterprise", + "中国石化", + "中石化", + "石油化工", + "炼化", + "化工", + "央企" + ], + "data_content": { + "en": [ + "Annual Reports - Financial and operational performance data", + "Refining Output - Crude oil processing volume and refined product output", + "Chemical Production - Ethylene, synthetic resin, synthetic fiber, and other chemical product yields", + "Oil and Gas Exploration - Upstream exploration and production statistics", + "Sustainability Reports - Carbon emissions, environmental protection, and ESG data", + "Retail Network Statistics - Gas station network and fuel sales volume" + ], + "zh": [ + "年度报告 - 财务和运营业绩数据", + "炼油产出 - 原油加工量和成品油产量", + "化工生产 - 乙烯、合成树脂、合成纤维及其他化工产品产量", + "油气勘探 - 上游勘探开发生产统计", + "可持续发展报告 - 碳排放、环境保护和ESG数据", + "零售网络统计 - 加油站网络和成品油销售量" + ] + }, + "authority_level": "government" +} diff --git a/firstdata/sources/china/resources/energy/china-chinacoal.json b/firstdata/sources/china/resources/energy/china-chinacoal.json new file mode 100644 index 00000000..a7a36405 --- /dev/null +++ b/firstdata/sources/china/resources/energy/china-chinacoal.json @@ -0,0 +1,64 @@ +{ + "id": "china-chinacoal", + "name": { + "en": "China National Coal Group Corporation", + "zh": "中国中煤能源集团有限公司" + }, + "description": { + "en": "China National Coal Group Corporation (China Coal / ChinaCoal) is a major state-owned coal mining and energy enterprise directly administered by SASAC of the State Council. Established in 1982 and listed on both the Shanghai Stock Exchange (601898.SH) and Hong Kong Stock Exchange (01898.HK) through its flagship China Coal Energy Company Ltd., the Group is among the top five coal producers in China. It publishes authoritative operational and industry data covering raw coal production and commercial coal sales, coal washing and processing output, coal chemical products (methanol, olefins, urea, fertilizers), coal-fired power generation, coal-mining equipment manufacturing, major mine safety indicators, R&D spending on clean coal technology and carbon capture pilots, and internal supply contracts with power plants and steel mills. China Coal's monthly production announcements, annual reports, ESG reports, and investor communications are widely used by energy analysts, commodity traders, and researchers tracking China's coal supply-demand balance, energy transition, and the pace of clean-coal decarbonization.", + "zh": "中国中煤能源集团有限公司(中煤集团)是国务院国资委直接监管的大型国有煤炭能源企业,成立于1982年,其旗舰上市平台中国中煤能源股份有限公司在上海证券交易所(601898.SH)和香港联合交易所(01898.HK)两地上市,是中国排名前五的煤炭生产企业。集团发布权威的经营和行业数据,涵盖原煤产量和商品煤销售量、洗精煤与煤炭加工产量、煤化工产品(甲醇、烯烃、尿素、化肥)、煤电发电量、煤机装备制造、重大矿井安全指标、清洁煤技术和碳捕集试点研发投入,以及与电厂和钢厂的长协供应数据。中煤集团的月度生产公告、年报、ESG报告和投资者沟通材料,广泛被能源分析师、大宗商品交易员以及研究中国煤炭供需平衡、能源转型和清洁煤低碳化进展的研究者引用。" + }, + "website": "https://www.chinacoal.com", + "data_url": "https://www.chinacoal.com", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "energy", + "mining", + "coal" + ], + "update_frequency": "monthly", + "tags": [ + "china-coal", + "中煤集团", + "中国中煤", + "coal-mining", + "煤炭", + "原煤产量", + "煤化工", + "coal-chemical", + "methanol", + "olefins", + "sasac", + "601898", + "01898-hk", + "state-owned-enterprise", + "清洁煤" + ], + "data_content": { + "en": [ + "Monthly raw coal production and commercial coal sales volumes", + "Coal washing and processing output statistics", + "Coal chemical products output (methanol, olefins, urea, fertilizers)", + "Coal-fired power generation statistics", + "Coal-mining equipment manufacturing data", + "Major mine safety indicators", + "R&D spending on clean coal and carbon capture technologies", + "Annual reports, ESG reports and sustainability disclosures", + "Long-term supply contracts with power plants and steel mills" + ], + "zh": [ + "月度原煤产量与商品煤销售量", + "洗精煤与煤炭加工产量统计", + "煤化工产品产量(甲醇、烯烃、尿素、化肥)", + "煤电发电量统计", + "煤机装备制造数据", + "重大矿井安全指标", + "清洁煤技术与碳捕集研发投入", + "年度报告、ESG报告和可持续发展披露", + "与电厂和钢厂的长期供应合同" + ] + } +} diff --git a/firstdata/sources/china/resources/energy/china-csg.json b/firstdata/sources/china/resources/energy/china-csg.json new file mode 100644 index 00000000..d5d716bc --- /dev/null +++ b/firstdata/sources/china/resources/energy/china-csg.json @@ -0,0 +1,64 @@ +{ + "id": "china-csg", + "name": { + "en": "China Southern Power Grid", + "zh": "中国南方电网有限责任公司" + }, + "description": { + "en": "China Southern Power Grid Co., Ltd. (CSG) is one of the two major state-owned grid enterprises in China, responsible for investment, construction and operation of the power grid in five southern provinces (Guangdong, Guangxi, Yunnan, Guizhou, and Hainan) and cross-border power trade with Vietnam, Laos, and Myanmar within the Greater Mekong Subregion. Headquartered in Guangzhou and directly administered by SASAC of the State Council, CSG publishes authoritative data covering electricity generation and consumption in southern China, peak load and grid reliability indicators, west-to-east power transmission volumes, renewable energy integration (solar, wind, hydro), smart grid and UHV transmission projects, power market trading statistics in the Southern Regional Electricity Market, electric vehicle charging infrastructure, and carbon emission reduction from clean energy substitution. Its annual social responsibility report, sustainability report, and operational bulletins are primary references for tracking southern China's energy transition, new power system construction, and grid-level decarbonization progress.", + "zh": "中国南方电网有限责任公司(南方电网/南网)是中国两大国有电网企业之一,负责广东、广西、云南、贵州、海南五省区电网的投资建设与运营,同时承担与越南、老挝、缅甸的跨境电力交易及大湄公河次区域合作。南网总部位于广州,由国务院国资委直接监管。公司发布权威数据,涵盖南方五省区发电量、全社会用电量、最高负荷和电网可靠性指标、西电东送输送电量、新能源(光伏、风电、水电)消纳、智能电网与特高压输电工程、南方区域电力市场交易数据、电动汽车充电基础设施,以及清洁能源替代带来的碳减排量。其年度社会责任报告、可持续发展报告和运行简报是追踪南方区域能源转型、新型电力系统建设和电网级低碳发展的重要参考。" + }, + "website": "https://www.csg.cn", + "data_url": "https://www.csg.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "energy", + "electricity", + "infrastructure" + ], + "update_frequency": "annual", + "tags": [ + "csg", + "中国南方电网", + "南方电网", + "南网", + "electricity", + "power-grid", + "发电量", + "用电量", + "west-to-east-power", + "西电东送", + "renewable-energy", + "新能源", + "smart-grid", + "sasac", + "南方五省区" + ], + "data_content": { + "en": [ + "Electricity generation and consumption data for five southern provinces", + "Peak load and grid reliability indicators", + "West-to-East Electricity Transmission volumes", + "Renewable energy (solar, wind, hydro) integration statistics", + "Smart grid and UHV transmission project data", + "Southern Regional Electricity Market trading statistics", + "EV charging infrastructure deployment", + "Carbon emission reduction from clean energy substitution", + "Annual social responsibility and sustainability reports" + ], + "zh": [ + "南方五省区发电量与全社会用电量数据", + "最高负荷与电网可靠性指标", + "西电东送输送电量统计", + "新能源(光伏、风电、水电)消纳数据", + "智能电网与特高压输电工程数据", + "南方区域电力市场交易统计", + "电动汽车充电基础设施部署情况", + "清洁能源替代带来的碳减排量", + "年度社会责任报告与可持续发展报告" + ] + } +} diff --git a/firstdata/sources/china/resources/environment/china-cace.json b/firstdata/sources/china/resources/environment/china-cace.json new file mode 100644 index 00000000..40471d5d --- /dev/null +++ b/firstdata/sources/china/resources/environment/china-cace.json @@ -0,0 +1,73 @@ +{ + "id": "china-cace", + "name": { + "en": "China Association of Circular Economy", + "zh": "中国循环经济协会" + }, + "description": { + "en": "The China Association of Circular Economy (CACE) is a national industry organization approved by the Ministry of Civil Affairs, evolved from the former China Resources Comprehensive Utilization Association. It represents China's circular economy sector, encompassing recycling, waste resource utilization, urban mining, and low-carbon industrial transformation. CACE publishes annual development reports on circular economy, including data on resource recycling volumes, waste utilization rates, urban mining output, industrial symbiosis, and policy implementation progress. It also releases thematic reports on specific sectors such as waste textiles, electronic waste, and renewable resources. As China pursues carbon neutrality by 2060, CACE's data is essential for tracking progress in circular economy transitions, green manufacturing, and resource efficiency across China's industrial landscape.", + "zh": "中国循环经济协会是经民政部批准,由原中国资源综合利用协会更名成立的全国性社团组织,代表中国循环经济行业,涵盖再生资源利用、废物资源化、城市矿产和低碳产业转型等领域。协会发布循环经济年度发展报告,包括再生资源回收量、废物利用率、城市矿产产量、产业共生及政策落实进展等数据,同时发布废旧纺织品、电子废物、再生资源等专题报告。在中国实现2060年碳中和目标的进程中,中国循环经济协会的数据是追踪循环经济转型、绿色制造和工业资源效率进展的重要依据。" + }, + "website": "https://www.chinacace.org/", + "data_url": "https://www.chinacace.org/patents/cycle_economy_report/", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "environment", + "industry", + "economics", + "energy" + ], + "update_frequency": "annual", + "tags": [ + "循环经济", + "circular-economy", + "再生资源", + "renewable-resources", + "废物利用", + "waste-utilization", + "城市矿产", + "urban-mining", + "碳中和", + "carbon-neutrality", + "绿色制造", + "green-manufacturing", + "资源回收", + "resource-recycling", + "废旧纺织品", + "waste-textiles", + "电子废物", + "e-waste", + "产业共生", + "industrial-symbiosis", + "cace", + "资源综合利用", + "comprehensive-resource-utilization", + "低碳", + "low-carbon" + ], + "data_content": { + "en": [ + "China Circular Economy Development Report: annual assessment of national circular economy progress, policy implementation, and key performance indicators", + "Resource recycling volumes: statistics on collection and processing of scrap metals, waste paper, plastics, glass, and rubber", + "Urban mining output: secondary resource recovery from electronic waste, end-of-life vehicles, and construction demolition", + "Waste textile utilization: production, collection, and reuse rates for waste clothing and fiber materials", + "Industrial symbiosis data: resource exchange and waste heat utilization within industrial parks", + "Circular economy enterprise directory: registered companies engaged in recycling and resource recovery businesses", + "Policy tracking reports: implementation of national circular economy promotion laws and five-year plan targets", + "Carbon reduction contributions: estimated emissions reductions attributable to circular economy activities" + ], + "zh": [ + "中国循环经济发展报告:循环经济国家进展年度评估、政策落实情况及关键绩效指标", + "再生资源回收量:废金属、废纸、废塑料、废玻璃和废橡胶的回收和加工统计数据", + "城市矿产产量:来自电子废物、报废汽车和建筑拆除的再生资源回收情况", + "废旧纺织品利用:废旧服装和纤维材料的产量、回收量和再利用率", + "产业共生数据:工业园区内的资源交换和余热利用情况", + "循环经济企业名录:从事再生资源回收利用业务的注册企业信息", + "政策追踪报告:国家循环经济促进法及五年规划目标的落实进展", + "碳减排贡献:循环经济活动带来的温室气体减排量估算" + ] + } +} diff --git a/firstdata/sources/china/resources/environment/china-caep.json b/firstdata/sources/china/resources/environment/china-caep.json new file mode 100644 index 00000000..802d1eff --- /dev/null +++ b/firstdata/sources/china/resources/environment/china-caep.json @@ -0,0 +1,73 @@ +{ + "id": "china-caep", + "name": { + "en": "Chinese Academy of Environmental Planning", + "zh": "生态环境部环境规划院" + }, + "description": { + "en": "The Chinese Academy of Environmental Planning (CAEP) is a national-level research institute directly under China's Ministry of Ecology and Environment (MEE). Founded in 2001 and headquartered in Beijing, CAEP is the primary institution responsible for environmental planning, environmental economics, and policy research supporting China's national ecological and environmental governance. CAEP provides technical support for China's national environmental five-year plans, pollution prevention and control action plans, and carbon neutrality strategies. Key research areas include environmental economic accounting (green GDP), pollution source census data, environmental carrying capacity assessment, ecological redline mapping, and integrated watershed management. CAEP publishes the authoritative 'China Environmental Economic Accounting' reports and manages key environmental planning databases. It plays a central role in designing China's ecological compensation mechanisms, emission trading systems, and environmental impact assessment frameworks.", + "zh": "生态环境部环境规划院(CAEP)是生态环境部直属的国家级科研机构,2001年成立,总部位于北京。CAEP是支撑中国国家生态环境治理的环境规划、环境经济学和政策研究首要机构,为国家环境五年规划、污染防治行动计划和碳中和战略提供技术支撑。主要研究方向包括环境经济核算(绿色GDP)、污染源普查数据、环境承载力评估、生态保护红线划定和流域综合管理。CAEP发布权威的《中国环境经济核算》报告,管理重要的环境规划数据库,在设计中国生态补偿机制、排污权交易制度和环境影响评价体系中发挥核心作用。" + }, + "website": "http://www.caep.org.cn", + "data_url": "http://www.caep.org.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "environment", + "climate", + "economics", + "governance" + ], + "update_frequency": "annual", + "tags": [ + "生态环境部环境规划院", + "caep", + "chinese-academy-of-environmental-planning", + "环境规划", + "environmental-planning", + "环境经济核算", + "environmental-economic-accounting", + "绿色GDP", + "green-gdp", + "污染源普查", + "pollution-source-census", + "环境承载力", + "environmental-carrying-capacity", + "生态保护红线", + "ecological-redline", + "碳中和", + "carbon-neutrality", + "生态补偿", + "ecological-compensation", + "排污权交易", + "emission-trading", + "环境影响评价", + "environmental-impact-assessment", + "生态环境部", + "ministry-of-ecology-and-environment" + ], + "data_content": { + "en": [ + "China Environmental Economic Accounting (CEEA): annual green GDP accounting reports quantifying the economic value of environmental services and the cost of environmental degradation across China", + "Pollution source census data: national surveys of industrial, agricultural, and domestic pollution sources with discharge volumes, types, and geographic distribution", + "Environmental carrying capacity assessments: analysis of regional resource and environmental limits supporting land use planning and industrial layout decisions", + "Ecological redline mapping: technical data and spatial datasets for China's national ecological conservation redlines protecting critical ecosystems", + "National environmental five-year plan technical support: baseline data, target indicators, and evaluation frameworks for China's environmental planning cycles", + "Carbon emission accounting and neutrality research: sector-level carbon emission inventories, mitigation scenario modeling, and carbon neutrality pathway analysis for China", + "Ecological compensation policy research: data and evaluation frameworks for China's payment for ecosystem services and inter-regional ecological compensation systems", + "Watershed integrated management: water environment quality data, pollution load models, and total pollutant control plans for major Chinese river basins" + ], + "zh": [ + "中国环境经济核算(CEEA):量化中国环境服务经济价值和环境退化成本的年度绿色GDP核算报告", + "污染源普查数据:全国工业、农业和生活污染源的排放量、排放类型和地理分布调查数据", + "环境承载力评估:支撑土地利用规划和产业布局决策的区域资源环境承载力分析", + "生态保护红线划定:保护重要生态系统的全国生态保护红线技术数据和空间数据集", + "国家环境五年规划技术支撑:中国环境规划周期的基线数据、目标指标和评估框架", + "碳排放核算与碳中和研究:中国分部门碳排放清单、减排情景模拟和碳中和路径分析", + "生态补偿政策研究:中国生态系统服务付费和区域间生态补偿制度的数据与评估框架", + "流域综合管理:主要流域水环境质量数据、污染负荷模型和总量控制方案" + ] + } +} diff --git a/firstdata/sources/china/resources/environment/china-ceads.json b/firstdata/sources/china/resources/environment/china-ceads.json new file mode 100644 index 00000000..7d8bd7d3 --- /dev/null +++ b/firstdata/sources/china/resources/environment/china-ceads.json @@ -0,0 +1,74 @@ +{ + "id": "china-ceads", + "name": { + "en": "Carbon Emission Accounts and Datasets for China (CEADs)", + "zh": "中国碳排放核算数据库(CEADs)" + }, + "description": { + "en": "The Carbon Emission Accounts and Datasets (CEADs) for China is a leading open-access research database providing comprehensive, peer-reviewed carbon dioxide (CO2) and greenhouse gas emission inventories for China. Developed by a consortium of Chinese universities and research institutions, CEADs offers province-level, city-level, and sector-level CO2 emission estimates, consumption-based carbon accounts, and multi-regional input-output tables for China. It is widely used in climate policy research, environmental economics, and carbon neutrality target analysis.", + "zh": "中国碳排放核算数据库(CEADs)是由中国多所高校和科研机构联合开发的开放获取碳排放数据库,提供经过同行评审的中国CO2及温室气体排放清单。CEADs涵盖省级、城市级和行业级CO2排放估算、基于消费的碳账户以及中国多区域投入产出表,广泛应用于气候政策研究、环境经济学分析以及碳中和目标研究。" + }, + "website": "https://www.ceads.net.cn", + "data_url": "https://ceads.net.cn/data/", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "environment", + "climate", + "energy", + "economics" + ], + "update_frequency": "annual", + "tags": [ + "碳排放", + "carbon-emissions", + "co2", + "温室气体", + "greenhouse-gas", + "碳核算", + "carbon-accounting", + "省级排放", + "provincial-emissions", + "城市碳排放", + "city-level-emissions", + "投入产出", + "input-output", + "能源消费", + "energy-consumption", + "碳中和", + "carbon-neutrality", + "气候变化", + "climate-change", + "双碳", + "net-zero", + "emission-inventory", + "排放清单", + "ceads" + ], + "data_content": { + "en": [ + "National and provincial CO2 emission inventories by energy type and economic sector (1997–present)", + "City-level carbon emission estimates for 340+ Chinese prefecture-level cities", + "Consumption-based carbon accounts: emissions embedded in domestic trade and final demand", + "China multi-regional input-output (MRIO) tables for emissions attribution analysis", + "Sector-level emissions: industry, transport, residential, agriculture, and waste", + "Energy balance tables: fossil fuel consumption, electricity generation, and energy mix", + "CO2 emission factors for Chinese energy products and industrial processes", + "Emission data supporting China's NDC and carbon peaking/neutrality commitments", + "Peer-reviewed datasets published in Nature, Science, and high-impact journals" + ], + "zh": [ + "全国及省级分能源类型和经济部门CO2排放清单(1997年至今)", + "340余个地级城市的碳排放估算数据", + "基于消费的碳账户:国内贸易和最终需求中隐含的碳排放", + "中国多区域投入产出(MRIO)表,用于碳排放归因分析", + "分部门排放:工业、交通、居民、农业和废弃物", + "能源平衡表:化石燃料消费、发电量和能源结构", + "中国能源产品和工业过程的CO2排放因子", + "支撑中国国家自主贡献(NDC)和碳达峰碳中和目标的排放数据", + "发表于《自然》、《科学》等高影响力期刊的同行评审数据集" + ] + } +} diff --git a/firstdata/sources/china/resources/environment/china-cern.json b/firstdata/sources/china/resources/environment/china-cern.json new file mode 100644 index 00000000..62bf51b7 --- /dev/null +++ b/firstdata/sources/china/resources/environment/china-cern.json @@ -0,0 +1,80 @@ +{ + "id": "china-cern", + "name": { + "en": "Chinese Ecosystem Research Network (CERN)", + "zh": "中国生态系统研究网络" + }, + "description": { + "en": "The Chinese Ecosystem Research Network (CERN) is a national ecosystem monitoring and research network operated by the Chinese Academy of Sciences. Established in 1988, CERN comprises over 40 ecosystem research stations distributed across China's major biomes including forests, grasslands, wetlands, croplands, deserts, and coastal ecosystems. Each station conducts systematic, long-term monitoring of soil, water, atmosphere, and biodiversity, following standardized protocols for cross-site comparability. CERN data are accessible through its dedicated data sharing platform, providing researchers with decades of ecosystem dynamics records. The network is China's primary source for integrated terrestrial ecosystem observation data, supporting national carbon sink assessments, biodiversity conservation planning, land degradation monitoring, and responses to climate change. CERN collaborates with global networks including ILTER (International Long-Term Ecological Research) and FLUXNET.", + "zh": "中国生态系统研究网络(CERN)是由中国科学院主管的国家生态系统监测与研究网络,成立于1988年,由分布于中国各主要生态系统类型(包括森林、草地、湿地、农田、荒漠和海岸带)的40余个生态系统研究站组成。各站点按照统一规范对土壤、水体、大气和生物多样性进行系统性长期监测,确保跨站点数据的可比性。CERN通过专属数据共享平台开放数据,为研究人员提供数十年的生态系统动态记录。CERN是中国陆地生态系统综合观测数据的主要来源,支持国家碳汇评估、生物多样性保护规划、土地退化监测和气候变化响应研究。CERN参与国际长期生态研究(ILTER)和FLUXNET等全球监测网络合作。" + }, + "website": "https://cern.ac.cn", + "data_url": "https://cern.ac.cn/0index/index.asp", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "environment", + "ecology", + "biodiversity", + "climate" + ], + "update_frequency": "annual", + "tags": [ + "中国生态系统研究网络", + "cern", + "生态监测", + "ecosystem-monitoring", + "长期生态研究", + "long-term-ecological-research", + "土壤数据", + "soil-data", + "碳通量", + "carbon-flux", + "生物多样性", + "biodiversity", + "草地生态", + "grassland-ecology", + "森林生态", + "forest-ecology", + "湿地", + "wetland", + "荒漠化", + "desertification", + "气候变化", + "climate-change", + "ilter", + "fluxnet", + "中国科学院", + "chinese-academy-of-sciences", + "碳汇", + "carbon-sink" + ], + "data_content": { + "en": [ + "Soil monitoring data: soil organic carbon, nitrogen, phosphorus, bulk density, moisture, and texture from 40+ stations", + "Water quality and hydrology: streamflow, groundwater level, water chemistry, precipitation chemistry at each station", + "Atmosphere: precipitation amount and chemistry, air temperature, humidity, wind speed, net radiation, CO2 concentration", + "Biological community data: plant biomass, species diversity, phenology, leaf area index across major biome types", + "Carbon and energy flux: eddy covariance measurements of carbon, water, and energy exchange between ecosystems and atmosphere", + "Land use and vegetation change: long-term time series of vegetation structure and land cover at station sites", + "Desert and dryland ecosystem data: wind erosion, sand transport, soil crusting processes from arid zone stations", + "Cropland ecosystem data: crop yield, nutrient cycling, irrigation water use, soil health from agricultural stations", + "Coastal and marine ecosystem data: coastal erosion, mangrove, and seagrass dynamics from coastal stations", + "Synthesis datasets: integrated multi-station trend analyses for China's national ecosystem assessments" + ], + "zh": [ + "土壤监测数据:40余个站点的土壤有机碳、氮、磷、容重、水分和质地", + "水质与水文:各站点的径流量、地下水位、水体化学成分和降水化学", + "大气数据:降水量及化学组成、气温、湿度、风速、净辐射、CO2浓度", + "生物群落数据:主要生态系统类型的植物生物量、物种多样性、物候和叶面积指数", + "碳与能量通量:生态系统与大气之间碳、水和能量交换的涡度协方差测量", + "土地利用与植被变化:站点尺度的植被结构和土地覆盖长期时间序列", + "荒漠及旱地生态系统数据:来自干旱区站点的风蚀、沙尘输运和土壤结皮过程", + "农田生态系统数据:来自农业站点的作物产量、养分循环、灌溉用水和土壤健康", + "海岸带与海洋生态系统数据:来自海岸站点的海岸侵蚀、红树林和海草动态", + "综合数据集:面向全国生态系统评估的多站点综合趋势分析" + ] + } +} diff --git a/firstdata/sources/china/resources/environment/china-cigem.json b/firstdata/sources/china/resources/environment/china-cigem.json new file mode 100644 index 00000000..9831d0b5 --- /dev/null +++ b/firstdata/sources/china/resources/environment/china-cigem.json @@ -0,0 +1,74 @@ +{ + "id": "china-cigem", + "name": { + "en": "China Institute of Geo-Environment Monitoring", + "zh": "中国地质环境监测院" + }, + "description": { + "en": "The China Institute of Geo-Environment Monitoring (CIGEM) is the national authority for geological environment monitoring in China, operating under the China Geological Survey (Ministry of Natural Resources). Established to safeguard public safety and natural resource management, CIGEM maintains the country's most comprehensive network for monitoring geological hazards (landslides, debris flows, ground subsidence, karst collapse), groundwater dynamics, and geological environment quality. The institute produces authoritative annual reports on China's geological hazard situation, groundwater resources, and land subsidence, and operates the national early-warning system for geological disasters.", + "zh": "中国地质环境监测院(CIGEM)是中国地质调查局(自然资源部)下属的国家地质环境监测权威机构。CIGEM建立了全国最完善的地质灾害监测网络,覆盖滑坡、泥石流、地面沉降及岩溶塌陷等灾害类型,同时监测地下水动态和地质环境质量。该机构发布权威的年度地质灾害通报、地下水资源报告和地面沉降报告,并运营全国地质灾害气象预警系统。" + }, + "website": "http://www.cigem.cgs.gov.cn/", + "data_url": "http://www.cigem.cgs.gov.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "geology", + "environment", + "earth-sciences", + "water" + ], + "update_frequency": "annual", + "tags": [ + "地质环境", + "geo-environment", + "地质灾害", + "geological-hazards", + "滑坡", + "landslide", + "泥石流", + "debris-flow", + "地面沉降", + "land-subsidence", + "地下水", + "groundwater", + "岩溶", + "karst", + "地质灾害预警", + "early-warning", + "地质环境监测", + "geological-monitoring", + "地质环境年报", + "geological-environment-report", + "中国地质调查局", + "china-geological-survey" + ], + "data_content": { + "en": [ + "Geological hazard inventory: comprehensive database of landslides, debris flows, collapses, and ground fissures across China", + "Groundwater monitoring: water table levels, quality, and dynamic changes in major aquifer systems", + "Land subsidence: deformation measurements for major cities including Beijing, Shanghai, and Xi'an", + "Karst collapse: distribution and occurrence data for karst geological collapse events", + "Geological disaster meteorological early warning: risk forecasting data by region and season", + "Annual China Geological Hazard Bulletin: national assessment of geological disaster occurrence and losses", + "Mine geological environment: monitoring data for mining-induced geological changes and restoration", + "Geo-environment quality assessment: regional evaluations of geological environment conditions", + "Soil erosion: data on water-induced and wind-induced soil loss by watershed", + "Geological environment database: integrated GIS data on national geo-environment status" + ], + "zh": [ + "地质灾害数据库:全国滑坡、泥石流、崩塌及地裂缝综合数据库", + "地下水监测:主要含水层系统的水位、水质及动态变化", + "地面沉降:北京、上海、西安等主要城市形变监测数据", + "岩溶塌陷:岩溶地质塌陷事件的分布与发生数据", + "地质灾害气象预警:分地区、分季节的风险预报数据", + "中国地质灾害通报:全国地质灾害发生及损失年度评估", + "矿山地质环境:采矿引发地质变化及修复监测数据", + "地质环境质量评估:区域地质环境状况综合评价", + "水土流失:各流域水力与风力侵蚀土壤流失数据", + "地质环境数据库:全国地质环境状况综合GIS数据" + ] + } +} diff --git a/firstdata/sources/china/resources/environment/china-cnemc.json b/firstdata/sources/china/resources/environment/china-cnemc.json new file mode 100644 index 00000000..250984bf --- /dev/null +++ b/firstdata/sources/china/resources/environment/china-cnemc.json @@ -0,0 +1,76 @@ +{ + "id": "china-cnemc", + "name": { + "en": "China National Environmental Monitoring Centre", + "zh": "中国环境监测总站" + }, + "description": { + "en": "The China National Environmental Monitoring Centre (CNEMC) is the national technical support agency under the Ministry of Ecology and Environment (MEE), responsible for operating China's national environmental monitoring network. CNEMC publishes real-time and historical data on air quality, surface water quality, soil, and acoustic environment across more than 1,600 monitoring stations nationwide. It provides authoritative environmental quality data supporting policy decisions, public health protection, and pollution control enforcement.", + "zh": "中国环境监测总站(CNEMC)是生态环境部下属的国家环境监测技术支撑机构,负责运营覆盖全国1600余个站点的国家环境监测网络。发布空气质量、地表水质、土壤和声环境的实时及历史监测数据,为政策决策、公众健康保护和污染防治执法提供权威环境质量数据。" + }, + "website": "https://www.cnemc.cn", + "data_url": "https://www.cnemc.cn/sssj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "environment", + "public-health" + ], + "update_frequency": "real-time", + "tags": [ + "环境监测", + "environmental-monitoring", + "空气质量", + "air-quality", + "aqi", + "pm2.5", + "pm10", + "水质监测", + "water-quality", + "地表水", + "surface-water", + "土壤监测", + "soil-monitoring", + "声环境", + "noise-monitoring", + "实时数据", + "real-time-data", + "cnemc", + "中国环境监测总站", + "生态环境部", + "国控站", + "national-monitoring-station", + "污染", + "pollution", + "六项污染物", + "six-pollutants" + ], + "data_content": { + "en": [ + "Real-time Air Quality Index (AQI) - Hourly AQI values for 338+ cities and 1,600+ monitoring stations nationwide", + "Six Criteria Pollutants - Real-time concentrations of PM2.5, PM10, SO2, NO2, CO, and O3", + "Air Quality Rankings - Daily and monthly city rankings by air quality", + "Historical Air Quality Data - Hourly, daily, and monthly historical pollutant data by city and station", + "Surface Water Quality - Real-time monitoring at key river basins including Yangtze, Yellow, Pearl, and Hai Rivers", + "Groundwater Quality - Monitoring data from national groundwater quality assessment network", + "Drinking Water Source Quality - Surveillance data for municipal drinking water sources", + "Acoustic Environment Monitoring - Urban noise levels at functional zone monitoring points", + "Annual Environmental Quality Bulletins - Comprehensive national environmental quality reports", + "Soil Pollution Monitoring - Results from national soil pollution status surveys" + ], + "zh": [ + "实时空气质量指数(AQI)- 全国338个城市及1600余个监测站的逐时AQI数据", + "六项大气污染物 - PM2.5、PM10、SO2、NO2、CO、O3实时浓度", + "空气质量排名 - 城市日排名和月排名", + "历史空气质量数据 - 按城市和站点的逐时、日均、月均历史污染物数据", + "地表水水质 - 长江、黄河、珠江、海河等重点流域实时监测", + "地下水水质 - 国家地下水水质评估网络监测数据", + "集中式饮用水水源地水质 - 城市饮用水水源地监测数据", + "声环境监测 - 各功能区城市噪声监测数据", + "年度环境质量公报 - 综合性国家环境质量年度报告", + "土壤污染监测 - 全国土壤污染状况详查结果" + ] + } +} diff --git a/firstdata/sources/china/resources/environment/china-cnesa.json b/firstdata/sources/china/resources/environment/china-cnesa.json new file mode 100644 index 00000000..da2b9d0b --- /dev/null +++ b/firstdata/sources/china/resources/environment/china-cnesa.json @@ -0,0 +1,63 @@ +{ + "id": "china-cnesa", + "name": { + "en": "China Energy Storage Alliance", + "zh": "中关村储能产业技术联盟" + }, + "description": { + "en": "The China Energy Storage Alliance (CNESA), officially the Zhongguancun Energy Storage Industry Technology Alliance, is China's leading national industry organization for the energy storage sector, established in 2011. CNESA publishes authoritative annual white papers and market reports tracking the deployment of grid-scale, commercial, and residential energy storage systems, covering electrochemical batteries (lithium-ion, flow batteries), pumped hydro, thermal storage, and compressed air energy storage. As China is the world's largest and fastest-growing energy storage market, CNESA's Global Energy Storage Database and annual market reports are primary references for energy transition research, investment analysis, and policy development.", + "zh": "中关村储能产业技术联盟(CNESA)是中国储能行业领先的全国性行业组织,成立于2011年。联盟发布权威年度白皮书和市场报告,追踪电网侧、用户侧和户用储能系统的装机情况,涵盖电化学储能(锂离子、液流电池)、抽水蓄能、热储能和压缩空气储能。中国是全球最大、增速最快的储能市场,CNESA全球储能数据库和年度市场报告是能源转型研究、投资分析和政策制定的重要参考来源。" + }, + "website": "https://www.cnesa.org", + "data_url": "https://www.cnesa.org", + "api_url": null, + "country": "CN", + "domains": [ + "energy", + "technology", + "environment", + "industry" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "china", + "energy-storage", + "储能", + "中关村储能联盟", + "cnesa", + "battery", + "电池", + "lithium-ion", + "锂离子", + "grid-storage", + "电网储能", + "pumped-hydro", + "抽水蓄能", + "renewable-energy", + "可再生能源", + "energy-transition", + "能源转型" + ], + "data_content": { + "en": [ + "China Energy Storage Market Annual White Paper - Comprehensive annual market data on installed capacity by technology and application", + "Global Energy Storage Database - Worldwide project-level energy storage installation data", + "Electrochemical Storage Statistics - Lithium-ion, flow battery, and sodium-ion deployment data", + "Grid-Scale Storage Data - Utility-scale storage projects by province, capacity, and grid function", + "Commercial and Industrial Storage Reports - Behind-the-meter storage deployment and economics", + "Policy Research Reports - Analysis of energy storage incentive policies and market mechanisms", + "Cost and Performance Tracking - Battery cost trends and technology performance benchmarks" + ], + "zh": [ + "中国储能市场年度白皮书 - 按技术和应用分类的年度装机容量市场数据", + "全球储能数据库 - 全球储能项目级装机数据", + "电化学储能统计 - 锂离子、液流电池、钠离子电池装机数据", + "电网侧储能数据 - 按省份、容量和电网功能分类的电网侧储能项目", + "工商业储能报告 - 工商业用户侧储能装机量和经济性", + "政策研究报告 - 储能激励政策和市场机制分析", + "成本和性能跟踪 - 电池成本趋势和技术性能基准" + ] + }, + "authority_level": "other" +} diff --git a/firstdata/sources/china/resources/environment/china-craes.json b/firstdata/sources/china/resources/environment/china-craes.json new file mode 100644 index 00000000..72063ada --- /dev/null +++ b/firstdata/sources/china/resources/environment/china-craes.json @@ -0,0 +1,78 @@ +{ + "id": "china-craes", + "name": { + "en": "Chinese Research Academy of Environmental Sciences", + "zh": "中国环境科学研究院" + }, + "description": { + "en": "The Chinese Research Academy of Environmental Sciences (CRAES), affiliated with the Ministry of Ecology and Environment, is China's highest-level national environmental research institution. Established in 1978, CRAES leads applied research on environmental pollution control, ecological protection, and environmental standards development. It provides critical technical support for national environmental management decisions, operates key environmental monitoring programs, and maintains authoritative environmental databases. CRAES has developed and revised hundreds of national environmental standards and technical guidelines, including those for water pollution control, air quality, soil remediation, and solid waste management. The academy is responsible for China's national ecological function zoning, environmental capacity assessments, and supporting major environmental policy documents including the Five-Year Plans for ecological environment protection.", + "zh": "中国环境科学研究院(环科院)隶属生态环境部,是国家最高级别的环境研究机构,1978年建立。环科院在环境污染治理、生态保护和环境标准制定等应用研究领域处于全国领先地位,为国家环境管理决策提供关键技术支撑,运营重要的环境监测项目,维护权威环境数据库。环科院主持制修订数百项国家环境标准和技术规范,涵盖水污染控制、空气质量、土壤修复和固体废物管理。研究院负责全国生态功能区划、环境容量评估工作,并为生态环境保护五年规划等重要环境政策文件提供技术支持。" + }, + "website": "https://www.craes.cn", + "data_url": "https://www.craes.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "environment", + "science", + "policy" + ], + "update_frequency": "irregular", + "tags": [ + "中国环境科学研究院", + "craes", + "chinese-research-academy-of-environmental-sciences", + "环境污染", + "environmental-pollution", + "生态保护", + "ecological-protection", + "环境标准", + "environmental-standards", + "水污染", + "water-pollution", + "空气质量", + "air-quality", + "土壤修复", + "soil-remediation", + "固体废物", + "solid-waste", + "生态功能区划", + "ecological-function-zoning", + "环境容量", + "environmental-capacity", + "生态环境部", + "ministry-of-ecology-and-environment", + "环境监测", + "environmental-monitoring", + "污染控制", + "pollution-control", + "环境政策", + "environmental-policy", + "五年规划", + "five-year-plan" + ], + "data_content": { + "en": [ + "Environmental standards and technical guidelines: hundreds of national environmental standards (GB/HJ series) covering water, air, soil, noise, and solid waste developed or co-developed by CRAES", + "Environmental capacity assessments: national and regional estimates of pollutant carrying capacity for major river basins, air sheds, and soil environments", + "Ecological function zoning data: national ecological function zone maps, ecosystem service evaluations, and biodiversity protection area delineations", + "Water environment research data: datasets on river and lake water quality, sediment contamination, aquatic ecosystem health assessments, and pollution source inventories", + "Soil and groundwater pollution data: contaminated site surveys, remediation technology assessments, and national soil pollution status reports", + "Air pollution control research: emission factor databases, source apportionment studies, atmospheric dispersion modeling data, and control technology effectiveness evaluations", + "Solid waste and hazardous materials: waste characterization data, disposal technology assessments, and industrial hazardous waste inventories", + "Environmental health risk assessments: exposure pathway studies, toxicological reference data for Chinese populations, and environmental health risk evaluation frameworks" + ], + "zh": [ + "环境标准和技术规范:环科院主持或参与制定数百项国家环境标准(GB/HJ系列),涵盖水、气、土、噪声和固体废物", + "环境容量评估:主要流域、大气区和土壤环境的全国及区域污染物承载能力评估", + "生态功能区划数据:全国生态功能区划图、生态系统服务价值评估和生物多样性保护区划定", + "水环境研究数据:河湖水质、底泥污染、水生生态系统健康评估和污染源清单", + "土壤和地下水污染数据:污染地块调查、修复技术评估和全国土壤污染状况报告", + "大气污染控制研究:排放因子数据库、来源解析研究、大气扩散模型数据和控制技术效果评估", + "固体废物和危险化学品:废物特征化数据、处置技术评估和工业危险废物清单", + "环境健康风险评估:暴露途径研究、中国人群毒理学参考数据和环境健康风险评估框架" + ] + } +} diff --git a/firstdata/sources/china/resources/environment/china-crra.json b/firstdata/sources/china/resources/environment/china-crra.json new file mode 100644 index 00000000..e4de0698 --- /dev/null +++ b/firstdata/sources/china/resources/environment/china-crra.json @@ -0,0 +1,63 @@ +{ + "id": "china-crra", + "name": { + "en": "China Association of Circular Economy", + "zh": "中国再生资源回收利用协会" + }, + "description": { + "en": "The China Association of Circular Economy (CRRA), formally known as the China Renewable Resources Recycling Association, is the national industry organization for China's recycling and circular economy sector. CRRA publishes annual reports and statistics on the recovery and recycling of key materials including scrap metal (steel, copper, aluminum), waste paper, waste plastics, waste rubber, waste glass, and electronic waste. As China is the world's largest producer and recycler of secondary materials, CRRA data provides essential insights into global commodity supply chains, resource sustainability, and China's transition to a circular economy.", + "zh": "中国再生资源回收利用协会是中国再生资源回收利用行业的全国性行业组织,发布废钢铁、废铜铝、废纸、废塑料、废橡胶、废玻璃、电子废弃物等主要再生资源的回收量和利用量年度统计报告。中国是全球最大的再生资源生产国和利用国,协会数据对全球大宗商品供应链、资源可持续性以及中国循环经济转型研究具有重要参考价值。" + }, + "website": "https://www.crra.org.cn", + "data_url": "https://www.crra.org.cn", + "api_url": null, + "country": "CN", + "domains": [ + "environment", + "circular-economy", + "industry", + "resources" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "china", + "recycling", + "再生资源", + "循环经济", + "circular-economy", + "废旧物资", + "waste-recycling", + "scrap-metal", + "废钢铁", + "waste-paper", + "废纸", + "plastics-recycling", + "废塑料", + "e-waste", + "电子废弃物", + "sustainability", + "资源化利用" + ], + "data_content": { + "en": [ + "Recycling Volume Statistics - Annual recovery volumes for major secondary materials by type and region", + "Scrap Metal Data - Collection, processing, and utilization of waste steel, copper, and aluminum", + "Waste Paper and Plastics - Recovery rates and utilization for paper, plastics, and rubber", + "Electronic Waste Statistics - Collection and recycling data for end-of-life electronics", + "China Recycling Industry Annual Report - Comprehensive review of sector scale, structure, and development", + "Market Price Monitoring - Price trends for major recycled materials", + "Policy Research Reports - Analysis of circular economy policies and regulatory developments" + ], + "zh": [ + "再生资源回收量统计 - 按品种和地区分类的主要再生资源年度回收量", + "废金属数据 - 废钢铁、废铜、废铝的回收、加工和利用情况", + "废纸和废塑料 - 废纸、废塑料、废橡胶回收率和利用情况", + "电子废弃物统计 - 废旧电器电子产品回收和拆解利用数据", + "中国再生资源行业年度报告 - 行业规模、结构和发展全面综述", + "市场价格监测 - 主要再生资源品种价格走势", + "政策研究报告 - 循环经济政策和监管动态分析" + ] + }, + "authority_level": "other" +} diff --git a/firstdata/sources/china/resources/environment/china-ipe.json b/firstdata/sources/china/resources/environment/china-ipe.json new file mode 100644 index 00000000..8d7a30ef --- /dev/null +++ b/firstdata/sources/china/resources/environment/china-ipe.json @@ -0,0 +1,81 @@ +{ + "id": "china-ipe", + "name": { + "en": "Institute of Public & Environmental Affairs", + "zh": "公众环境研究中心" + }, + "description": { + "en": "The Institute of Public & Environmental Affairs (IPE) is a leading Chinese environmental NGO founded in 2006. It operates China's most comprehensive open environmental data platform, aggregating and visualizing government-sourced pollution records, emission data, and compliance information across air, water, soil, radiation, and climate domains. IPE's flagship products include the Blue Map (污染地图) pollution database, the Green Supply Chain CITI Index for supplier environmental performance, and the Corporate Climate Action Index. IPE collects data from the Ministry of Ecology and Environment, local environmental agencies, and listed companies' environmental disclosures to create interactive maps, provincial carbon indexes, and supply chain environmental risk ratings used by multinational corporations, investors, and policymakers worldwide.", + "zh": "公众环境研究中心(IPE)成立于2006年,是中国领先的环保非政府组织,运营着中国最全面的开放环境数据平台。该平台整合并可视化来自政府的污染记录、排放数据和合规信息,覆盖大气、水体、土壤、辐射和气候等领域。主要产品包括蔚蓝地图污染数据库、供应链CITI指数(企业环境信息透明度指数)和企业气候行动指数。IPE从生态环境部、地方环保部门和上市公司环境披露中采集数据,生成交互式地图、省级双碳指数和供应链环境风险评级,被跨国企业、投资机构和政策制定者广泛使用。" + }, + "website": "https://www.ipe.org.cn", + "data_url": "https://www.ipe.org.cn/AirMap_fxy/AirMap.html", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "environment", + "climate", + "pollution", + "corporate-governance", + "sustainability" + ], + "update_frequency": "daily", + "tags": [ + "公众环境研究中心", + "ipe", + "蔚蓝地图", + "blue-map", + "pollution", + "污染", + "air-quality", + "空气质量", + "water-pollution", + "水污染", + "soil-contamination", + "土壤污染", + "carbon-emissions", + "碳排放", + "双碳", + "dual-carbon", + "supply-chain", + "供应链", + "CITI指数", + "green-supply-chain", + "绿色供应链", + "environmental-disclosure", + "环境信息披露", + "esg", + "corporate-sustainability", + "企业碳中和", + "biodiversity", + "生物多样性", + "provincial-carbon-index", + "省级双碳指数", + "climate-action", + "气候行动" + ], + "data_content": { + "en": [ + "Air Quality Database: Real-time and historical air pollution records (PM2.5, PM10, SO2, NOx, CO, O3) from thousands of monitoring stations across all Chinese cities", + "Water Pollution Records: Enterprise wastewater discharge violations, river basin water quality assessments, and drinking water source protection data", + "Soil Contamination: Industrial pollution sources, contaminated site records, and soil remediation progress", + "Carbon & Energy Maps: Provincial carbon emission indexes, energy transition tracking, photovoltaic installation mapping, and enterprise carbon disclosure", + "Supply Chain CITI Index: Environmental transparency and compliance ratings for thousands of Chinese suppliers used by global brands", + "Corporate Climate Action Index: Assessment of listed companies' climate commitments, emission reduction targets, and green investment", + "Biodiversity Data: Natural reserve mapping, ecological red-line areas, and species diversity monitoring", + "Radiation Monitoring: Nuclear facility radiation monitoring data from environmental protection agencies" + ], + "zh": [ + "空气质量数据库:全国城市数千个监测站的PM2.5、PM10、SO2、NOx、CO、O3实时和历史数据", + "水污染记录:企业废水排放违规记录、流域水质评估和饮用水源保护数据", + "土壤污染:工业污染源、污染地块台账和土壤修复进展", + "碳排放与能源地图:省级双碳指数、能源转型追踪、光伏装机地图和企业碳披露", + "供应链CITI指数:全球品牌使用的数千家中国供应商的环境透明度和合规评级", + "企业气候行动指数:上市公司气候承诺、减排目标和绿色投资评估", + "生物多样性:自然保护区地图、生态红线范围和物种多样性监测", + "辐射监测:环保部门核设施周边辐射监测数据" + ] + } +} diff --git a/firstdata/sources/china/resources/environment/china-mee.json b/firstdata/sources/china/resources/environment/china-mee.json new file mode 100644 index 00000000..64ec2059 --- /dev/null +++ b/firstdata/sources/china/resources/environment/china-mee.json @@ -0,0 +1,82 @@ +{ + "id": "china-mee", + "name": { + "en": "Ministry of Ecology and Environment of China - Environmental Data", + "zh": "生态环境部环境数据" + }, + "description": { + "en": "Official environmental monitoring and statistical data from China's Ministry of Ecology and Environment (MEE). Covers air quality, water quality, soil contamination, pollutant emissions, noise monitoring, nuclear safety, and ecological assessments. Provides real-time monitoring data, monthly/quarterly/annual environmental quality reports, national pollutant census results, and environmental impact assessment information. The ministry is responsible for nationwide ecological and environmental protection, pollution prevention, and nuclear and radiation safety oversight.", + "zh": "中国生态环境部发布的官方环境监测与统计数据,涵盖空气质量、水环境质量、土壤污染、污染物排放、噪声监测、核安全和生态评估等领域。提供实时监测数据、月度/季度/年度环境质量报告、全国污染源普查结果和环境影响评价信息。该部负责全国生态环境保护、污染防治和核与辐射安全监管工作。" + }, + "website": "https://www.mee.gov.cn/", + "data_url": "https://www.mee.gov.cn/hjzl/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "environment", + "climate", + "public-health" + ], + "update_frequency": "monthly", + "tags": [ + "环境", + "environment", + "生态", + "ecology", + "空气质量", + "air-quality", + "aqi", + "pm2.5", + "水质", + "water-quality", + "污染物排放", + "pollutant-emissions", + "土壤污染", + "soil-contamination", + "噪声监测", + "noise-monitoring", + "核安全", + "nuclear-safety", + "环境影响评价", + "environmental-impact-assessment", + "eia", + "生态环境部", + "mee", + "碳排放", + "carbon-emissions", + "环境质量报告", + "environmental-quality-report" + ], + "data_content": { + "en": [ + "Real-time and historical air quality monitoring data (AQI, PM2.5, PM10, SO2, NO2, CO, O3) for cities nationwide", + "Surface water quality monitoring for major rivers, lakes, and reservoirs across China", + "National soil contamination survey and monitoring results", + "Industrial and municipal pollutant discharge statistics (wastewater, waste gas, solid waste)", + "Annual environmental statistics bulletin with national and provincial breakdowns", + "Environmental noise monitoring reports for cities", + "Nuclear and radiation safety monitoring and incident reports", + "Ecological red line delineation and nature reserve assessment data", + "National pollutant census data (conducted periodically)", + "Environmental impact assessment approval records and public announcements", + "Central environmental inspection reports and enforcement actions", + "Carbon emission trading and climate change related statistics" + ], + "zh": [ + "全国城市实时及历史空气质量监测数据(AQI、PM2.5、PM10、SO2、NO2、CO、O3)", + "全国主要河流、湖泊、水库地表水水质监测数据", + "全国土壤污染状况调查与监测结果", + "工业和城镇污染物排放统计(废水、废气、固体废物)", + "年度生态环境统计公报(含全国及分省数据)", + "城市环境噪声监测报告", + "核与辐射安全监测及事件报告", + "生态保护红线划定与自然保护区评估数据", + "全国污染源普查数据(定期开展)", + "环境影响评价审批记录与公示公告", + "中央生态环境保护督察报告与执法行动", + "碳排放权交易与应对气候变化相关统计" + ] + } +} diff --git a/firstdata/sources/china/resources/environment/china-ncsc.json b/firstdata/sources/china/resources/environment/china-ncsc.json new file mode 100644 index 00000000..3de55d43 --- /dev/null +++ b/firstdata/sources/china/resources/environment/china-ncsc.json @@ -0,0 +1,76 @@ +{ + "id": "china-ncsc", + "name": { + "en": "National Center for Climate Change Strategy and International Cooperation", + "zh": "国家应对气候变化战略研究和国际合作中心" + }, + "description": { + "en": "The National Center for Climate Change Strategy and International Cooperation (NCSC) is a specialized think tank under China's Ministry of Ecology and Environment (MEE), established in 2012. NCSC serves as China's primary policy research institution on climate change, responsible for strategic research on national greenhouse gas emissions reduction, carbon market policy, climate finance, and international climate negotiations. It supports China's participation in UNFCCC negotiations and conducts research on the Paris Agreement implementation. NCSC produces annual China's Policies and Actions for Addressing Climate Change reports, emissions inventory studies, low-carbon transition pathway analyses, and carbon pricing mechanism research that directly inform China's climate governance and policy formulation.", + "zh": "国家应对气候变化战略研究和国际合作中心(NCSC)是生态环境部下属专业智库,成立于2012年,是中国应对气候变化领域主要政策研究机构。NCSC负责国家温室气体减排、碳市场政策、气候融资和国际气候谈判战略研究,支持中国参与《联合国气候变化框架公约》谈判,并就《巴黎协定》实施开展研究。中心每年发布《中国应对气候变化的政策与行动》年度报告,开展温室气体排放清单研究、低碳转型路径分析和碳定价机制研究,直接支撑中国气候治理和政策制定。" + }, + "website": "http://www.ncsc.org.cn", + "data_url": "http://www.ncsc.org.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "climate", + "environment", + "energy", + "economics" + ], + "update_frequency": "irregular", + "tags": [ + "国家应对气候变化战略研究和国际合作中心", + "ncsc", + "national-center-for-climate-change-strategy", + "气候变化", + "climate-change", + "温室气体", + "greenhouse-gas", + "碳市场", + "carbon-market", + "碳排放", + "carbon-emissions", + "低碳", + "low-carbon", + "气候政策", + "climate-policy", + "巴黎协定", + "paris-agreement", + "unfccc", + "碳中和", + "carbon-neutrality", + "双碳", + "dual-carbon", + "气候融资", + "climate-finance", + "国际气候谈判", + "international-climate-negotiations", + "碳定价", + "carbon-pricing", + "排放清单", + "emissions-inventory" + ], + "data_content": { + "en": [ + "China's climate action annual reports: comprehensive annual assessment of China's policies and actions for addressing climate change", + "Greenhouse gas emissions inventory: national and sectoral GHG emissions data and inventory methodologies", + "Carbon market research: analysis of China's national emissions trading scheme (ETS), allowance allocation, and market performance", + "Low-carbon transition pathways: scenario analyses and roadmaps for decarbonizing China's energy, industry, and transport sectors", + "International climate negotiation positions: policy briefs and analysis on China's stance in UNFCCC and Paris Agreement negotiations", + "Climate finance data: research on green finance flows, climate investment, and mobilization of private capital for low-carbon development", + "Carbon pricing mechanism studies: comparative analysis of carbon taxes, ETS designs, and policy effectiveness across countries" + ], + "zh": [ + "中国气候行动年度报告:中国应对气候变化政策与行动的综合年度评估报告", + "温室气体排放清单:国家和分行业温室气体排放数据及清单方法学", + "碳市场研究:中国全国碳排放权交易市场(ETS)、配额分配和市场运行分析", + "低碳转型路径:中国能源、工业和交通部门脱碳情景分析和路线图", + "国际气候谈判立场:中国参与UNFCCC和《巴黎协定》谈判的政策简报和分析", + "气候融资数据:绿色金融流量、气候投资及低碳发展私人资本动员研究", + "碳定价机制研究:各国碳税、碳交易机制设计和政策效果比较分析" + ] + } +} diff --git a/firstdata/sources/china/resources/environment/china-ndrcc.json b/firstdata/sources/china/resources/environment/china-ndrcc.json new file mode 100644 index 00000000..53302922 --- /dev/null +++ b/firstdata/sources/china/resources/environment/china-ndrcc.json @@ -0,0 +1,79 @@ +{ + "id": "china-ndrcc", + "name": { + "en": "National Disaster Reduction Center of China", + "zh": "国家减灾中心" + }, + "description": { + "en": "The National Disaster Reduction Center of China (NDRCC) is a key technical and operational institution under the Ministry of Emergency Management (MEM), responsible for comprehensive disaster risk assessment, satellite-based disaster monitoring, and disaster information management at the national level. NDRCC operates the National Disaster Reduction and Relief Coordination Platform and integrates data from multiple hazard monitoring systems to provide authoritative disaster statistics, risk maps, and impact assessments. It manages the national disaster loss assessment system, conducts post-disaster rapid assessment using satellite remote sensing, and publishes disaster risk and vulnerability data for all provinces and counties in China. NDRCC also supports China's international disaster reduction cooperation under the Sendai Framework for Disaster Risk Reduction.", + "zh": "国家减灾中心是应急管理部下属负责综合灾害风险评估、卫星灾情监测和国家级灾害信息管理的重要技术与业务机构。国家减灾中心运行国家减灾救灾综合协调平台,整合多灾种监测系统数据,提供权威灾害统计数据、风险区划图和影响评估报告。其职责包括管理国家自然灾害损失评估体系、利用卫星遥感开展灾后快速评估,并发布全国省县两级灾害风险和脆弱性数据。国家减灾中心亦支持中国在《仙台减灾框架》下开展的国际减灾合作。" + }, + "website": "https://www.ndrcc.org.cn/", + "data_url": "https://www.ndrcc.org.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "environment", + "governance", + "statistics", + "social" + ], + "update_frequency": "monthly", + "tags": [ + "国家减灾中心", + "ndrcc", + "national-disaster-reduction-center", + "灾害风险", + "disaster-risk", + "自然灾害", + "natural-disaster", + "减灾救灾", + "disaster-reduction", + "卫星遥感", + "satellite-remote-sensing", + "灾情监测", + "disaster-monitoring", + "灾害损失评估", + "disaster-loss-assessment", + "灾害风险区划", + "disaster-risk-zoning", + "应急管理部", + "mem", + "防灾减灾", + "disaster-prevention", + "灾害数据", + "disaster-data", + "仙台框架", + "sendai-framework", + "综合减灾", + "integrated-disaster-reduction" + ], + "data_content": { + "en": [ + "National natural disaster statistics: monthly and annual loss data for all major disaster types including floods, droughts, earthquakes, geological hazards, and typhoons, with breakdowns by region", + "Disaster risk assessment maps: national and provincial risk maps for multiple hazard types, including hazard exposure, vulnerability, and composite risk indices", + "Satellite disaster monitoring reports: near-real-time satellite remote sensing analysis of disaster-affected areas, crop damage, and infrastructure impacts", + "Disaster loss assessment reports: post-disaster rapid assessment results for major events, including affected population, casualties, economic losses, and damaged infrastructure", + "County-level disaster risk data: fine-scale risk and vulnerability metrics for all counties in China used for disaster prevention planning", + "Disaster event database: historical records of significant disaster events in China with standardized damage and loss data", + "Agricultural disaster statistics: crop loss data and farmland damage statistics by disaster type and growing season", + "Housing damage records: data on collapsed and damaged residential structures following major disasters by province", + "Emergency relocation data: statistics on displaced populations requiring emergency resettlement and shelter assistance", + "International disaster reduction cooperation reports: documentation of China's participation in Sendai Framework monitoring and bilateral disaster risk reduction partnerships" + ], + "zh": [ + "全国自然灾害统计:各类主要灾害(洪涝、干旱、地震、地质灾害、台风等)月度和年度损失数据,按地区细分", + "灾害风险评估区划图:多灾种全国和省级风险图,包括致灾因子危险性、承灾体脆弱性及综合风险指数", + "卫星灾情监测报告:对灾害受损区域、农作物受损及基础设施影响的近实时卫星遥感分析", + "灾害损失评估报告:重大灾害事件的快速评估结果,包括受灾人口、人员伤亡、经济损失及基础设施受损情况", + "县级灾害风险数据:用于防灾规划的全国各县细粒度风险和脆弱性指标", + "灾害事件数据库:中国重大灾害事件历史记录及标准化受损数据", + "农业灾害统计:按灾害类型和农时季节分类的农作物损失及耕地受损数据", + "住房受损记录:省级重大灾害后倒塌和损坏民房数据", + "应急转移安置数据:需紧急转移安置和临时庇护援助受灾人口统计", + "国际减灾合作报告:中国参与仙台框架监测及双边减灾合作的文件记录" + ] + } +} diff --git a/firstdata/sources/china/resources/environment/china-nesdc.json b/firstdata/sources/china/resources/environment/china-nesdc.json new file mode 100644 index 00000000..8d6de720 --- /dev/null +++ b/firstdata/sources/china/resources/environment/china-nesdc.json @@ -0,0 +1,67 @@ +{ + "id": "china-nesdc", + "name": { + "en": "National Ecosystem Science Data Center", + "zh": "国家生态科学数据中心" + }, + "description": { + "en": "The National Ecosystem Science Data Center (NESDC) is one of China's 20 national science data centers, managed by the Institute of Geographic Sciences and Natural Resources Research (IGSNRR) of the Chinese Academy of Sciences. NESDC serves as the authoritative national platform for ecosystem science data sharing, integrating long-term ecological monitoring data from the Chinese Ecosystem Research Network (CERN) and other field station networks. The center provides standardized datasets covering terrestrial, aquatic, and urban ecosystems including carbon flux measurements, biodiversity surveys, soil properties, water quality monitoring, vegetation dynamics, and meteorological observations. NESDC supports ecological research, environmental policy making, and ecosystem service valuation by offering curated, quality-controlled datasets with metadata standards and DOI-based data citation services.", + "zh": "国家生态科学数据中心是中国20个国家科学数据中心之一,由中国科学院地理科学与资源研究所管理。NESDC是生态科学数据共享的国家权威平台,整合中国生态系统研究网络(CERN)等野外台站网络的长期生态监测数据。中心提供覆盖陆地、水域和城市生态系统的标准化数据集,包括碳通量测量、生物多样性调查、土壤特性、水质监测、植被动态和气象观测等。NESDC通过提供经质量控制的数据集及元数据标准和基于DOI的数据引用服务,支持生态学研究、环境政策制定和生态系统服务价值评估。" + }, + "website": "https://www.nesdc.org.cn", + "data_url": "https://www.nesdc.org.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "environment", + "ecology" + ], + "update_frequency": "irregular", + "tags": [ + "生态科学", + "ecosystem-science", + "nesdc", + "国家科学数据中心", + "national-science-data-center", + "生态系统", + "ecosystem", + "cern", + "中国生态系统研究网络", + "生物多样性", + "biodiversity", + "碳通量", + "carbon-flux", + "土壤", + "soil", + "水质", + "water-quality", + "植被", + "vegetation", + "生态监测", + "ecological-monitoring", + "中国科学院", + "cas", + "野外台站", + "field-station" + ], + "data_content": { + "en": [ + "Carbon flux measurement data: eddy covariance tower observations of CO2, water vapor, and energy fluxes from CERN and ChinaFLUX network stations", + "Biodiversity survey datasets: species inventories, vegetation quadrat surveys, and animal population monitoring records from ecosystem research stations", + "Soil property databases: physical, chemical, and biological soil properties including organic carbon content, nutrient levels, and microbial community data", + "Water quality monitoring: dissolved oxygen, nutrient concentrations, pH, and pollutant levels from freshwater lake and river monitoring stations", + "Vegetation remote sensing products: NDVI, LAI, land cover classification, and vegetation phenology datasets derived from satellite imagery", + "Long-term ecological monitoring: multi-decade time series of meteorological variables, primary productivity, and ecosystem structure from CERN stations" + ], + "zh": [ + "碳通量测量数据:CERN和ChinaFLUX网络台站涡度协方差塔观测的CO2、水汽和能量通量数据", + "生物多样性调查数据集:生态系统研究站的物种清单、植被样方调查和动物种群监测记录", + "土壤特性数据库:土壤物理、化学和生物性质,包括有机碳含量、养分水平和微生物群落数据", + "水质监测:淡水湖泊和河流监测站的溶解氧、营养盐浓度、pH值和污染物水平数据", + "植被遥感产品:卫星影像衍生的NDVI、LAI、土地覆盖分类和植被物候数据集", + "长期生态监测:CERN台站数十年气象变量、初级生产力和生态系统结构时间序列" + ] + } +} diff --git a/firstdata/sources/china/resources/environment/china-nies.json b/firstdata/sources/china/resources/environment/china-nies.json new file mode 100644 index 00000000..7d6335d0 --- /dev/null +++ b/firstdata/sources/china/resources/environment/china-nies.json @@ -0,0 +1,69 @@ +{ + "id": "china-nies", + "name": { + "en": "Nanjing Institute of Environmental Sciences, MEE", + "zh": "生态环境部南京环境科学研究所" + }, + "description": { + "en": "The Nanjing Institute of Environmental Sciences (NIES) is a national-level environmental research institute directly affiliated with China's Ministry of Ecology and Environment (MEE). Founded in 1978, NIES is one of China's most comprehensive environmental research institutions, focusing on biodiversity conservation, rural environmental protection, soil pollution prevention and remediation, chemical safety management, hazardous waste management, ecological environment planning, and international environmental treaty implementation. NIES is the designated national technical support center for biodiversity monitoring, the Stockholm Convention on Persistent Organic Pollutants (POPs), the Basel Convention on hazardous waste, and the National Nature Reserve Management Bureau. The institute publishes authoritative environmental monitoring reports, biodiversity baseline surveys, and rural environmental assessments that inform China's ecological civilization construction policies.", + "zh": "生态环境部南京环境科学研究所(NIES)是生态环境部直属的国家级环境研究机构,成立于1978年,是中国最综合性的环境研究机构之一,重点研究生物多样性保护、农村环境保护、土壤污染防治与修复、化学品安全管理、危险废物管理、生态环境规划和国际环境公约履约等领域。南京所是生物多样性监测、《斯德哥尔摩公约》持久性有机污染物(POPs)、《巴塞尔公约》危险废物管理和国家自然保护区管理局的指定国家级技术支持中心。研究所发布权威的环境监测报告、生物多样性本底调查和农村环境评估,直接服务于中国生态文明建设政策。" + }, + "website": "https://www.nies.org", + "data_url": "https://www.nies.org", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "environment", + "biodiversity", + "soil-pollution", + "rural-environment", + "chemical-safety", + "hazardous-waste" + ], + "update_frequency": "irregular", + "tags": [ + "南京环境科学研究所", + "nies", + "nanjing-institute-of-environmental-sciences", + "生态环境部", + "mee", + "ministry-of-ecology-and-environment", + "生物多样性", + "biodiversity", + "农村环境", + "rural-environment", + "土壤污染", + "soil-pollution", + "化学品管理", + "chemicals-management", + "危险废物", + "hazardous-waste", + "pops", + "持久性有机污染物", + "persistent-organic-pollutants", + "自然保护区", + "nature-reserves" + ], + "data_content": { + "en": [ + "Biodiversity baseline survey data: national and provincial surveys of species distribution, habitat conditions, and ecosystem health in key protected areas", + "Rural environmental monitoring reports: assessments of agricultural non-point source pollution, rural drinking water quality, and village sanitation", + "Soil pollution investigation data: site-specific soil contamination surveys and remediation technology evaluations for agricultural and industrial land", + "Chemical risk assessment reports: hazard and exposure assessments of new and existing chemicals under China's chemical management regulations", + "POPs monitoring and inventory: national monitoring data for persistent organic pollutants under Stockholm Convention implementation", + "Hazardous waste management studies: technical reports on transboundary movement, inventory, and treatment of hazardous waste per Basel Convention", + "Nature reserve management assessments: effectiveness evaluations and biodiversity status reports for national nature reserves" + ], + "zh": [ + "生物多样性本底调查数据:重点保护区物种分布、生境状况和生态系统健康的国家和省级调查", + "农村环境监测报告:农业面源污染、农村饮用水质量和村镇环境卫生评估", + "土壤污染调查数据:农用地和工业用地场地特异性土壤污染调查及修复技术评估", + "化学品风险评估报告:中国化学品管理条例下新化学物质和现有化学物质的危害和暴露评估", + "持久性有机污染物(POPs)监测和清单:《斯德哥尔摩公约》履约的国家POPs监测数据", + "危险废物管理研究:《巴塞尔公约》下危险废物越境转移、清单和处置的技术报告", + "自然保护区管理评估:国家级自然保护区的管护成效评估和生物多样性状况报告" + ] + } +} diff --git a/firstdata/sources/china/resources/forestry/china-nfga.json b/firstdata/sources/china/resources/forestry/china-nfga.json new file mode 100644 index 00000000..4abf0e49 --- /dev/null +++ b/firstdata/sources/china/resources/forestry/china-nfga.json @@ -0,0 +1,78 @@ +{ + "id": "china-nfga", + "name": { + "en": "National Forestry and Grassland Administration of China", + "zh": "国家林业和草原局" + }, + "description": { + "en": "Official forestry, grassland, wetland, and wildlife data from China's National Forestry and Grassland Administration (NFGA). Covers national forest resources inventory results, forest coverage rates, grassland quality and degradation monitoring, wetland area and health assessments, wildlife population surveys, desert and desertification monitoring, nature reserve and national park data, carbon sequestration estimates, and forestry economic statistics. The NFGA, established in 2018, also oversees national parks and manages China's first national park system.", + "zh": "国家林业和草原局发布的官方林业、草地、湿地与野生动植物数据,涵盖全国森林资源清查结果、森林覆盖率、草地质量与退化监测、湿地面积与健康评估、野生动植物种群调查、荒漠化监测、自然保护区与国家公园数据、碳汇估算及林业经济统计。国家林业和草原局于2018年组建,同时负责国家公园体制建设和管理工作。" + }, + "website": "https://www.forestry.gov.cn/", + "data_url": "https://www.forestry.gov.cn/gjlcj/5462/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "environment", + "climate", + "agriculture" + ], + "update_frequency": "annual", + "tags": [ + "林业", + "forestry", + "草原", + "grassland", + "湿地", + "wetland", + "森林资源", + "forest-resources", + "森林覆盖率", + "forest-coverage-rate", + "野生动物", + "wildlife", + "国家公园", + "national-park", + "荒漠化", + "desertification", + "自然保护区", + "nature-reserve", + "碳汇", + "carbon-sink", + "生物多样性", + "biodiversity", + "nfga", + "国家林草局", + "沙漠化", + "砍伐", + "deforestation" + ], + "data_content": { + "en": [ + "National forest resources inventory: forest area, forest stock volume, forest coverage rate by province", + "Grassland resources and condition monitoring: grassland area, quality grades, utilization and degradation rates", + "Wetland survey data: wetland area, types, ecosystem health assessments, and changes over time", + "Desert and desertification monitoring: desertified land area, sandy land dynamics, restoration progress", + "Wildlife population surveys: key protected species counts, habitat assessments (giant panda, Siberian tiger, etc.)", + "Nature reserve and national park statistics: reserve counts, areas, management effectiveness", + "Forestry economic data: timber production, non-timber forest products output, forestry GDP contribution", + "Forest carbon sequestration estimates: annual CO2 absorption by forest ecosystems", + "Afforestation and ecological restoration data: planted forest area, survival rates, key ecological programs", + "Forest fire statistics: fire incidents, affected area, suppression outcomes" + ], + "zh": [ + "全国森林资源清查:各省森林面积、蓄积量及森林覆盖率", + "草地资源与状况监测:草地面积、质量等级、利用与退化率", + "湿地调查数据:湿地面积、类型、生态系统健康评估及动态变化", + "荒漠化监测:沙化土地面积、沙地动态及治理进展", + "野生动植物种群调查:重点保护物种数量及栖息地评估(大熊猫、东北虎等)", + "自然保护区与国家公园统计:保护区数量、面积及管理成效", + "林业经济数据:木材产量、非木质林产品产量及林业GDP贡献", + "森林碳汇估算:森林生态系统年度CO2吸收量", + "造林与生态修复数据:人工造林面积、成活率及重点生态工程", + "森林火灾统计:火灾起数、受害面积及扑救情况" + ] + } +} diff --git a/firstdata/sources/china/resources/mineral/china-cgas.json b/firstdata/sources/china/resources/mineral/china-cgas.json new file mode 100644 index 00000000..6b20e885 --- /dev/null +++ b/firstdata/sources/china/resources/mineral/china-cgas.json @@ -0,0 +1,74 @@ +{ + "id": "china-cgas", + "name": { + "en": "China Geological Survey", + "zh": "中国地质调查局" + }, + "description": { + "en": "The China Geological Survey (CGS) is the national geological survey agency under the Ministry of Natural Resources, responsible for conducting systematic geological investigations across China's territory and exclusive economic zone. CGS carries out national basic geological surveys, regional geological mapping at 1:250,000 scale, mineral resource exploration, hydrogeological assessments, and geological hazard surveys. It manages the National Geological Data Repository and publishes authoritative data on land resources, geological hazards, groundwater, mineral resource potential, and geochemical distribution. CGS findings directly support national land use planning, mineral resource policy, disaster prevention, and environmental protection strategies.", + "zh": "中国地质调查局是自然资源部直属的国家地质调查机构,承担全国陆域及专属经济区系统性地质调查工作。负责开展国家基础地质调查、1:25万区域地质测量、矿产资源勘查、水文地质评价和地质灾害调查,管理全国地质资料馆,发布土地资源、地质灾害、地下水、矿产资源潜力和地球化学分布等权威数据。中国地质调查局成果直接支撑国家国土空间规划、矿产资源政策、灾害防治和环境保护战略。" + }, + "website": "https://www.cgs.gov.cn/", + "data_url": "https://www.cgs.gov.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "resources", + "environment", + "science" + ], + "update_frequency": "annual", + "tags": [ + "中国地质调查局", + "china-geological-survey", + "cgs", + "地质调查", + "geological-survey", + "矿产资源勘查", + "mineral-exploration", + "地质灾害", + "geological-hazards", + "地下水", + "groundwater", + "水文地质", + "hydrogeology", + "区域地质", + "regional-geology", + "全国地质资料馆", + "national-geological-data-repository", + "土地资源", + "land-resources", + "地球化学", + "geochemistry", + "地质图", + "geological-map", + "地质构造", + "tectonic-structure", + "自然资源部", + "ministry-of-natural-resources" + ], + "data_content": { + "en": [ + "National basic geological surveys: systematic coverage of China's territory including regional geological mapping at 1:250,000 scale and 1:50,000 scale for key economic zones", + "Mineral resource potential assessments: evaluation reports on national mineral resource potential, reserve grades, and exploration findings organized by commodity type", + "Geological hazard inventory: national database of landslides, mudflows, collapses, ground subsidence, and land erosion risk zones by county", + "Hydrogeological surveys: groundwater resource assessments, aquifer mapping, spring discharge data, and groundwater quality monitoring results", + "Environmental geology reports: geological impacts on soil contamination, land degradation, coastal erosion, and urban geological risk assessment", + "National geological data repository (NGAC): comprehensive archive of geological survey data, drilling logs, geophysical exploration results, and geological maps accessible online", + "Geochemical baseline surveys: systematic soil and stream sediment geochemical data across 73 major drainage basins covering economic development zones", + "Marine geological surveys: seafloor topography, sediment distribution, gas hydrates, and marine mineral resource assessments in China's exclusive economic zone" + ], + "zh": [ + "国家基础地质调查:系统覆盖全国国土的地质调查,包括1:25万区域地质测量和重点经济区1:5万测量", + "矿产资源潜力评价:按矿种组织的全国矿产资源潜力、储量品级和勘查成果评价报告", + "地质灾害清单:按县分类的全国滑坡、泥石流、崩塌、地面沉降和水土流失风险区数据库", + "水文地质调查:地下水资源评价、含水层分布、泉流量数据和地下水水质监测结果", + "环境地质报告:土壤污染、土地退化、海岸侵蚀地质影响及城市地质风险评估", + "全国地质资料馆(NGAC):地质调查资料、钻孔记录、地球物理勘探成果和地质图在线综合档案", + "地球化学基准调查:覆盖73个主要流域和经济发展区的土壤及水系沉积物地球化学系统数据", + "海洋地质调查:中国专属经济区海底地形、沉积物分布、天然气水合物和海洋矿产资源评价" + ] + } +} diff --git a/firstdata/sources/china/resources/mineral/china-chinalco.json b/firstdata/sources/china/resources/mineral/china-chinalco.json new file mode 100644 index 00000000..f7939717 --- /dev/null +++ b/firstdata/sources/china/resources/mineral/china-chinalco.json @@ -0,0 +1,69 @@ +{ + "id": "china-chinalco", + "name": { + "en": "Aluminum Corporation of China (Chinalco)", + "zh": "中国铝业集团有限公司" + }, + "description": { + "en": "The Aluminum Corporation of China (Chinalco, 中国铝业集团) is a central state-owned enterprise under SASAC and the world's largest aluminium producer by capacity. Founded in 2001, Chinalco manages the full aluminium value chain from bauxite mining and alumina refining to aluminium smelting, processing, and downstream manufacturing, as well as diversified metals including copper, rare earths, and gallium. The group operates major mines and smelters in over 20 provinces and holds international assets in Guinea, Peru, Australia, and other countries. Chinalco's annual reports, production statistics, and sustainability disclosures provide authoritative data on China's aluminium and bauxite output, alumina refining capacity, electrolysis power consumption, and the country's position in global non-ferrous metal supply chains.", + "zh": "中国铝业集团有限公司(中铝集团)是国务院国资委直属中央企业,也是全球最大的铝生产商之一。成立于2001年,中铝集团管理铝产业全链条,涵盖铝土矿采矿、氧化铝精炼、电解铝冶炼、铝加工及下游制造,以及铜、稀土、镓等多元化金属业务。集团在国内20余个省份拥有大型矿山和冶炼设施,并在几内亚、秘鲁、澳大利亚等国持有国际资产。中铝集团的年度报告、生产统计和可持续发展披露提供了有关中国铝和铝土矿产量、氧化铝精炼产能、电解槽电耗及中国在全球有色金属供应链中地位的权威数据。" + }, + "website": "https://www.chinalco.com.cn", + "data_url": "https://www.chinalco.com.cn", + "api_url": null, + "authority_level": "commercial", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "resources", + "industry", + "economics" + ], + "update_frequency": "annual", + "tags": [ + "中国铝业", + "chinalco", + "铝", + "aluminium", + "铝土矿", + "bauxite", + "氧化铝", + "alumina", + "电解铝", + "electrolytic-aluminium", + "有色金属", + "nonferrous-metals", + "稀土", + "rare-earth", + "铜", + "copper", + "央企", + "central-soe", + "矿业", + "mining" + ], + "data_content": { + "en": [ + "Annual reports - financial results, production volumes, capital expenditure, and strategic outlook for Chinalco Group", + "Aluminium production statistics - smelting capacity, output of primary aluminium, alumina, and bauxite by region and facility", + "Electrolysis energy consumption - power consumption per tonne of aluminium, efficiency improvement targets and outcomes", + "Copper and diversified metals data - copper cathode production, rare earth output, and gallium/indium recoveries", + "Bauxite reserve and mine data - domestic and international bauxite reserve grades, mining volumes, and mine life estimates", + "Sustainability reports - carbon footprint, green electricity usage, water consumption, and waste reduction per unit of production", + "International asset portfolio - operational status and production data for overseas mining investments in Guinea, Peru, and Australia", + "Downstream processing statistics - aluminium foil, sheet, plate, and extrusion production for automotive, aerospace, and packaging applications", + "Research and innovation disclosures - R&D investment in low-carbon aluminium technology, inert anode development, and recycling" + ], + "zh": [ + "年度报告 - 中铝集团财务业绩、产量、资本支出和战略展望", + "铝产量统计 - 各地区和设施的冶炼产能及原铝、氧化铝、铝土矿产量", + "电解槽能耗 - 吨铝电耗及节能降耗目标和成果", + "铜及多元化金属数据 - 阴极铜产量、稀土产出及镓铟回收情况", + "铝土矿储量及矿山数据 - 国内外铝土矿储量品位、采矿量和矿山寿命预测", + "可持续发展报告 - 碳排放足迹、绿色电力使用、水耗及单位产品减废情况", + "海外资产组合 - 几内亚、秘鲁、澳大利亚等境外矿业投资的运营状况和产量数据", + "下游加工统计 - 铝箔、铝板、铝带和铝型材在汽车、航空航天和包装领域的产量", + "研发与创新披露 - 低碳铝技术、惰性阳极研发和再生铝回收的研发投入" + ] + } +} diff --git a/firstdata/sources/china/resources/mineral/china-cnia.json b/firstdata/sources/china/resources/mineral/china-cnia.json new file mode 100644 index 00000000..45987d09 --- /dev/null +++ b/firstdata/sources/china/resources/mineral/china-cnia.json @@ -0,0 +1,82 @@ +{ + "id": "china-cnia", + "name": { + "en": "China Nonferrous Metals Industry Association", + "zh": "中国有色金属工业协会" + }, + "description": { + "en": "The China Nonferrous Metals Industry Association (CNIA) is the national industry association representing China's nonferrous metals sector, the world's largest producer of aluminium, copper, zinc, lead, nickel, tin, and rare earths. CNIA publishes authoritative monthly and annual statistics on production volumes, consumption, imports and exports, prices, and enterprise performance for 10 major nonferrous metals. It tracks smelting capacity, energy consumption per unit of output, and environmental compliance across the sector. CNIA's data is essential for global commodity pricing, supply chain analysis, EV battery materials tracking, and green energy transition research.", + "zh": "中国有色金属工业协会是代表中国有色金属行业的全国性行业组织。中国是全球最大的铝、铜、锌、铅、镍、锡和稀土生产国。协会发布10种主要有色金属的产量、消费量、进出口量、价格及企业运营情况等权威月度和年度统计数据,并追踪全行业冶炼产能、单位产品能耗和环保合规情况。协会数据对全球大宗商品定价、供应链分析、新能源汽车电池材料追踪及绿色能源转型研究具有重要价值。" + }, + "website": "https://www.chinania.org.cn/", + "data_url": "https://www.chinania.org.cn/html/hangyetongji/chanyeshuju/", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "resources", + "industry", + "economics" + ], + "update_frequency": "monthly", + "tags": [ + "中国有色金属工业协会", + "cnia", + "china-nonferrous-metals-industry-association", + "有色金属", + "nonferrous-metals", + "铝", + "aluminium", + "铜", + "copper", + "锌", + "zinc", + "铅", + "lead", + "镍", + "nickel", + "锡", + "tin", + "稀土", + "rare-earth", + "钴", + "cobalt", + "锂", + "lithium", + "新能源电池", + "ev-battery-materials", + "冶炼产能", + "smelting-capacity", + "有色金属价格", + "nonferrous-metal-prices", + "大宗商品", + "commodity" + ], + "data_content": { + "en": [ + "Monthly production statistics - output of 10 major nonferrous metals: aluminium, copper, zinc, lead, nickel, tin, antimony, magnesium, titanium, and cobalt", + "Consumption data - domestic consumption of nonferrous metals by end-use sector (construction, electronics, automotive, packaging)", + "Import and export volumes - trade data for primary metals, alloys, scrap, and semi-finished products", + "Price indices - SHFE spot prices, long-term contract prices, and CNIA price benchmarks", + "Enterprise performance - revenue, profit, and capacity utilization of major smelters and fabricators", + "Energy consumption - unit energy intensity per tonne of metal produced, electrolysis efficiency", + "Environmental compliance - emissions, solid waste, and wastewater discharge statistics by sub-sector", + "Rare earth production and export quotas - monthly output by compound type and producing region", + "Lithium and battery materials - lithium carbonate, cobalt, and nickel sulfate supply chain data", + "Annual China Nonferrous Metals Industry Yearbook (中国有色金属工业年鉴)" + ], + "zh": [ + "月度产量统计 - 铝、铜、锌、铅、镍、锡、锑、镁、钛、钴等10种主要有色金属产量", + "消费数据 - 按最终用途行业(建筑、电子、汽车、包装)分类的有色金属国内消费量", + "进出口量 - 原生金属、合金、废料和半成品贸易数据", + "价格指数 - 上期所现货价格、长期合同价格及中国有色金属工业协会价格基准", + "企业运营 - 主要冶炼商和加工商的营业收入、利润及产能利用率", + "能耗数据 - 单位金属产品能耗强度、电解槽效率", + "环保合规 - 按子行业分类的排放量、固体废物及废水排放统计", + "稀土产量及出口配额 - 按化合物类型和产区分类的月度产量", + "锂和电池材料 - 碳酸锂、钴、硫酸镍供应链数据", + "中国有色金属工业年鉴" + ] + } +} diff --git a/firstdata/sources/china/resources/mineral/china-miit-rare-earth.json b/firstdata/sources/china/resources/mineral/china-miit-rare-earth.json index 20e43f13..d1a40fae 100644 --- a/firstdata/sources/china/resources/mineral/china-miit-rare-earth.json +++ b/firstdata/sources/china/resources/mineral/china-miit-rare-earth.json @@ -22,33 +22,33 @@ "update_frequency": "irregular", "tags": [ "稀土", - "rare earth", + "rare-earth", "生产配额", - "production quota", + "production-quota", "总量调控", - "total volume control", + "total-volume-control", "行业规范", - "industry standards", + "industry-standards", "稀土管理条例", - "rare earth management regulations", + "rare-earth-management-regulations", "产品追溯", - "product traceability", + "product-traceability", "工信部", - "MIIT", + "miit", "原材料工业司", - "Raw Materials Industry Department", + "raw-materials-industry-department", "稀土开采", - "rare earth mining", + "rare-earth-mining", "稀土冶炼", - "rare earth smelting", + "rare-earth-smelting", "稀土分离", - "rare earth separation", + "rare-earth-separation", "独居石", "monazite", "中国稀土集团", - "China Rare Earth Group", + "china-rare-earth-group", "北方稀土", - "Northern Rare Earth" + "northern-rare-earth" ], "data_content": { "en": [ diff --git a/firstdata/sources/china/resources/mineral/china-mnr-minerals.json b/firstdata/sources/china/resources/mineral/china-mnr-minerals.json index c4a3f7ff..40d800aa 100644 --- a/firstdata/sources/china/resources/mineral/china-mnr-minerals.json +++ b/firstdata/sources/china/resources/mineral/china-mnr-minerals.json @@ -24,12 +24,12 @@ "tags": [ "自然资源部", "ministry-of-natural-resources", - "MNR", + "mnr", "矿产资源", "mineral-resources", "稀土", "rare-earth", - "REE", + "ree", "稀土储量", "rare-earth-reserves", "开采配额", diff --git a/firstdata/sources/china/resources/mineral/china-nmsa.json b/firstdata/sources/china/resources/mineral/china-nmsa.json new file mode 100644 index 00000000..9e3c9b08 --- /dev/null +++ b/firstdata/sources/china/resources/mineral/china-nmsa.json @@ -0,0 +1,56 @@ +{ + "id": "china-nmsa", + "name": { + "en": "National Mine Safety Administration of China", + "zh": "国家矿山安全监察局" + }, + "description": { + "en": "China's National Mine Safety Administration (NMSA) is the central government authority responsible for mine safety inspection, accident investigation, and safety statistics for coal and non-coal mining operations nationwide. It publishes accident statistics, safety inspection reports, regulatory compliance data, and annual mine safety situation reports.", + "zh": "国家矿山安全监察局是负责矿山安全监察的中央政府机构,承担全国煤矿和非煤矿山的安全检查、事故调查和安全统计职责。发布矿山安全事故统计、安全检查报告、监管合规数据和年度矿山安全形势报告。" + }, + "website": "https://www.chinamine-safety.gov.cn", + "data_url": "https://www.chinamine-safety.gov.cn/zfxxgk/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "safety", + "mining", + "energy" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "mine-safety", + "coal-mining", + "accident-statistics", + "safety-inspection", + "nmsa", + "矿山安全", + "煤矿", + "事故统计", + "安全监察", + "workplace-safety", + "china" + ], + "data_content": { + "en": [ + "Mine accident statistics (coal and non-coal mining)", + "Safety inspection results and compliance data", + "Major accident investigation reports", + "Safety license and certification data", + "Regional mine safety performance statistics", + "Annual mine safety situation report", + "Hazardous gas and dust monitoring reports" + ], + "zh": [ + "矿山事故统计(煤矿和非煤矿山)", + "安全检查结果和合规数据", + "重大事故调查报告", + "安全许可和资质数据", + "各地区矿山安全绩效统计", + "年度矿山安全形势报告", + "有害气体和粉尘监测报告" + ] + } +} diff --git a/firstdata/sources/china/resources/ocean/china-nmdis.json b/firstdata/sources/china/resources/ocean/china-nmdis.json new file mode 100644 index 00000000..6a2380f2 --- /dev/null +++ b/firstdata/sources/china/resources/ocean/china-nmdis.json @@ -0,0 +1,81 @@ +{ + "id": "china-nmdis", + "name": { + "en": "National Marine Data and Information Service", + "zh": "国家海洋信息中心" + }, + "description": { + "en": "The National Marine Data and Information Service (NMDIS) is China's official national center for marine data collection, management, and dissemination, operating under the Ministry of Natural Resources. NMDIS manages the national ocean database integrating data from China's oceanographic survey vessels, coastal observation stations, Argo floats, ocean buoys, and satellite remote sensing systems. Its data holdings encompass sea surface and sub-surface temperature, salinity, currents, wave heights, sea ice extent, marine biodiversity observations, ocean pollution monitoring, and seabed topography. NMDIS publishes the China Ocean Yearbook and Marine Environmental Status Bulletin, providing annual comprehensive overviews of China's maritime environment, marine resources, and ocean economy. It also hosts the marine data sharing platform for research institutions and provides ocean data services to support navigation safety, climate research, disaster early warning, and marine resource management.", + "zh": "国家海洋信息中心(NMDIS)是自然资源部下属的中国官方海洋数据收集、管理和发布机构。NMDIS运营整合了中国海洋调查船、沿海观测站、Argo浮标、海洋浮标和卫星遥感系统数据的国家海洋数据库。数据资源涵盖海面和次表层温度、盐度、流速、浪高、海冰范围、海洋生物多样性观测、海洋污染监测和海底地形。NMDIS出版《中国海洋年鉴》和《中国海洋生态环境状况公报》,对中国海洋环境、海洋资源和海洋经济进行年度综合评估。NMDIS还为科研机构提供海洋数据共享平台,并提供海洋数据服务,支撑航行安全、气候研究、灾害预警和海洋资源管理。" + }, + "website": "https://www.nmdis.org.cn/", + "data_url": "https://mds.nmdis.org.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "environment", + "ocean", + "climate", + "resources" + ], + "update_frequency": "daily", + "tags": [ + "国家海洋信息中心", + "nmdis", + "national-marine-data", + "海洋数据", + "ocean-data", + "海洋环境", + "marine-environment", + "海洋年鉴", + "china-ocean-yearbook", + "海水温度", + "sea-surface-temperature", + "盐度", + "salinity", + "海浪", + "wave-height", + "海冰", + "sea-ice", + "海洋生物多样性", + "marine-biodiversity", + "海洋污染", + "marine-pollution", + "Argo浮标", + "argo-floats", + "海洋观测", + "ocean-observation", + "海底地形", + "seabed-topography", + "海洋气候", + "ocean-climate", + "海洋经济", + "marine-economy", + "海洋灾害", + "marine-disasters" + ], + "data_content": { + "en": [ + "Ocean temperature and salinity profiles: historical and real-time vertical profiles from research vessels, XBT casts, CTD sensors, and Argo floats across China's seas", + "Sea surface observations: gridded datasets of sea surface temperature (SST), sea surface height, and surface current velocity from satellite and buoy networks", + "Wave and tide data: significant wave height, wave period, and tidal level time series from coastal stations and offshore buoys", + "Sea ice data: annual and seasonal extent, concentration, and thickness of sea ice in the Bohai Sea, Yellow Sea, and polar regions from Chinese expeditions", + "Marine biodiversity: species distribution records, phytoplankton and zooplankton community surveys, and fishery resource assessments", + "Marine pollution monitoring: concentrations of inorganic nitrogen, phosphates, petroleum hydrocarbons, heavy metals, and plastics in Chinese coastal and offshore waters", + "China Ocean Yearbook: annual compendium of ocean economy statistics, marine industry output, port throughput, and maritime shipping data", + "Marine Environmental Status Bulletin: annual assessment of seawater quality grades, ecological health of coastal wetlands, and red tide/harmful algal bloom events" + ], + "zh": [ + "海洋温盐剖面:来自科考船、XBT投放、CTD传感器和Argo浮标的中国各海域历史及实时垂直剖面数据", + "海面观测:来自卫星和浮标网络的海面温度(SST)、海面高度和表层流速格点数据集", + "浪潮数据:沿海站和近海浮标的有效波高、波周期和潮位时间序列", + "海冰数据:来自中国极地科考的渤海、黄海海冰年度和季节性范围、密集度和厚度数据", + "海洋生物多样性:物种分布记录、浮游植物和浮游动物群落调查及渔业资源评估", + "海洋污染监测:中国近岸和近海水体中无机氮、磷酸盐、石油烃、重金属和塑料浓度", + "中国海洋年鉴:海洋经济统计、海洋产业产值、港口吞吐量和海上运输数据的年度汇编", + "中国海洋生态环境状况公报:海水水质等级、滨海湿地生态健康状况及赤潮/有害藻华事件年度评估" + ] + } +} diff --git a/firstdata/sources/china/resources/ocean/china-nsoas.json b/firstdata/sources/china/resources/ocean/china-nsoas.json new file mode 100644 index 00000000..f7612174 --- /dev/null +++ b/firstdata/sources/china/resources/ocean/china-nsoas.json @@ -0,0 +1,75 @@ +{ + "id": "china-nsoas", + "name": { + "en": "National Satellite Ocean Application Service", + "zh": "国家卫星海洋应用中心" + }, + "description": { + "en": "The National Satellite Ocean Application Service (NSOAS) is the specialized agency under China's Ministry of Natural Resources responsible for the operational application of ocean satellites and marine remote sensing data. NSOAS manages China's HY (Haiyang/Ocean) satellite series, including HY-1 and HY-2 satellites for ocean color observation, sea surface temperature, wind fields, and sea level measurement. It serves as the national center for ocean satellite data reception, processing, archiving, and distribution, providing remote sensing products to governmental agencies, research institutions, and international partners. NSOAS publishes ocean environmental monitoring data, satellite-derived marine datasets, and conducts application research in fishery monitoring, sea ice observation, and coastal zone management.", + "zh": "国家卫星海洋应用中心是自然资源部下属专业机构,负责海洋卫星和海洋遥感数据的业务化应用。中心负责管理中国海洋(HY)系列卫星,包括用于海洋水色观测、海面温度、风场和海面高度测量的HY-1和HY-2卫星。作为全国海洋卫星数据接收、处理、存档和分发国家中心,向政府部门、科研机构和国际合作伙伴提供遥感产品。中心发布海洋环境监测数据、卫星海洋数据集,并在渔业监测、海冰观测和海岸带管理等领域开展应用研究。" + }, + "website": "http://www.nsoas.org.cn", + "data_url": "http://www.nsoas.org.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "ocean", + "environment", + "climate", + "remote-sensing" + ], + "update_frequency": "daily", + "tags": [ + "国家卫星海洋应用中心", + "nsoas", + "national-satellite-ocean-application-service", + "海洋卫星", + "ocean-satellite", + "HY卫星", + "hy-satellite", + "haiyang-satellite", + "海洋遥感", + "ocean-remote-sensing", + "海面温度", + "sea-surface-temperature", + "sst", + "海洋水色", + "ocean-color", + "风场", + "wind-field", + "海平面", + "sea-level", + "海冰", + "sea-ice", + "渔业监测", + "fishery-monitoring", + "海岸带", + "coastal-zone", + "卫星数据", + "satellite-data", + "海洋环境监测", + "marine-environmental-monitoring" + ], + "data_content": { + "en": [ + "Ocean color data: chlorophyll-a concentration, suspended sediment, and ocean color products derived from HY-1 satellite imagery", + "Sea surface temperature: satellite-measured SST products covering China's sea areas and adjacent oceans", + "Sea surface wind fields: ocean wind speed and direction measurements from HY-2 microwave scatterometers", + "Sea surface height and waves: altimetry-derived sea level anomaly and significant wave height datasets", + "Sea ice monitoring: seasonal sea ice extent, concentration, and thickness data for polar and China's sea areas", + "Fishery resources monitoring: satellite-derived data supporting marine fishery stock assessment and fishing ground prediction", + "Coastal zone remote sensing: high-resolution satellite imagery and derived products for coastal land-sea interface monitoring" + ], + "zh": [ + "海洋水色数据:基于HY-1卫星图像的叶绿素a浓度、悬浮泥沙和海洋水色产品", + "海面温度:覆盖中国海域及邻近海洋的卫星海面温度产品", + "海面风场:HY-2微波散射计测量的海面风速和风向", + "海面高度与波浪:高度计反演的海面高度异常和有效波高数据集", + "海冰监测:极地和中国海域的季节性海冰范围、密集度和厚度数据", + "渔业资源监测:支持海洋渔业资源评估和渔场预报的卫星反演数据", + "海岸带遥感:用于海岸带陆海交互监测的高分辨率卫星影像及衍生产品" + ] + } +} diff --git a/firstdata/sources/china/resources/seismology/china-cea.json b/firstdata/sources/china/resources/seismology/china-cea.json new file mode 100644 index 00000000..4ddf1847 --- /dev/null +++ b/firstdata/sources/china/resources/seismology/china-cea.json @@ -0,0 +1,79 @@ +{ + "id": "china-cea", + "name": { + "en": "China Earthquake Administration", + "zh": "中国地震局" + }, + "description": { + "en": "The China Earthquake Administration (CEA) is the national government agency responsible for earthquake monitoring, disaster prevention, and seismic risk management in China. China lies on several major tectonic plates and fault systems, making it one of the world's most seismically active countries. CEA operates the China Seismograph Network — one of the largest in the world — and publishes authoritative earthquake catalog data, seismic intensity maps, ground motion parameters, and probabilistic seismic hazard assessments. It releases official reports on significant seismic events, maintains China's national seismic ground motion parameter zoning map (GB 18306), and provides historical earthquake data for scientific and engineering research. CEA is also responsible for earthquake early warning systems and publishes disaster assessment reports following major events.", + "zh": "中国地震局是负责全国地震监测、防震减灾和地震风险管理的国家政府机构。中国位于多条主要构造板块和断裂带之上,是全球地震活动最频繁的国家之一。中国地震局运营着全球规模最大的地震台网之一,发布权威地震目录数据、地震烈度图、地面运动参数及概率性地震危险性评估结果。局方发布重大地震事件官方报告,维护中国国家地震动参数区划图(GB 18306),并为科学研究和工程应用提供历史地震数据。中国地震局还负责地震预警系统建设,并在重大地震发生后发布灾害评估报告。" + }, + "website": "https://www.cea.gov.cn/", + "data_url": "https://www.cea.gov.cn/cea/dzpd/dzzt/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "environment", + "climate", + "statistics", + "governance" + ], + "update_frequency": "real-time", + "tags": [ + "中国地震局", + "china-earthquake-administration", + "cea", + "地震监测", + "earthquake-monitoring", + "地震目录", + "earthquake-catalog", + "地震烈度", + "seismic-intensity", + "地震预警", + "earthquake-early-warning", + "震源参数", + "source-parameters", + "地震动参数区划", + "seismic-ground-motion-zoning", + "防震减灾", + "earthquake-disaster-prevention", + "地震危险性", + "seismic-hazard", + "地震活动性", + "seismicity", + "地震台网", + "seismograph-network", + "地质灾害", + "geological-disaster", + "断层数据", + "fault-data" + ], + "data_content": { + "en": [ + "Earthquake catalog: real-time and historical records of earthquakes in China and surrounding regions, including magnitude, depth, epicenter location, and origin time", + "Seismic intensity maps: observed and modeled intensity maps for significant earthquake events across China", + "Ground motion parameters: peak ground acceleration (PGA), peak ground velocity, and spectral acceleration data for engineering applications", + "National seismic ground motion parameter zoning map (GB 18306): official seismic zoning standard used in building codes and infrastructure design", + "Probabilistic seismic hazard analysis: regional seismic hazard assessments and exceedance probability maps", + "Earthquake early warning data: performance metrics of the national earthquake early warning network", + "Fault database: geological and geophysical data on major active faults in China", + "Disaster assessment reports: post-earthquake rapid assessment reports for major events (M≥5.0)", + "Strong-motion records: acceleration time series from strong-motion seismograph stations across China", + "Seismic monitoring network: station inventory, coverage maps, and technical specifications of the China Seismograph Network" + ], + "zh": [ + "地震目录:中国及周边地区地震的实时和历史记录,包括震级、深度、震中位置和发震时刻", + "地震烈度图:中国重大地震事件的观测和模拟烈度分布图", + "地震动参数:工程应用中的地峰加速度(PGA)、峰值地面速度及反应谱加速度数据", + "国家地震动参数区划图(GB 18306):用于建筑法规和基础设施设计的官方地震区划标准", + "概率性地震危险性分析:区域地震危险性评估及超越概率图", + "地震预警数据:全国地震预警网络绩效指标", + "断层数据库:中国主要活动断层的地质和地球物理数据", + "灾害评估报告:重大地震事件(M≥5.0)震后快速评估报告", + "强震动记录:全国强震动台站加速度时程序列", + "地震监测台网:中国地震台网台站目录、覆盖范围图及技术规格" + ] + } +} diff --git a/firstdata/sources/china/resources/seismology/china-cenc.json b/firstdata/sources/china/resources/seismology/china-cenc.json new file mode 100644 index 00000000..81f0bc7c --- /dev/null +++ b/firstdata/sources/china/resources/seismology/china-cenc.json @@ -0,0 +1,79 @@ +{ + "id": "china-cenc", + "name": { + "en": "China Earthquake Networks Center", + "zh": "中国地震台网中心" + }, + "description": { + "en": "The China Earthquake Networks Center (CENC) is the operational hub of China's national seismic monitoring network, operating under the China Earthquake Administration (CEA). CENC manages the National Seismic Network (NSN), one of the most extensive seismograph networks in the world, comprising over 1,000 broadband seismic stations across China. It provides real-time earthquake monitoring, rapid earthquake parameter determination, and official earthquake notifications for earthquakes occurring in China and globally. CENC maintains China's authoritative earthquake catalog, including historical seismicity records dating back centuries, instrumental records since 1900, and real-time data for current seismic events. The center is the official source for earthquake early warning dissemination in China and supports national earthquake disaster prevention and emergency response.", + "zh": "中国地震台网中心(CENC)是中国地震局下属的国家地震监测网络运行中心,管理着全国地震监测网(NSN)——全球规模最大的宽频带地震台网之一,在全国设有逾千个台站。中心提供实时地震监测、快速地震参数测定,并对发生在中国及全球的地震发布官方地震通报。台网中心维护中国权威地震目录,收录数百年历史地震记录、1900年以来仪器记录及当前地震事件实时数据,是中国官方地震预警信息发布机构,同时支持国家防震减灾和应急响应工作。" + }, + "website": "https://www.cenc.ac.cn/", + "data_url": "https://www.cenc.ac.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "environment", + "climate", + "statistics", + "governance" + ], + "update_frequency": "real-time", + "tags": [ + "中国地震台网中心", + "cenc", + "china-earthquake-networks-center", + "地震目录", + "earthquake-catalog", + "实时地震监测", + "real-time-earthquake-monitoring", + "地震预警", + "earthquake-early-warning", + "地震台网", + "seismic-network", + "宽频带地震仪", + "broadband-seismograph", + "地震参数", + "earthquake-parameters", + "震源机制", + "focal-mechanism", + "地震烈度速报", + "rapid-intensity-report", + "历史地震", + "historical-earthquake", + "地震数据", + "seismic-data", + "防震减灾", + "earthquake-disaster-prevention", + "中国地震局", + "cea" + ], + "data_content": { + "en": [ + "Real-time earthquake catalog: continuously updated records of seismic events in China and worldwide, including magnitude, depth, epicenter coordinates, and origin time", + "Earthquake early warning alerts: automated rapid notification data for earthquakes above threshold magnitudes with estimated ground shaking intensity by region", + "Historical earthquake database: comprehensive catalog of felt earthquakes in China from historical records (pre-1900) and instrumental records (1900-present)", + "Seismic wave forms: raw and processed waveform data from national broadband seismic stations available for scientific research", + "Focal mechanism solutions: fault plane solutions and moment tensor data for moderate and strong earthquakes in China", + "Earthquake intensity rapid reports: ShakeMap-style rapid intensity assessment maps for significant earthquake events", + "National Seismic Network station data: real-time station status, seismograph performance metrics, and station location inventory", + "Seismicity statistics: monthly and annual earthquake frequency statistics by magnitude range, depth, and geographic region", + "Major earthquake event reports: official post-event summaries for significant earthquakes (M≥5.0) including sequence analysis and aftershock monitoring", + "Seismotectonic data: active fault mapping and seismic belt delineation for China's major tectonic zones" + ], + "zh": [ + "实时地震目录:持续更新的中国及全球地震事件记录,包括震级、深度、震中坐标和发震时刻", + "地震预警信息:超过预警震级阈值地震的自动快速通报数据,含分地区预估地面震动强度", + "历史地震数据库:中国有记录地震完整目录,涵盖历史文献记录(1900年前)和仪器记录(1900年至今)", + "地震波形数据:来自全国宽频带地震台站的原始和处理波形数据,可用于科学研究", + "震源机制解:中国中强地震的断层面解和矩张量数据", + "地震烈度速报:重大地震事件的ShakeMap式快速烈度评估图", + "全国地震台网台站数据:台站实时状态、地震计性能指标及台站位置目录", + "地震活动统计:按震级范围、深度和地理区域分类的月度和年度地震频次统计", + "重大地震事件报告:重大地震(M≥5.0)发震后官方总结,含序列分析和余震监测", + "地震构造数据:中国主要构造带活动断层分布和地震带划分" + ] + } +} diff --git a/firstdata/sources/china/resources/water/china-ches.json b/firstdata/sources/china/resources/water/china-ches.json new file mode 100644 index 00000000..f7c66aec --- /dev/null +++ b/firstdata/sources/china/resources/water/china-ches.json @@ -0,0 +1,67 @@ +{ + "id": "china-ches", + "name": { + "en": "China Hydraulic Engineering Society", + "zh": "中国水利学会" + }, + "description": { + "en": "The China Hydraulic Engineering Society (CHES, 中国水利学会) is a national academic organization founded in 1931, affiliated with the China Association for Science and Technology (CAST) and the Ministry of Water Resources. CHES is the premier professional society for hydraulic engineering, water conservancy, hydrology, and water resources management in China. It publishes the flagship academic journal 'Journal of Hydraulic Engineering' (水利学报) along with multiple specialized periodicals covering dam engineering, flood control, irrigation, hydropower, and water environment. CHES organizes major conferences and technical exchanges, and its publications and standards represent the highest academic authority for water-related engineering research in China.", + "zh": "中国水利学会(CHES)成立于1931年,是全国性学术团体,挂靠中国科学技术协会和水利部。中国水利学会是中国水利工程、水文学和水资源管理领域最权威的专业学术组织,出版旗舰学术期刊《水利学报》及多个涵盖坝工技术、防洪、灌溉、水电和水环境的专业刊物,组织重大学术会议和技术交流,其出版物和标准代表中国水利工程研究的最高学术权威。" + }, + "website": "http://www.ches.org.cn", + "data_url": "http://www.ches.org.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "water", + "environment", + "research" + ], + "update_frequency": "monthly", + "tags": [ + "中国水利学会", + "ches", + "水利工程", + "hydraulic-engineering", + "水资源", + "water-resources", + "水利学报", + "journal-of-hydraulic-engineering", + "防洪", + "flood-control", + "水电", + "hydropower", + "水文学", + "hydrology", + "灌溉", + "irrigation", + "大坝", + "dam-engineering" + ], + "data_content": { + "en": [ + "Journal of Hydraulic Engineering (水利学报) - bimonthly peer-reviewed journal covering hydraulic structures, river dynamics, groundwater, and water resource planning", + "Advances in Water Science (水科学进展) - academic journal on hydrology, water environment, and climate-water interactions", + "Hydro-Science and Engineering (水利水电技术) - technical research on dam safety, reservoir management, and hydropower", + "Technical standards and codes - hydraulic engineering design specifications, safety codes for dams and reservoirs", + "Annual conference proceedings - academic papers from the National Water Congress and specialized symposia", + "Flood control and drought relief research - methodology papers on flood forecasting, risk assessment, and disaster mitigation", + "Water environment protection data - research on river basin water quality, pollution control, and ecological flow requirements", + "Irrigation and drainage research - efficiency improvement data and case studies for farmland water management", + "Smart water conservancy developments - R&D outcomes on digital hydrology, IoT sensor networks, and AI in water management" + ], + "zh": [ + "《水利学报》 - 双月出版的同行评审期刊,涵盖水工结构、河流动力学、地下水和水资源规划", + "《水科学进展》 - 水文学、水环境及气候-水相互作用学术期刊", + "《水利水电技术》 - 坝工安全、水库运行和水电工程技术研究", + "技术标准和规范 - 水利工程设计规范、坝和水库安全技术标准", + "年会论文集 - 全国水利学术大会及专题研讨会学术论文", + "防洪抗旱研究 - 洪水预报、风险评估和减灾方法论文", + "水环境保护数据 - 流域水质、污染控制和生态流量需求研究", + "灌溉排水研究 - 农田水利管理效率提升数据和案例研究", + "智慧水利进展 - 数字水文、物联网传感器网络和人工智能水管理研究成果" + ] + } +} diff --git a/firstdata/sources/china/resources/water/china-chinawater.json b/firstdata/sources/china/resources/water/china-chinawater.json new file mode 100644 index 00000000..eb1ff2b2 --- /dev/null +++ b/firstdata/sources/china/resources/water/china-chinawater.json @@ -0,0 +1,67 @@ +{ + "id": "china-chinawater", + "name": { + "en": "China Water Resources Portal", + "zh": "中国水利网" + }, + "description": { + "en": "China Water Resources Portal (chinawater.com.cn) is the official online information platform affiliated with the Ministry of Water Resources of China, operated by China Water Resources Press (中国水利报社). It serves as a comprehensive data and information portal for China's water sector, publishing water resources bulletins, river basin management reports, flood and drought statistics, irrigation area data, hydraulic engineering project records, and policy documents. The portal provides public access to official water resources statistics and thematic data covering China's rivers, lakes, reservoirs, and water conservancy infrastructure.", + "zh": "中国水利网(chinawater.com.cn)是水利部主管、中国水利报社主办的官方水利行业信息平台,是中国水利领域综合数据与信息门户,发布水资源公报、流域管理报告、洪涝旱情统计、灌溉面积数据、水利工程项目记录及政策文件,为公众提供涵盖中国河流、湖泊、水库及水利基础设施的官方水资源统计与专题数据。" + }, + "data_content": { + "en": [ + "national water resources bulletins", + "flood and drought monitoring statistics", + "river basin management reports", + "irrigation area and water use data", + "hydraulic engineering project data", + "groundwater monitoring data", + "water quality assessment reports", + "reservoir storage statistics", + "water conservancy investment data", + "rural water supply data" + ], + "zh": [ + "全国水资源公报", + "洪涝旱情监测统计", + "流域管理报告", + "灌溉面积与用水数据", + "水利工程项目数据", + "地下水监测数据", + "水质评估报告", + "水库蓄水量统计", + "水利投资数据", + "农村供水数据" + ] + }, + "country": "CN", + "authority_level": "government", + "geographic_scope": "national", + "website": "https://www.chinawater.com.cn", + "data_url": "https://www.chinawater.com.cn", + "api_url": null, + "domains": [ + "environment", + "infrastructure" + ], + "tags": [ + "water-resources", + "hydrology", + "flood", + "drought", + "irrigation", + "水资源", + "水利", + "洪水", + "干旱", + "灌溉", + "水库", + "流域", + "水文", + "mwr", + "水利部", + "water-quality", + "groundwater" + ], + "update_frequency": "irregular" +} diff --git a/firstdata/sources/china/resources/water/china-crsri.json b/firstdata/sources/china/resources/water/china-crsri.json new file mode 100644 index 00000000..3d9e4212 --- /dev/null +++ b/firstdata/sources/china/resources/water/china-crsri.json @@ -0,0 +1,73 @@ +{ + "id": "china-crsri", + "name": { + "en": "Changjiang River Scientific Research Institute", + "zh": "长江科学院" + }, + "description": { + "en": "The Changjiang River Scientific Research Institute (CRSRI), also known as the Yangtze River Scientific Research Institute, is a state-level public research institution under the Changjiang Water Resources Commission of the Ministry of Water Resources of China. Founded in 1951 and headquartered in Wuhan, CRSRI is China's premier research center for Yangtze River basin water conservancy and hydropower. It conducts research on flood control, river dynamics, dam safety, soil erosion, water quality, ecological hydraulics, and geotechnical engineering for the Yangtze River system. CRSRI has provided key technical support for major Chinese water projects including the Three Gorges Dam, South-to-North Water Diversion, and numerous reservoir and flood control infrastructure projects. Its research outputs include hydrological data, river morphology monitoring, water quality assessments, and technical standards for Chinese water conservancy.", + "zh": "长江科学院(CRSRI)是水利部长江水利委员会直属的国家级公益性科研单位,1951年创建,总部位于武汉,是中国长江流域水利水电领域最重要的研究中心。主要研究方向包括防洪、河道动力学、大坝安全、水土流失、水质、生态水利学和岩土工程等。长江科学院为三峡大坝、南水北调工程及众多水库和防洪基础设施项目提供了重要技术支撑。研究成果包括水文数据、河道形态监测、水质评估及中国水利行业技术标准。" + }, + "website": "http://www.crsri.cn", + "data_url": "http://www.crsri.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "water", + "environment", + "infrastructure", + "geology" + ], + "update_frequency": "irregular", + "tags": [ + "长江科学院", + "crsri", + "changjiang-river-scientific-research-institute", + "yangtze-river", + "长江", + "水利", + "water-conservancy", + "防洪", + "flood-control", + "大坝安全", + "dam-safety", + "三峡", + "three-gorges", + "南水北调", + "south-to-north-water-diversion", + "水质", + "water-quality", + "水土流失", + "soil-erosion", + "河道动力学", + "river-dynamics", + "岩土工程", + "geotechnical-engineering", + "水文", + "hydrology" + ], + "data_content": { + "en": [ + "Yangtze River hydrological data: long-term streamflow records, flood peak data, sediment transport measurements, and hydrological analysis for major stations along the Yangtze", + "River morphology and dynamics research: channel evolution monitoring, bank erosion assessments, bed material sampling, and flow regime analysis for the Yangtze River system", + "Dam and reservoir safety research: structural monitoring data, seepage analysis, slope stability assessments, and safety standards for large Chinese hydraulic structures", + "Flood control and disaster prevention: flood routing models, inundation mapping, levee safety evaluations, and emergency response technical support for the Yangtze basin", + "Water quality and aquatic ecology: water quality monitoring data, pollution source assessments, aquatic biodiversity surveys, and ecological restoration research", + "Soil and water conservation: erosion measurement data, watershed management research, and soil loss estimation models for the upper Yangtze basin", + "Geotechnical engineering research: foundation design for hydraulic structures, underground engineering, and slope engineering data and standards", + "Technical standards and specifications: national and industry technical standards for Chinese water conservancy and hydropower engineering" + ], + "zh": [ + "长江水文数据:长江干流主要水文站的长期径流记录、洪峰数据、泥沙输移测量和水文分析", + "河道形态与动力研究:河道演变监测、岸线侵蚀评估、床沙采样和水流条件分析", + "大坝与水库安全研究:结构监测数据、渗流分析、边坡稳定评价及中国大型水工建筑物安全标准", + "防洪减灾:洪水演进模型、淹没范围图、堤防安全评估及长江流域应急响应技术支撑", + "水质与水生态:水质监测数据、污染源评估、水生生物多样性调查和生态修复研究", + "水土保持:水蚀量测量数据、小流域综合治理研究和金沙江上游土壤侵蚀模型", + "岩土工程研究:水工建筑物基础设计、地下工程和边坡工程数据及标准", + "技术标准规范:中国水利水电工程国家和行业技术标准" + ] + } +} diff --git a/firstdata/sources/china/resources/water/china-hrc.json b/firstdata/sources/china/resources/water/china-hrc.json new file mode 100644 index 00000000..0548977e --- /dev/null +++ b/firstdata/sources/china/resources/water/china-hrc.json @@ -0,0 +1,69 @@ +{ + "id": "china-hrc", + "name": { + "en": "Huai River Water Resources Commission", + "zh": "水利部淮河水利委员会" + }, + "description": { + "en": "The Huai River Water Resources Commission (HRC) is a basin-level water authority under the Ministry of Water Resources of China, responsible for the unified governance and management of the Huai River basin. The Huai River basin, located between the Yellow River and the Yangtze River, is one of the most densely populated and agriculturally productive regions in China. The HRC publishes hydrological monitoring data, annual water resources bulletins, flood control statistics, water quality assessments, irrigation water usage data, and basin-wide water allocation records, covering the provinces of Henan, Anhui, Jiangsu, and Shandong.", + "zh": "水利部淮河水利委员会(淮委)是水利部直属的流域管理机构,负责淮河流域的统一管理与治理。淮河流域位于黄河与长江之间,是中国人口最稠密、农业最发达的地区之一。淮委发布水文监测数据、年度水资源公报、防汛统计、水质评估、灌溉用水数据及流域水量分配记录,覆盖河南、安徽、江苏、山东等省份。" + }, + "data_content": { + "en": [ + "Huai River basin hydrological monitoring data", + "annual water resources bulletins", + "flood control and disaster statistics", + "water quality assessment reports", + "irrigation water usage data", + "basin water allocation records", + "reservoir and flood detention basin data", + "soil and water conservation data", + "groundwater monitoring data", + "water conservancy infrastructure records" + ], + "zh": [ + "淮河流域水文监测数据", + "年度水资源公报", + "防汛抗灾统计", + "水质评估报告", + "灌溉用水数据", + "流域水量分配记录", + "水库与蓄滞洪区数据", + "水土保持数据", + "地下水监测数据", + "水利基础设施记录" + ] + }, + "country": "CN", + "authority_level": "government", + "geographic_scope": "subnational", + "website": "http://www.hrc.gov.cn", + "data_url": "http://www.hrc.gov.cn", + "api_url": null, + "domains": [ + "environment", + "infrastructure", + "agriculture" + ], + "tags": [ + "water-resources", + "hydrology", + "huai-river", + "flood", + "irrigation", + "water-quality", + "淮河", + "水文", + "水资源", + "防汛", + "灌溉", + "流域管理", + "水利", + "hrc", + "淮委", + "河南", + "安徽", + "江苏" + ], + "update_frequency": "irregular" +} diff --git a/firstdata/sources/china/resources/water/china-hwcc.json b/firstdata/sources/china/resources/water/china-hwcc.json new file mode 100644 index 00000000..610c096f --- /dev/null +++ b/firstdata/sources/china/resources/water/china-hwcc.json @@ -0,0 +1,67 @@ +{ + "id": "china-hwcc", + "name": { + "en": "Hai River Water Resources Commission", + "zh": "水利部海河水利委员会" + }, + "description": { + "en": "The Hai River Water Resources Commission (HWCC) is a basin-level water authority under the Ministry of Water Resources of China, responsible for unified governance and management of the Hai River basin, covering the Beijing-Tianjin-Hebei region and surrounding areas. The HWCC publishes hydrological monitoring data, flood and drought statistics, water resources bulletins, water quality assessments, groundwater monitoring, and basin-wide water allocation records. Its data covers the major river systems in the North China Plain including the Yongding River, Daqing River, and Ziya River systems.", + "zh": "水利部海河水利委员会(海委)是水利部直属的流域管理机构,负责海河流域的统一管理与治理,覆盖京津冀及周边地区。海委发布水文监测数据、洪涝旱情统计、水资源公报、水质评估、地下水监测及流域水量分配记录,数据涵盖华北平原主要水系,包括永定河、大清河、子牙河水系。" + }, + "data_content": { + "en": [ + "Hai River basin hydrological monitoring data", + "annual water resources bulletins", + "flood and drought monitoring statistics", + "water quality assessment reports", + "groundwater monitoring data", + "basin water allocation records", + "reservoir and dam operation data", + "water conservancy project records", + "soil and water conservation data", + "Beijing-Tianjin-Hebei regional water data" + ], + "zh": [ + "海河流域水文监测数据", + "年度水资源公报", + "洪涝旱情监测统计", + "水质评估报告", + "地下水监测数据", + "流域水量分配记录", + "水库大坝调度数据", + "水利工程记录", + "水土保持数据", + "京津冀地区水资源数据" + ] + }, + "country": "CN", + "authority_level": "government", + "geographic_scope": "subnational", + "website": "http://www.hwcc.gov.cn", + "data_url": "http://www.hwcc.gov.cn", + "api_url": null, + "domains": [ + "environment", + "infrastructure" + ], + "tags": [ + "water-resources", + "hydrology", + "hai-river", + "flood", + "groundwater", + "water-quality", + "海河", + "水文", + "水资源", + "防汛", + "地下水", + "流域管理", + "水利", + "hwcc", + "海委", + "京津冀", + "华北平原" + ], + "update_frequency": "irregular" +} diff --git a/firstdata/sources/china/resources/water/china-iwhr.json b/firstdata/sources/china/resources/water/china-iwhr.json new file mode 100644 index 00000000..ebb1c59a --- /dev/null +++ b/firstdata/sources/china/resources/water/china-iwhr.json @@ -0,0 +1,73 @@ +{ + "id": "china-iwhr", + "name": { + "en": "China Institute of Water Resources and Hydropower Research", + "zh": "中国水利水电科学研究院" + }, + "description": { + "en": "The China Institute of Water Resources and Hydropower Research (IWHR) is China's leading national research institution for water resources and hydropower engineering, directly affiliated with the Ministry of Water Resources. Founded in 1958, IWHR conducts authoritative research on flood control, drought mitigation, water supply, hydropower engineering, dam safety, and water ecology. The institute maintains comprehensive databases on China's river systems, reservoir operations, flood events, and water quality monitoring. IWHR publishes research data, technical standards, and annual reports on China's water resources situation, serving as the primary scientific authority for hydraulic engineering data in China.", + "zh": "中国水利水电科学研究院(IWHR)是中国水利部直属的国家级水利水电科研权威机构,成立于1958年。研究院在防洪抗旱、城乡供水、水电工程、大坝安全及水生态保护等领域开展系统性研究,维护着中国河流水系、水库运行、洪涝灾害及水质监测的综合数据库。IWHR发布科研数据、技术标准及中国水资源状况年度报告,是中国水利工程数据的主要科学权威来源。" + }, + "website": "http://www.iwhr.com/", + "data_url": "http://www.iwhr.com/", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "hydrology", + "water", + "environment", + "engineering" + ], + "update_frequency": "annual", + "tags": [ + "水利水电", + "water-resources", + "hydropower", + "防洪", + "flood-control", + "水库", + "reservoir", + "河流", + "river-systems", + "大坝安全", + "dam-safety", + "水质", + "water-quality", + "水资源年报", + "water-resources-annual-report", + "水利工程", + "hydraulic-engineering", + "旱涝灾害", + "drought-flood", + "水生态", + "water-ecology" + ], + "data_content": { + "en": [ + "River and basin hydrology: flow rates, runoff, and discharge data for major Chinese river systems", + "Reservoir operations: storage capacity, water levels, and operational data for major reservoirs", + "Flood and drought monitoring: historical and real-time event data, frequency analysis", + "Dam safety assessment: structural monitoring data and risk evaluation reports", + "Water quality: chemical and biological indicators for rivers and reservoirs", + "Hydropower statistics: installed capacity, power generation by hydro plants", + "Water resources allocation: inter-basin transfer data, water use efficiency metrics", + "Technical standards: hydraulic engineering standards and specifications", + "Research publications: peer-reviewed papers and technical reports on water science", + "Annual China Water Resources Bulletin: comprehensive national water resources assessment" + ], + "zh": [ + "河流流域水文:中国主要河流水系的流量、径流及排水数据", + "水库运行:主要水库库容、水位及运行数据", + "洪旱监测:历史及实时洪旱事件数据、频率分析", + "大坝安全评估:结构监测数据及风险评估报告", + "水质:河流与水库的理化指标及生物指标", + "水电统计:水电站装机容量及发电量数据", + "水资源配置:跨流域调水数据、用水效率指标", + "技术标准:水利工程标准与规范", + "科研成果:水利科学领域同行评审论文及技术报告", + "中国水资源公报:全国水资源状况综合年度评估" + ] + } +} diff --git a/firstdata/sources/china/resources/water/china-mwr.json b/firstdata/sources/china/resources/water/china-mwr.json new file mode 100644 index 00000000..2bb1cb8c --- /dev/null +++ b/firstdata/sources/china/resources/water/china-mwr.json @@ -0,0 +1,84 @@ +{ + "id": "china-mwr", + "name": { + "en": "Ministry of Water Resources of China - Water Resources Statistics", + "zh": "中华人民共和国水利部水资源统计" + }, + "description": { + "en": "Official water resources statistics published by China's Ministry of Water Resources, covering water resources assessment, water supply and consumption, flood control, drought relief, irrigation, and hydraulic engineering development. Includes annual China Water Resources Bulletins and comprehensive statistical yearbooks on water conservancy.", + "zh": "中华人民共和国水利部发布的官方水资源统计数据,涵盖水资源调查评价、供用水量、防洪抗旱、灌溉面积及水利工程建设发展状况。包括年度《中国水资源公报》和水利统计年鉴。" + }, + "website": "http://www.mwr.gov.cn/", + "data_url": "http://www.mwr.gov.cn/sj/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "environment", + "infrastructure", + "statistics" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "水利部", + "水资源", + "water-resources", + "ministry-of-water-resources", + "mwr", + "水资源公报", + "water-resources-bulletin", + "供水", + "water-supply", + "用水量", + "water-consumption", + "防洪", + "flood-control", + "灌溉", + "irrigation", + "水利工程", + "hydraulic-engineering", + "水库", + "reservoirs", + "河流", + "rivers", + "地下水", + "groundwater", + "降水量", + "precipitation", + "水利统计年鉴", + "water-conservancy-yearbook", + "旱情", + "drought", + "水文", + "hydrology" + ], + "data_content": { + "en": [ + "Annual China Water Resources Bulletin - total water resources volume by region", + "Surface water and groundwater resources assessment", + "Water supply statistics by source type (surface water, groundwater, other)", + "Water consumption by sector (agriculture, industry, household, ecological)", + "Irrigation area and farmland irrigation statistics", + "Reservoir and dam statistics by type and capacity", + "Flood control and disaster relief data", + "Drought monitoring and relief statistics", + "Hydraulic engineering construction investment and progress", + "Rural water supply coverage and safe drinking water data", + "Water conservancy statistical yearbook (annual)" + ], + "zh": [ + "年度《中国水资源公报》- 各地区水资源总量", + "地表水和地下水资源评价数据", + "分水源供水量统计(地表水、地下水、其他水源)", + "分行业用水量(农业、工业、生活、生态用水)", + "灌溉面积和耕地灌溉统计", + "水库大坝分类型和库容统计", + "防洪减灾数据", + "旱情监测与抗旱统计", + "水利工程建设投资与进度", + "农村供水覆盖率和安全饮水数据", + "水利统计年鉴(年度)" + ] + } +} diff --git a/firstdata/sources/china/resources/water/china-slwr.json b/firstdata/sources/china/resources/water/china-slwr.json new file mode 100644 index 00000000..cc2e0fc7 --- /dev/null +++ b/firstdata/sources/china/resources/water/china-slwr.json @@ -0,0 +1,69 @@ +{ + "id": "china-slwr", + "name": { + "en": "Songliao River Water Resources Commission", + "zh": "水利部松辽水利委员会" + }, + "description": { + "en": "The Songliao River Water Resources Commission (SLWRC) is a basin-level water authority under the Ministry of Water Resources of China, responsible for unified governance and management of the Songhua River and Liaohe River basins in Northeast China. The SLWRC publishes hydrological monitoring data, annual water resources bulletins, flood and ice-jam flood statistics, water quality assessments, permafrost hydrology data, and basin-wide water allocation records. Its data covers Northeast China including Heilongjiang, Jilin, Liaoning and Inner Mongolia, featuring unique cold-region hydrology data.", + "zh": "水利部松辽水利委员会(松辽委)是水利部直属的流域管理机构,负责松花江流域和辽河流域的统一管理与治理。松辽委发布水文监测数据、年度水资源公报、洪涝冰凌统计、水质评估、冻土水文数据及流域水量分配记录,覆盖黑龙江、吉林、辽宁及内蒙古等东北地区,提供独特的寒区水文数据。" + }, + "data_content": { + "en": [ + "Songhua and Liaohe River basin hydrological data", + "annual water resources bulletins", + "flood and ice-jam flood statistics", + "water quality assessment reports", + "cold-region hydrology and permafrost data", + "basin water allocation records", + "reservoir storage and operation data", + "water ecology monitoring data", + "groundwater monitoring data", + "northeast China regional water data" + ], + "zh": [ + "松花江与辽河流域水文数据", + "年度水资源公报", + "洪涝冰凌统计", + "水质评估报告", + "寒区水文与冻土数据", + "流域水量分配记录", + "水库蓄水与调度数据", + "水生态监测数据", + "地下水监测数据", + "东北地区区域水资源数据" + ] + }, + "country": "CN", + "authority_level": "government", + "geographic_scope": "subnational", + "website": "http://www.slwr.gov.cn", + "data_url": "http://www.slwr.gov.cn/gbjb.jhtml", + "api_url": null, + "domains": [ + "environment", + "infrastructure" + ], + "tags": [ + "water-resources", + "hydrology", + "songhua-river", + "liaohe-river", + "flood", + "ice-jam", + "water-quality", + "松花江", + "辽河", + "水文", + "水资源", + "防汛", + "冰凌", + "寒区", + "流域管理", + "水利", + "slwr", + "松辽委", + "东北" + ], + "update_frequency": "irregular" +} diff --git a/firstdata/sources/china/resources/water/china-yrcc.json b/firstdata/sources/china/resources/water/china-yrcc.json new file mode 100644 index 00000000..514f05e6 --- /dev/null +++ b/firstdata/sources/china/resources/water/china-yrcc.json @@ -0,0 +1,67 @@ +{ + "id": "china-yrcc", + "name": { + "en": "Yellow River Conservancy Commission", + "zh": "水利部黄河水利委员会" + }, + "description": { + "en": "The Yellow River Conservancy Commission (YRCC) is a basin-level water authority directly under the Ministry of Water Resources of China, responsible for unified management and governance of the Yellow River basin. The YRCC publishes hydrological monitoring data, annual water resources bulletins, flood control reports, sediment transport statistics, water quality assessments, ecological flow data, and basin-wide water allocation records. It maintains official records on Yellow River water levels, flow volumes, reservoir operations, and soil erosion, serving as the authoritative data source for China's second longest river.", + "zh": "水利部黄河水利委员会(黄委)是水利部直属的流域管理机构,负责黄河流域的统一管理与治理。黄委发布水文监测数据、年度水资源公报、防汛报告、泥沙输移统计、水质评估、生态流量数据及流域水量分配记录,是黄河水位、流量、水库调度、水土保持的权威数据来源,为中国第二长河提供官方数据服务。" + }, + "data_content": { + "en": [ + "Yellow River hydrological monitoring data", + "annual water resources bulletins", + "flood control and drought relief statistics", + "sediment transport and soil erosion data", + "water quality assessment reports", + "ecological flow monitoring data", + "basin water allocation records", + "reservoir storage and operation data", + "groundwater monitoring data", + "water conservancy project data" + ], + "zh": [ + "黄河水文监测数据", + "年度水资源公报", + "防汛抗旱统计", + "泥沙输移与水土流失数据", + "水质评估报告", + "生态流量监测数据", + "流域水量分配记录", + "水库蓄水与调度数据", + "地下水监测数据", + "水利工程数据" + ] + }, + "country": "CN", + "authority_level": "government", + "geographic_scope": "subnational", + "website": "http://www.yrcc.gov.cn", + "data_url": "http://www.yrcc.gov.cn", + "api_url": null, + "domains": [ + "environment", + "infrastructure" + ], + "tags": [ + "water-resources", + "hydrology", + "yellow-river", + "flood", + "sediment", + "water-quality", + "黄河", + "水文", + "水资源", + "防汛", + "泥沙", + "流域管理", + "水利", + "yrcc", + "黄委", + "水库", + "生态流量" + ], + "update_frequency": "irregular" +} diff --git a/firstdata/sources/china/technology/china-beidou.json b/firstdata/sources/china/technology/china-beidou.json new file mode 100644 index 00000000..6f20ccf2 --- /dev/null +++ b/firstdata/sources/china/technology/china-beidou.json @@ -0,0 +1,76 @@ +{ + "id": "china-beidou", + "name": { + "en": "BeiDou Navigation Satellite System", + "zh": "北斗卫星导航系统" + }, + "description": { + "en": "The BeiDou Navigation Satellite System (BDS) is China's independently developed global satellite navigation system, managed by the China Satellite Navigation Office (CSNO) under the State Council. Fully operational since 2020 with 35 satellites, BDS is one of the four global navigation systems recognized by the United Nations and provides positioning, navigation, timing, and short message communication services worldwide. The official website publishes signal interface control documents, system performance standards, open service performance reports, satellite constellation status, and technical specifications for receivers and applications. BDS data are essential for precision agriculture, surveying, transportation, disaster relief, and maritime navigation. The system achieves positioning accuracy of ≤1.5m horizontal globally (≤1m in Asia-Pacific) and supports high-precision augmented services for centimeter-level accuracy.", + "zh": "北斗卫星导航系统(BDS)是中国自主研发的全球卫星导航系统,由国务院下设的中国卫星导航系统管理办公室负责运营。北斗系统于2020年全面建成,部署35颗卫星,是联合国认可的四大全球导航系统之一,向全球用户提供定位、导航、授时和短报文通信服务。官网发布信号接口控制文件、系统性能标准、开放服务性能评估报告、卫星星座状态和接收机及应用技术规范。北斗数据广泛应用于精准农业、测量测绘、交通运输、抗灾救灾和海上导航等领域。系统全球水平定位精度≤1.5米(亚太地区≤1米),并支持厘米级高精度增强服务。" + }, + "website": "http://www.beidou.gov.cn", + "data_url": "http://www.beidou.gov.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "global", + "domains": [ + "technology", + "science", + "infrastructure" + ], + "update_frequency": "irregular", + "tags": [ + "北斗", + "beidou", + "bds", + "卫星导航", + "satellite-navigation", + "gnss", + "全球导航卫星系统", + "global-navigation-satellite-system", + "定位", + "positioning", + "导航", + "navigation", + "授时", + "timing", + "短报文", + "short-message-communication", + "信号接口控制文件", + "interface-control-document", + "icd", + "系统性能", + "system-performance", + "卫星星座", + "satellite-constellation", + "精准定位", + "precision-positioning", + "高精度增强", + "high-precision-augmentation", + "中国卫星导航系统管理办公室", + "csno", + "精准农业", + "precision-agriculture", + "联合国", + "united-nations" + ], + "data_content": { + "en": [ + "Signal interface control documents (ICD): detailed technical specifications for BDS open service signals (B1I, B1C, B2a, B2b, B3I), including signal structure, modulation schemes, navigation message formats, and ranging code parameters for receiver developers and researchers", + "System performance reports: annual and quarterly open service performance assessment reports covering positioning accuracy, availability, continuity, and integrity metrics for the global and Asia-Pacific service areas", + "Satellite constellation status: real-time and historical information on the operational status of BDS satellites including GEO, IGSO, and MEO satellites, health status, and signal-in-space range error (SISRE) data", + "Technical standards and specifications: national standards and industry standards for BDS receivers, applications, testing methods, and compatibility with other GNSS systems (GPS, GLONASS, Galileo)", + "Official announcements and policy documents: notices of satellite maneuvers, signal outages, system updates, new service launches, and policy documents governing BDS technology export and application development", + "Application development resources: technical reference materials, development kits documentation, and guidelines for integrating BDS into smart transportation, precision agriculture, maritime navigation, and emergency response systems" + ], + "zh": [ + "信号接口控制文件(ICD):北斗开放服务信号(B1I、B1C、B2a、B2b、B3I)的详细技术规范,包括信号结构、调制方案、导航电文格式和测距码参数,供接收机开发商和研究人员使用", + "系统性能报告:年度和季度开放服务性能评估报告,涵盖全球和亚太服务区的定位精度、可用性、连续性和完整性指标", + "卫星星座状态:北斗GEO、IGSO和MEO卫星的实时和历史运行状态信息,包括卫星健康状态和空间信号测距误差(SISRE)数据", + "技术标准和规范:北斗接收机、应用、测试方法及与其他GNSS系统(GPS、GLONASS、Galileo)兼容性的国家标准和行业标准", + "官方公告和政策文件:卫星机动、信号中断、系统更新、新服务开通的通知,以及北斗技术出口和应用开发管理政策文件", + "应用开发资源:将北斗集成到智慧交通、精准农业、海上导航和应急响应系统的技术参考资料、开发套件文档和集成指南" + ] + } +} diff --git a/firstdata/sources/china/technology/china-caai.json b/firstdata/sources/china/technology/china-caai.json new file mode 100644 index 00000000..593275aa --- /dev/null +++ b/firstdata/sources/china/technology/china-caai.json @@ -0,0 +1,80 @@ +{ + "id": "china-caai", + "name": { + "en": "Chinese Association for Artificial Intelligence", + "zh": "中国人工智能学会" + }, + "description": { + "en": "The Chinese Association for Artificial Intelligence (CAAI) is China's national academic organization for artificial intelligence research, established in 1981 and supervised by the China Association for Science and Technology. CAAI represents over 40,000 individual members and more than 200 institutional members spanning academia, research institutes, and industry. It publishes the China Artificial Intelligence Development Report, AI industry statistics, and research on AI technology trends, policy frameworks, and application domains including computer vision, natural language processing, robotics, and intelligent systems. CAAI also maintains rankings of AI research outputs and talent concentration, and organizes China's premier AI academic conferences and competitions.", + "zh": "中国人工智能学会(CAAI)成立于1981年,是中国科学技术协会主管的全国性人工智能学术组织,拥有个人会员4万余名、团体会员200余家,覆盖高校、科研院所和企业。学会发布《中国人工智能发展报告》、AI产业统计数据及计算机视觉、自然语言处理、机器人、智能系统等AI技术趋势与政策研究报告。CAAI还维护人工智能科研成果和人才集聚排名,组织国内顶级AI学术会议和竞赛。" + }, + "website": "https://www.caai.cn", + "data_url": "https://www.caai.cn/index.php?s=/home/article/lists/category/baokan.html", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "technology", + "science", + "economics" + ], + "update_frequency": "annual", + "tags": [ + "中国人工智能学会", + "caai", + "chinese-association-for-artificial-intelligence", + "人工智能", + "artificial-intelligence", + "AI发展报告", + "ai-development-report", + "计算机视觉", + "computer-vision", + "自然语言处理", + "natural-language-processing", + "nlp", + "机器人", + "robotics", + "深度学习", + "deep-learning", + "机器学习", + "machine-learning", + "AI产业", + "ai-industry", + "智能系统", + "intelligent-systems", + "AI政策", + "ai-policy", + "AI人才", + "ai-talent", + "AI研究排名", + "ai-research-rankings", + "大模型", + "large-language-models", + "llm" + ], + "data_content": { + "en": [ + "China Artificial Intelligence Development Report: annual comprehensive assessment of China's AI research output, industry development, talent ecosystem, and policy environment", + "AI research rankings: institutional rankings by AI publication volume, patent counts, and citation impact across Chinese universities, research institutes, and companies", + "AI talent statistics: data on AI researchers, graduate students, and workforce distribution by region, specialization, and institution type", + "AI industry data: market size estimates, investment statistics, and enterprise distribution across key AI application domains", + "Technology trend reports: analyses of emerging AI technologies including large language models, computer vision, robotics, and autonomous systems in the Chinese context", + "AI competition results: outcomes and participant statistics from major Chinese AI competitions and benchmarks", + "AI academic conference proceedings: research papers from CAAI-organized conferences covering all major AI sub-fields", + "AI policy research: analysis of national AI development plans, regulatory frameworks, and standards initiatives", + "International AI cooperation: data on China's international AI research collaborations, co-publications, and technology exchange programs" + ], + "zh": [ + "中国人工智能发展报告:中国AI科研产出、产业发展、人才生态和政策环境年度综合评估", + "AI研究机构排名:中国高校、科研院所和企业AI论文发表量、专利数量及引用影响力排名", + "AI人才统计:AI研究人员、在读研究生及劳动力分布数据,按地区、专业方向和机构类型分类", + "AI产业数据:主要AI应用领域市场规模估算、投资统计和企业分布情况", + "技术趋势报告:大语言模型、计算机视觉、机器人及自动驾驶等新兴AI技术在中国的发展分析", + "AI竞赛成果:国内主要AI竞赛和基准测试成绩及参赛者统计", + "AI学术会议论文集:CAAI主办会议发表的涵盖AI各子领域的研究论文", + "AI政策研究:国家AI发展规划、监管框架和标准化工作分析", + "国际AI合作:中国国际AI研究合作、联合发表和技术交流项目数据" + ] + } +} diff --git a/firstdata/sources/china/technology/china-ccf.json b/firstdata/sources/china/technology/china-ccf.json new file mode 100644 index 00000000..3e57b7da --- /dev/null +++ b/firstdata/sources/china/technology/china-ccf.json @@ -0,0 +1,80 @@ +{ + "id": "china-ccf", + "name": { + "en": "China Computer Federation", + "zh": "中国计算机学会" + }, + "description": { + "en": "The China Computer Federation (CCF) is China's leading academic society for the computing field, established in 1962 under the China Association for Science and Technology. CCF serves over 100,000 members including researchers, engineers, and students across computer science and technology disciplines. CCF is best known internationally for the CCF Recommended International Academic Conference and Journal List (CCF-List), the authoritative grading system used by Chinese universities and research institutions to evaluate computer science publications. CCF also publishes the China Computer Science Almanac, annual computing talent reports, computing industry white papers, and the CCF Big Data report series, providing critical reference data for China's computing and IT research ecosystem.", + "zh": "中国计算机学会(CCF)是中国科学技术协会主管的计算领域权威学术组织,成立于1962年,拥有个人会员逾10万名,涵盖计算机科学与技术各学科的科研人员、工程师和学生。CCF在国际上以《中国计算机学会推荐国际学术会议和期刊目录》(CCF目录)著称,该目录是中国高校和科研机构评价计算机科学论文质量的权威分级体系。CCF还发布《中国计算机科学年鉴》、年度计算人才报告、计算产业白皮书和CCF大数据报告系列,为中国计算和IT研究生态系统提供重要参考数据。" + }, + "website": "https://www.ccf.org.cn", + "data_url": "https://www.ccf.org.cn/Academic_Evaluation/By_category/", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "technology", + "science", + "education" + ], + "update_frequency": "annual", + "tags": [ + "中国计算机学会", + "ccf", + "china-computer-federation", + "CCF推荐目录", + "ccf-recommended-list", + "计算机科学", + "computer-science", + "计算领域", + "computing", + "学术评价", + "academic-evaluation", + "期刊分级", + "journal-ranking", + "会议分级", + "conference-ranking", + "计算机科学年鉴", + "computer-science-almanac", + "IT人才", + "it-talent", + "大数据", + "big-data", + "信息技术", + "information-technology", + "软件工程", + "software-engineering", + "网络安全", + "cybersecurity", + "计算产业", + "computing-industry", + "中国IT", + "china-it" + ], + "data_content": { + "en": [ + "CCF Recommended International Academic Conference and Journal List (CCF-List): authoritative tiered ranking (A/B/C) of international CS conferences and journals used system-wide by Chinese academia for tenure, promotion, and funding decisions", + "China Computer Science Almanac: annual comprehensive statistics on computing research outputs, publications, patents, and academic workforce in China", + "Computing talent report: annual data on computer science education enrollment, graduation rates, postgraduate research students, and employment outcomes in China's computing sector", + "CCF Big Data report: analysis of big data technology adoption, market size, and industry applications in China", + "Computing industry white papers: assessments of key computing sub-fields including cloud computing, cybersecurity, chip design, operating systems, and open-source software in China", + "Top computer science institution rankings: institutional rankings for Chinese universities and research institutes based on publication quality and output using the CCF classification", + "Annual conference proceedings: collections of research papers from CCF-organized academic conferences covering all major computing disciplines", + "Open source ecosystem report: data on Chinese contributions to international open-source projects and domestic open-source community development", + "Technology roadmaps: strategic assessments of China's computing technology development priorities and innovation gaps" + ], + "zh": [ + "CCF推荐国际学术会议和期刊目录(CCF目录):国际计算机科学会议和期刊权威分级(A/B/C类),全面应用于中国高校和科研机构的职称评定、晋升考核和科研经费申请", + "中国计算机科学年鉴:中国计算机科研成果、论文发表、专利和学术人才年度综合统计", + "计算人才报告:中国计算机科学专业招生、毕业率、研究生及计算行业就业去向年度数据", + "CCF大数据报告:中国大数据技术应用、市场规模和产业应用分析", + "计算产业白皮书:云计算、网络安全、芯片设计、操作系统、开源软件等计算子领域评估", + "顶级计算机科学机构排名:基于CCF分类体系的中国高校和科研院所论文质量与产出排名", + "年度学术会议论文集:CCF主办的涵盖各主要计算学科的学术会议研究论文汇编", + "开源生态报告:中国对国际开源项目的贡献及国内开源社区发展情况数据", + "技术路线图:中国计算技术发展优先领域和创新差距战略评估" + ] + } +} diff --git a/firstdata/sources/china/technology/china-cmse.json b/firstdata/sources/china/technology/china-cmse.json new file mode 100644 index 00000000..af341b4a --- /dev/null +++ b/firstdata/sources/china/technology/china-cmse.json @@ -0,0 +1,55 @@ +{ + "id": "china-cmse", + "name": { + "en": "China Manned Space Engineering Office", + "zh": "中国载人航天工程办公室" + }, + "description": { + "en": "The China Manned Space Engineering Office (CMSE) is the official government body overseeing China's manned space program. It publishes authoritative announcements, mission data, technical reports, and statistics on China's crewed spaceflight missions, space station operations, and astronaut activities.", + "zh": "中国载人航天工程办公室(CMSE)是负责统筹管理中国载人航天工程的政府机构,发布载人航天任务、空间站运营、航天员活动的权威公告、任务数据和技术报告。" + }, + "website": "https://www.cmse.gov.cn", + "data_url": "https://www.cmse.gov.cn", + "api_url": null, + "country": "CN", + "domains": [ + "aerospace", + "space", + "technology", + "science" + ], + "geographic_scope": "national", + "update_frequency": "irregular", + "tags": [ + "china", + "manned-space", + "载人航天", + "space-station", + "中国空间站", + "shenzhou", + "神舟", + "tiangong", + "天宫", + "astronaut", + "航天员", + "spaceflight", + "aerospace" + ], + "data_content": { + "en": [ + "Mission Announcements - Official releases on crewed spaceflight missions including launch and return data", + "Space Station Operations - Status updates on China Space Station (Tiangong) modules and experiments", + "Astronaut Information - Profiles and activity reports for Chinese taikonauts", + "Technical Reports - Engineering and scientific reports from manned space missions", + "Statistics - Cumulative data on China's manned spaceflight program since 1992" + ], + "zh": [ + "任务公告 - 载人航天飞行任务(包括发射和返回数据)的官方发布", + "空间站运营 - 天宫空间站舱段和实验项目的状态更新", + "航天员信息 - 中国航天员档案和在轨活动报告", + "技术报告 - 载人航天任务工程和科学报告", + "统计数据 - 1992年以来中国载人航天工程的累积数据" + ] + }, + "authority_level": "government" +} diff --git a/firstdata/sources/china/technology/china-cnsa.json b/firstdata/sources/china/technology/china-cnsa.json new file mode 100644 index 00000000..36174b39 --- /dev/null +++ b/firstdata/sources/china/technology/china-cnsa.json @@ -0,0 +1,76 @@ +{ + "id": "china-cnsa", + "name": { + "en": "China National Space Administration", + "zh": "国家航天局" + }, + "description": { + "en": "The China National Space Administration (CNSA) is China's national space agency responsible for civil space activities, including satellite launches, deep space exploration, and international space cooperation. CNSA manages China's major space programs such as the Chang'e lunar exploration mission, Tianwen Mars mission, and Beidou Navigation Satellite System. It publishes open scientific data from space missions, satellite remote sensing data, lunar and planetary exploration results, and space science experiment datasets. CNSA also oversees the China Space Science Data Center and coordinates with the National Remote Sensing Center of China (NRSCC) to provide earth observation data for resource management, disaster monitoring, and environmental protection applications.", + "zh": "国家航天局(CNSA)是中国负责民用航天活动的国家航天机构,业务涵盖卫星发射、深空探测及国际航天合作。国家航天局主管嫦娥月球探测、天问火星探测和北斗导航卫星系统等重大航天工程,发布航天任务开放科学数据、卫星遥感数据、月球和行星探测成果及空间科学实验数据集。同时,国家航天局负责监管中国空间科学数据中心,并与国家遥感中心协作,为资源管理、灾害监测和环境保护提供对地观测数据。" + }, + "website": "https://www.cnsa.gov.cn/", + "data_url": "https://www.cnsa.gov.cn/n6758823/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "technology", + "aerospace", + "environment" + ], + "update_frequency": "irregular", + "tags": [ + "国家航天局", + "cnsa", + "china-national-space-administration", + "航天数据", + "space-data", + "嫦娥", + "chang'e", + "月球探测", + "lunar-exploration", + "天问", + "tianwen", + "火星探测", + "mars-mission", + "卫星遥感", + "satellite-remote-sensing", + "北斗", + "beidou", + "深空探测", + "deep-space-exploration", + "对地观测", + "earth-observation", + "空间科学", + "space-science", + "航天工程", + "space-engineering", + "遥感数据", + "remote-sensing-data", + "中国航天", + "china-space-program" + ], + "data_content": { + "en": [ + "Lunar exploration data: scientific datasets from Chang'e missions including topographic maps, mineral composition surveys, and regolith samples analysis", + "Mars exploration data: surface imagery, atmospheric and geological data from Tianwen-1 and Zhurong rover", + "Satellite remote sensing data: multispectral and hyperspectral imagery from China's resource, environment, and ocean observation satellites", + "Earth observation products: land use mapping, disaster assessment imagery, and environmental monitoring data from NRSCC", + "Space science experiments: microgravity research data and life science experiment results from China's space station (Tiangong)", + "Navigation satellite data: Beidou system performance metrics, positioning accuracy reports, and open service interface documents", + "Deep space mission telemetry: mission status, trajectory data, and engineering parameters for ongoing and completed missions", + "International cooperation datasets: jointly produced data from bilateral agreements with ESA, ROSCOSMOS, and other space agencies" + ], + "zh": [ + "月球探测数据:嫦娥系列任务科学数据集,包括地形图、矿物成分调查和月壤样品分析", + "火星探测数据:天问一号和祝融号火星车的地表图像、大气和地质数据", + "卫星遥感数据:中国资源、环境和海洋观测卫星的多光谱和高光谱图像", + "对地观测产品:国家遥感中心提供的土地利用制图、灾害评估影像和环境监测数据", + "空间科学实验:中国空间站(天宫)的微重力研究数据和生命科学实验成果", + "导航卫星数据:北斗系统性能指标、定位精度报告和开放服务接口文档", + "深空任务遥测:在轨和已完成任务的状态、轨道数据及工程参数", + "国际合作数据集:与欧空局、俄罗斯航天国家集团等航天机构双边协议共同产出的数据" + ] + } +} diff --git a/firstdata/sources/china/technology/china-shenzhen-stic.json b/firstdata/sources/china/technology/china-shenzhen-stic.json new file mode 100644 index 00000000..5e77e1fa --- /dev/null +++ b/firstdata/sources/china/technology/china-shenzhen-stic.json @@ -0,0 +1,65 @@ +{ + "id": "china-shenzhen-stic", + "name": { + "en": "Shenzhen Science, Technology and Innovation Commission", + "zh": "深圳市科技创新局" + }, + "description": { + "en": "The Shenzhen Science, Technology and Innovation Commission (formerly Shenzhen Science and Technology Innovation Committee) is the municipal government agency responsible for science, technology, and innovation policy in Shenzhen, China's foremost innovation city. The commission oversees R&D funding, high-tech enterprise recognition, technology incubators, and innovation ecosystem development. It publishes data on R&D expenditure, patent applications, high-tech enterprise statistics, technology project funding, and science park performance. Shenzhen's innovation data is critical for understanding China's technology industry development, particularly in areas like AI, semiconductors, telecommunications, and biotechnology.", + "zh": "深圳市科技创新局(原深圳市科技创新委员会)是负责深圳市科学技术和创新政策的市级政府部门。深圳是中国最具创新活力的城市,该局负责研发资金管理、高新技术企业认定、科技孵化器和创新生态系统建设。发布研发投入、专利申请、高新技术企业统计、科技项目资助和科技园区运营等数据。深圳的科技创新数据对了解中国科技产业发展,特别是人工智能、半导体、通信和生物技术等领域具有重要价值。" + }, + "website": "https://stic.sz.gov.cn", + "data_url": "https://stic.sz.gov.cn/xxgk/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "subnational", + "domains": [ + "technology", + "innovation", + "research" + ], + "update_frequency": "quarterly", + "tags": [ + "深圳科技", + "shenzhen-technology", + "深圳创新", + "shenzhen-innovation", + "研发投入", + "r&d-expenditure", + "高新技术企业", + "high-tech-enterprise", + "科技创新", + "science-and-technology-innovation", + "专利申请", + "patent-applications", + "科技项目", + "technology-projects", + "深圳高新区", + "shenzhen-hi-tech-zone", + "鲲鹏计划", + "kunpeng-program", + "深圳科技园", + "shenzhen-science-park" + ], + "data_content": { + "en": [ + "R&D expenditure: annual R&D spending by sector, enterprise size, and research type in Shenzhen", + "High-tech enterprises: recognition lists, total count, and industry distribution of national high-tech enterprises in Shenzhen", + "Patent statistics: patent applications, grants, and technology transfer data for Shenzhen enterprises and institutions", + "Technology project funding: government-funded science and technology projects, grant amounts, and outcomes", + "Innovation platforms: key laboratories, engineering research centers, and technology incubator performance data", + "Science parks: output, employment, and revenue data for Shenzhen's science and technology parks", + "Talent programs: science and technology talent support program data, including Kunpeng and Peacock talent plans" + ], + "zh": [ + "研发投入:按行业、企业规模和研究类型分类的深圳年度研发支出", + "高新技术企业:深圳国家高新技术企业认定名单、总数量和行业分布", + "专利统计:深圳企业和机构的专利申请、授权和技术转让数据", + "科技项目资助:政府资助的科技项目、拨款金额和成果", + "创新平台:重点实验室、工程研究中心和科技孵化器运营数据", + "科技园区:深圳科技园区的产值、就业和营收数据", + "人才计划:鲲鹏计划、孔雀计划等科技人才支持计划数据" + ] + } +} diff --git a/firstdata/sources/china/technology/digital_economy/china-national-data-bureau.json b/firstdata/sources/china/technology/digital_economy/china-national-data-bureau.json index e1b42c5f..fd02ca96 100644 --- a/firstdata/sources/china/technology/digital_economy/china-national-data-bureau.json +++ b/firstdata/sources/china/technology/digital_economy/china-national-data-bureau.json @@ -14,38 +14,38 @@ "authority_level": "government", "country": "CN", "domains": [ - "digital_economy", - "data_governance", - "digital_infrastructure" + "digital-economy", + "data-governance", + "digital-infrastructure" ], "geographic_scope": "national", "update_frequency": "irregular", "tags": [ "国家数据局", - "National Data Administration", - "NDA", + "national-data-administration", + "nda", "数据要素", - "data elements", + "data-elements", "数据要素市场", - "data element market", + "data-element-market", "数字中国", - "Digital China", + "digital-china", "数字经济", - "digital economy", + "digital-economy", "公共数据资源", - "public data resources", + "public-data-resources", "数据登记平台", - "data registration platform", + "data-registration-platform", "数据治理", - "data governance", + "data-governance", "数据基础设施", - "data infrastructure", + "data-infrastructure", "数据标注", - "data annotation", + "data-annotation", "数据流通", - "data circulation", + "data-circulation", "政务数据", - "government data" + "government-data" ], "data_content": { "en": [ diff --git a/firstdata/sources/china/technology/industry-associations/china-cagis.json b/firstdata/sources/china/technology/industry-associations/china-cagis.json new file mode 100644 index 00000000..f8eac411 --- /dev/null +++ b/firstdata/sources/china/technology/industry-associations/china-cagis.json @@ -0,0 +1,57 @@ +{ + "id": "china-cagis", + "name": { + "en": "China Association for Geographic Information Industry", + "zh": "中国地理信息产业协会" + }, + "description": { + "en": "The China Association for Geographic Information Industry (CAGIS) is the national industry association for geospatial information in China, supervised by the Ministry of Natural Resources. CAGIS publishes the annual China Geographic Information Industry Development Report, industry scale and revenue statistics, enterprise rankings (Top 100 GIS enterprises), professional qualification data, and technical standards covering surveying, mapping, remote sensing, GIS, satellite navigation, and location-based services. It is an authoritative source for China's geospatial industry size, enterprise landscape, and technology adoption trends.", + "zh": "中国地理信息产业协会(CAGIS)是自然资源部主管的全国性地理信息行业协会。协会发布年度《中国地理信息产业发展报告》、产业规模与营收统计、企业百强排名、专业资质数据及涵盖测绘、遥感、地理信息系统、卫星导航与位置服务的技术标准,是中国地理信息产业规模、企业格局和技术应用趋势的权威数据来源。" + }, + "website": "https://www.cagis.org.cn", + "data_url": "https://www.cagis.org.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "update_frequency": "annual", + "domains": [ + "geographic-information", + "technology", + "industry-associations", + "standards" + ], + "tags": [ + "china", + "cagis", + "地理信息", + "gis", + "geospatial", + "remote-sensing", + "遥感", + "surveying", + "测绘", + "satellite-navigation", + "卫星导航", + "location-services", + "位置服务", + "industry-association", + "行业协会" + ], + "data_content": { + "en": [ + "China Geographic Information Industry Development Report - Annual report on industry scale, growth, structure, and trends", + "Industry Revenue Statistics - Total industry revenue, employment figures, and regional distribution", + "Top 100 GIS Enterprises Ranking - Annual ranking of leading geospatial companies by revenue and capability", + "Professional Qualification Data - Registered surveyors, mapping engineers, and enterprise certification counts", + "Technical Standards - Industry standards for GIS platforms, remote sensing data processing, and LBS applications" + ], + "zh": [ + "中国地理信息产业发展报告 - 行业规模、增长、结构及趋势年度报告", + "产业营收统计 - 行业总营收、从业人员数量及区域分布", + "地理信息产业百强企业 - 按营收和能力排名的地信龙头企业年度榜单", + "专业资质数据 - 测绘师、制图工程师注册数量及企业资质认证统计", + "技术标准 - GIS平台、遥感数据处理及位置服务应用行业标准" + ] + } +} diff --git a/firstdata/sources/china/technology/industry-associations/china-sae.json b/firstdata/sources/china/technology/industry-associations/china-sae.json new file mode 100644 index 00000000..9fc3891c --- /dev/null +++ b/firstdata/sources/china/technology/industry-associations/china-sae.json @@ -0,0 +1,78 @@ +{ + "id": "china-sae", + "name": { + "en": "Society of Automotive Engineers of China", + "zh": "中国汽车工程学会" + }, + "description": { + "en": "The Society of Automotive Engineers of China (SAE-China), established in 1963, is the national academic and technical organization for China's automotive industry and engineering community, affiliated with the China Association for Science and Technology (CAST). SAE-China coordinates automotive engineering standards, organizes major industry events including the China Automotive Engineering Society Annual Congress (SAECCE) and the China Automotive Industry Summit, and publishes authoritative reports on new energy vehicles (NEV), intelligent connected vehicles (ICV), automotive emissions, fuel efficiency standards, and autonomous driving technology. SAE-China collaborates with international counterparts including SAE International and serves as a key bridge between China's automotive R&D community and global automotive technology trends. Its data and research are widely cited by automotive OEMs, Tier-1 suppliers, government regulators, and international investors tracking China's automotive market transformation.", + "zh": "中国汽车工程学会(SAE-China)成立于1963年,是中国科学技术协会下属的全国性汽车行业和工程领域学术团体。学会负责协调汽车工程标准,主办汽车工程年会(SAECCE)、中国汽车产业发展年会等重要行业活动,并发布新能源汽车、智能网联汽车、汽车排放、燃油经济性标准和自动驾驶技术权威报告。SAE-China与SAE国际等国际机构合作,是中国汽车研发界与全球汽车技术趋势之间的重要桥梁,其数据和研究被汽车整车企业、一级供应商、政府监管部门和跟踪中国汽车市场转型的国际投资者广泛引用。" + }, + "website": "https://www.sae-china.org/", + "data_url": "https://www.sae-china.org/newsdata/reportdata/", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "automotive", + "technology", + "energy", + "standards" + ], + "update_frequency": "annual", + "tags": [ + "汽车工程", + "automotive-engineering", + "新能源汽车", + "new-energy-vehicle", + "nev", + "智能网联汽车", + "intelligent-connected-vehicle", + "icv", + "自动驾驶", + "autonomous-driving", + "汽车排放", + "vehicle-emissions", + "燃油经济性", + "fuel-efficiency", + "汽车标准", + "automotive-standards", + "电动汽车", + "electric-vehicle", + "ev", + "动力电池", + "power-battery", + "氢燃料电池", + "hydrogen-fuel-cell", + "saecce", + "中国汽车工程学会", + "sae-china", + "汽车技术", + "automotive-technology" + ], + "data_content": { + "en": [ + "New Energy Vehicle (NEV) development reports: annual statistics and trend analysis on battery electric vehicle (BEV), plug-in hybrid (PHEV), and fuel cell vehicle (FCV) production, sales, and technology maturity in China", + "Intelligent Connected Vehicle (ICV) white papers: market penetration data, L2-L4 autonomous driving deployment statistics, and V2X communication infrastructure progress", + "Automotive emissions research: vehicle exhaust emission test data, fleet emission factor reports, and compliance monitoring with China's National Standards VI (equivalent to Euro 6)", + "Fuel economy standards and CAFC compliance: corporate average fuel consumption data, double-credit policy implementation statistics, and OEM compliance rankings", + "Automotive technology roadmap data: technology readiness assessments for electrification, lightweighting, advanced manufacturing, and connectivity for the 2025-2035 planning horizon", + "Power battery and energy storage research: battery cell performance benchmarks, thermal safety incident analysis, and recycling system capacity data", + "Hydrogen fuel cell vehicle progress reports: hydrogen refueling station deployment, FCEV demonstration project data, and cost reduction trajectory analysis", + "Annual Congress (SAECCE) proceedings: cutting-edge automotive R&D papers covering vehicle dynamics, NVH, powertrain, ADAS, and manufacturing technology", + "Automotive industry talent and R&D investment statistics: engineering workforce data, automotive R&D expenditure by OEM, and innovation ecosystem indicators" + ], + "zh": [ + "新能源汽车发展报告:中国纯电动汽车(BEV)、插电混动(PHEV)和燃料电池汽车(FCV)产销量及技术成熟度年度统计与趋势分析", + "智能网联汽车白皮书:市场渗透率数据、L2-L4自动驾驶部署统计和V2X通信基础设施建设进展", + "汽车排放研究:车辆尾气排放测试数据、车队排放因子报告和国六标准(相当于欧6)合规监测", + "燃油经济性标准和CAFC合规:企业平均燃油消耗量数据、双积分政策实施统计和整车企业合规排名", + "汽车技术路线图数据:2025-2035规划期电动化、轻量化、先进制造和智能网联技术成熟度评估", + "动力电池与储能研究:电芯性能基准测试、热失控安全事故分析和回收体系产能数据", + "氢燃料电池汽车进展报告:加氢站部署情况、燃料电池汽车示范项目数据和成本下降路径分析", + "年会(SAECCE)论文集:整车动力学、NVH、动力系统、ADAS和制造技术等前沿汽车研发论文", + "汽车行业人才与研发投入统计:工程师队伍规模、各整车企业研发支出及创新生态系统指标" + ] + } +} diff --git a/firstdata/sources/china/technology/industry_associations/china-automation-association.json b/firstdata/sources/china/technology/industry_associations/china-automation-association.json new file mode 100644 index 00000000..eb6e9d52 --- /dev/null +++ b/firstdata/sources/china/technology/industry_associations/china-automation-association.json @@ -0,0 +1,83 @@ +{ + "id": "china-automation-association", + "name": { + "en": "Chinese Association of Automation", + "zh": "中国自动化学会" + }, + "description": { + "en": "The Chinese Association of Automation (CAA) is a national academic society under the China Association for Science and Technology (CAST) that represents researchers and practitioners in automation, control systems, robotics, and intelligent manufacturing. Founded in 1961, CAA has over 40,000 members across academia, research institutes, and industry. CAA publishes the Journal of Automation (自动化学报), IEEE/CAA Journal of Automatica Sinica (an international SCI journal), and periodical reports on China's automation technology development, intelligent manufacturing standards, and robotics industry statistics. The association organizes the annual China Automation Congress (CAC), the largest automation academic conference in China, and compiles industry white papers on artificial intelligence in manufacturing, industrial Internet of Things (IIoT), and autonomous systems. CAA data and reports are primary references for tracking China's industrial automation penetration, R&D investment in control technology, and the diffusion of smart manufacturing across sectors.", + "zh": "中国自动化学会(CAA)是中国科学技术协会下属的全国性学术团体,代表自动化、控制系统、机器人及智能制造领域的科研人员和从业者。成立于1961年的CAA拥有超过40000名来自学界、科研机构和产业界的会员。CAA出版《自动化学报》《IEEE/CAA控制与信息学报》(国际SCI期刊)及中国自动化技术发展、智能制造标准和机器人行业统计定期报告。学会主办中国最大的自动化学术会议——中国自动化大会(CAC),并编制人工智能在制造业中的应用、工业物联网(IIoT)及自主系统领域白皮书。CAA的数据和报告是追踪中国工业自动化普及率、控制技术研发投入及智能制造跨行业扩散情况的主要参考。" + }, + "website": "https://www.caa.org.cn/", + "data_url": "https://www.caa.org.cn/", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "technology", + "industry", + "robotics", + "manufacturing" + ], + "update_frequency": "annual", + "tags": [ + "中国自动化学会", + "caa", + "chinese-association-of-automation", + "自动化", + "automation", + "控制系统", + "control-systems", + "机器人", + "robotics", + "智能制造", + "intelligent-manufacturing", + "自动化学报", + "journal-of-automation", + "ieee/caa", + "工业物联网", + "industrial-internet-of-things", + "iiot", + "人工智能", + "artificial-intelligence", + "ai", + "中国自动化大会", + "china-automation-congress", + "cac", + "自主系统", + "autonomous-systems", + "中国科学技术协会", + "cast", + "工业自动化", + "industrial-automation", + "智能控制", + "intelligent-control", + "机器视觉", + "machine-vision" + ], + "data_content": { + "en": [ + "China automation technology development reports: annual assessment of automation technology R&D progress, industrialization levels, and market penetration by manufacturing sector", + "Robotics industry white papers: statistics on industrial robot density (robots per 10,000 workers), adoption rates by industry, and domestic vs. imported robot market share", + "Intelligent manufacturing standards tracking: status of China's national and industry standards for intelligent manufacturing, IIoT protocols, and cyber-physical systems", + "Academic publication data: citation metrics, research output volumes, and key research themes from Journal of Automatica Sinica and CAA member publications", + "China Automation Congress proceedings: annual conference abstracts and technical topics reflecting cutting-edge research in control, AI, robotics, and autonomous systems", + "AI in manufacturing surveys: enterprise adoption rates of AI-powered quality control, predictive maintenance, and process optimization across Chinese industrial sectors", + "Control system market analysis: market size and growth data for distributed control systems (DCS), programmable logic controllers (PLC), and SCADA systems in China", + "Member institution data: geographic and sector distribution of CAA member universities, research institutes, and enterprises active in automation R&D", + "International collaboration metrics: data on joint research projects, international standard participation, and academic exchange programs involving Chinese automation researchers" + ], + "zh": [ + "中国自动化技术发展报告:按制造行业分类的自动化技术研发进展、产业化水平和市场渗透率年度评估", + "机器人行业白皮书:工业机器人密度(每万名工人机器人数量)、各行业采用率及国产与进口机器人市场份额统计", + "智能制造标准追踪:中国智能制造、工业物联网协议及信息物理系统国家标准和行业标准制定进展", + "学术出版数据:《IEEE/CAA控制与信息学报》及CAA会员出版物的引用指标、研究产出量和主要研究方向", + "中国自动化大会论文集:年度会议摘要及控制、人工智能、机器人和自主系统前沿研究技术专题", + "制造业人工智能应用调查:中国各工业行业AI驱动质量控制、预测性维护和流程优化的企业采用率", + "控制系统市场分析:中国分布式控制系统(DCS)、可编程逻辑控制器(PLC)和SCADA系统市场规模及增长数据", + "会员机构数据:CAA会员高校、科研机构和企业在自动化研发领域的地域分布和行业分布", + "国际合作指标:中国自动化领域研究人员参与联合研究项目、国际标准制定和学术交流的数据" + ] + } +} diff --git a/firstdata/sources/china/technology/industry_associations/china-caam.json b/firstdata/sources/china/technology/industry_associations/china-caam.json new file mode 100644 index 00000000..216aebd1 --- /dev/null +++ b/firstdata/sources/china/technology/industry_associations/china-caam.json @@ -0,0 +1,74 @@ +{ + "id": "china-caam", + "name": { + "en": "China Association of Automobile Manufacturers", + "zh": "中国汽车工业协会" + }, + "description": { + "en": "The China Association of Automobile Manufacturers (CAAM) is the national industry association representing China's automotive sector, overseen by the Ministry of Industry and Information Technology. As the authoritative voice of the world's largest automobile market, CAAM publishes monthly and annual production and sales statistics for passenger cars, commercial vehicles, new energy vehicles (NEVs), and motorcycles. Its data covers output by manufacturer, vehicle category, fuel type, and region, making it the primary reference for tracking China's automotive industry trends. CAAM also releases NEV adoption statistics, export data, and policy research reports.", + "zh": "中国汽车工业协会(中汽协)是工业和信息化部主管的全国性汽车行业组织,代表全球最大汽车市场的利益。协会发布乘用车、商用车、新能源汽车及摩托车的月度和年度产销统计数据,按厂商、车型类别、动力类型和地区分类,是追踪中国汽车行业发展趋势的主要数据来源。协会同时发布新能源汽车渗透率、出口数据及行业政策研究报告。" + }, + "website": "http://www.caam.org.cn/", + "data_url": "http://www.caam.org.cn/chn/4/cate_39/index.html", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "economics", + "industry", + "technology", + "trade" + ], + "update_frequency": "monthly", + "tags": [ + "中国汽车工业协会", + "caam", + "中国汽车产销", + "china-auto-production-sales", + "新能源汽车", + "new-energy-vehicles", + "nev", + "乘用车", + "passenger-cars", + "商用车", + "commercial-vehicles", + "汽车出口", + "auto-exports", + "汽车行业", + "automobile-industry", + "电动车", + "electric-vehicles", + "ev", + "汽车产量", + "vehicle-production", + "汽车市场", + "auto-market", + "比亚迪", + "byd", + "新能源渗透率", + "nev-penetration-rate" + ], + "data_content": { + "en": [ + "Monthly production and sales: total vehicle output and sales by manufacturer, including all major domestic and joint venture brands", + "New energy vehicles (NEV): monthly NEV production, sales, and market penetration rate by vehicle type (BEV, PHEV, FCEV)", + "Passenger car segment data: sedan, SUV, MPV, crossover production and sales statistics", + "Commercial vehicle data: trucks, buses, and special purpose vehicles output and sales", + "Automobile exports: monthly vehicle export volume and value by destination country", + "Market share rankings: top-selling models and manufacturer market share by category", + "Industry annual report: comprehensive overview of China's automotive sector performance, trends, and outlook", + "Policy research: analysis of automotive industry policies, emission standards, and electrification targets" + ], + "zh": [ + "月度产销数据:按厂商分类的汽车总产量和销量,涵盖所有主要自主品牌和合资品牌", + "新能源汽车:月度新能源汽车产量、销量及市场渗透率(按纯电动、插混、燃料电池分类)", + "乘用车分类数据:轿车、SUV、MPV、越野车产销统计", + "商用车数据:货车、客车及专用车产销情况", + "汽车出口:月度汽车出口量及出口额,按目标国家分类", + "市场排名:热销车型及各细分市场厂商份额", + "行业年度报告:中国汽车产业全年运行综述、发展趋势与展望", + "政策研究:汽车产业政策、排放标准及电动化目标分析" + ] + } +} diff --git a/firstdata/sources/china/technology/industry_associations/china-caamm.json b/firstdata/sources/china/technology/industry_associations/china-caamm.json new file mode 100644 index 00000000..aeac2142 --- /dev/null +++ b/firstdata/sources/china/technology/industry_associations/china-caamm.json @@ -0,0 +1,38 @@ +{ + "id": "china-caamm", + "name": { + "en": "China Association of Agricultural Machinery Manufacturers", + "zh": "中国农业机械工业协会" + }, + "description": { + "en": "Industry association for China's agricultural machinery sector, publishing enterprise statistics, product data, and industry development reports.", + "zh": "中国农业机械行业组织,发布企业统计、产品数据和行业发展报告。" + }, + "website": "http://www.caamm.org.cn/", + "data_url": "http://www.caamm.org.cn/member/qytj.jspx", + "country": "CN", + "geographic_scope": "national", + "authority_level": "other", + "domains": [ + "agriculture", + "industry" + ], + "update_frequency": "monthly", + "tags": [ + "agricultural-machinery", + "farming-equipment", + "industry-statistics" + ], + "data_content": { + "en": [ + "agricultural machinery production statistics", + "farming equipment enterprise data", + "agricultural machinery market analysis" + ], + "zh": [ + "农业机械产量统计", + "农机企业数据", + "农业机械市场分析" + ] + } +} diff --git a/firstdata/sources/china/technology/industry_associations/china-cec.json b/firstdata/sources/china/technology/industry_associations/china-cec.json new file mode 100644 index 00000000..1646c9f0 --- /dev/null +++ b/firstdata/sources/china/technology/industry_associations/china-cec.json @@ -0,0 +1,80 @@ +{ + "id": "china-cec", + "name": { + "en": "China Electricity Council", + "zh": "中国电力企业联合会" + }, + "description": { + "en": "The China Electricity Council (CEC) is the national industry association representing China's power enterprises, covering generation, transmission, distribution, and supply of electricity. As the world's largest electricity market, China's power sector data is critical for understanding energy security, carbon neutrality progress, and industrial demand. CEC publishes monthly and annual statistics on electricity generation by source (thermal, hydro, nuclear, wind, solar), total power consumption by sector, installed capacity, transmission infrastructure, and electricity supply-demand balance. CEC's data is the primary reference for tracking China's energy transition, renewable energy deployment, and the electrification of industry and transportation.", + "zh": "中国电力企业联合会(中电联)是代表中国电力企业的全国性行业组织,涵盖发电、输电、配电和供电企业。作为全球最大的电力市场,中国电力行业数据对理解能源安全、碳中和进程及工业需求至关重要。中电联定期发布月度和年度统计数据,内容包括分能源类型(火电、水电、核电、风电、光伏)的发电量、分行业用电量、装机容量、输电基础设施及电力供需平衡情况。中电联数据是追踪中国能源转型、可再生能源部署及工业和交通电气化进程的主要参考来源。" + }, + "website": "https://www.cec.org.cn", + "data_url": "https://www.cec.org.cn/detail/index.html?3-302929", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "energy", + "economics", + "environment", + "industry" + ], + "update_frequency": "monthly", + "tags": [ + "中国电力", + "china-electricity", + "中电联", + "cec", + "电力统计", + "electricity-statistics", + "发电量", + "power-generation", + "用电量", + "electricity-consumption", + "装机容量", + "installed-capacity", + "可再生能源", + "renewable-energy", + "火电", + "thermal-power", + "水电", + "hydropower", + "风电", + "wind-power", + "光伏", + "solar-power", + "核电", + "nuclear-power", + "能源转型", + "energy-transition", + "碳中和", + "carbon-neutrality", + "电力供需", + "power-supply-demand" + ], + "data_content": { + "en": [ + "Power generation by source: monthly total electricity generation broken down by thermal, hydropower, nuclear, wind, and solar power", + "Electricity consumption: monthly total electricity consumption by sector (industry, services, agriculture, residential)", + "Installed capacity: cumulative installed capacity by generation type, including new additions per period", + "Renewable energy statistics: wind and solar power capacity additions, generation volume, and utilization hours", + "Electricity supply-demand balance: regional power surplus/deficit analysis and peak load statistics", + "Power transmission: length of transmission lines and transformer capacity by voltage level", + "Annual Electric Power Industry Statistics: comprehensive yearbook covering all aspects of China's power sector", + "Carbon emission factors: electricity emission factors for China's regional power grids", + "Investment in power sector: capital expenditure on generation, transmission, and distribution infrastructure" + ], + "zh": [ + "分类发电量:按火电、水电、核电、风电、光伏分类的月度总发电量", + "分行业用电量:按工业、服务业、农业、居民生活分类的月度总用电量", + "装机容量:按发电类型分类的累计装机容量,含各期新增装机量", + "可再生能源统计:风电和光伏装机新增容量、发电量及利用小时数", + "电力供需平衡:区域电力盈缺分析和尖峰负荷统计", + "电力输送:按电压等级分类的输电线路长度和变压器容量", + "《电力工业统计年报》:涵盖中国电力行业各方面的综合年度数据", + "碳排放因子:中国区域电网的电力碳排放因子", + "电力行业投资:发电、输电和配电基础设施资本支出情况" + ] + } +} diff --git a/firstdata/sources/china/technology/industry_associations/china-cecc.json b/firstdata/sources/china/technology/industry_associations/china-cecc.json new file mode 100644 index 00000000..b5235262 --- /dev/null +++ b/firstdata/sources/china/technology/industry_associations/china-cecc.json @@ -0,0 +1,78 @@ +{ + "id": "china-cecc", + "name": { + "en": "China Electronics Chamber of Commerce", + "zh": "中国电子商会" + }, + "description": { + "en": "The China Electronics Chamber of Commerce (CECC) is a national industry association established in 1988, operating under the guidance of the Ministry of Industry and Information Technology (MIIT). CECC represents enterprises engaged in manufacturing, trading, and distributing electronic information products across China, with over 8,000 member companies spanning 21 regional branches, 19 professional committees, and 6 industry alliances. The chamber publishes authoritative market statistics, industry development reports, and pricing indices for consumer electronics, home appliances, IT products, and emerging tech categories. It tracks domestic and export trends, conducts industry surveys, and releases data on production output, market share, and enterprise performance in China's electronics sector.", + "zh": "中国电子商会(CECC)是于1988年成立的全国性行业协会,业务受工业和信息化部指导。商会代表全国生产经营电子信息产品的企业,拥有8000余家会员单位,下设21个地方电子商会、19个专业委员会和6个产业联盟。商会发布消费电子、家电、IT产品及新兴技术品类的权威市场统计数据、行业发展报告及价格指数,追踪国内外销售趋势,开展行业调查,并发布中国电子行业生产产值、市场份额及企业经营表现数据。" + }, + "website": "http://www.cecc.org.cn/", + "data_url": "http://www.cecc.org.cn/hangye/", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "technology", + "economics", + "trade", + "statistics" + ], + "update_frequency": "monthly", + "tags": [ + "中国电子商会", + "cecc", + "消费电子", + "consumer-electronics", + "家电", + "home-appliances", + "电子行业", + "electronics-industry", + "IT产品", + "it-products", + "市场统计", + "market-statistics", + "行业报告", + "industry-report", + "电子产品出口", + "electronics-exports", + "智能家居", + "smart-home", + "价格指数", + "price-index", + "电子商务", + "e-commerce", + "工业和信息化部", + "miit", + "电子行业产值", + "electronics-output" + ], + "data_content": { + "en": [ + "Consumer electronics market statistics: monthly and annual sales volume, value, and growth rates for major product categories including TVs, smartphones, tablets, and wearables", + "Home appliances market data: production output, domestic sales, and export figures for white goods and kitchen appliances by brand and region", + "IT products industry report: market size, shipment data, and price trends for computers, peripherals, and networking equipment in China", + "Electronics industry export data: export volumes, values, and destination markets for Chinese electronic products", + "Retail price monitoring: price indices and price comparison data across key consumer electronics categories", + "Enterprise performance statistics: revenue, profit margins, and R&D investment data for major electronics companies", + "New energy vehicle electronics data: demand and supply statistics for automotive electronics and smart cockpit components", + "Smart home and IoT market analysis: adoption rates, shipment data, and market penetration for smart home devices", + "E-waste and recycling statistics: data on electronic waste collection volumes and recycling rates in China", + "Industry development reports: annual white papers on China's electronics industry trends, investment flows, and policy impacts" + ], + "zh": [ + "消费电子市场统计:主要产品品类(电视、智能手机、平板电脑、可穿戴设备等)的月度和年度销量、销售额及增长率", + "家电市场数据:白色家电和厨房电器的生产产值、国内销售及出口数据,按品牌和地区分类", + "IT产品行业报告:中国计算机、外设及网络设备的市场规模、出货数据和价格趋势", + "电子产品出口数据:中国电子产品出口数量、出口额及目的市场", + "零售价格监测:主要消费电子品类的价格指数和比价数据", + "企业经营统计:主要电子企业的营收、利润率及研发投入数据", + "新能源汽车电子数据:汽车电子及智能座舱零部件的供需统计", + "智能家居和物联网市场分析:智能家居设备的普及率、出货数据和市场渗透率", + "电子废弃物和回收统计:中国电子废物回收数量和回收率数据", + "行业发展报告:中国电子行业趋势、投资流向及政策影响年度白皮书" + ] + } +} diff --git a/firstdata/sources/china/technology/industry_associations/china-cemia.json b/firstdata/sources/china/technology/industry_associations/china-cemia.json new file mode 100644 index 00000000..9f25f3f7 --- /dev/null +++ b/firstdata/sources/china/technology/industry_associations/china-cemia.json @@ -0,0 +1,54 @@ +{ + "id": "china-cemia", + "name": { + "en": "China Electronic Materials Industry Association", + "zh": "中国电子材料行业协会" + }, + "description": { + "en": "China Electronic Materials Industry Association (CEMIA), founded in 1989 and supervised by MIIT, is the national industry association covering semiconductor materials, electronic-grade specialty gases, silicon wafers, third-generation semiconductor materials (SiC/GaN), and photovoltaic materials. Through dedicated sub-committees such as the Semiconductor Materials Branch, CEMIA publishes industry statistics, development reports, and standards for China's electronic materials sector.", + "zh": "中国电子材料行业协会(CEMIA)成立于1989年,是工信部主管的全国性行业协会,业务范围覆盖半导体材料、电子特种气体、硅片、第三代半导体材料(SiC/GaN)、光伏材料等领域,下设半导体材料分会等多个专业分会,发布中国电子材料行业的产业统计、发展报告与行业标准。" + }, + "website": "http://www.cemia.org.cn", + "data_url": "http://www.cemia.org.cn", + "api_url": null, + "authority_level": "other", + "country": "CN", + "domains": [ + "semiconductor-materials", + "electronic-materials", + "photovoltaic-materials", + "industry" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "半导体材料", + "第三代半导体", + "碳化硅", + "氮化镓", + "SiC", + "GaN", + "electronic-materials", + "电子特气", + "光伏材料", + "industry-association", + "MIIT", + "china" + ], + "data_content": { + "en": [ + "Semiconductor materials industry statistics and reports", + "Third-generation semiconductor (SiC/GaN) development data", + "Electronic specialty gas market data", + "Silicon wafer and photovoltaic materials statistics", + "China electronic materials industry standards" + ], + "zh": [ + "半导体材料产业统计与报告", + "第三代半导体(SiC/GaN)产业发展数据", + "电子特种气体市场数据", + "硅片及光伏材料产业统计", + "中国电子材料行业标准" + ] + } +} diff --git a/firstdata/sources/china/technology/industry_associations/china-ces.json b/firstdata/sources/china/technology/industry_associations/china-ces.json new file mode 100644 index 00000000..ba254f65 --- /dev/null +++ b/firstdata/sources/china/technology/industry_associations/china-ces.json @@ -0,0 +1,64 @@ +{ + "id": "china-ces", + "name": { + "en": "China Electrotechnical Society", + "zh": "中国电工技术学会" + }, + "description": { + "en": "The China Electrotechnical Society (CES) is a national academic organization founded in 1981, affiliated with the China Association for Science and Technology. It is the premier professional society for electrical engineering, power electronics, and electrotechnical research in China. CES publishes technical research reports, industry whitepapers, and statistical analyses covering power generation equipment, electric motors, transformers, power electronics, and emerging areas such as new energy vehicles, energy storage systems, and smart grid technologies. Its publications serve as authoritative references for China's electrical and energy equipment industries.", + "zh": "中国电工技术学会(CES)成立于1981年,隶属于中国科学技术协会,是中国电气工程、电力电子和电工技术研究领域最重要的专业学术团体。学会发布技术研究报告、行业白皮书及统计分析,涵盖发电设备、电动机、变压器、电力电子,以及新能源汽车、储能系统和智能电网等新兴领域,其出版物是中国电气和能源装备行业的权威参考资料。" + }, + "data_content": { + "en": [ + "power generation equipment statistics", + "electric motor and transformer industry data", + "power electronics technology reports", + "new energy vehicle charging equipment data", + "energy storage system statistics", + "smart grid technology research", + "electrical industry market analysis", + "technical standards and whitepapers", + "renewable energy integration data", + "industrial electrical equipment output" + ], + "zh": [ + "发电设备统计数据", + "电动机和变压器行业数据", + "电力电子技术报告", + "新能源汽车充电设备数据", + "储能系统统计数据", + "智能电网技术研究", + "电气行业市场分析", + "技术标准与白皮书", + "可再生能源并网数据", + "工业电气设备产量" + ] + }, + "country": "CN", + "authority_level": "research", + "geographic_scope": "national", + "website": "https://www.ces.org.cn", + "data_url": "https://www.ces.org.cn", + "api_url": null, + "domains": [ + "energy", + "manufacturing" + ], + "tags": [ + "electrical-engineering", + "power-electronics", + "smart-grid", + "energy-storage", + "electric-motors", + "电工", + "电气工程", + "电力电子", + "智能电网", + "储能", + "新能源", + "ces", + "中国电工技术学会", + "transformers" + ], + "update_frequency": "irregular" +} diff --git a/firstdata/sources/china/technology/industry_associations/china-ciesc.json b/firstdata/sources/china/technology/industry_associations/china-ciesc.json new file mode 100644 index 00000000..01ed55ca --- /dev/null +++ b/firstdata/sources/china/technology/industry_associations/china-ciesc.json @@ -0,0 +1,60 @@ +{ + "id": "china-ciesc", + "name": { + "en": "Chemical Industry and Engineering Society of China", + "zh": "中国化工学会" + }, + "description": { + "en": "The Chemical Industry and Engineering Society of China (CIESC) is a national academic organization established in 1922, composed of chemical scientists, engineers and practitioners. Operating under the guidance of the China Association for Science and Technology (CAST), CIESC is the oldest and most authoritative academic body in China's chemical industry. It publishes authoritative industry data including chemical industry economic operation reports, R&D trends in petrochemicals, fine chemicals, coal chemicals, new materials and green chemistry, technology assessment and patent analyses, chemical engineering standards, and expert reports on industrial safety, emission reduction and carbon neutrality pathways. CIESC also publishes leading academic journals (such as Journal of Chemical Industry and Engineering, CIESC Journal) indexed by SCI/EI, hosts national chemical engineering conferences, and releases consulting reports commissioned by government ministries on the chemical sector's modernization, decarbonization, and international competitiveness.", + "zh": "中国化工学会(CIESC)是由化工科学家、工程师和从业人员组成的全国性学术组织,成立于1922年,是中国化工行业历史最悠久、最权威的学术团体,业务受中国科学技术协会指导。学会发布权威的行业数据,包括化工行业经济运行报告、石油化工与精细化工、煤化工、新材料、绿色化学等领域的研发动向、技术评估与专利分析、化工工程标准,以及工业安全、减排和碳中和路径的专家报告。学会还出版SCI/EI收录的《化工学报》等权威学术期刊,主办全国化学工程年会等行业大会,并受政府部委委托发布关于化工行业现代化、低碳转型和国际竞争力的咨询报告。" + }, + "website": "https://www.ciesc.cn", + "data_url": "https://www.ciesc.cn", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "technology", + "industry", + "chemistry" + ], + "update_frequency": "irregular", + "tags": [ + "ciesc", + "中国化工学会", + "化工行业", + "化学工程", + "chemical-industry", + "chemical-engineering", + "petrochemicals", + "石油化工", + "煤化工", + "fine-chemicals", + "精细化工", + "green-chemistry", + "cast", + "化工期刊", + "academic-society" + ], + "data_content": { + "en": [ + "Chemical industry economic operation and trend reports", + "R&D progress in petrochemicals, fine chemicals, coal chemicals and new materials", + "Technology assessments and patent analyses for chemical processes", + "Chemical engineering standards and technical guidelines", + "Industrial safety, emission reduction and carbon neutrality pathway studies", + "Academic journals (CIESC Journal, Journal of Chemical Industry and Engineering)", + "National chemical engineering conference proceedings and expert reports" + ], + "zh": [ + "化工行业经济运行与趋势报告", + "石油化工、精细化工、煤化工与新材料研发进展", + "化工工艺技术评估与专利分析", + "化工工程标准与技术指南", + "工业安全、减排与碳中和路径研究", + "《化工学报》《化学工业与工程》等权威学术期刊", + "全国化学工程年会论文集及专家报告" + ] + } +} diff --git a/firstdata/sources/china/technology/industry_associations/china-ciia.json b/firstdata/sources/china/technology/industry_associations/china-ciia.json new file mode 100644 index 00000000..42a099f8 --- /dev/null +++ b/firstdata/sources/china/technology/industry_associations/china-ciia.json @@ -0,0 +1,52 @@ +{ + "id": "china-ciia", + "name": { + "en": "China Information Association", + "zh": "中国信息协会" + }, + "description": { + "en": "The China Information Association (CIIA) is a national-level industry organization under the National Development and Reform Commission, promoting the development of China's information industry. It publishes research reports, industry statistics, and policy recommendations on digital economy, informatization, and the information technology sector.", + "zh": "中国信息协会(CIIA)是国家发展和改革委员会主管的全国性行业组织,致力于推动中国信息产业发展,发布数字经济、信息化和信息技术行业的研究报告、行业统计数据及政策建议。" + }, + "website": "https://www.ciia.org.cn", + "data_url": "https://www.ciia.org.cn", + "api_url": null, + "country": "CN", + "domains": [ + "information-technology", + "digital-economy", + "industry" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "china", + "信息协会", + "information-industry", + "信息产业", + "digital-economy", + "数字经济", + "informatization", + "信息化", + "it", + "industry-association", + "行业协会" + ], + "data_content": { + "en": [ + "Industry Research Reports - Analysis and forecasts for China's information technology and digital sectors", + "Informatization Indexes - Statistical indexes measuring China's informatization progress", + "Policy Research - Policy recommendations and analysis for digital economy development", + "Sector Statistics - Data on information industry enterprise scale, revenue, and growth", + "Digital Governance - Reports on e-government and public service digitalization" + ], + "zh": [ + "行业研究报告 - 中国信息技术和数字行业的分析与预测", + "信息化指数 - 衡量中国信息化进程的统计指标", + "政策研究 - 数字经济发展的政策建议和分析", + "行业统计 - 信息行业企业规模、营收和增长数据", + "数字治理 - 电子政务和公共服务数字化报告" + ] + }, + "authority_level": "other" +} diff --git a/firstdata/sources/china/technology/industry_associations/china-cima.json b/firstdata/sources/china/technology/industry_associations/china-cima.json new file mode 100644 index 00000000..27d45f95 --- /dev/null +++ b/firstdata/sources/china/technology/industry_associations/china-cima.json @@ -0,0 +1,75 @@ +{ + "id": "china-cima", + "name": { + "en": "China Instrumentation and Measurement Society", + "zh": "中国仪器仪表行业协会" + }, + "description": { + "en": "The China Instrumentation Industry Association (CIMA) is the national industry organization representing China's instrumentation, measurement, and control equipment manufacturing sector. Founded in 1988 and headquartered in Beijing, CIMA encompasses manufacturers of scientific instruments, industrial meters, sensors, testing equipment, optical instruments, and medical measurement devices. CIMA serves as the primary industry body bridging China's instrumentation enterprises with government regulators and international standards organizations. It compiles and publishes authoritative annual statistical reports on China's instrumentation industry covering production output, revenue, import/export trade data, market structure, and technology development trends. CIMA is actively involved in drafting national and industry standards for measurement instruments and promotes China's participation in international metrology and instrumentation standards bodies (OIML, IMEKO). The association represents a sector critical to China's advanced manufacturing, quality control, scientific research, and industrial automation strategies.", + "zh": "中国仪器仪表行业协会(CIMA)是代表中国仪器仪表和控制设备制造业的全国性行业组织,1988年成立,总部位于北京。协会会员涵盖科学仪器、工业仪表、传感器、检测设备、光学仪器和医疗计量设备制造商。CIMA是连接中国仪器仪表企业与政府监管机构及国际标准组织的主要行业机构,编制发布权威的中国仪器仪表行业年度统计报告,内容包括产量、收入、进出口贸易数据、市场结构和技术发展趋势。CIMA积极参与制定测量仪器国家和行业标准,推动中国参与国际计量(OIML、IMEKO)标准体系。该行业协会所代表的领域对中国高端制造、质量控制、科学研究和工业自动化战略至关重要。" + }, + "website": "http://www.cima.org.cn", + "data_url": "http://www.cima.org.cn", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "manufacturing", + "technology", + "trade", + "industry" + ], + "update_frequency": "annual", + "tags": [ + "中国仪器仪表行业协会", + "cima", + "china-instrumentation-industry-association", + "仪器仪表", + "instrumentation", + "测量设备", + "measurement-equipment", + "传感器", + "sensors", + "科学仪器", + "scientific-instruments", + "工业仪表", + "industrial-meters", + "计量", + "metrology", + "检测设备", + "testing-equipment", + "光学仪器", + "optical-instruments", + "行业统计", + "industry-statistics", + "进出口", + "import-export", + "高端制造", + "advanced-manufacturing", + "工业自动化", + "industrial-automation" + ], + "data_content": { + "en": [ + "Annual industry statistical report: comprehensive production output, revenue, profit, employment, and enterprise count data for China's instrumentation and measurement sector", + "Import and export trade data: annual and monthly trade statistics for China's instrumentation products including major product categories, trading partners, and trade balance", + "Market structure analysis: enterprise scale distribution, regional industry concentration, domestic vs. foreign enterprise market share in Chinese instrumentation sector", + "Industry technology development reports: key technology trends, R&D investment levels, patent activity, and technology gap assessments for Chinese instrumentation", + "Product category statistics: sub-sector data covering scientific instruments, industrial control instruments, medical measurement devices, optical instruments, and sensor markets", + "Industry standards information: national and industry technical standards (GB, JB standards) for measurement instruments developed or participated in by CIMA", + "Enterprise directory and ranking: China's major instrumentation manufacturers by revenue, product specialization, and market position", + "Investment and policy analysis: government policies affecting the instrumentation sector, investment incentives, and development plan assessments" + ], + "zh": [ + "年度行业统计报告:中国仪器仪表行业产量、收入、利润、就业人数和企业数量综合数据", + "进出口贸易数据:中国仪器仪表产品年度和月度贸易统计,包括主要产品类别、贸易伙伴和贸易差额", + "市场结构分析:企业规模分布、区域产业集中度、国内外企业市场份额", + "行业技术发展报告:中国仪器仪表行业关键技术趋势、研发投入水平、专利活动和技术差距评估", + "产品类别统计:科学仪器、工业控制仪表、医疗计量设备、光学仪器和传感器细分市场数据", + "行业标准信息:CIMA参与制定的测量仪器国家标准(GB)和行业标准(JB)", + "企业名录与排名:按收入、产品专长和市场地位分类的中国主要仪器仪表制造商", + "投资与政策分析:影响仪器仪表行业的政府政策、投资激励措施和发展规划评估" + ] + } +} diff --git a/firstdata/sources/china/technology/industry_associations/china-cisa.json b/firstdata/sources/china/technology/industry_associations/china-cisa.json new file mode 100644 index 00000000..0fd148f4 --- /dev/null +++ b/firstdata/sources/china/technology/industry_associations/china-cisa.json @@ -0,0 +1,78 @@ +{ + "id": "china-cisa", + "name": { + "en": "China Iron and Steel Association", + "zh": "中国钢铁工业协会" + }, + "description": { + "en": "The China Iron and Steel Association (CISA) is the national industry association representing China's iron and steel sector, the world's largest steel producer accounting for over 50% of global output. CISA publishes authoritative monthly and annual statistics on crude steel production, pig iron output, steel product consumption, iron ore imports, coking coal usage, and steel prices. Its data is essential for global commodity markets, supply chain analysis, and industrial policy research. CISA also tracks enterprise-level performance indicators, capacity utilization rates, and environmental compliance metrics for major steel mills across China.", + "zh": "中国钢铁工业协会(中钢协)是代表中国钢铁行业的全国性行业组织。中国是全球最大钢铁生产国,产量占全球总量的50%以上。协会发布粗钢产量、生铁产量、钢材消费、铁矿石进口、炼焦煤使用及钢材价格等权威月度和年度统计数据,是全球大宗商品市场、供应链分析和产业政策研究的重要数据来源。协会还追踪全国主要钢铁企业的运营绩效指标、产能利用率及环保合规情况。" + }, + "website": "https://www.chinaisa.org.cn/", + "data_url": "https://www.chinaisa.org.cn/gxportal/xfgl/portal/index.html", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "economics", + "industry", + "trade", + "environment" + ], + "update_frequency": "monthly", + "tags": [ + "中国钢铁工业协会", + "cisa", + "中国钢铁产量", + "china-steel-production", + "粗钢", + "crude-steel", + "生铁", + "pig-iron", + "铁矿石", + "iron-ore", + "钢材价格", + "steel-prices", + "炼焦煤", + "coking-coal", + "钢铁行业", + "steel-industry", + "产能利用率", + "capacity-utilization", + "钢铁出口", + "steel-exports", + "冶金", + "metallurgy", + "大宗商品", + "commodities", + "宝钢", + "baosteel", + "碳排放", + "carbon-emissions" + ], + "data_content": { + "en": [ + "Crude steel production: monthly and annual output by province, enterprise type, and major mill", + "Pig iron and iron ore: monthly pig iron production and iron ore import volumes by origin country (Australia, Brazil, etc.)", + "Steel product consumption: downstream demand by sector (construction, machinery, automotive, shipbuilding)", + "Steel prices: composite price indices for major steel products (rebar, hot-rolled coil, plate, wire rod)", + "Enterprise performance: profitability, revenue, and loss data for key steel enterprises", + "Capacity and utilization: installed steelmaking capacity and utilization rates", + "Coking coal and coke: monthly consumption and price data for raw material inputs", + "Environmental metrics: energy consumption per ton of steel, emission reduction progress", + "Steel export and import: monthly trade volumes and values by product category and destination" + ], + "zh": [ + "粗钢产量:按省份、企业性质和主要钢厂分类的月度和年度产量", + "生铁与铁矿石:月度生铁产量及按来源国(澳大利亚、巴西等)分类的铁矿石进口量", + "钢材消费:按下游行业(建筑、机械、汽车、造船)分类的消费需求", + "钢材价格:主要钢铁产品(螺纹钢、热轧卷板、中厚板、线材)的综合价格指数", + "企业绩效:重点钢铁企业盈利情况、营收及亏损数据", + "产能与利用率:炼钢产能及产能利用率", + "炼焦煤与焦炭:原料月度消耗量及价格数据", + "环保指标:吨钢能耗、减排进展数据", + "钢铁进出口:按产品类别和目的地分类的月度贸易量及贸易额" + ] + } +} diff --git a/firstdata/sources/china/technology/industry_associations/china-cmes.json b/firstdata/sources/china/technology/industry_associations/china-cmes.json new file mode 100644 index 00000000..21f3fcc2 --- /dev/null +++ b/firstdata/sources/china/technology/industry_associations/china-cmes.json @@ -0,0 +1,62 @@ +{ + "id": "china-cmes", + "name": { + "en": "Chinese Mechanical Engineering Society", + "zh": "中国机械工程学会" + }, + "description": { + "en": "The Chinese Mechanical Engineering Society (CMES) is China's largest national academic society in engineering, with over 800,000 members. Founded in 1936 and affiliated with the China Association for Science and Technology, CMES promotes research and development in mechanical engineering, manufacturing, and advanced equipment. The society publishes academic journals, industry reports, and technology roadmaps covering robotics, intelligent manufacturing, green manufacturing, additive manufacturing, and precision engineering. CMES data and publications are key references for China's manufacturing policy, Made in China 2025 implementation, and industrial technology development.", + "zh": "中国机械工程学会是中国最大的工程类全国性学术团体,会员逾80万人,1936年成立,主管单位为中国科学技术协会。学会致力于推动机械工程、制造业和高端装备领域的研究与发展,出版学术期刊、行业报告和技术路线图,涵盖机器人、智能制造、绿色制造、增材制造和精密工程等领域,是中国制造业政策、《中国制造2025》落实情况和工业技术发展的重要参考来源。" + }, + "website": "https://www.cmes.org", + "data_url": "https://www.cmes.org", + "api_url": null, + "country": "CN", + "domains": [ + "manufacturing", + "technology", + "engineering", + "industry" + ], + "geographic_scope": "national", + "update_frequency": "irregular", + "tags": [ + "china", + "mechanical-engineering", + "机械工程", + "中国机械工程学会", + "manufacturing", + "制造业", + "intelligent-manufacturing", + "智能制造", + "robotics", + "机器人", + "advanced-equipment", + "高端装备", + "additive-manufacturing", + "增材制造", + "made-in-china-2025", + "中国制造2025" + ], + "data_content": { + "en": [ + "Academic Journals - Research publications including Chinese Journal of Mechanical Engineering", + "Manufacturing Technology Roadmaps - Forward-looking technology development plans for key sectors", + "Intelligent Manufacturing Reports - Data and analysis on China's smart factory and automation progress", + "Industry Standards Research - Technical standards development in mechanical engineering", + "Robotics and Automation Data - Statistics and trends for industrial robots and automation", + "Green Manufacturing Reports - Sustainability metrics for China's manufacturing industry", + "Annual Academic Conference Proceedings - Cutting-edge research from China's leading mechanical engineering symposium" + ], + "zh": [ + "学术期刊 - 包括《中国机械工程》等研究出版物", + "制造业技术路线图 - 关键领域前瞻性技术发展规划", + "智能制造报告 - 中国智能工厂和自动化进展数据与分析", + "行业标准研究 - 机械工程领域技术标准制定", + "机器人与自动化数据 - 工业机器人和自动化统计及趋势", + "绿色制造报告 - 中国制造业可持续发展指标", + "年度学术会议论文集 - 中国机械工程领域顶级学术会议最新研究成果" + ] + }, + "authority_level": "research" +} diff --git a/firstdata/sources/china/technology/industry_associations/china-cnfia.json b/firstdata/sources/china/technology/industry_associations/china-cnfia.json new file mode 100644 index 00000000..1499e89e --- /dev/null +++ b/firstdata/sources/china/technology/industry_associations/china-cnfia.json @@ -0,0 +1,38 @@ +{ + "id": "china-cnfia", + "name": { + "en": "China National Food Industry Association", + "zh": "中国食品工业协会" + }, + "description": { + "en": "National association for China's food industry, publishing industry statistics, production data, and market analysis reports covering food manufacturing and processing sectors.", + "zh": "中国食品工业全国性行业组织,发布食品工业统计、产量数据和市场分析报告,涵盖食品制造和加工行业。" + }, + "website": "https://www.cnfia.cn/", + "data_url": "https://www.cnfia.cn/archives/category/hangyetongji", + "country": "CN", + "geographic_scope": "national", + "authority_level": "other", + "domains": [ + "agriculture", + "industry" + ], + "update_frequency": "monthly", + "tags": [ + "food-industry", + "food-manufacturing", + "industry-statistics" + ], + "data_content": { + "en": [ + "food industry production statistics", + "food manufacturing data", + "food market analysis" + ], + "zh": [ + "食品工业产量统计", + "食品制造数据", + "食品市场分析" + ] + } +} diff --git a/firstdata/sources/china/technology/industry_associations/china-cntac.json b/firstdata/sources/china/technology/industry_associations/china-cntac.json new file mode 100644 index 00000000..f4a72783 --- /dev/null +++ b/firstdata/sources/china/technology/industry_associations/china-cntac.json @@ -0,0 +1,80 @@ +{ + "id": "china-cntac", + "name": { + "en": "China National Textile and Apparel Council", + "zh": "中国纺织工业联合会" + }, + "description": { + "en": "The China National Textile and Apparel Council (CNTAC) is the national industry association representing China's textile, apparel, and fashion manufacturing sector — the world's largest, accounting for over one-third of global textile and apparel exports. CNTAC publishes authoritative monthly and annual statistics on textile and apparel production volumes, export values, raw material prices (cotton, chemical fibers, wool, silk), enterprise profitability, and workforce employment. Its data covers the full supply chain from fiber production to finished garments, tracking key segments including cotton spinning, chemical fiber manufacturing, weaving, printing and dyeing, knitting, and apparel. CNTAC also monitors sustainability indicators such as energy consumption per unit output, wastewater discharge, and progress toward green manufacturing standards. The council publishes the China Textile Industry Development Report and coordinates international standards alignment with ISO and other global bodies.", + "zh": "中国纺织工业联合会(中纺联)是代表中国纺织、服装和时尚制造业的全国性行业组织。中国是全球最大的纺织服装生产国和出口国,出口量占全球总量的三分之一以上。协会发布权威的月度和年度统计数据,涵盖纺织服装产量、出口额、原料价格(棉花、化纤、羊毛、蚕丝)、企业盈利和从业人员情况,覆盖从纤维生产到成品服装的完整供应链,追踪棉纺、化纤、织造、印染、针织和服装等关键细分领域。协会还监测单位产量能耗、废水排放等可持续发展指标及绿色制造标准推进情况,出版《中国纺织工业发展报告》,并协调与ISO等国际机构的标准对接工作。" + }, + "website": "https://www.cntac.org.cn/", + "data_url": "https://www.cntac.org.cn/jinghua", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "industry", + "trade", + "economics" + ], + "update_frequency": "monthly", + "tags": [ + "中国纺织工业联合会", + "cntac", + "china-national-textile-and-apparel-council", + "纺织产量", + "textile-production", + "服装出口", + "apparel-exports", + "棉花价格", + "cotton-prices", + "化纤", + "chemical-fiber", + "纺织行业", + "textile-industry", + "时尚产业", + "fashion-industry", + "纱线", + "yarn", + "面料", + "fabric", + "印染", + "dyeing-and-printing", + "绿色制造", + "green-manufacturing", + "纺织贸易", + "textile-trade", + "纺织年鉴", + "textile-yearbook", + "快时尚", + "fast-fashion", + "供应链", + "supply-chain" + ], + "data_content": { + "en": [ + "Textile and apparel production: monthly output volumes for yarn, fabric, chemical fiber, and finished garments by product category and province", + "Export and import trade: monthly textile and apparel trade values and volumes by product type and destination/origin country", + "Raw material prices: spot and futures price indices for cotton (Zhengzhou Cotton Exchange reference), polyester, viscose, nylon, wool, and silk", + "Enterprise performance: revenue, profit margins, and loss data for major textile and apparel enterprises by sub-sector", + "Employment and workforce: number of employees in the textile and apparel sector, wage levels, and labor productivity metrics", + "Energy and resource consumption: energy consumption per unit of output, water usage, and wastewater discharge for key sub-sectors", + "Retail and consumption: domestic apparel retail sales values and consumer spending trends from major cities", + "China Textile Industry Development Report: comprehensive annual analysis of production, trade, technology, and policy trends", + "Sustainability indicators: progress on green manufacturing certifications, chemical safety compliance, and low-carbon transition metrics" + ], + "zh": [ + "纺织服装产量:按产品类别和省份分类的纱线、面料、化纤和成品服装月度产量", + "进出口贸易:按产品类型和目的地/来源国分类的月度纺织服装贸易额和贸易量", + "原料价格:棉花(郑州棉花交易所参考价)、涤纶、粘胶、锦纶、羊毛和蚕丝的现货及期货价格指数", + "企业绩效:按细分行业分类的主要纺织服装企业营收、利润率和亏损数据", + "从业人员:纺织服装行业就业人数、工资水平和劳动生产率指标", + "能源和资源消耗:主要细分行业单位产量能耗、用水量和废水排放量", + "零售与消费:国内服装零售额和主要城市消费支出趋势", + "中国纺织工业发展报告:生产、贸易、技术和政策趋势的综合年度分析", + "可持续发展指标:绿色制造认证进展、化学品安全合规情况和低碳转型指标" + ] + } +} diff --git a/firstdata/sources/china/technology/industry_associations/china-cpcif.json b/firstdata/sources/china/technology/industry_associations/china-cpcif.json new file mode 100644 index 00000000..6a19ab99 --- /dev/null +++ b/firstdata/sources/china/technology/industry_associations/china-cpcif.json @@ -0,0 +1,79 @@ +{ + "id": "china-cpcif", + "name": { + "en": "China Petroleum and Chemical Industry Federation", + "zh": "中国石油和化学工业联合会" + }, + "description": { + "en": "The China Petroleum and Chemical Industry Federation (CPCIF) is the national industry association representing China's petroleum refining, petrochemical, basic chemical, and specialty chemical sectors. Supervised by the Ministry of Industry and Information Technology, CPCIF serves over 8,000 member enterprises and publishes authoritative statistics on China's chemical industry output, trade, energy consumption, and investment. Its data covers crude oil processing, chemical fertilizers, pesticides, synthetic resins, synthetic rubber, and specialty chemicals production and pricing. CPCIF also releases the annual China Chemical Industry Report and monthly industry economic monitoring reports, making it the primary reference for tracking one of the world's largest chemical industries.", + "zh": "中国石油和化学工业联合会(中国石化联合会)是代表中国石油炼制、石油化工、基础化工和精细化工行业的全国性行业组织,工业和信息化部主管,拥有会员企业8000余家。联合会发布化工行业产量、进出口、能源消耗和投资等权威统计数据,覆盖原油加工、化肥、农药、合成树脂、合成橡胶及精细化工等产品的生产和价格信息。联合会还发布年度《中国化学工业年度报告》和月度行业经济运行监测报告,是追踪全球最大化工产业之一的主要数据来源。" + }, + "website": "http://www.cpcif.org.cn", + "data_url": "http://www.cpcif.org.cn/list/stats", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "economics", + "industry", + "energy", + "trade" + ], + "update_frequency": "monthly", + "tags": [ + "中国石油和化学工业联合会", + "cpcif", + "china-petroleum-chemical-industry-federation", + "石化行业", + "petrochemical-industry", + "化工产品", + "chemical-products", + "原油加工", + "crude-oil-processing", + "化肥产量", + "chemical-fertilizer-production", + "合成树脂", + "synthetic-resins", + "合成橡胶", + "synthetic-rubber", + "精细化工", + "specialty-chemicals", + "化工出口", + "chemical-exports", + "石化投资", + "petrochemical-investment", + "化工能耗", + "chemical-industry-energy-consumption", + "塑料", + "plastics", + "农药", + "pesticides", + "化工经济运行", + "chemical-industry-economic-performance" + ], + "data_content": { + "en": [ + "Monthly chemical industry output: production volume of major chemical products including synthetic resins, synthetic rubber, chemical fertilizers, pesticides, dyes, and coatings", + "Crude oil processing data: monthly crude oil input volume, utilization rates of refineries, and refined product yields by type", + "Industry economic monitoring: monthly revenue, profit, investment, and employment statistics for the petroleum and chemical sector", + "Import and export statistics: trade data for petroleum products, chemical raw materials, and finished chemical goods by product category and trading partner", + "Energy consumption: energy use intensity and total energy consumption of the chemical industry by fuel type and sub-sector", + "Chemical product prices: monthly price indices for key chemical commodities including ethylene, propylene, methanol, and polyethylene", + "Annual China chemical industry report: comprehensive yearly assessment of industry development, capacity changes, market trends, and policy outlook", + "Safety statistics: accident reports, fatality rates, and workplace safety performance indicators for the sector", + "Regional distribution: chemical industry output and investment by province and major industrial clusters" + ], + "zh": [ + "月度化工产品产量:合成树脂、合成橡胶、化肥、农药、染料、涂料等主要化工产品产量", + "原油加工数据:月度原油加工量、炼油厂开工率及成品油产量结构", + "行业经济运行:石油和化工行业月度营业收入、利润总额、固定资产投资和从业人员统计", + "进出口统计:石化产品、化工原料和成品的贸易数据,按品类和贸易伙伴分类", + "能源消耗:化工行业能耗强度及分燃料品种、分子行业能源消耗总量", + "化工产品价格:乙烯、丙烯、甲醇、聚乙烯等主要化工大宗商品月度价格指数", + "中国化学工业年度报告:行业发展综合评估、产能变化、市场趋势及政策展望", + "安全生产统计:行业事故报告、死亡率及安全生产绩效指标", + "区域分布:各省份及主要化工产业集群产量和投资情况" + ] + } +} diff --git a/firstdata/sources/china/technology/industry_associations/china-cpia.json b/firstdata/sources/china/technology/industry_associations/china-cpia.json new file mode 100644 index 00000000..e724d65a --- /dev/null +++ b/firstdata/sources/china/technology/industry_associations/china-cpia.json @@ -0,0 +1,39 @@ +{ + "id": "china-cpia", + "name": { + "en": "China Photovoltaic Industry Association", + "zh": "中国光伏行业协会" + }, + "description": { + "en": "Industry association for China's photovoltaic sector, publishing solar capacity installations, production data, export statistics, and industry development reports.", + "zh": "中国光伏行业协会,发布太阳能装机容量、产量数据、出口统计和行业发展报告。" + }, + "website": "https://www.chinapv.org.cn/", + "data_url": "https://www.chinapv.org.cn/StaticPage/association_page1.html", + "country": "CN", + "geographic_scope": "national", + "authority_level": "other", + "domains": [ + "energy", + "industry" + ], + "update_frequency": "monthly", + "tags": [ + "photovoltaic", + "solar-energy", + "renewable-energy", + "industry-statistics" + ], + "data_content": { + "en": [ + "solar PV installation statistics", + "photovoltaic production data", + "solar equipment export statistics" + ], + "zh": [ + "光伏装机统计", + "光伏产量数据", + "太阳能设备出口统计" + ] + } +} diff --git a/firstdata/sources/china/technology/industry_associations/china-csee.json b/firstdata/sources/china/technology/industry_associations/china-csee.json new file mode 100644 index 00000000..2ca630c7 --- /dev/null +++ b/firstdata/sources/china/technology/industry_associations/china-csee.json @@ -0,0 +1,77 @@ +{ + "id": "china-csee", + "name": { + "en": "Chinese Society for Electrical Engineering", + "zh": "中国电机工程学会" + }, + "description": { + "en": "The Chinese Society for Electrical Engineering (CSEE), founded in 1934, is China's leading national academic and professional society for electrical engineering, power systems, and energy. With over 100,000 members and affiliated with the China Association for Science and Technology (CAST), CSEE publishes technical standards, research reports, and industry statistics covering power generation, transmission, distribution, smart grids, renewable energy integration, and electrical equipment. It also serves as China's national member in the International Electrotechnical Commission (IEC) and the Union Internationale d'Electrothermie (UIE).", + "zh": "中国电机工程学会(CSEE)成立于1934年,是中国电气工程、电力系统和能源领域最重要的全国性学术和专业组织,会员逾10万人,隶属于中国科学技术协会。发布涵盖发电、输电、配电、智能电网、可再生能源并网和电气设备的技术标准、研究报告和行业统计。同时是国际电工委员会(IEC)和国际电热联合会(UIE)的中国全国会员。" + }, + "website": "https://www.csee.org.cn", + "data_url": "https://www.csee.org.cn/", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "energy", + "technology" + ], + "update_frequency": "irregular", + "tags": [ + "电力", + "power", + "电气工程", + "electrical-engineering", + "智能电网", + "smart-grid", + "可再生能源", + "renewable-energy", + "电力系统", + "power-system", + "csee", + "中国电机工程学会", + "发电", + "generation", + "输电", + "transmission", + "配电", + "distribution", + "新能源", + "new-energy", + "储能", + "energy-storage", + "电力技术", + "power-technology", + "iec", + "标准", + "standards" + ], + "data_content": { + "en": [ + "Annual Power Industry Reports - Comprehensive statistics on China's electricity generation, consumption, and grid infrastructure", + "Renewable Energy Integration - Data on wind, solar, and hydro power connectivity and curtailment rates", + "Smart Grid Development - Reports on advanced metering infrastructure, EV charging, and grid automation progress", + "Power Equipment Statistics - Installed capacity by generation type (thermal, hydro, nuclear, wind, solar)", + "Grid Investment Data - Annual capital expenditure data for transmission and distribution infrastructure", + "Carbon Emission Factors - Power sector CO2 emission intensity by regional grid", + "Technical Standards - CSEE-published electrical engineering standards and technical guidelines", + "Academic Publications - Peer-reviewed journals including Proceedings of the CSEE (中国电机工程学报)", + "Conference Proceedings - Technical papers from major power engineering conferences in China", + "Industry Talent Reports - Annual statistics on electrical engineering workforce and education" + ], + "zh": [ + "年度电力行业报告 - 中国发电量、用电量和电网基础设施综合统计", + "新能源并网 - 风电、光伏和水电接入及弃能率数据", + "智能电网发展 - 高级计量设施、电动汽车充电桩和电网自动化进展报告", + "电力装备统计 - 按发电类型(火电、水电、核电、风电、光伏)划分的装机容量", + "电网投资数据 - 输电和配电基础设施年度资本支出", + "碳排放因子 - 各区域电网电力行业CO2排放强度", + "技术标准 - 中国电机工程学会发布的电气工程标准和技术规范", + "学术出版物 - 《中国电机工程学报》等同行评审期刊", + "会议论文集 - 中国主要电力工程会议技术论文", + "行业人才报告 - 电气工程从业人员和教育情况年度统计" + ] + } +} diff --git a/firstdata/sources/china/technology/industry_associations/china-csm.json b/firstdata/sources/china/technology/industry_associations/china-csm.json new file mode 100644 index 00000000..bfc6bd56 --- /dev/null +++ b/firstdata/sources/china/technology/industry_associations/china-csm.json @@ -0,0 +1,60 @@ +{ + "id": "china-csm", + "name": { + "en": "Chinese Society for Metals", + "zh": "中国金属学会" + }, + "description": { + "en": "The Chinese Society for Metals (CSM) is a national academic organization founded in 1956, operating under the China Association for Science and Technology. It is the leading professional society for metallurgical science and technology in China, representing scientists and engineers in iron and steel, non-ferrous metals, functional materials, and advanced manufacturing. CSM publishes key industry statistics, technical standards, research reports, and academic journals covering China's metals and materials industries. It plays a central role in bridging scientific research and industrial applications for China's steel and metals sector.", + "zh": "中国金属学会(CSM)成立于1956年,是中国科学技术协会下属的全国性学术团体,是中国金属学和材料科技领域最重要的专业学会,代表钢铁、有色金属、功能材料和先进制造领域的科学家和工程师。学会发布主要行业统计数据、技术标准、研究报告及学术期刊,覆盖中国金属和材料工业,在中国钢铁和金属行业的科学研究与产业应用对接中发挥核心作用。" + }, + "data_content": { + "en": [ + "iron and steel production statistics", + "non-ferrous metals industry data", + "metallurgical technology research reports", + "materials science academic publications", + "industry technical standards", + "steel consumption and market data", + "advanced manufacturing statistics", + "academic conference proceedings and papers" + ], + "zh": [ + "钢铁生产统计数据", + "有色金属行业数据", + "冶金技术研究报告", + "材料科学学术出版物", + "行业技术标准", + "钢铁消费与市场数据", + "先进制造业统计数据", + "学术会议论文集" + ] + }, + "country": "CN", + "authority_level": "research", + "geographic_scope": "national", + "website": "https://www.csm.org.cn", + "data_url": "https://www.csm.org.cn", + "api_url": null, + "domains": [ + "manufacturing", + "science" + ], + "tags": [ + "steel", + "metals", + "metallurgy", + "materials-science", + "iron", + "非铁金属", + "钢铁", + "金属", + "冶金", + "材料科学", + "csm", + "中国金属学会", + "中国钢铁", + "advanced-manufacturing" + ], + "update_frequency": "irregular" +} diff --git a/firstdata/sources/china/technology/industry_associations/china-csre.json b/firstdata/sources/china/technology/industry_associations/china-csre.json new file mode 100644 index 00000000..80517d59 --- /dev/null +++ b/firstdata/sources/china/technology/industry_associations/china-csre.json @@ -0,0 +1,39 @@ +{ + "id": "china-csre", + "name": { + "en": "China Society of Rare Earths", + "zh": "中国稀土学会" + }, + "description": { + "en": "Industry association for China's rare earth sector, publishing production statistics, export data, pricing information, and industry policy analysis for rare earth elements.", + "zh": "中国稀土学会组织,发布稀土产量统计、出口数据、价格信息和行业政策分析。" + }, + "website": "http://www.cs-re.org.cn/", + "data_url": "http://www.cs-re.org.cn/c50", + "country": "CN", + "geographic_scope": "national", + "authority_level": "other", + "domains": [ + "resources", + "industry" + ], + "update_frequency": "monthly", + "tags": [ + "rare-earth", + "minerals", + "strategic-resources", + "industry-statistics" + ], + "data_content": { + "en": [ + "rare earth production statistics", + "rare earth export data", + "rare earth pricing information" + ], + "zh": [ + "稀土产量统计", + "稀土出口数据", + "稀土价格信息" + ] + } +} diff --git a/firstdata/sources/china/technology/industry_associations/china-cwea.json b/firstdata/sources/china/technology/industry_associations/china-cwea.json new file mode 100644 index 00000000..7ab4458d --- /dev/null +++ b/firstdata/sources/china/technology/industry_associations/china-cwea.json @@ -0,0 +1,39 @@ +{ + "id": "china-cwea", + "name": { + "en": "Chinese Wind Energy Association", + "zh": "中国可再生能源学会风能专业委员会" + }, + "description": { + "en": "Professional committee under the Chinese Renewable Energy Society focused on wind energy, publishing wind power installation data, industry statistics, and market analysis.", + "zh": "中国可再生能源学会下属风能专业委员会,发布风电装机数据、行业统计和市场分析。" + }, + "website": "http://www.cwea.org.cn/", + "data_url": "http://www.cwea.org.cn/news_lastest.html", + "country": "CN", + "geographic_scope": "national", + "authority_level": "other", + "domains": [ + "energy", + "industry" + ], + "update_frequency": "quarterly", + "tags": [ + "wind-energy", + "renewable-energy", + "wind-power", + "industry-statistics" + ], + "data_content": { + "en": [ + "wind power installation statistics", + "wind turbine capacity data", + "wind energy market analysis" + ], + "zh": [ + "风电装机统计", + "风力发电容量数据", + "风能市场分析" + ] + } +} diff --git a/firstdata/sources/china/technology/industry_associations/china-isc.json b/firstdata/sources/china/technology/industry_associations/china-isc.json new file mode 100644 index 00000000..84bc6c1b --- /dev/null +++ b/firstdata/sources/china/technology/industry_associations/china-isc.json @@ -0,0 +1,70 @@ +{ + "id": "china-isc", + "name": { + "en": "Internet Society of China", + "zh": "中国互联网协会" + }, + "description": { + "en": "The Internet Society of China (ISC) is a national industry association supervised by the Ministry of Industry and Information Technology, representing China's internet industry ecosystem. It publishes authoritative research reports on internet industry development, cybersecurity, digital economy, and internet governance. ISC's annual China Internet Industry Report and thematic research reports on topics such as mobile internet, cloud computing, artificial intelligence, and e-commerce are widely cited by industry practitioners, regulators, and researchers.", + "zh": "中国互联网协会(ISC)是工业和信息化部主管的全国性行业协会,代表中国互联网产业生态。协会发布互联网产业发展、网络安全、数字经济和互联网治理等权威研究报告。协会年度《中国互联网行业发展报告》及移动互联网、云计算、人工智能、电子商务等专题研究报告,被业界从业者、监管机构和研究人员广泛引用。" + }, + "website": "https://www.isc.org.cn/", + "data_url": "https://www.isc.org.cn/yanjiu/index.html", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "technology", + "economics", + "statistics" + ], + "update_frequency": "irregular", + "tags": [ + "中国互联网协会", + "internet-society-of-china", + "isc", + "互联网行业", + "internet-industry", + "数字经济", + "digital-economy", + "网络安全", + "cybersecurity", + "云计算", + "cloud-computing", + "人工智能", + "artificial-intelligence", + "电子商务", + "e-commerce", + "互联网治理", + "internet-governance", + "行业报告", + "industry-report", + "移动互联网", + "mobile-internet" + ], + "data_content": { + "en": [ + "China Internet Industry Report: annual overview of China's internet industry development, key metrics, and trends", + "Digital Economy: data on China's digital economy scale, contribution to GDP, and sector breakdown", + "Cybersecurity: reports on China's cybersecurity landscape, threats, policy developments", + "Mobile Internet: mobile app ecosystem, user behavior, smartphone penetration statistics", + "Cloud Computing: cloud adoption rates, market size, major service provider analysis", + "Artificial Intelligence: AI industry development, application scenarios, investment data in China", + "E-Commerce: online retail data, cross-border e-commerce statistics, platform economy", + "Internet Governance: regulatory environment, policy developments, compliance data", + "Thematic Research Reports: in-depth analyses of specific internet subsectors and emerging technologies" + ], + "zh": [ + "中国互联网行业发展报告:年度互联网行业发展综览、关键指标与发展趋势", + "数字经济:中国数字经济规模、对GDP贡献及行业结构数据", + "网络安全:中国网络安全态势、威胁情报及政策发展报告", + "移动互联网:移动应用生态、用户行为、智能手机普及率统计", + "云计算:云服务采用率、市场规模、主要服务商分析", + "人工智能:AI产业发展、应用场景、国内投资数据", + "电子商务:网络零售数据、跨境电商统计、平台经济情况", + "互联网治理:监管环境、政策动态、合规数据", + "专题研究报告:互联网细分领域及新兴技术的深度分析报告" + ] + } +} diff --git a/firstdata/sources/china/technology/intellectual_property/china-cnipa-patents.json b/firstdata/sources/china/technology/intellectual_property/china-cnipa-patents.json index 4c65aa43..79554b69 100644 --- a/firstdata/sources/china/technology/intellectual_property/china-cnipa-patents.json +++ b/firstdata/sources/china/technology/intellectual_property/china-cnipa-patents.json @@ -16,7 +16,7 @@ "geographic_scope": "national", "domains": [ "technology", - "intellectual_property", + "intellectual-property", "innovation" ], "update_frequency": "monthly", @@ -24,29 +24,29 @@ "专利", "patent", "知识产权", - "intellectual property", + "intellectual-property", "发明专利", - "invention patent", + "invention-patent", "实用新型", - "utility model", + "utility-model", "外观设计", - "design patent", + "design-patent", "专利授权", - "patent grant", + "patent-grant", "专利申请", - "patent application", + "patent-application", "技术创新", "innovation", "IPC分类", - "patent classification", + "patent-classification", "16个重点产业", - "16 key industries", + "16-key-industries", "专利密集型产业", - "patent-intensive industries", - "PCT", + "patent-intensive-industries", + "pct", "国家知识产权局", - "CNIPA", - "SIPO" + "cnipa", + "sipo" ], "data_content": { "en": [ diff --git a/firstdata/sources/china/technology/intellectual_property/china-ctmo.json b/firstdata/sources/china/technology/intellectual_property/china-ctmo.json new file mode 100644 index 00000000..a81f33af --- /dev/null +++ b/firstdata/sources/china/technology/intellectual_property/china-ctmo.json @@ -0,0 +1,60 @@ +{ + "id": "china-ctmo", + "name": { + "en": "China Trademark Office (CNIPA Trademark Bureau)", + "zh": "国家知识产权局商标局" + }, + "description": { + "en": "The China Trademark Office (CTMO), officially the Trademark Bureau of the China National Intellectual Property Administration (CNIPA), is the government body responsible for trademark registration, review, and protection across China. As the world's largest trademark office by filings, CTMO processes over 9 million trademark applications annually and maintains a database of more than 40 million registered trademarks. The office provides access to China's trademark registration database via the China Trademark Network (CTM Online), enabling search by mark name, applicant, registration number, and international classification. CTMO publishes annual trademark statistics reports covering new applications, registrations, renewals, oppositions, and invalidation decisions by industry sector, geographic origin, and applicant type. Its data is essential for brand asset management, competitive intelligence, IP litigation support, and cross-border trademark protection research.", + "zh": "国家知识产权局商标局(原中国商标局)是负责中国商标注册、审查和保护的政府机构。作为全球申请量最大的商标局,商标局每年处理逾900万件商标申请,维护着超过4000万件注册商标数据库。商标局通过中国商标网(CTM在线)提供商标注册数据库查询,支持按商标名称、申请人、注册号和国际分类检索。商标局发布年度商标统计报告,按行业类别、地域来源和申请人类型,涵盖新申请量、注册量、续展量、异议量和无效宣告裁定情况。其数据对品牌资产管理、竞争情报、知识产权诉讼支持及跨境商标保护研究具有重要价值。" + }, + "website": "https://sbj.cnipa.gov.cn", + "data_url": "https://sbj.cnipa.gov.cn", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "intellectual-property", + "law", + "commerce" + ], + "update_frequency": "daily", + "tags": [ + "ctmo", + "cnipa", + "商标局", + "中国商标", + "商标注册", + "知识产权", + "trademark", + "trademark-registration", + "intellectual-property", + "brand", + "ip-law", + "品牌", + "商标检索", + "china-trademark", + "trademark-database" + ], + "data_content": { + "en": [ + "China trademark registration database (40+ million trademarks)", + "Trademark application and registration statistics by industry class and region", + "Annual trademark statistical reports", + "Trademark opposition, cancellation, and invalidation decisions", + "Madrid international trademark registration data for China", + "Geographic indication trademark registry", + "Trademark renewal and transfer records" + ], + "zh": [ + "中国商标注册数据库(逾4000万件商标)", + "按行业类别和地域分类的商标申请与注册统计", + "年度商标统计报告", + "商标异议、撤销和无效宣告裁定", + "中国马德里国际商标注册数据", + "地理标志商标注册信息", + "商标续展与转让记录" + ] + } +} diff --git a/firstdata/sources/china/technology/internet/china-cac.json b/firstdata/sources/china/technology/internet/china-cac.json new file mode 100644 index 00000000..332c8acb --- /dev/null +++ b/firstdata/sources/china/technology/internet/china-cac.json @@ -0,0 +1,71 @@ +{ + "id": "china-cac", + "name": { + "en": "Cyberspace Administration of China", + "zh": "国家互联网信息办公室" + }, + "description": { + "en": "Official internet governance and digital economy data from China's Cyberspace Administration of China (CAC). Covers internet industry statistics, data security regulations, online platform compliance data, digital content oversight reports, cybersecurity policy documents, and the digital economy regulatory framework. The CAC is China's central internet regulatory and governance authority responsible for online content management, data security, personal information protection, and cybersecurity supervision.", + "zh": "国家互联网信息办公室(网信办)发布的官方互联网治理与数字经济数据,涵盖互联网行业统计、数据安全法规、在线平台合规数据、数字内容监管报告、网络安全政策文件及数字经济监管框架。网信办是中国互联网监管与治理的核心机构,负责网络内容管理、数据安全、个人信息保护及网络安全监管。" + }, + "website": "https://www.cac.gov.cn/", + "data_url": "https://www.cac.gov.cn/wxzw/sjzl/A093708index_1.htm", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "technology", + "governance", + "economics" + ], + "update_frequency": "irregular", + "tags": [ + "网信办", + "cac", + "网络安全", + "cybersecurity", + "数据安全", + "data-security", + "互联网监管", + "internet-regulation", + "数字经济", + "digital-economy", + "个人信息保护", + "personal-information-protection", + "在线平台", + "online-platform", + "互联网治理", + "internet-governance", + "网络内容", + "online-content", + "数字化", + "digitalization", + "信息安全", + "information-security", + "互联网统计", + "internet-statistics" + ], + "data_content": { + "en": [ + "Internet industry statistics: market size, user counts, revenue, and growth rates of China's internet sector", + "Data security regulations: laws, regulations, and standards for data protection and cybersecurity in China", + "Online platform compliance reports: platform governance, content moderation, and algorithmic recommendation oversight", + "Personal information protection enforcement: cases, penalties, and compliance requirements under PIPL", + "Digital economy policy documents: regulatory frameworks for e-commerce, fintech, and platform economy", + "Cybersecurity supervision reports: network infrastructure security assessments and incident statistics", + "Internet content governance: illegal content takedowns, user account suspensions, and content policy updates", + "Cross-border data flow regulations: data export security assessments and certification requirements" + ], + "zh": [ + "互联网行业统计:中国互联网行业市场规模、用户数量、收入及增长率", + "数据安全法规:中国数据保护与网络安全的法律法规及标准", + "在线平台合规报告:平台治理、内容审核及算法推荐监管情况", + "个人信息保护执法:个人信息保护法(PIPL)下的案例、处罚及合规要求", + "数字经济政策文件:电子商务、金融科技及平台经济的监管框架", + "网络安全监管报告:网络基础设施安全评估及事件统计", + "互联网内容治理:违法内容清理、用户账号封禁及内容政策更新", + "跨境数据流动法规:数据出境安全评估及认证要求" + ] + } +} diff --git a/firstdata/sources/china/technology/internet/china-cncert.json b/firstdata/sources/china/technology/internet/china-cncert.json new file mode 100644 index 00000000..207dba79 --- /dev/null +++ b/firstdata/sources/china/technology/internet/china-cncert.json @@ -0,0 +1,73 @@ +{ + "id": "china-cncert", + "name": { + "en": "National Computer Network Emergency Response Technical Team/Coordination Center of China", + "zh": "国家互联网应急中心" + }, + "description": { + "en": "The National Computer Network Emergency Response Technical Team/Coordination Center of China (CNCERT/CC), also known as CNCERT, is China's national cybersecurity coordination body. Established in 2002 and operating under the Ministry of Industry and Information Technology, CNCERT monitors and coordinates responses to cybersecurity incidents on a national scale. It publishes authoritative annual and quarterly reports on China's internet security landscape, including statistics on malware, distributed denial-of-service (DDoS) attacks, network intrusions, phishing websites, data breaches, and vulnerability disclosures. CNCERT's annual China Internet Security Report and quarterly bulletins are key references for cybersecurity researchers, enterprises, and policymakers assessing China's cyber threat environment.", + "zh": "国家互联网应急中心(CNCERT/CC)是中国国家级网络安全协调机构,2002年成立,隶属于工业和信息化部,负责在全国范围内监测和协调网络安全事件响应。CNCERT发布权威的年度和季度互联网安全报告,内容涵盖恶意程序、DDoS攻击、网络入侵、仿冒网站、数据泄露和漏洞披露等统计数据。其年度《中国互联网网络安全报告》及季度通报是网络安全研究人员、企业和政策制定者评估中国网络威胁环境的重要参考。" + }, + "website": "https://www.cert.org.cn/", + "data_url": "https://www.cert.org.cn/publish/main/45/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "technology", + "security", + "statistics" + ], + "update_frequency": "quarterly", + "tags": [ + "网络安全", + "cybersecurity", + "互联网安全", + "internet-security", + "应急响应", + "emergency-response", + "cncert", + "cert", + "恶意程序", + "malware", + "DDoS攻击", + "ddos", + "网络入侵", + "network-intrusion", + "数据泄露", + "data-breach", + "漏洞", + "vulnerability", + "网络犯罪", + "cybercrime", + "信息安全", + "information-security", + "网络威胁", + "cyber-threat" + ], + "data_content": { + "en": [ + "Annual China Internet Security Report: comprehensive overview of cyber threats, incidents, and trends in China", + "Malware statistics: number of malicious programs detected, propagation vectors, and affected systems by type", + "DDoS attack data: frequency, scale, targets, and geographic distribution of distributed denial-of-service attacks", + "Phishing and fraud websites: monthly counts of phishing sites, fraudulent domains, and takedown statistics", + "Vulnerability disclosures: national vulnerability database (CNVD) statistics on software and hardware vulnerabilities reported", + "Network intrusion incidents: government, enterprise, and critical infrastructure breaches reported and handled", + "Mobile security threats: malicious apps, smartphone malware, and mobile fraud statistics", + "Industrial control system (ICS) security: vulnerability and incident data for critical infrastructure sectors", + "Quarterly internet security bulletins: near-real-time threat intelligence summaries for the Chinese internet" + ], + "zh": [ + "年度《中国互联网网络安全报告》:全面呈现中国网络威胁、事件和趋势", + "恶意程序统计:按类型分类的检测到的恶意程序数量、传播途径和受影响系统", + "DDoS攻击数据:分布式拒绝服务攻击的频率、规模、目标及地理分布", + "钓鱼和欺诈网站:每月仿冒网站数量、欺诈域名及关停统计", + "漏洞披露:国家信息安全漏洞共享平台(CNVD)软硬件漏洞上报统计", + "网络入侵事件:政府、企业和关键基础设施遭受侵害及处置情况", + "移动安全威胁:恶意应用、手机恶意软件和移动欺诈统计", + "工业控制系统(ICS)安全:关键基础设施行业的漏洞和事件数据", + "季度互联网安全通报:中国互联网近实时威胁情报摘要" + ] + } +} diff --git a/firstdata/sources/china/technology/internet/cnnic.json b/firstdata/sources/china/technology/internet/cnnic.json new file mode 100644 index 00000000..130e9129 --- /dev/null +++ b/firstdata/sources/china/technology/internet/cnnic.json @@ -0,0 +1,63 @@ +{ + "id": "china-cinic", + "name": { + "en": "China Internet Network Information Center", + "zh": "中国互联网络信息中心", + "native": "中国互联网络信息中心" + }, + "description": { + "en": "China Internet Network Information Center (CNNIC) is the state network information center under the Ministry of Industry and Information Technology. It publishes the authoritative Statistical Report on China's Internet Development (中国互联网络发展状况统计报告), released twice a year, covering internet users, broadband penetration, mobile internet, e-commerce, online services, and domain name registration statistics in China.", + "zh": "中国互联网络信息中心(CNNIC)是工业和信息化部下属的国家互联网络信息中心。每年发布两次《中国互联网络发展状况统计报告》,覆盖中国网民规模、宽带普及率、移动互联网、电子商务、网络服务和域名注册统计数据。" + }, + "website": "https://www.cnnic.cn", + "data_url": "https://www.cnnic.cn/11/38/326/index.html", + "api_url": null, + "authority_level": "government", + "country": "CN", + "domains": [ + "technology", + "telecommunications" + ], + "geographic_scope": "national", + "update_frequency": "irregular", + "tags": [ + "china", + "internet", + "cnnic", + "中国互联网", + "网民", + "互联网统计", + "宽带", + "移动互联网", + "电子商务", + "域名", + "digital", + "broadband", + "e-commerce", + "internet-users" + ], + "data_content": { + "en": [ + "Internet Users - Total number of internet users, internet penetration rate, urban vs. rural breakdown", + "Mobile Internet - Mobile internet users, smartphone usage, mobile app statistics", + "Broadband - Fixed broadband subscriptions, speeds, and household penetration rates", + "E-Commerce - Online shopping users, transaction volumes, cross-border e-commerce", + "Online Services - Online banking, online government services, online healthcare, online education usage", + "Domain Names - .CN domain registrations, IP address allocations, IPv6 adoption", + "Internet Infrastructure - Bandwidth capacity, international connectivity, internet exchange points", + "Social Media - Instant messaging, social network usage statistics", + "Digital Economy - Internet economic indicators, platform economy data" + ], + "zh": [ + "网民规模 - 网民总数、互联网普及率、城乡分布", + "移动互联网 - 手机网民规模、智能手机使用情况、移动应用统计", + "宽带接入 - 固定宽带订阅数、网速和家庭普及率", + "网络购物 - 网络购物用户规模、交易规模、跨境电商数据", + "网络服务 - 网络银行、网络政务、网络医疗、网络教育使用情况", + "域名注册 - .CN域名注册量、IP地址分配、IPv6普及情况", + "互联网基础资源 - 带宽容量、国际互联网出口、互联网交换中心", + "社交媒体 - 即时通信、社交网络使用统计", + "数字经济 - 互联网经济指标、平台经济数据" + ] + } +} \ No newline at end of file diff --git a/firstdata/sources/china/technology/sci_resources/china-most-infrastructure.json b/firstdata/sources/china/technology/sci_resources/china-most-infrastructure.json index 9d6c7a8e..a682e4f4 100644 --- a/firstdata/sources/china/technology/sci_resources/china-most-infrastructure.json +++ b/firstdata/sources/china/technology/sci_resources/china-most-infrastructure.json @@ -41,7 +41,7 @@ "开放共享", "open-sharing", "科技部", - "MOST", + "most", "分析仪器", "analytical-instruments", "电子显微镜", @@ -54,7 +54,7 @@ "synchrotron-radiation", "散裂中子源", "spallation-neutron-source", - "FAST", + "fast", "天眼", "望远镜", "telescope" diff --git a/firstdata/sources/china/technology/sci_resources/china-most-rnd.json b/firstdata/sources/china/technology/sci_resources/china-most-rnd.json index fece5923..181c2d88 100644 --- a/firstdata/sources/china/technology/sci_resources/china-most-rnd.json +++ b/firstdata/sources/china/technology/sci_resources/china-most-rnd.json @@ -24,35 +24,35 @@ "update_frequency": "annual", "tags": [ "国家重点研发计划", - "National Key R&D Program", + "national-key-r&d-program", "工业软件", - "Industrial Software", + "industrial-software", "智能机器人", - "Intelligent Robots", + "intelligent-robots", "高性能制造", - "Advanced Manufacturing", + "advanced-manufacturing", "新能源汽车", - "New Energy Vehicles", + "new-energy-vehicles", "科技项目", - "R&D Projects", + "r&d-projects", "科研资助", - "Research Funding", + "research-funding", "科技部", - "MOST", + "most", "工信部", - "MIIT", + "miit", "增材制造", - "Additive Manufacturing", + "additive-manufacturing", "先进计算", - "Advanced Computing", + "advanced-computing", "区块链", - "Blockchain", + "blockchain", "稀土材料", - "Rare Earth Materials", + "rare-earth-materials", "科学仪器", - "Scientific Instruments", + "scientific-instruments", "信息光子", - "Information Photonics" + "information-photonics" ], "data_content": { "en": [ diff --git a/firstdata/sources/china/technology/sci_resources/china-naoc.json b/firstdata/sources/china/technology/sci_resources/china-naoc.json new file mode 100644 index 00000000..e702e597 --- /dev/null +++ b/firstdata/sources/china/technology/sci_resources/china-naoc.json @@ -0,0 +1,76 @@ +{ + "id": "china-naoc", + "name": { + "en": "National Astronomical Observatories of China (NAOC)", + "zh": "中国科学院国家天文台" + }, + "description": { + "en": "The National Astronomical Observatories of China (NAOC), under the Chinese Academy of Sciences (CAS), is China's leading astronomical research institution. Founded in 2001 by merging four CAS observatories, NAOC operates major facilities including FAST (the world's largest single-dish radio telescope), the Guoshoujing Telescope (LAMOST) — the world's largest optical survey telescope — and the Beijing Spectral Telescope. Through its affiliated National Astronomical Data Center (NADC), NAOC provides open access to vast astronomy datasets including the LAMOST stellar spectral survey (over 20 million spectra), FAST pulsar and fast radio burst observations, sky survey catalogs, solar observation data, and space science mission data. The NADC is China's primary open astronomy data platform, facilitating reproducible research and international collaboration.", + "zh": "中国科学院国家天文台(NAOC)是中国主要的天文研究机构,隶属于中国科学院。国家天文台于2001年由中科院四个天文台整合成立,主要运行设施包括FAST(全球最大单口径射电望远镜)、郭守敬望远镜(LAMOST,全球最大光学巡天望远镜)和北京天体物理观测站。通过下属的国家天文科学数据中心(NADC),国家天文台对外开放天文数据集,包括LAMOST恒星光谱巡天(超2000万条光谱)、FAST脉冲星和快速射电暴观测数据、巡天星表、太阳观测数据及空间科学任务数据。NADC是中国最主要的开放天文数据平台,促进可重复研究和国际合作。" + }, + "website": "http://www.nao.cas.cn", + "data_url": "https://nadc.china-vo.org", + "api_url": null, + "authority_level": "research", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "science", + "astronomy", + "space" + ], + "update_frequency": "irregular", + "tags": [ + "国家天文台", + "naoc", + "fast", + "lamost", + "郭守敬望远镜", + "天文数据", + "astronomy-data", + "恒星光谱", + "stellar-spectra", + "射电天文", + "radio-astronomy", + "脉冲星", + "pulsar", + "快速射电暴", + "fast-radio-burst", + "巡天星表", + "sky-survey-catalog", + "太阳观测", + "solar-observation", + "国家天文科学数据中心", + "nadc", + "中国科学院", + "chinese-academy-of-sciences", + "开放天文数据", + "open-astronomy-data" + ], + "data_content": { + "en": [ + "LAMOST spectral survey: over 20 million stellar spectra from the Guoshoujing Telescope, accessible via NADC", + "FAST observatory data: pulsar timing, fast radio burst (FRB) detections, neutral hydrogen (HI) surveys", + "Sky survey catalogs: photometric and astrometric catalogs from multiple all-sky and deep-field surveys", + "Solar observation data: solar activity, sunspot records, solar radio bursts from Huairou Solar Observing Station", + "Variable star and transient event catalogs from NAOC monitoring programs", + "Space mission science data: planetary science and lunar exploration mission data products", + "High-energy astrophysics data: X-ray and gamma-ray source catalogs contributed to international archives", + "Historical astronomical records: digitized ancient Chinese star catalogs and eclipse records", + "Virtual observatory (VO) compliant data services through the China-VO platform", + "NADC open data archive: multi-wavelength datasets for reproducible astronomical research" + ], + "zh": [ + "LAMOST光谱巡天:郭守敬望远镜超2000万条恒星光谱,通过NADC开放获取", + "FAST天文台数据:脉冲星计时、快速射电暴(FRB)探测、中性氢(HI)巡天", + "巡天星表:来自多项全天和深场巡天项目的测光和天体测量星表", + "太阳观测数据:来自怀柔太阳观测基地的太阳活动、黑子记录和太阳射电爆发数据", + "国家天文台监测项目的变星和暂现天体星表", + "空间任务科学数据:行星科学和探月任务数据产品", + "高能天体物理数据:贡献至国际档案的X射线和伽马射线源星表", + "历史天文记录:中国古代星表和日食记录的数字化资料", + "通过中国-VO平台提供的虚拟天文台(VO)标准数据服务", + "NADC开放数据档案:支持天文学可重复研究的多波段数据集" + ] + } +} diff --git a/firstdata/sources/china/technology/standards/china-cnis.json b/firstdata/sources/china/technology/standards/china-cnis.json new file mode 100644 index 00000000..f7265c4f --- /dev/null +++ b/firstdata/sources/china/technology/standards/china-cnis.json @@ -0,0 +1,71 @@ +{ + "id": "china-cnis", + "name": { + "en": "China National Institute of Standardization", + "zh": "中国标准化研究院" + }, + "description": { + "en": "The China National Institute of Standardization (CNIS) is a central public research institution under the State Administration for Market Regulation (SAMR), dedicated to standardization research, standard development, and conformity assessment in China. CNIS serves as a key technical support body for China's national standardization system and participates in international standardization work through ISO and IEC. It conducts applied research on emerging technology standards including artificial intelligence, smart manufacturing, consumer safety, and green/low-carbon standards, and publishes authoritative research reports, standard interpretations, and policy consultations on China's standardization strategy.", + "zh": "中国标准化研究院(CNIS)是国家市场监督管理总局(市场监管总局)下属的中央公益性科研机构,专注于标准化研究、标准制定及合格评定工作。CNIS是中国国家标准化体系的重要技术支撑机构,并通过ISO和IEC参与国际标准化工作。研究院开展人工智能、智能制造、消费者安全、绿色低碳等新兴技术领域的应用研究,发布权威研究报告、标准解读及中国标准化战略政策咨询。" + }, + "website": "https://www.cnis.ac.cn", + "data_url": "https://www.cnis.ac.cn/kycg/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "technology", + "industry", + "economics" + ], + "update_frequency": "irregular", + "tags": [ + "标准化研究", + "standardization-research", + "国家标准", + "national-standard", + "GB标准", + "gb-standard", + "iso", + "iec", + "合格评定", + "conformity-assessment", + "人工智能标准", + "ai-standards", + "智能制造", + "smart-manufacturing", + "消费品安全", + "consumer-safety", + "绿色标准", + "green-standards", + "低碳", + "low-carbon", + "标准化战略", + "standardization-strategy", + "市场监管", + "market-regulation", + "samr", + "cnis" + ], + "data_content": { + "en": [ + "Standardization research reports: policy research on national and international standardization strategies, technical reports on emerging technology standards", + "Standard development data: statistics on national standards (GB) in development, revision, and adoption by sector", + "Conformity assessment research: research on testing, inspection, and certification systems aligned with international best practices", + "AI and digital standards: technical frameworks and research for artificial intelligence, big data, and smart manufacturing standardization", + "Green and low-carbon standards: research outputs supporting China's dual-carbon goals through standardization of energy, emissions, and circular economy", + "Consumer product safety: research and standards development for product safety requirements and testing methods", + "International standardization: Chinese participation in ISO/IEC technical committees and outcomes of international standard votes" + ], + "zh": [ + "标准化研究报告:国内外标准化战略政策研究、新兴技术标准技术报告", + "标准制定数据:按行业分类的国家标准(GB)制定、修订和采标统计", + "合格评定研究:与国际最佳实践接轨的检测、检验和认证体系研究", + "人工智能与数字标准:人工智能、大数据和智能制造标准化技术框架与研究", + "绿色低碳标准:支持中国双碳目标的能源、排放及循环经济标准化研究成果", + "消费品安全:产品安全要求和测试方法的研究与标准制定", + "国际标准化:中国参与ISO/IEC技术委员会情况及国际标准投票结果" + ] + } +} diff --git a/firstdata/sources/china/technology/standards/china-csa.json b/firstdata/sources/china/technology/standards/china-csa.json new file mode 100644 index 00000000..40830884 --- /dev/null +++ b/firstdata/sources/china/technology/standards/china-csa.json @@ -0,0 +1,78 @@ +{ + "id": "china-csa", + "name": { + "en": "China Association for Standardization", + "zh": "中国标准化协会" + }, + "description": { + "en": "The China Association for Standardization (CAS/CSA) is a national non-governmental industry organization founded in 1978, operating under the guidance of the State Administration for Market Regulation (SAMR) and the Standardization Administration of China (SAC). CSA is a key platform for voluntary standards development, standards education and promotion, and international standardization cooperation in China. The association develops group standards (团体标准) across industry sectors, provides standardization consulting and certification services, and organizes technical committees for emerging technology areas including smart manufacturing, e-commerce, carbon neutrality, and data governance. CSA publishes research reports on China's standardization policy landscape, group standards directories, and industry-specific standardization roadmaps. It interfaces with ISO, IEC, and ITU for Chinese participation in international standards development and serves as a bridge between government standardization agencies and enterprise standards practices.", + "zh": "中国标准化协会(CSA)成立于1978年,是在国家市场监督管理总局和国家标准化管理委员会指导下运行的全国性非政府行业组织。CSA是中国自愿性标准制定、标准教育和推广以及国际标准化合作的重要平台。协会在智能制造、电子商务、碳中和和数据治理等新兴技术领域跨行业制定团体标准,提供标准化咨询和认证服务,并组织技术委员会。CSA发布中国标准化政策研究报告、团体标准目录和行业标准化路线图,对接ISO、IEC和ITU,推动中国参与国际标准制定,是政府标准化机构与企业标准实践的重要桥梁。" + }, + "website": "https://www.china-cas.org", + "data_url": "https://www.china-cas.org", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "technology", + "industry", + "science", + "economics" + ], + "update_frequency": "irregular", + "tags": [ + "中国标准化协会", + "csa", + "china-association-for-standardization", + "标准化", + "standardization", + "团体标准", + "group-standards", + "自愿性标准", + "voluntary-standards", + "国家标准化管理委员会", + "sac", + "国家市场监督管理总局", + "samr", + "iso", + "iec", + "itu", + "国际标准化", + "international-standardization", + "智能制造", + "smart-manufacturing", + "碳中和", + "carbon-neutrality", + "数据治理", + "data-governance", + "标准化政策", + "standardization-policy", + "标准化路线图", + "standardization-roadmap", + "电子商务", + "e-commerce", + "标准化咨询", + "standardization-consulting", + "新兴技术", + "emerging-technology" + ], + "data_content": { + "en": [ + "Group standards (团体标准) directory and database: searchable registry of voluntary group standards developed by CSA and its technical committees across sectors including smart manufacturing, green economy, digital economy, logistics, and consumer goods, with standard status, applicability, and revision history", + "Standards search and access platform: query interface for China's national standards (GB/T), industry standards, and group standards with cross-reference to international standards equivalents (ISO, IEC, ASTM), supporting standards research and compliance work", + "Standardization policy research reports: annual and thematic reports on China's standardization strategy, reform progress, international standards adoption rates, and policy developments in key sectors such as AI governance, carbon neutrality, and digital infrastructure", + "International standards participation data: records of Chinese expert participation in ISO and IEC technical committees, Chinese-led international standard projects, and adopted international standards incorporated into China's national standards system", + "Standards education and certification data: training curriculum materials, examination statistics for standardization professionals, and data on certified enterprise standardization managers and national model enterprises for standardization", + "Industry standardization roadmaps: technology and sector-specific standardization roadmaps co-developed with industry partners covering emerging fields such as hydrogen energy, new energy vehicles, industrial internet, and blockchain applications in China" + ], + "zh": [ + "团体标准目录和数据库:CSA及其技术委员会在智能制造、绿色经济、数字经济、物流和消费品等领域制定的自愿性团体标准可检索注册库,含标准状态、适用范围和修订历史", + "标准检索和查询平台:中国国家标准(GB/T)、行业标准和团体标准查询界面,交叉引用ISO、IEC、ASTM等国际标准对应关系,支持标准研究和合规工作", + "标准化政策研究报告:中国标准化战略、改革进展、国际标准采用率年度和专题报告,以及人工智能治理、碳中和和数字基础设施等重点领域政策动态", + "国际标准参与数据:中国专家参与ISO和IEC技术委员会的记录、中国主导的国际标准项目,以及纳入中国国家标准体系的已采用国际标准", + "标准化教育和认证数据:标准化专业人员培训课程材料、考试统计数据,以及认证企业标准化管理者和国家标准化示范企业数据", + "行业标准化路线图:与行业伙伴联合制定的技术和领域专属标准化路线图,涵盖氢能、新能源汽车、工业互联网和区块链在中国的应用等新兴领域" + ] + } +} diff --git a/firstdata/sources/china/technology/standards/china-nim.json b/firstdata/sources/china/technology/standards/china-nim.json new file mode 100644 index 00000000..c3860191 --- /dev/null +++ b/firstdata/sources/china/technology/standards/china-nim.json @@ -0,0 +1,67 @@ +{ + "id": "china-nim", + "name": { + "en": "National Institute of Metrology China", + "zh": "中国计量科学研究院" + }, + "description": { + "en": "The National Institute of Metrology (NIM) is China's highest-level national metrology institution, responsible for establishing and maintaining China's national measurement standards. Established in 1955 and operating under the State Administration for Market Regulation (SAMR), NIM develops primary measurement standards for the seven SI base units (length, mass, time, temperature, amount of substance, luminous intensity, and electric current) and derived measurement units. NIM provides China's official traceability infrastructure for scientific measurement, industrial calibration, and legal metrology. The institute conducts research on advanced measurement science and hosts the NIM Time Service, providing China's official time standard and frequency calibration. NIM also participates in the International Bureau of Weights and Measures (BIPM) key comparisons, validating China's measurement capabilities on the global stage.", + "zh": "中国计量科学研究院(NIM)是中国最高级别的国家计量机构,负责建立和维护国家测量标准。研究院成立于1955年,隶属国家市场监督管理总局(市场监管总局),负责建立国际单位制(SI)七个基本量(长度、质量、时间、温度、物质的量、发光强度和电流)及导出量的基准测量标准。NIM为科学测量、工业校准和法制计量提供中国官方量值溯源体系,同时开展先进测量科学研究,并运营NIM时间服务,提供中国官方时间标准和频率校准。研究院积极参与国际计量局(BIPM)关键比对,在国际层面验证中国测量能力。" + }, + "website": "https://www.nim.ac.cn/", + "data_url": "https://www.nim.ac.cn/nim_time", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "technology", + "science", + "governance" + ], + "update_frequency": "real-time", + "tags": [ + "计量", + "metrology", + "测量标准", + "measurement-standards", + "校准", + "calibration", + "时间标准", + "time-standard", + "频率标准", + "frequency-standard", + "SI单位", + "si-units", + "量值溯源", + "measurement-traceability", + "法制计量", + "legal-metrology", + "bipm", + "nim", + "国家标准", + "national-standard", + "精密测量", + "precision-measurement" + ], + "data_content": { + "en": [ + "National time standard: real-time UTC(NIM) time signal and frequency calibration service", + "Primary measurement standards: maintained reference standards for SI base units", + "Calibration certificates: official traceable calibration records for scientific and industrial instruments", + "Key comparison results: international measurement comparison data with BIPM and national metrology institutes", + "Measurement uncertainty reports: documented uncertainty budgets for national measurement standards", + "Research publications: measurement science advances in quantum metrology, nanometrology, and precision instrumentation", + "Legal metrology data: type approval and verification data for measuring instruments used in trade and safety" + ], + "zh": [ + "国家时间标准:UTC(NIM)实时时间信号及频率校准服务", + "基准测量标准:SI基本单位维持参考标准", + "校准证书:科学及工业仪器官方可溯源校准记录", + "关键比对结果:与BIPM及各国国家计量机构的国际测量比对数据", + "测量不确定度报告:国家测量标准不确定度溯源文件", + "科研成果:量子计量学、纳米计量学及精密仪器测量科学进展", + "法制计量数据:贸易及安全领域用计量器具型式批准和检定数据" + ] + } +} diff --git a/firstdata/sources/china/technology/standards/china-openstd.json b/firstdata/sources/china/technology/standards/china-openstd.json new file mode 100644 index 00000000..9a03d4c8 --- /dev/null +++ b/firstdata/sources/china/technology/standards/china-openstd.json @@ -0,0 +1,79 @@ +{ + "id": "china-openstd", + "name": { + "en": "China National Standards Full Text Public Access System", + "zh": "国家标准全文公开系统" + }, + "description": { + "en": "The National Standards Full Text Public Access System (国家标准全文公开系统) is an official platform operated by the State Administration for Market Regulation (SAMR) that provides free public access to the full text of Chinese national standards (GB and GB/T standards). Launched to fulfill the mandate of China's Standardization Law, the system enables any user to read, search, and download the complete text of mandatory and recommended national standards covering industrial products, safety, environmental protection, health, infrastructure, and information technology. The platform houses over 40,000 active national standards and provides access to withdrawn and historical standards for reference. It is the authoritative open repository for China's national standardization system and is essential for enterprises, researchers, regulators, and trading partners seeking to comply with or analyze China's technical standards framework.", + "zh": "国家标准全文公开系统是由国家市场监督管理总局(市监总局)运营的官方平台,向社会免费提供中国国家标准(GB、GB/T标准)全文公开查询和下载服务。系统依据《标准化法》要求建设,任何用户均可检索和下载工业产品、安全、环境保护、卫生、基础设施和信息技术等领域强制性和推荐性国家标准全文。平台收录现行有效国家标准逾4万项,并提供废止和历史标准查询功能。该系统是中国国家标准体系的权威开放资源库,是企业合规、研究机构分析、监管机构参考及贸易伙伴了解中国技术标准体系的核心工具。" + }, + "website": "https://openstd.samr.gov.cn/", + "data_url": "https://openstd.samr.gov.cn/", + "api_url": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "technology", + "industry", + "governance" + ], + "update_frequency": "irregular", + "tags": [ + "国家标准全文公开系统", + "国家标准", + "national-standards", + "GB标准", + "gb-standards", + "gb/t", + "推荐性标准", + "recommended-standards", + "强制性标准", + "mandatory-standards", + "市场监督管理总局", + "samr", + "标准化", + "standardization", + "技术标准", + "technical-standards", + "产品标准", + "product-standards", + "安全标准", + "safety-standards", + "环保标准", + "environmental-standards", + "合规", + "compliance", + "贸易壁垒", + "trade-barriers", + "标准查询", + "standards-search", + "工业标准", + "industrial-standards", + "信息技术标准", + "it-standards" + ], + "data_content": { + "en": [ + "Mandatory national standards (GB): full text of compulsory standards that enterprises and products must comply with to be sold in China", + "Recommended national standards (GB/T): full text of voluntary technical standards covering industrial products, processes, and services", + "Standard metadata: standard number, title, applicable scope, issuing authority, effective date, and revision history", + "Historical standards: withdrawn and superseded standards for historical compliance reference and research", + "Standard classification: browsable by International Classification for Standards (ICS) and China Standard Classification (CCS) codes", + "Cross-reference data: relationships between national standards and corresponding international standards (ISO, IEC, ITU)", + "Sector-specific standards: standards for food safety, construction, automotive, electronics, chemicals, textiles, health, and environmental protection", + "Standards adoption data: tracking the adoption rate of international standards into China's national standards framework" + ], + "zh": [ + "强制性国家标准(GB):企业和产品在中国境内销售必须遵守的强制性标准全文", + "推荐性国家标准(GB/T):涵盖工业产品、工艺流程和服务的自愿性技术标准全文", + "标准元数据:标准编号、标题、适用范围、发布机构、实施日期和修订历史", + "历史标准:已废止和被替代标准,供历史合规参考和研究使用", + "标准分类:按国际标准分类法(ICS)和中国标准分类法(CCS)浏览", + "交叉引用数据:国家标准与对应国际标准(ISO、IEC、ITU)的对照关系", + "行业专项标准:食品安全、建筑、汽车、电子、化工、纺织、卫生和环保等领域的标准", + "标准采标数据:追踪国际标准转化为中国国家标准的采标率" + ] + } +} diff --git a/firstdata/sources/china/technology/standards/china-sac-standards.json b/firstdata/sources/china/technology/standards/china-sac-standards.json index 43889746..621deea4 100644 --- a/firstdata/sources/china/technology/standards/china-sac-standards.json +++ b/firstdata/sources/china/technology/standards/china-sac-standards.json @@ -25,25 +25,25 @@ "update_frequency": "irregular", "tags": [ "国家标准", - "national standards", - "GB", - "GB/T", + "national-standards", + "gb", + "gb/t", "强制性标准", - "mandatory standards", + "mandatory-standards", "推荐性标准", - "recommended standards", + "recommended-standards", "行业标准", - "industry standards", + "industry-standards", "地方标准", - "local standards", + "local-standards", "标准化", "standardization", "质量管理", - "quality management", + "quality-management", "技术规范", - "technical specifications", - "SAC", - "SAMR", + "technical-specifications", + "sac", + "samr", "市场监管总局" ], "data_content": { diff --git a/firstdata/sources/china/technology/telecommunications/china-ccsa.json b/firstdata/sources/china/technology/telecommunications/china-ccsa.json new file mode 100644 index 00000000..fb6ce12a --- /dev/null +++ b/firstdata/sources/china/technology/telecommunications/china-ccsa.json @@ -0,0 +1,66 @@ +{ + "id": "china-ccsa", + "name": { + "en": "China Communication Standards Association", + "zh": "中国通信标准化协会" + }, + "description": { + "en": "The China Communication Standards Association (CCSA) is the national standardization organization for China's telecommunications and information technology sectors, operating under the Ministry of Industry and Information Technology (MIIT). CCSA coordinates the development and release of telecommunications standards across 5G, broadband networks, internet, IoT, cloud computing, cybersecurity, and intelligent transportation. With over 600 corporate members including China's major telecom operators (China Telecom, China Mobile, China Unicom) and equipment manufacturers, CCSA represents the primary venue for Chinese telecom industry standardization. It actively participates in international standards bodies including ITU-T, ITU-R, ISO, and IEC, and has contributed significantly to global 5G standards. CCSA publishes technical reports, standard specifications, and industry white papers on emerging communications technologies.", + "zh": "中国通信标准化协会(CCSA)是在工业和信息化部指导下,负责中国电信和信息技术领域标准化工作的全国性行业组织。协会协调5G、宽带网络、互联网、物联网、云计算、网络安全及智能交通等领域电信标准的制定与发布。CCSA拥有600余家团体会员,涵盖中国三大电信运营商(中国电信、中国移动、中国联通)及主要设备制造商,是中国电信行业标准化的核心平台。协会积极参与ITU-T、ITU-R、ISO、IEC等国际标准化机构的工作,并在全球5G标准制定中作出重要贡献,同时发布新兴通信技术领域的技术报告、标准规范和行业白皮书。" + }, + "website": "https://www.ccsa.org.cn/", + "data_url": "https://www.ccsa.org.cn/webadmin/", + "api_url": null, + "authority_level": "other", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "technology", + "telecommunications", + "digital-economy" + ], + "update_frequency": "irregular", + "tags": [ + "通信标准", + "telecommunications-standards", + "5g", + "物联网", + "iot", + "云计算", + "cloud-computing", + "网络安全", + "cybersecurity", + "宽带", + "broadband", + "行业标准", + "industry-standards", + "itu", + "ccsa", + "通信协议", + "communication-protocol", + "信息技术", + "information-technology", + "工业互联网", + "industrial-internet" + ], + "data_content": { + "en": [ + "Telecommunications standard specifications: 5G, LTE, broadband, fixed and mobile network protocols", + "Technical committee reports: working group outputs from TC1 to TC12 covering different technology domains", + "Industry white papers: emerging technology assessments for IoT, cloud computing, AI, and smart city", + "Standard development plans: annual work program for new and revised telecommunications standards", + "International liaison documents: Chinese contributions to ITU-T and ITU-R study groups", + "Conformance testing reports: test specifications for equipment certification and interoperability", + "Cybersecurity standards: network security baselines, threat assessments, and protection specifications" + ], + "zh": [ + "电信标准规范:5G、LTE、宽带、固定及移动网络协议标准", + "技术委员会报告:TC1至TC12各技术领域工作组输出成果", + "行业白皮书:物联网、云计算、人工智能及智慧城市新兴技术评估", + "标准制定计划:电信新标准及修订标准年度工作计划", + "国际联络文件:向ITU-T和ITU-R研究组提交的中国贡献文稿", + "符合性测试报告:设备认证及互操作性测试规范", + "网络安全标准:网络安全基线、威胁评估及防护规范" + ] + } +} diff --git a/firstdata/sources/china/technology/telecommunications/china-miit.json b/firstdata/sources/china/technology/telecommunications/china-miit.json index 0a01d6ca..37458d0a 100644 --- a/firstdata/sources/china/technology/telecommunications/china-miit.json +++ b/firstdata/sources/china/technology/telecommunications/china-miit.json @@ -41,13 +41,13 @@ "汽车", "automotive", "原材料", - "raw materials", + "raw-materials", "消费品", - "consumer goods", + "consumer-goods", "工信部", - "MIIT", + "miit", "中国制造", - "Made in China" + "made-in-china" ], "data_content": { "en": [ diff --git a/firstdata/sources/china/technology/telecommunications/china-tower.json b/firstdata/sources/china/technology/telecommunications/china-tower.json new file mode 100644 index 00000000..94f7719f --- /dev/null +++ b/firstdata/sources/china/technology/telecommunications/china-tower.json @@ -0,0 +1,70 @@ +{ + "id": "china-tower", + "name": { + "en": "China Tower Corporation", + "zh": "中国铁塔股份有限公司" + }, + "description": { + "en": "China Tower Corporation is the world's largest telecommunications tower company by site count, established in 2014 as a joint venture among China Mobile, China Unicom, China Telecom, and China Reform (a state capital investment company). The company manages over 2 million tower sites across China, providing shared passive telecommunications infrastructure including towers, poles, indoor distributed antenna systems, and power facilities for mobile network operators. China Tower publishes annual reports, half-year reports, quarterly operational data, and sustainability reports as a Hong Kong Stock Exchange-listed company (HK.0788). Its disclosures include tower site counts, tenancy ratios, new tower construction statistics, 5G site deployment progress, and energy consumption data for base station power supply. China Tower data is authoritative for tracking China's 5G infrastructure rollout, tower industry consolidation benefits, telecom infrastructure sharing policy outcomes, and mobile network coverage expansion in rural and remote areas.", + "zh": "中国铁塔股份有限公司是全球站址数量最多的通信铁塔企业,2014年由中国移动、中国联通、中国电信及中国国新控股有限责任公司合资组建。公司管理全国逾200万个铁塔站址,为移动通信运营商提供铁塔、杆路、室内分布系统及配套电源设施等共享无源基础设施。作为香港联交所上市公司(港股代码:0788),中国铁塔定期发布年报、半年报、季度运营数据及可持续发展报告,包括铁塔站址数量、共享租户数、新建塔统计、5G站址部署进度及基站供电能耗数据。中国铁塔数据是追踪中国5G基础设施建设进度、铁塔行业整合效益、通信基础设施共享政策成效及农村和偏远地区移动网络覆盖扩展的权威参考。" + }, + "website": "https://www.china-tower.com", + "data_url": "https://ir.china-tower.com/sc/ir/reports.php", + "api_url": null, + "authority_level": "commercial", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "technology", + "telecommunications", + "infrastructure" + ], + "update_frequency": "quarterly", + "tags": [ + "中国铁塔", + "china-tower", + "通信基础设施", + "telecom-infrastructure", + "铁塔", + "tower", + "5g", + "5G基站", + "5g-deployment", + "基站", + "base-station", + "共享铁塔", + "tower-sharing", + "移动通信", + "mobile-network", + "港股", + "hkex-listed", + "铁塔共享", + "infrastructure-sharing", + "农村覆盖", + "rural-coverage", + "中国移动", + "china-mobile" + ], + "data_content": { + "en": [ + "Annual and half-year reports: financial statements, revenue by service type, EBITDA margins, and capital expenditure on tower construction", + "Tower site statistics: total site counts by province and type (ground-based towers, rooftop sites, indoor DAS systems, small cells)", + "Tenancy ratios: average number of tenants per tower site, new tenancy additions, and revenue per tower site trends", + "5G infrastructure deployment: cumulative and quarterly 5G-enabled site counts, new 5G site construction statistics by operator", + "Rural and remote coverage: tower site deployment under universal service obligation, natural village coverage rates", + "Energy and sustainability data: total power consumption of tower sites, diesel generator usage, green energy adoption rates, and carbon emissions from operations", + "Shared infrastructure savings: estimated savings to operators from infrastructure sharing versus independent deployment", + "Operational efficiency metrics: tower utilization rates, maintenance cost per site, and network availability statistics" + ], + "zh": [ + "年报和半年报:财务报表、分服务类型收入、EBITDA利润率及铁塔建设资本支出", + "铁塔站址统计:按省和类型(地面塔、楼顶站、室内分布系统、小基站)分类的站址总数", + "共享率:平均每站址租户数、新增租户量及每站址收入趋势", + "5G基础设施部署:5G站址累计数量和季度新增数,按运营商分类的5G新建站统计", + "农村和偏远地区覆盖:普遍服务义务下的铁塔建设,自然村覆盖率数据", + "能源与可持续数据:铁塔站址总耗电量、柴油发电机使用情况、绿色能源使用率及运营碳排放", + "共享基础设施节省估算:基础设施共享模式相比独立建设为运营商节省的成本", + "运营效率指标:铁塔利用率、每站址维护成本和网络可用性统计" + ] + } +} diff --git a/firstdata/sources/countries/africa/egypt/egypt-capmas.json b/firstdata/sources/countries/africa/egypt/egypt-capmas.json new file mode 100644 index 00000000..0b8bc8f5 --- /dev/null +++ b/firstdata/sources/countries/africa/egypt/egypt-capmas.json @@ -0,0 +1,47 @@ +{ + "id": "egypt-capmas", + "name": { + "en": "Central Agency for Public Mobilization and Statistics (CAPMAS)", + "zh": "埃及中央公共动员与统计局" + }, + "description": { + "en": "The official statistical agency of Egypt responsible for statistical data collection, census operations, and dissemination of national statistics.", + "zh": "埃及官方统计机构,负责统计数据收集、人口普查和国家统计发布。" + }, + "website": "https://www.capmas.gov.eg/", + "data_url": "https://www.capmas.gov.eg/Pages/Publications.aspx", + "api_url": null, + "authority_level": "government", + "country": "EG", + "domains": [ + "economics", + "demographics" + ], + "tags": [ + "statistics", + "gdp", + "population", + "census", + "trade", + "egypt", + "africa" + ], + "update_frequency": "monthly", + "data_content": { + "en": [ + "Population census", + "GDP and national accounts", + "Consumer price index", + "Trade statistics", + "Employment data" + ], + "zh": [ + "人口普查", + "GDP和国民账户", + "消费者价格指数", + "贸易统计", + "就业数据" + ] + }, + "geographic_scope": "national" +} diff --git a/firstdata/sources/countries/africa/ghana/ghana-gss.json b/firstdata/sources/countries/africa/ghana/ghana-gss.json new file mode 100644 index 00000000..9dfa707f --- /dev/null +++ b/firstdata/sources/countries/africa/ghana/ghana-gss.json @@ -0,0 +1,57 @@ +{ + "id": "ghana-gss", + "name": { + "en": "Ghana Statistical Service", + "zh": "加纳统计局" + }, + "description": { + "en": "Ghana's official statistical agency responsible for producing population census, GDP, CPI, labor force surveys, trade statistics, and other socioeconomic indicators.", + "zh": "加纳官方统计机构,负责发布人口普查、GDP、消费者价格指数、劳动力调查、贸易统计和其他社会经济指标。" + }, + "website": "https://statsghana.gov.gh", + "data_url": "https://statsghana.gov.gh/data-statistics/economic-statistics", + "api_url": null, + "country": "GH", + "geographic_scope": "national", + "authority_level": "government", + "domains": [ + "economics", + "demographics", + "trade", + "agriculture" + ], + "update_frequency": "annual", + "data_content": { + "en": [ + "Population and housing census", + "GDP and national accounts", + "Consumer price index (CPI)", + "Labor force survey", + "Foreign trade statistics", + "Agricultural census", + "Living standards survey", + "Industrial statistics" + ], + "zh": [ + "人口与住房普查", + "GDP与国民账户", + "消费者价格指数", + "劳动力调查", + "对外贸易统计", + "农业普查", + "生活水平调查", + "工业统计" + ] + }, + "tags": [ + "ghana", + "加纳", + "statistics", + "统计局", + "africa", + "非洲", + "gdp", + "census", + "cpi" + ] +} diff --git a/firstdata/sources/countries/africa/kenya/kenya-knbs.json b/firstdata/sources/countries/africa/kenya/kenya-knbs.json new file mode 100644 index 00000000..087ba1c8 --- /dev/null +++ b/firstdata/sources/countries/africa/kenya/kenya-knbs.json @@ -0,0 +1,58 @@ +{ + "id": "kenya-knbs", + "name": { + "en": "Kenya National Bureau of Statistics", + "zh": "肯尼亚国家统计局" + }, + "description": { + "en": "Kenya's principal agency for collecting, analyzing, and disseminating statistical data including population census, economic surveys, CPI, GDP, labor force, trade, and household surveys.", + "zh": "肯尼亚负责收集、分析和发布统计数据的主要机构,包括人口普查、经济调查、消费者价格指数、GDP、劳动力、贸易和住户调查。" + }, + "website": "https://www.knbs.or.ke", + "data_url": "https://www.knbs.or.ke/publications/", + "api_url": null, + "country": "KE", + "geographic_scope": "national", + "authority_level": "government", + "domains": [ + "economics", + "demographics", + "trade", + "agriculture", + "health" + ], + "update_frequency": "annual", + "data_content": { + "en": [ + "Population and housing census", + "Economic survey", + "Consumer price index (CPI)", + "GDP and national accounts", + "Labor force statistics", + "Foreign trade statistics", + "Agricultural production", + "Health and demographic indicators" + ], + "zh": [ + "人口与住房普查", + "经济调查", + "消费者价格指数", + "GDP与国民账户", + "劳动力统计", + "对外贸易统计", + "农业生产", + "健康与人口指标" + ] + }, + "tags": [ + "kenya", + "肯尼亚", + "statistics", + "统计局", + "africa", + "非洲", + "gdp", + "census", + "cpi" + ] +} diff --git a/firstdata/sources/countries/africa/nigeria/nigeria-nbs.json b/firstdata/sources/countries/africa/nigeria/nigeria-nbs.json new file mode 100644 index 00000000..de78e5c6 --- /dev/null +++ b/firstdata/sources/countries/africa/nigeria/nigeria-nbs.json @@ -0,0 +1,47 @@ +{ + "id": "nigeria-nbs", + "name": { + "en": "National Bureau of Statistics Nigeria (NBS)", + "zh": "尼日利亚国家统计局" + }, + "description": { + "en": "The main national agency for official statistics in Nigeria, providing data on GDP, inflation, trade, employment, and poverty.", + "zh": "尼日利亚官方统计机构,提供GDP、通胀、贸易、就业和贫困数据。" + }, + "website": "https://www.nigerianstat.gov.ng/", + "data_url": "https://www.nigerianstat.gov.ng/elibrary", + "api_url": null, + "authority_level": "government", + "country": "NG", + "domains": [ + "economics", + "demographics" + ], + "tags": [ + "statistics", + "gdp", + "inflation", + "trade", + "poverty", + "nigeria", + "africa" + ], + "update_frequency": "quarterly", + "data_content": { + "en": [ + "GDP reports", + "Consumer price index", + "Trade statistics", + "Poverty and inequality", + "Employment data" + ], + "zh": [ + "GDP报告", + "消费者价格指数", + "贸易统计", + "贫困与不平等", + "就业数据" + ] + }, + "geographic_scope": "national" +} diff --git a/firstdata/sources/countries/africa/south-africa/south-africa-statssa.json b/firstdata/sources/countries/africa/south-africa/south-africa-statssa.json new file mode 100644 index 00000000..8a69bec3 --- /dev/null +++ b/firstdata/sources/countries/africa/south-africa/south-africa-statssa.json @@ -0,0 +1,47 @@ +{ + "id": "south-africa-statssa", + "name": { + "en": "Statistics South Africa (Stats SA)", + "zh": "南非统计局" + }, + "description": { + "en": "South Africa's national statistical service providing comprehensive demographic, economic, and social data including census, GDP, and labour force surveys.", + "zh": "南非国家统计服务机构,提供全面的人口、经济和社会数据。" + }, + "website": "https://www.statssa.gov.za/", + "data_url": "https://www.statssa.gov.za/?page_id=1854", + "api_url": null, + "authority_level": "government", + "country": "ZA", + "domains": [ + "economics", + "demographics" + ], + "tags": [ + "statistics", + "gdp", + "population", + "census", + "poverty", + "south-africa", + "africa" + ], + "update_frequency": "quarterly", + "data_content": { + "en": [ + "GDP and national accounts", + "Population census", + "Labour force survey", + "Consumer price index", + "Poverty and inequality" + ], + "zh": [ + "GDP和国民账户", + "人口普查", + "劳动力调查", + "消费者价格指数", + "贫困与不平等" + ] + }, + "geographic_scope": "national" +} diff --git a/firstdata/sources/countries/africa/south-africa/stats-sa.json b/firstdata/sources/countries/africa/south-africa/stats-sa.json new file mode 100644 index 00000000..bb437ea0 --- /dev/null +++ b/firstdata/sources/countries/africa/south-africa/stats-sa.json @@ -0,0 +1,84 @@ +{ + "id": "stats-sa", + "name": { + "en": "Statistics South Africa (Stats SA)", + "zh": "南非统计局", + "native": "Statistics South Africa (Stats SA)" + }, + "description": { + "en": "South Africa's national statistics agency responsible for producing timely, accurate and official statistics that are relevant to all people in the country. Stats SA conducts population censuses, household surveys, and produces key economic indicators including GDP, inflation, employment, and trade statistics. It serves as the primary source of official statistics in Africa's most industrialized economy.", + "zh": "南非国家统计机构,负责为全体国民提供及时、准确的官方统计数据。南非统计局开展人口普查和住户调查,发布包括GDP、通货膨胀、就业和贸易统计在内的主要经济指标,是非洲工业化程度最高经济体的主要官方统计数据来源。" + }, + "website": "https://www.statssa.gov.za", + "data_url": "https://www.statssa.gov.za/?page_id=1521", + "api_url": null, + "authority_level": "government", + "country": "ZA", + "domains": [ + "demographics", + "economics", + "employment", + "prices", + "housing", + "health", + "education", + "agriculture", + "trade", + "social" + ], + "geographic_scope": "national", + "update_frequency": "quarterly", + "tags": [ + "stats-sa", + "south-africa", + "statistics", + "census", + "demographics", + "gdp", + "inflation", + "cpi", + "employment", + "poverty", + "inequality", + "gini-coefficient", + "africa", + "南非", + "国家统计", + "人口普查", + "非洲" + ], + "data_content": { + "en": [ + "Census of Population (National Census) - most recent in 2022", + "Community Survey - mid-decade population sample survey", + "Quarterly Labour Force Survey (QLFS) - employment and unemployment data", + "Consumer Price Index (CPI) - monthly inflation measurement", + "Gross Domestic Product (GDP) - quarterly national accounts", + "General Household Survey (GHS) - access to services, poverty, education", + "Income and Expenditure Survey - household income, spending and poverty", + "Living Conditions Survey - poverty and inequality measures including Gini coefficient", + "Agricultural census and survey data", + "Tourism statistics and international arrivals", + "Manufacturing production and sales statistics", + "Financial statistics of municipalities and national government", + "Recorded crime statistics and safety surveys", + "Mortality and causes of death statistics" + ], + "zh": [ + "全国人口普查(最近一次为2022年)", + "社区调查 - 十年期间人口抽样调查", + "季度劳动力调查(QLFS)- 就业和失业数据", + "消费者价格指数(CPI)- 月度通胀测量", + "国内生产总值(GDP)- 季度国民账户", + "一般家庭调查(GHS)- 服务获取、贫困、教育", + "收入与支出调查 - 家庭收入、消费和贫困状况", + "生活条件调查 - 贫困和不平等指标,含基尼系数", + "农业普查和调查数据", + "旅游统计和国际入境人数", + "制造业生产和销售统计", + "市政和国家政府财政统计", + "记录犯罪统计和安全调查", + "死亡率和死亡原因统计" + ] + } +} diff --git a/firstdata/sources/countries/asia/brunei/brunei-deps.json b/firstdata/sources/countries/asia/brunei/brunei-deps.json new file mode 100644 index 00000000..66166ce0 --- /dev/null +++ b/firstdata/sources/countries/asia/brunei/brunei-deps.json @@ -0,0 +1,63 @@ +{ + "id": "brunei-deps", + "name": { + "en": "Department of Economic Planning and Statistics, Brunei (DEPS)", + "zh": "文莱经济规划与统计局" + }, + "description": { + "en": "The Department of Economic Planning and Statistics (DEPS) is the national statistical office of Brunei Darussalam, operating under the Prime Minister's Office. It produces and disseminates official statistics on national accounts, population, trade, labor, prices, and other economic and social indicators, supporting government planning and public information needs.", + "zh": "文莱经济规划与统计局(DEPS)是文莱达鲁萨兰国的国家统计机构,隶属于首相府。负责编制和发布关于国民账户、人口、贸易、劳动力、物价和其他经济社会指标的官方统计数据。" + }, + "website": "https://deps.mofe.gov.bn/", + "data_url": "https://deps.mofe.gov.bn/edata-library/", + "api_url": null, + "authority_level": "government", + "country": "BN", + "domains": [ + "economics", + "demographics", + "trade" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "brunei", + "文莱", + "deps", + "statistics", + "统计局", + "gdp", + "population", + "人口", + "trade", + "贸易", + "oil-and-gas", + "石油天然气", + "asean", + "东盟", + "southeast-asia", + "东南亚" + ], + "data_content": { + "en": [ + "National accounts and GDP statistics", + "Population and demographic data", + "Consumer Price Index (CPI) and inflation", + "International merchandise trade statistics", + "Labor force survey results", + "Oil and gas production statistics", + "Government finance statistics", + "Key economic indicators dashboard" + ], + "zh": [ + "国民账户和GDP统计", + "人口和人口统计数据", + "消费者价格指数(CPI)和通胀", + "国际商品贸易统计", + "劳动力调查结果", + "石油和天然气生产统计", + "政府财政统计", + "关键经济指标看板" + ] + } +} diff --git a/firstdata/sources/countries/asia/cambodia/cambodia-nis.json b/firstdata/sources/countries/asia/cambodia/cambodia-nis.json new file mode 100644 index 00000000..249260b8 --- /dev/null +++ b/firstdata/sources/countries/asia/cambodia/cambodia-nis.json @@ -0,0 +1,61 @@ +{ + "id": "cambodia-nis", + "name": { + "en": "National Institute of Statistics of Cambodia (NIS)", + "zh": "柬埔寨国家统计局" + }, + "description": { + "en": "The National Institute of Statistics (NIS) is the principal government agency responsible for official statistics in Cambodia, operating under the Ministry of Planning. It conducts the national population census, socio-economic surveys, and publishes key economic and social indicators including GDP, CPI, trade, and demographic data.", + "zh": "柬埔寨国家统计局(NIS)是隶属于计划部的负责官方统计的主要政府机构。开展全国人口普查、社会经济调查,发布GDP、CPI、贸易和人口等关键经济社会指标。" + }, + "website": "https://www.nis.gov.kh/", + "data_url": "https://camstat.nis.gov.kh/", + "api_url": null, + "authority_level": "government", + "country": "KH", + "domains": [ + "economics", + "demographics", + "social" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "cambodia", + "柬埔寨", + "nis", + "statistics", + "统计局", + "population-census", + "人口普查", + "gdp", + "cpi", + "socio-economic-survey", + "asean", + "东盟", + "southeast-asia", + "东南亚" + ], + "data_content": { + "en": [ + "National population census data", + "GDP and national accounts statistics", + "Consumer Price Index (CPI) and inflation", + "Cambodia Socio-Economic Survey (CSES) results", + "Foreign trade statistics", + "Labor force and employment surveys", + "Agricultural census and crop statistics", + "Cambodia Demographic and Health Survey (CDHS)" + ], + "zh": [ + "全国人口普查数据", + "GDP和国民账户统计", + "消费者价格指数(CPI)和通胀", + "柬埔寨社会经济调查(CSES)结果", + "对外贸易统计", + "劳动力和就业调查", + "农业普查和作物统计", + "柬埔寨人口与健康调查(CDHS)" + ] + } +} diff --git a/firstdata/sources/countries/asia/dosm.json b/firstdata/sources/countries/asia/dosm.json new file mode 100644 index 00000000..b0ef3fa3 --- /dev/null +++ b/firstdata/sources/countries/asia/dosm.json @@ -0,0 +1,78 @@ +{ + "id": "dosm", + "name": { + "en": "Department of Statistics Malaysia", + "zh": "马来西亚统计局" + }, + "description": { + "en": "The Department of Statistics Malaysia (DOSM) is the main government agency responsible for collecting, interpreting and disseminating official statistics for monitoring Malaysia's economic performance and social development. It provides comprehensive data on economy, population, society and environment.", + "zh": "马来西亚统计局(DOSM)是马来西亚主要的政府统计机构,负责收集、解释和发布官方统计数据,用于监测马来西亚的经济表现和社会发展。该局提供涵盖经济、人口、社会和环境的综合数据。" + }, + "website": "https://www.dosm.gov.my/", + "data_url": "https://open.dosm.gov.my/", + "api_url": "https://developer.data.gov.my/static-api/opendosm", + "authority_level": "government", + "geographic_scope": "national", + "country": "MY", + "domains": [ + "economic-statistics", + "social-statistics", + "demographic-statistics", + "population-and-census", + "national-accounts", + "labour-market", + "prices-and-inflation", + "manufacturing-and-industry", + "agriculture", + "external-trade", + "household-income-and-expenditure" + ], + "update_frequency": "irregular", + "data_content": { + "en": [ + "Economic Statistics - GDP, manufacturing output, industrial production, wholesale & retail trade, services sector, construction, mining & quarrying", + "Demographic Statistics - Population data by state, district, sex, age group and ethnicity from 1970 to present", + "Social Statistics - Household income & expenditure, education, labour force, employment & unemployment", + "Price Statistics - Consumer Price Index (CPI), Producer Price Index (PPI), inflation data", + "External Sector Statistics - International trade, balance of payments, external debt", + "Agricultural Statistics - Crop production, livestock, fisheries, forestry", + "Census Data - Population and housing census, economic census (MyCensus 2020)" + ], + "zh": [ + "经济统计 - GDP、制造业产出、工业生产、批发零售贸易、服务业、建筑业、采矿业", + "人口统计 - 按州、区、性别、年龄组和种族分类的人口数据,从1970年至今", + "社会统计 - 家庭收入与支出、教育、劳动力、就业与失业", + "价格统计 - 消费者价格指数(CPI)、生产者价格指数(PPI)、通货膨胀数据", + "对外部门统计 - 国际贸易、国际收支、外债", + "农业统计 - 农作物生产、畜牧业、渔业、林业", + "普查数据 - 人口与住房普查、经济普查(MyCensus 2020)" + ] + }, + "tags": [ + "malaysia", + "马来西亚", + "official-statistics", + "官方统计", + "dosm", + "opendosm", + "government-data", + "政府数据", + "economic-data", + "经济数据", + "population", + "人口", + "census", + "普查", + "gdp", + "国内生产总值", + "cpi", + "消费者价格指数", + "labour-statistics", + "劳动统计", + "social-statistics", + "社会统计", + "open-data", + "开放数据", + "api" + ] +} diff --git a/firstdata/sources/countries/asia/hk-companies-registry.json b/firstdata/sources/countries/asia/hk-companies-registry.json new file mode 100644 index 00000000..4d43dbe5 --- /dev/null +++ b/firstdata/sources/countries/asia/hk-companies-registry.json @@ -0,0 +1,73 @@ +{ + "id": "hk-companies-registry", + "name": { + "en": "Hong Kong Companies Registry", + "zh": "香港公司注册处" + }, + "description": { + "en": "The Companies Registry is a government department under the Financial Services and the Treasury Bureau of the Hong Kong Special Administrative Region. It provides comprehensive company registration and business registration services, maintaining a centralized database of all registered companies in Hong Kong through the Integrated Companies Registry Information System (ICRIS).", + "zh": "香港公司注册处是香港特别行政区财经事务及库务局辖下的政府部门,负责公司注册及商业登记事务,通过公司注册处综合资讯系统(ICRIS)维护香港所有注册公司的集中数据库。" + }, + "website": "https://www.cr.gov.hk/", + "data_url": "https://www.cr.gov.hk/en/services/obtain-company-info.htm", + "api_url": null, + "authority_level": "government", + "country": "HK", + "domains": [ + "business", + "commerce", + "corporate-registry", + "legal" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "hong-kong", + "香港", + "companies-registry", + "公司注册处", + "icris", + "company-registration", + "公司注册", + "business-registration", + "商业登记", + "corporate-information", + "企业信息", + "company-search", + "公司查册", + "statutory-filings", + "法定文件", + "directors", + "董事", + "shareholders", + "股东", + "registered-office", + "注册地址" + ], + "data_content": { + "en": [ + "Company registration information: company name (English and Chinese), registration number, incorporation date, company type, and legal status", + "Registered office address and principal place of business", + "Directors and secretaries information", + "Shareholders and share capital structure", + "Statutory documents and filings: annual returns (NAR1), changes in directors (ND2A), changes in registered office (NM1)", + "Company incorporation certificates and business registration certificates", + "Charge and mortgage registrations", + "Company deregistration and winding-up records", + "Non-Hong Kong company registrations", + "Historical changes and updates to company information" + ], + "zh": [ + "公司注册资料:公司名称(中英文)、注册编号、成立日期、公司类型及法律状态", + "注册办事处地址及主要营业地点", + "董事及公司秘书资料", + "股东及股本结构", + "法定文件及申报表:周年申报表(NAR1)、董事变更(ND2A)、注册办事处变更(NM1)", + "公司注册证书及商业登记证", + "押记及抵押登记", + "公司撤销注册及清盘记录", + "非香港公司注册", + "公司资料的历史变更记录" + ] + } +} diff --git a/firstdata/sources/countries/asia/hk-sfc.json b/firstdata/sources/countries/asia/hk-sfc.json new file mode 100644 index 00000000..b87589b9 --- /dev/null +++ b/firstdata/sources/countries/asia/hk-sfc.json @@ -0,0 +1,76 @@ +{ + "id": "hk-sfc", + "name": { + "en": "Securities and Futures Commission of Hong Kong", + "zh": "香港证券及期货事务监察委员会" + }, + "description": { + "en": "The Securities and Futures Commission (SFC) is an independent statutory body responsible for regulating Hong Kong's securities and futures markets. Established in 1989, the SFC oversees market participants, ensures market integrity, protects investors, and maintains fair and transparent trading environments. It provides comprehensive regulatory data, licensing information, market surveillance reports, and enforcement actions.", + "zh": "香港证券及期货事务监察委员会(证监会)是独立的法定机构,负责监管香港的证券及期货市场。证监会成立于1989年,监督市场参与者,确保市场诚信,保护投资者权益,维持公平透明的交易环境。证监会提供全面的监管数据、持牌资料、市场监察报告及执法行动信息。" + }, + "website": "https://www.sfc.hk/", + "data_url": "https://www.sfc.hk/en/Regulatory-functions/Products", + "api_url": null, + "authority_level": "government", + "country": "HK", + "domains": [ + "finance", + "securities", + "capital-markets", + "regulation" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "hong-kong", + "香港", + "sfc", + "证监会", + "securities", + "证券", + "futures", + "期货", + "market-regulation", + "市场监管", + "investor-protection", + "投资者保护", + "licensing", + "持牌", + "enforcement", + "执法", + "disclosure", + "披露", + "capital-markets", + "资本市场", + "fund-management", + "基金管理", + "intermediaries", + "中介机构" + ], + "data_content": { + "en": [ + "Licensed corporations and registered institutions: licenses for dealing in securities, futures contracts, asset management, and advisory services", + "Licensed individuals: responsible officers, licensed representatives, and approved persons", + "Product authorization: authorized collective investment schemes, SFC-authorized funds, and other investment products", + "Regulatory announcements and circulars: guidance notes, codes and guidelines, consultation papers", + "Enforcement actions: disciplinary proceedings, prosecution cases, reprimands, and sanctions", + "Market surveillance data: suspicious trading alerts, market manipulation cases, insider dealing investigations", + "Corporate disclosure: substantial shareholder notices, takeover and merger documents, listing applications", + "Statistical data: market turnover, derivatives trading volume, fund industry statistics", + "Regulatory reports: annual reports, quarterly bulletins, thematic reviews", + "Rules and standards: Securities and Futures Ordinance, subsidiary legislation, codes of conduct" + ], + "zh": [ + "持牌法团及注册机构:证券交易、期货合约交易、资产管理及提供意见的牌照资料", + "持牌个人:负责人员、持牌代表及获核准人士", + "产品认可:认可集体投资计划、证监会认可基金及其他投资产品", + "监管公告及通函:指引、守则及指引、谘询文件", + "执法行动:纪律处分程序、检控个案、谴责及制裁", + "市场监察数据:可疑交易警报、市场操纵个案、内幕交易调查", + "企业披露:主要股东权益通知、收购及合并文件、上市申请", + "统计数据:市场成交额、衍生产品交易量、基金业统计数字", + "监管报告:年报、季度通讯、专题审查", + "规则及标准:证券及期货条例、附属法例、操守准则" + ] + } +} diff --git a/firstdata/sources/countries/asia/hkma.json b/firstdata/sources/countries/asia/hkma.json new file mode 100644 index 00000000..7a9dc044 --- /dev/null +++ b/firstdata/sources/countries/asia/hkma.json @@ -0,0 +1,80 @@ +{ + "id": "hkma", + "name": { + "en": "Hong Kong Monetary Authority", + "zh": "香港金融管理局" + }, + "description": { + "en": "The Hong Kong Monetary Authority (HKMA) is the de facto central bank of Hong Kong, established on April 1, 1993. Its mission is to maintain monetary and financial stability, promote the integrity and efficiency of the financial system, and safeguard the interests of depositors. The HKMA provides comprehensive economic and financial data including monetary statistics, banking system data, financial stability reports, and daily market data through its open data portal and API.", + "zh": "香港金融管理局(金管局)是香港的实际中央银行,成立于1993年4月1日。其使命是维持货币与金融稳定、促进金融体系的健全与发展,以及保障存款人的利益。金管局通过开放数据门户和API提供全面的经济及金融数据,包括货币统计、银行体系数据、金融稳定报告及每日市场数据。" + }, + "website": "https://www.hkma.gov.hk/", + "data_url": "https://www.hkma.gov.hk/eng/data-publications-and-research/data-and-statistics/", + "api_url": "https://apidocs.hkma.gov.hk/", + "authority_level": "government", + "country": "HK", + "geographic_scope": "national", + "update_frequency": "daily", + "domains": [ + "finance", + "economics", + "banking", + "monetary-policy" + ], + "tags": [ + "monetary-authority", + "central-bank", + "financial-statistics", + "monetary-statistics", + "banking-data", + "financial-stability", + "exchange-fund", + "hong-kong", + "hkma", + "linked-exchange-rate", + "payment-systems", + "banking-supervision", + "interest-rates", + "exchange-rates", + "money-supply", + "金融管理局", + "中央银行", + "金融统计", + "货币统计", + "银行数据", + "金融稳定", + "外汇基金", + "香港", + "金管局", + "联系汇率", + "支付系统", + "银行监管", + "利率", + "汇率", + "货币供应" + ], + "data_content": { + "en": [ + "Monetary statistics (money supply, exchange rates, interest rates)", + "Banking system statistics (assets, liabilities, capital adequacy)", + "Financial stability indicators and reports", + "Exchange Fund statistics", + "Payment systems data", + "Economic and financial data for Hong Kong", + "Daily market data (exchange rates, interbank rates)", + "Monthly Statistical Bulletin", + "Half-Yearly Monetary and Financial Stability Report" + ], + "zh": [ + "货币统计(货币供应、汇率、利率)", + "银行体系统计(资产、负债、资本充足率)", + "金融稳定指标及报告", + "外汇基金统计", + "支付系统数据", + "香港经济及金融数据", + "每日市场数据(汇率、银行同业拆息率)", + "金融数据月报", + "货币与金融稳定情况半年度报告" + ] + } +} diff --git a/firstdata/sources/countries/asia/india/india-dgcis.json b/firstdata/sources/countries/asia/india/india-dgcis.json index 7b9ed6f0..b1555b18 100644 --- a/firstdata/sources/countries/asia/india/india-dgcis.json +++ b/firstdata/sources/countries/asia/india/india-dgcis.json @@ -13,16 +13,16 @@ "api_url": null, "country": "IN", "domains": [ - "international trade", - "foreign trade statistics", - "inland trade", - "customs statistics", - "export statistics", - "import statistics", - "shipping statistics", - "coastal trade", - "inter-state trade", - "excise revenue" + "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", diff --git a/firstdata/sources/countries/asia/india/india-mospi.json b/firstdata/sources/countries/asia/india/india-mospi.json new file mode 100644 index 00000000..6912261b --- /dev/null +++ b/firstdata/sources/countries/asia/india/india-mospi.json @@ -0,0 +1,84 @@ +{ + "id": "india-mospi", + "name": { + "en": "Ministry of Statistics and Programme Implementation (MoSPI)", + "zh": "印度统计与计划实施部", + "native": "सांख्यिकी और कार्यक्रम कार्यान्वयन मंत्रालय" + }, + "description": { + "en": "The Ministry of Statistics and Programme Implementation (MoSPI) is the apex body for official statistics in India. It coordinates the Indian Statistical System and publishes a wide range of national statistical products including GDP estimates, Consumer Price Index, industrial production, employment surveys, social statistics, and the National Sample Survey. MoSPI also oversees the Central Statistics Office (CSO) and the National Sample Survey Office (NSSO).", + "zh": "印度统计与计划实施部(MoSPI)是印度官方统计的最高机构,协调印度统计体系,发布广泛的国家统计产品,包括GDP估算、消费者价格指数、工业生产、就业调查、社会统计和国家样本调查。MoSPI还负责监管中央统计局(CSO)和国家样本调查局(NSSO)。" + }, + "website": "https://www.mospi.gov.in", + "data_url": "https://mospi.gov.in/data", + "api_url": null, + "authority_level": "government", + "country": "IN", + "domains": [ + "economics", + "demographics", + "employment", + "prices", + "industry", + "agriculture", + "social", + "trade", + "education", + "health" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "india", + "mospi", + "official-statistics", + "gdp", + "cpi", + "iip", + "nss", + "nsso", + "cso", + "national-accounts", + "employment", + "population", + "census", + "social-statistics", + "印度", + "官方统计", + "国民账户", + "消费者价格指数", + "工业生产", + "就业统计", + "人口普查" + ], + "data_content": { + "en": [ + "National Accounts Statistics (GDP, GVA by sector)", + "Consumer Price Index (CPI) - Rural, Urban, Combined", + "Index of Industrial Production (IIP)", + "National Sample Survey (NSS) - employment, household expenditure", + "Annual Survey of Industries (ASI)", + "Economic Census data", + "Social Statistics (poverty, education, health indicators)", + "Time Use Survey", + "Sustainable Development Goals (SDG) India Index", + "Periodic Labour Force Survey (PLFS)", + "Price Statistics (WPI, CPI)", + "State-level GDP and economic statistics" + ], + "zh": [ + "国民账户统计(GDP、分行业GVA)", + "消费者价格指数(CPI)——农村、城市、综合", + "工业生产指数(IIP)", + "国家样本调查(NSS)——就业、家庭支出", + "工业年度调查(ASI)", + "经济普查数据", + "社会统计(贫困、教育、卫生指标)", + "时间使用调查", + "可持续发展目标(SDG)印度指数", + "定期劳动力调查(PLFS)", + "价格统计(WPI、CPI)", + "各邦GDP和经济统计" + ] + } +} diff --git a/firstdata/sources/countries/asia/india/india-rbi.json b/firstdata/sources/countries/asia/india/india-rbi.json new file mode 100644 index 00000000..b380d0ea --- /dev/null +++ b/firstdata/sources/countries/asia/india/india-rbi.json @@ -0,0 +1,73 @@ +{ + "id": "india-rbi", + "name": { + "en": "Reserve Bank of India", + "zh": "印度储备银行", + "native": "भारतीय रिज़र्व बैंक" + }, + "description": { + "en": "India's central bank responsible for monetary policy, financial regulation, and economic data publication. RBI publishes comprehensive statistics on money supply, interest rates, exchange rates, banking sector performance, balance of payments, government finance, and price indices. It also releases quarterly GDP-related monetary indicators, the Annual Report, and the Report on Trend and Progress of Banking in India.", + "zh": "印度中央银行,负责货币政策制定、金融监管及经济数据发布。RBI发布关于货币供应量、利率、汇率、银行业绩效、国际收支、政府财政和价格指数的全面统计数据,并定期发布季度货币政策报告、年度报告及印度银行业趋势与进展报告。" + }, + "website": "https://www.rbi.org.in/", + "data_url": "https://www.rbi.org.in/Scripts/Statistics.aspx", + "api_url": "https://api.rbi.org.in/", + "country": "IN", + "domains": [ + "monetary-policy", + "banking", + "finance", + "economics", + "exchange-rates", + "balance-of-payments", + "government-finance" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "india", + "central-bank", + "monetary-policy", + "banking", + "exchange-rates", + "money-supply", + "interest-rates", + "balance-of-payments", + "financial-regulation", + "economic-statistics", + "印度", + "中央银行", + "货币政策" + ], + "data_content": { + "en": [ + "Money Supply (M0-M3) and Reserve Money", + "Interest Rates (Repo, Reverse Repo, Bank Rate, MCLR)", + "Foreign Exchange Reserves and Exchange Rates", + "Banking Statistics (Scheduled Commercial Banks, Cooperative Banks)", + "Balance of Payments and External Debt", + "Government Finance (Central and State)", + "Consumer Price Index and Wholesale Price Index", + "Financial Inclusion Statistics", + "Payment and Settlement Systems Data", + "Financial Stability Report Data", + "Quarterly Monetary Policy Reports", + "Annual Report and Statistical Tables" + ], + "zh": [ + "货币供应量(M0-M3)和储备货币", + "利率(回购利率、逆回购利率、银行利率、MCLR)", + "外汇储备和汇率", + "银行业统计(商业银行、合作银行)", + "国际收支和外债", + "政府财政(中央和各邦)", + "消费者价格指数和批发价格指数", + "普惠金融统计", + "支付结算系统数据", + "金融稳定报告数据", + "季度货币政策报告", + "年度报告和统计表" + ] + }, + "authority_level": "government" +} diff --git a/firstdata/sources/countries/asia/indonesia/indonesia-bps.json b/firstdata/sources/countries/asia/indonesia/indonesia-bps.json new file mode 100644 index 00000000..1be1a1df --- /dev/null +++ b/firstdata/sources/countries/asia/indonesia/indonesia-bps.json @@ -0,0 +1,93 @@ +{ + "id": "indonesia-bps", + "name": { + "en": "Statistics Indonesia (BPS)", + "zh": "印度尼西亚中央统计局", + "native": "Badan Pusat Statistik" + }, + "description": { + "en": "Statistics Indonesia (BPS — Badan Pusat Statistik) is the official national statistical agency of Indonesia, responsible for providing high-quality statistical data to support evidence-based policymaking. Established in 1960 and reorganized under Law No. 16 of 1997, BPS covers all aspects of Indonesian society and economy, including population, poverty, economic growth, inflation, trade, agriculture, and social indicators. BPS conducts the national population census every ten years and the agricultural census every ten years, and publishes a wide range of regular statistical reports through its website and open data portal.", + "zh": "印度尼西亚中央统计局(BPS — Badan Pusat Statistik)是印度尼西亚官方国家统计机构,负责提供高质量统计数据以支持基于证据的政策制定。BPS成立于1960年,并根据1997年第16号法律重组,覆盖印度尼西亚社会和经济的各个方面,包括人口、贫困、经济增长、通货膨胀、贸易、农业和社会指标。BPS每十年进行一次全国人口普查和农业普查,并通过其网站和开放数据门户发布各种定期统计报告。" + }, + "website": "https://www.bps.go.id", + "data_url": "https://www.bps.go.id/en/statistics-table", + "api_url": "https://webapi.bps.go.id/", + "authority_level": "government", + "country": "ID", + "domains": [ + "demographics", + "economics", + "social", + "employment", + "agriculture", + "prices", + "trade", + "industry", + "poverty" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "indonesia", + "印度尼西亚", + "bps", + "badan-pusat-statistik", + "statistics-indonesia", + "population", + "人口", + "gdp", + "国内生产总值", + "poverty", + "贫困", + "inflation", + "通货膨胀", + "census", + "人口普查", + "employment", + "就业", + "agriculture", + "农业", + "southeast-asia", + "东南亚", + "open-data", + "开放数据", + "government-statistics", + "政府统计", + "asean", + "东盟" + ], + "data_content": { + "en": [ + "Population Census - decennial census data on population size, distribution, and characteristics", + "Economic Growth - GDP and Gross Regional Domestic Product (GRDP) by province", + "Poverty Statistics - poverty rate, poverty line, poverty depth and severity indices", + "Inflation and Prices - Consumer Price Index (CPI), food prices, housing price index", + "Labor Force Survey (SAKERNAS) - employment, unemployment, underemployment, wages", + "National Income - national accounts, sectoral value added, household income", + "Foreign Trade - exports and imports by commodity, country, and province", + "Agricultural Census - farming households, land use, crop production, livestock", + "Manufacturing Industry - large and medium enterprise statistics, production output", + "Social Statistics - education participation, health indicators, welfare programs", + "Village Potential Data (PODES) - village-level infrastructure, facilities, and economy", + "Population Projection - future population estimates by age group and province", + "Household Income and Expenditure Survey (SUSENAS) - consumption and living standards", + "Indonesia in Figures - annual statistical compendium for quick reference" + ], + "zh": [ + "人口普查 - 人口规模、分布和特征的十年一次普查数据", + "经济增长 - 按省份划分的GDP和地区国内生产总值(GRDP)", + "贫困统计 - 贫困率、贫困线、贫困深度和严重程度指数", + "通胀与价格 - 消费者价格指数(CPI)、食品价格、房价指数", + "劳动力调查(SAKERNAS)- 就业、失业、不充分就业、工资", + "国民收入 - 国民账户、各部门增加值、家庭收入", + "对外贸易 - 按商品、国家和省份划分的出口和进口", + "农业普查 - 农业家庭、土地利用、粮食产量、畜牧业", + "制造业 - 大中型企业统计、生产产出", + "社会统计 - 教育参与率、健康指标、福利计划", + "村庄潜力数据(PODES)- 村级基础设施、设施和经济", + "人口预测 - 按年龄组和省份划分的未来人口估算", + "家庭收入和支出调查(SUSENAS)- 消费和生活水平", + "印度尼西亚数字 - 用于快速参考的年度统计汇编" + ] + } +} diff --git a/firstdata/sources/countries/asia/japan/boj-statistics.json b/firstdata/sources/countries/asia/japan/boj-statistics.json index 927dabf7..9aeb68d8 100644 --- a/firstdata/sources/countries/asia/japan/boj-statistics.json +++ b/firstdata/sources/countries/asia/japan/boj-statistics.json @@ -14,26 +14,26 @@ "api_url": null, "country": "JP", "domains": [ - "monetary policy", - "financial markets", + "monetary-policy", + "financial-markets", "banking", - "flow of funds", - "economic surveys", + "flow-of-funds", + "economic-surveys", "prices", - "balance of payments", - "public finance", - "payment systems" + "balance-of-payments", + "public-finance", + "payment-systems" ], "geographic_scope": "national", "update_frequency": "daily", "tags": [ - "Japan", + "japan", "central-bank", "monetary-policy", "financial-markets", "banking", "flow-of-funds", - "TANKAN", + "tankan", "prices", "balance-of-payments", "economic-statistics", diff --git a/firstdata/sources/countries/asia/japan/japan-esri.json b/firstdata/sources/countries/asia/japan/japan-esri.json new file mode 100644 index 00000000..9b5d6962 --- /dev/null +++ b/firstdata/sources/countries/asia/japan/japan-esri.json @@ -0,0 +1,44 @@ +{ + "id": "japan-esri", + "name": { + "en": "Economic and Social Research Institute, Cabinet Office of Japan", + "zh": "日本内阁府经济社会综合研究所" + }, + "description": { + "en": "Japan's Cabinet Office institute responsible for national accounts (GDP/SNA), economic indicators, and business cycle research.", + "zh": "日本内阁府下属机构,负责国民账户(GDP/SNA)、经济指标和景气循环研究。" + }, + "website": "https://www.esri.cao.go.jp", + "data_url": "https://www.esri.cao.go.jp/en/sna/menu.html", + "api_url": null, + "data_content": { + "en": [ + "GDP and System of National Accounts", + "Quarterly GDP estimates", + "Business cycle indicators", + "Consumer confidence survey", + "Economic outlook forecasts" + ], + "zh": [ + "GDP与国民经济计算体系", + "季度GDP估算", + "景气循环指标", + "消费者信心调查", + "经济展望预测" + ] + }, + "authority_level": "government", + "update_frequency": "quarterly", + "domains": [ + "economics" + ], + "tags": [ + "japan", + "gdp", + "sna", + "national-accounts", + "business-cycle" + ], + "country": "JP", + "geographic_scope": "national" +} diff --git a/firstdata/sources/countries/asia/japan/japan-estat.json b/firstdata/sources/countries/asia/japan/japan-estat.json new file mode 100644 index 00000000..1561e9b1 --- /dev/null +++ b/firstdata/sources/countries/asia/japan/japan-estat.json @@ -0,0 +1,83 @@ +{ + "id": "japan-estat", + "name": { + "en": "Japan e-Stat (Portal Site of Official Statistics)", + "zh": "日本统计局 e-Stat(政府统计综合窗口)", + "native": "政府統計の総合窓口 e-Stat" + }, + "description": { + "en": "e-Stat is Japan's official statistics portal operated by the Statistics Bureau of Japan under the Ministry of Internal Affairs and Communications. It provides unified access to statistical data published by all Japanese government ministries and agencies, covering population, economy, industry, agriculture, education, health, and more. The platform offers a comprehensive REST API for data retrieval.", + "zh": "e-Stat 是日本总务省统计局运营的官方统计数据门户,提供对日本各政府部委和机构发布的统计数据的统一访问,涵盖人口、经济、产业、农业、教育、卫生等领域。该平台提供完整的 REST API 用于数据检索。" + }, + "website": "https://www.e-stat.go.jp/en", + "data_url": "https://www.e-stat.go.jp/en/stat-search", + "api_url": "https://www.e-stat.go.jp/en/developer", + "authority_level": "government", + "country": "JP", + "domains": [ + "statistics", + "economics", + "demographics", + "social", + "education", + "health" + ], + "geographic_scope": "national", + "update_frequency": "irregular", + "tags": [ + "japan", + "日本", + "e-stat", + "statistics", + "统计", + "census", + "人口普查", + "population", + "人口", + "economy", + "经济", + "ministry-of-internal-affairs", + "总务省", + "statistics-bureau", + "统计局", + "government-data", + "政府数据", + "industrial-statistics", + "产业统计", + "national-accounts", + "国民账户", + "labor-force", + "劳动力", + "api" + ], + "data_content": { + "en": [ + "Population Census (every 5 years) — national and regional population, households, age structure", + "National Accounts (GDP, income, expenditure) from Cabinet Office", + "Consumer Price Index (CPI) and Producer Price Index", + "Labour Force Survey — employment, unemployment rate, working hours", + "Family Income and Expenditure Survey", + "Industrial Statistics — manufacturing output, number of establishments", + "Agricultural, Forestry and Fisheries Census", + "School Basic Survey — student enrolment, graduates, schools by level", + "Patient Survey and Medical Facility Survey", + "Housing and Land Survey", + "Retail Trade Statistics and Wholesale Statistics", + "Over 100,000 statistical tables accessible via REST API" + ], + "zh": [ + "人口普查(每5年一次)——全国及地区人口、家庭数量、年龄结构", + "国民账户(GDP、收入、支出)——来自内阁府", + "消费者价格指数(CPI)和生产者价格指数", + "劳动力调查——就业人数、失业率、工作时长", + "家庭收支调查", + "工业统计——制造业产出、企业数量", + "农林渔业普查", + "学校基本调查——各级学校学生注册人数、毕业生数量", + "患者调查和医疗机构调查", + "住宅和土地调查", + "零售业和批发业统计", + "超过10万张统计表可通过 REST API 访问" + ] + } +} diff --git a/firstdata/sources/countries/asia/japan/japan-fsa.json b/firstdata/sources/countries/asia/japan/japan-fsa.json new file mode 100644 index 00000000..54410774 --- /dev/null +++ b/firstdata/sources/countries/asia/japan/japan-fsa.json @@ -0,0 +1,59 @@ +{ + "id": "japan-fsa", + "name": { + "en": "Japan Financial Services Agency", + "zh": "日本金融厅" + }, + "description": { + "en": "The Financial Services Agency (FSA) is the Japanese government body responsible for overseeing banking, securities, exchange, and insurance sectors. It publishes regulatory data, financial institution statistics, corporate disclosure filings (EDINET), inspection results, and policy documents essential for understanding Japan's financial regulatory landscape.", + "zh": "日本金融厅(FSA)是负责监管日本银行、证券、交易所和保险行业的政府机构。发布监管数据、金融机构统计、企业信息披露文件(EDINET)、检查结果和政策文件,是了解日本金融监管环境的关键数据源。" + }, + "website": "https://www.fsa.go.jp/en/", + "data_url": "https://www.fsa.go.jp/en/refer/index.html", + "api_url": null, + "country": "JP", + "authority_level": "government", + "domains": [ + "finance", + "banking", + "securities", + "insurance", + "regulation" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "japan", + "financial-regulation", + "banking-supervision", + "securities", + "insurance", + "edinet", + "corporate-disclosure", + "金融厅", + "金融監管", + "日本金融" + ], + "data_content": { + "en": [ + "Banking sector statistics and supervision reports", + "Securities and exchange regulation data", + "Insurance industry statistics", + "EDINET corporate disclosure filings", + "Financial institution inspection results", + "Anti-money laundering and compliance data", + "Financial system stability reports", + "Policy and regulatory documents" + ], + "zh": [ + "银行业统计和监管报告", + "证券和交易所监管数据", + "保险行业统计", + "EDINET企业信息披露文件", + "金融机构检查结果", + "反洗钱和合规数据", + "金融系统稳定性报告", + "政策和监管文件" + ] + } +} diff --git a/firstdata/sources/countries/asia/japan/japan-gpif.json b/firstdata/sources/countries/asia/japan/japan-gpif.json new file mode 100644 index 00000000..77950381 --- /dev/null +++ b/firstdata/sources/countries/asia/japan/japan-gpif.json @@ -0,0 +1,59 @@ +{ + "id": "japan-gpif", + "name": { + "en": "Government Pension Investment Fund", + "zh": "日本政府养老投资基金" + }, + "description": { + "en": "The Government Pension Investment Fund (GPIF) is the world's largest pension fund, managing Japan's public pension reserves. It publishes detailed investment performance data, asset allocation reports, ESG investment activities, stewardship reports, and research on long-term investment strategies. GPIF's portfolio movements significantly influence global financial markets.", + "zh": "日本政府养老投资基金(GPIF)是全球最大的养老基金,管理日本公共养老金储备。发布详细的投资业绩数据、资产配置报告、ESG投资活动、管理责任报告以及长期投资策略研究。GPIF的组合变动对全球金融市场有重大影响。" + }, + "website": "https://www.gpif.go.jp/en/", + "data_url": "https://www.gpif.go.jp/en/performance/", + "api_url": null, + "country": "JP", + "authority_level": "government", + "domains": [ + "finance", + "pension", + "investment", + "esg" + ], + "geographic_scope": "national", + "update_frequency": "quarterly", + "tags": [ + "japan", + "pension-fund", + "gpif", + "sovereign-wealth", + "asset-allocation", + "esg", + "investment-performance", + "public-pension", + "年金", + "养老基金", + "资产配置" + ], + "data_content": { + "en": [ + "Quarterly and annual investment performance reports", + "Asset allocation by domestic/foreign bonds and equities", + "Benchmark return comparisons", + "ESG activity reports and initiatives", + "Stewardship responsibility reports", + "Alternative investment portfolio data", + "Investment manager selection and evaluation", + "Long-term investment strategy research papers" + ], + "zh": [ + "季度和年度投资业绩报告", + "国内外债券和股票资产配置", + "基准收益对比", + "ESG活动报告和倡议", + "管理责任报告", + "另类投资组合数据", + "投资管理人选择和评估", + "长期投资策略研究论文" + ] + } +} diff --git a/firstdata/sources/countries/asia/japan/japan-jetro.json b/firstdata/sources/countries/asia/japan/japan-jetro.json new file mode 100644 index 00000000..2ee794bd --- /dev/null +++ b/firstdata/sources/countries/asia/japan/japan-jetro.json @@ -0,0 +1,65 @@ +{ + "id": "japan-jetro", + "name": { + "en": "Japan External Trade Organization", + "zh": "日本贸易振兴机构", + "native": "日本貿易振興機構" + }, + "description": { + "en": "JETRO is a Japanese government-related organization that promotes mutual trade and investment between Japan and the world. It provides comprehensive trade and investment statistics, country-specific market reports, industry research, FDI data, and business environment analyses. JETRO maintains regional offices in over 70 countries and publishes authoritative data on Japan's trade patterns and global investment flows.", + "zh": "JETRO是日本政府下属的贸易振兴机构,致力于促进日本与世界各国的贸易和投资往来。提供全面的贸易和投资统计数据、各国市场报告、产业研究、外商直接投资数据及商业环境分析。JETRO在全球70多个国家设有办事处,发布日本贸易格局和全球投资流向的权威数据。" + }, + "website": "https://www.jetro.go.jp/en/", + "data_url": "https://www.jetro.go.jp/en/reports/statistics.html", + "api_url": null, + "country": "JP", + "domains": [ + "trade", + "investment", + "economics", + "market-research", + "fdi" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "japan", + "trade", + "investment", + "fdi", + "export", + "import", + "market-research", + "trade-statistics", + "business-environment", + "日本", + "贸易", + "投资", + "外商直接投资" + ], + "data_content": { + "en": [ + "Japan's Trade Statistics (Exports and Imports by Country/Product)", + "Foreign Direct Investment Statistics (Inward and Outward)", + "Country/Region-Specific Trade and Investment Reports", + "Industry and Market Research Reports", + "Business Cost Comparisons Across Countries", + "Japanese Companies' Overseas Business Activities Survey", + "Global Trade and Investment Trends Analysis", + "Supply Chain and Logistics Data", + "SME Internationalization Statistics" + ], + "zh": [ + "日本贸易统计(按国家/产品分类的进出口数据)", + "外商直接投资统计(对内和对外)", + "各国/地区贸易和投资报告", + "产业和市场研究报告", + "各国商务成本比较", + "日本企业海外经营活动调查", + "全球贸易和投资趋势分析", + "供应链和物流数据", + "中小企业国际化统计" + ] + }, + "authority_level": "government" +} diff --git a/firstdata/sources/countries/asia/japan/japan-jma.json b/firstdata/sources/countries/asia/japan/japan-jma.json new file mode 100644 index 00000000..e3775102 --- /dev/null +++ b/firstdata/sources/countries/asia/japan/japan-jma.json @@ -0,0 +1,43 @@ +{ + "id": "japan-jma", + "name": { + "en": "Japan Meteorological Agency", + "zh": "日本气象厅" + }, + "description": { + "en": "Japan's national meteorological agency providing weather forecasts, earthquake/tsunami monitoring, and climate data for the Asia-Pacific region.", + "zh": "日本国家气象机构,提供天气预报、地震/海啸监测和亚太地区气候数据。" + }, + "website": "https://www.jma.go.jp", + "data_url": "https://www.data.jma.go.jp/risk/obsdl/index.php", + "api_url": null, + "data_content": { + "en": [ + "Weather observations", + "earthquake records", + "tsunami warnings", + "climate statistics", + "satellite imagery", + "volcanic activity data" + ], + "zh": [ + "天气观测、地震记录、海啸预警、气候统计、卫星图像、火山活动数据" + ] + }, + "authority_level": "government", + "update_frequency": "daily", + "domains": [ + "climate", + "environment", + "geoscience" + ], + "tags": [ + "weather", + "earthquake", + "tsunami", + "japan", + "climate" + ], + "country": "JP", + "geographic_scope": "national" +} diff --git a/firstdata/sources/countries/asia/japan/japan-meti.json b/firstdata/sources/countries/asia/japan/japan-meti.json new file mode 100644 index 00000000..f41f89b3 --- /dev/null +++ b/firstdata/sources/countries/asia/japan/japan-meti.json @@ -0,0 +1,70 @@ +{ + "id": "japan-meti", + "name": { + "en": "Ministry of Economy, Trade and Industry (Japan)", + "zh": "日本经济产业省", + "native": "経済産業省" + }, + "description": { + "en": "Japan's Ministry of Economy, Trade and Industry (METI) is responsible for economic and industrial policy, trade policy, energy policy, and industrial standards. METI publishes comprehensive statistics including the Indices of Industrial Production (IIP), Census of Manufactures, Commercial and Service Industry Statistics, energy consumption data, and economic surveys covering Japan's industrial and commercial sectors.", + "zh": "日本经济产业省(METI)负责经济产业政策、贸易政策、能源政策及产业标准的制定。METI发布全面的统计数据,包括工业生产指数(IIP)、制造业普查、商业服务业统计、能源消费数据以及涵盖日本工商业的经济调查报告。" + }, + "website": "https://www.meti.go.jp/english/", + "data_url": "https://www.meti.go.jp/english/statistics/index.html", + "api_url": null, + "country": "JP", + "domains": [ + "industry", + "trade", + "energy", + "manufacturing", + "commerce", + "economics" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "japan", + "industry", + "manufacturing", + "trade-policy", + "energy", + "industrial-production", + "commerce", + "economic-policy", + "industrial-statistics", + "日本", + "经济产业省", + "工业生产", + "制造业" + ], + "data_content": { + "en": [ + "Indices of Industrial Production (IIP)", + "Census of Manufactures", + "Current Survey of Commerce", + "Survey of Selected Service Industries", + "Mineral and Petroleum Statistics", + "Energy Consumption Statistics", + "Machinery Orders and Production Data", + "Small and Medium Enterprise Statistics", + "Trade Policy and International Commerce Data", + "Industrial Technology and Innovation Statistics", + "Regional Economic and Industrial Trends" + ], + "zh": [ + "工业生产指数(IIP)", + "制造业普查", + "商业动态统计调查", + "特定服务产业调查", + "矿物和石油统计", + "能源消费统计", + "机械订单和生产数据", + "中小企业统计", + "贸易政策和国际商务数据", + "产业技术和创新统计", + "地区经济和产业动态" + ] + }, + "authority_level": "government" +} diff --git a/firstdata/sources/countries/asia/japan/japan-mof.json b/firstdata/sources/countries/asia/japan/japan-mof.json new file mode 100644 index 00000000..2b5db616 --- /dev/null +++ b/firstdata/sources/countries/asia/japan/japan-mof.json @@ -0,0 +1,58 @@ +{ + "id": "japan-mof", + "name": { + "en": "Ministry of Finance Japan", + "zh": "日本财务省" + }, + "description": { + "en": "The Ministry of Finance (MOF) of Japan is responsible for fiscal policy, taxation, customs, and government debt management. It publishes detailed trade statistics, government bond data, budget and fiscal reports, and international financial cooperation data. MOF's Trade Statistics of Japan provides monthly and annual import/export data by commodity and country.", + "zh": "日本财务省负责财政政策、税收、关税和政府债务管理。发布详细的贸易统计数据、国债数据、预算和财政报告以及国际金融合作数据。财务省的贸易统计提供按商品和国家分类的月度和年度进出口数据。" + }, + "website": "https://www.mof.go.jp/english/", + "data_url": "https://www.customs.go.jp/toukei/info/index_e.htm", + "api_url": null, + "authority_level": "government", + "country": "JP", + "domains": [ + "trade", + "finance", + "fiscal-policy", + "taxation" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "japan", + "日本", + "财务省", + "ministry-of-finance", + "mof", + "trade-statistics", + "贸易统计", + "government-bonds", + "国債", + "fiscal-policy", + "税収", + "customs", + "関税", + "import", + "export", + "輸出入" + ], + "data_content": { + "en": [ + "Trade Statistics of Japan: monthly/annual import and export data by commodity and country", + "Government bond issuance, outstanding amounts, and auction results", + "Budget and fiscal investment/loan program data", + "Tax revenue statistics and tax system information", + "International financial cooperation and exchange rate policy" + ], + "zh": [ + "日本贸易统计:按商品和国家分类的月度/年度进出口数据", + "国债发行、余额和拍卖结果", + "预算和财政投融资计划数据", + "税收收入统计和税制信息", + "国际金融合作与汇率政策" + ] + } +} diff --git a/firstdata/sources/countries/asia/japan/jpx.json b/firstdata/sources/countries/asia/japan/jpx.json new file mode 100644 index 00000000..d78ae270 --- /dev/null +++ b/firstdata/sources/countries/asia/japan/jpx.json @@ -0,0 +1,64 @@ +{ + "id": "jpx", + "name": { + "en": "Japan Exchange Group", + "zh": "日本交易所集团" + }, + "description": { + "en": "Japan Exchange Group (JPX) operates the Tokyo Stock Exchange (TSE) and Osaka Exchange (OSE), forming one of the world's largest exchange groups. It provides comprehensive market statistics including equity trading data, listed company information, market indices (TOPIX, Nikkei), derivatives statistics, IPO data, and corporate governance reports.", + "zh": "日本交易所集团(JPX)运营东京证券交易所(TSE)和大阪交易所(OSE),是全球最大的交易所集团之一。提供全面的市场统计数据,包括股票交易数据、上市公司信息、市场指数(TOPIX、日经)、衍生品统计、IPO数据和公司治理报告。" + }, + "website": "https://www.jpx.co.jp/english/", + "data_url": "https://www.jpx.co.jp/english/markets/statistics-equities/index.html", + "api_url": null, + "country": "JP", + "authority_level": "market", + "domains": [ + "finance", + "securities", + "stock-market", + "derivatives" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "japan", + "stock-exchange", + "tse", + "tokyo-stock-exchange", + "topix", + "nikkei", + "equities", + "derivatives", + "ipo", + "market-data", + "東京証券取引所", + "日本交易所" + ], + "data_content": { + "en": [ + "Equity market trading statistics (volume, value, turnover)", + "Listed company information and filings", + "Market indices (TOPIX, JPX-Nikkei Index 400)", + "Derivatives trading statistics (futures, options)", + "IPO and new listing data", + "Corporate governance reports", + "Foreign investor trading statistics", + "Short selling reports", + "Margin trading statistics", + "ETF and REIT market data" + ], + "zh": [ + "股票市场交易统计(成交量、成交额、换手率)", + "上市公司信息和公告文件", + "市场指数(TOPIX、JPX日经400指数)", + "衍生品交易统计(期货、期权)", + "IPO和新上市数据", + "公司治理报告", + "外国投资者交易统计", + "卖空报告", + "融资融券统计", + "ETF和REIT市场数据" + ] + } +} diff --git a/firstdata/sources/countries/asia/korea/korea-bok.json b/firstdata/sources/countries/asia/korea/korea-bok.json index 20cdd228..ab639322 100644 --- a/firstdata/sources/countries/asia/korea/korea-bok.json +++ b/firstdata/sources/countries/asia/korea/korea-bok.json @@ -14,17 +14,17 @@ "api_url": "https://ecos.bok.or.kr", "country": "KR", "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" + "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": "daily", @@ -82,4 +82,4 @@ ] }, "authority_level": "government" -} \ No newline at end of file +} diff --git a/firstdata/sources/countries/asia/kostat-cpi.json b/firstdata/sources/countries/asia/kostat-cpi.json new file mode 100644 index 00000000..72943806 --- /dev/null +++ b/firstdata/sources/countries/asia/kostat-cpi.json @@ -0,0 +1,78 @@ +{ + "id": "kostat-cpi", + "name": { + "en": "Statistics Korea (KOSTAT) - Consumer Price Index", + "zh": "韩国统计局 - 消费者物价指数", + "ko": "통계청 - 소비자물가지수" + }, + "description": { + "en": "Statistics Korea (KOSTAT), officially renamed as the Ministry of Data and Statistics since October 2025, is the national statistical agency of South Korea responsible for collecting, compiling, and disseminating official statistics. The Consumer Price Index (CPI) measures the average change over time in prices paid by consumers for a market basket of goods and services, covering approximately 26,000 retail stores and 11,000 tenant households nationwide (excluding farming and fishery households), representing about 92.9% of total Korean households.", + "zh": "韩国统计局(KOSTAT),自2025年10月起正式更名为国家数据处,是韩国国家统计机构,负责收集、编制和发布官方统计数据。消费者物价指数(CPI)衡量消费者购买一篮子商品和服务价格随时间的平均变化,覆盖全国约26,000家零售店和11,000户租户家庭(不包括农渔业家庭),代表约92.9%的韩国家庭。", + "ko": "통계청(KOSTAT)은 2025년 10월부터 국가데이터처로 새롭게 출발한 대한민국의 국가통계기관으로, 공식 통계 자료의 수집, 편제 및 배포를 담당합니다. 소비자물가지수(CPI)는 가구에서 일상생활을 영위하기 위해 구입하는 상품과 서비스의 평균적인 가격변동을 측정한 지수입니다." + }, + "website": "https://kosis.kr", + "data_url": "https://kosis.kr/eng/", + "api_url": "https://kosis.kr/openapi/index/index.jsp", + "country": "KR", + "domains": [ + "economics", + "prices", + "inflation", + "consumer-price-index", + "economic-indicators", + "statistics" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "authority_level": "government", + "tags": [ + "consumer-price-index", + "cpi", + "소비자물가지수", + "inflation", + "인플레이션", + "통화膨胀", + "south-korea", + "korea", + "한국", + "韩国", + "prices", + "물가", + "物价", + "economic-indicators", + "경제지표", + "经济指标", + "kostat", + "통계청", + "统计局", + "statistics", + "통계", + "统计", + "cost-of-living", + "생활비", + "生活成本" + ], + "data_content": { + "en": [ + "Consumer Price Index (CPI) - overall and by category", + "Monthly and annual inflation rates", + "Price indices by region (provincial and metropolitan)", + "Price trends for goods and services categories", + "Core inflation indicators" + ], + "zh": [ + "消费者物价指数(CPI)- 总体及分类指数", + "月度和年度通胀率", + "按地区的物价指数(省级和都市级)", + "商品和服务类别的价格趋势", + "核心通胀指标" + ], + "ko": [ + "소비자물가지수(CPI) - 전체 및 부문별", + "월별 및 연간 인플레이션율", + "지역별 물가지수(광역시·도)", + "상품 및 서비스 부문별 가격 추이", + "근원인플레이션 지표" + ] + } +} diff --git a/firstdata/sources/countries/asia/kostat.json b/firstdata/sources/countries/asia/kostat.json new file mode 100644 index 00000000..50241838 --- /dev/null +++ b/firstdata/sources/countries/asia/kostat.json @@ -0,0 +1,76 @@ +{ + "id": "kostat", + "name": { + "en": "Statistics Korea (KOSTAT)", + "zh": "韩国统计厅" + }, + "description": { + "en": "Statistics Korea (KOSTAT), officially known as the Ministry of Data and Statistics, is South Korea's central government agency responsible for managing national statistics. Operating directly under the Prime Minister, KOSTAT coordinates, produces and disseminates official statistics in a decentralized statistical system, covering economic, demographic, social and other statistical domains.", + "zh": "韩国统计厅(KOSTAT),正式名称为数据与统计部,是韩国负责管理国家统计的中央政府机构。KOSTAT直接隶属于总理办公室,在分散式统计系统中协调、生成和传播官方统计数据,涵盖经济、人口、社会等统计领域。" + }, + "website": "https://mods.go.kr/anse", + "data_url": "https://kosis.kr/eng/", + "api_url": "https://kosis.kr/openapi/index/index.jsp", + "authority_level": "government", + "country": "KR", + "geographic_scope": "national", + "domains": [ + "economics", + "demographics", + "labor", + "prices", + "social", + "population", + "household", + "employment", + "trade", + "industry", + "agriculture", + "environment" + ], + "update_frequency": "monthly", + "data_content": { + "en": [ + "Population and Household Statistics - census data, demographic trends, birth/death statistics", + "Labor Force Statistics - economically active population survey, employment, unemployment", + "Price Statistics - Consumer Price Index (CPI), Producer Price Index", + "Economic Statistics - GDP, national accounts, economic census", + "Social Statistics - education, health, welfare, culture", + "Business Statistics - industry, trade, services, online shopping", + "Agriculture and Environment Statistics - agricultural census, environmental indicators" + ], + "zh": [ + "人口与家庭统计 - 人口普查数据、人口趋势、出生/死亡统计", + "劳动力统计 - 经济活动人口调查、就业、失业", + "价格统计 - 消费者价格指数(CPI)、生产者价格指数", + "经济统计 - GDP、国民账户、经济普查", + "社会统计 - 教育、健康、福利、文化", + "企业统计 - 工业、贸易、服务业、网络购物", + "农业与环境统计 - 农业普查、环境指标" + ] + }, + "tags": [ + "korea-statistics", + "kostat", + "south-korea", + "economic-data", + "population-census", + "labor-statistics", + "price-index", + "kosis", + "korean-statistical-information-service", + "government-statistics", + "national-statistics", + "demographic-data", + "韩国统计", + "韩国统计厅", + "韩国数据", + "经济数据", + "人口普查", + "劳动统计", + "价格指数", + "政府统计", + "国家统计", + "人口数据" + ] +} diff --git a/firstdata/sources/countries/asia/laos/laos-lsb.json b/firstdata/sources/countries/asia/laos/laos-lsb.json new file mode 100644 index 00000000..00340842 --- /dev/null +++ b/firstdata/sources/countries/asia/laos/laos-lsb.json @@ -0,0 +1,63 @@ +{ + "id": "laos-lsb", + "name": { + "en": "Lao Statistics Bureau (LSB)", + "zh": "老挝统计局" + }, + "description": { + "en": "The Lao Statistics Bureau (LSB) is the national statistical office of the Lao People's Democratic Republic, operating under the Ministry of Planning and Investment. It is responsible for collecting, compiling, and disseminating official statistics on the country's economic and social development, including national accounts, population, poverty, trade, and sectoral data.", + "zh": "老挝统计局(LSB)是老挝人民民主共和国的国家统计机构,隶属于计划与投资部。负责收集、编制和发布关于国家经济社会发展的官方统计数据,包括国民账户、人口、贫困、贸易和部门数据。" + }, + "website": "https://www.lsb.gov.la/", + "data_url": "https://laosis.lsb.gov.la/", + "api_url": null, + "authority_level": "government", + "country": "LA", + "domains": [ + "economics", + "demographics", + "social" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "laos", + "老挝", + "lsb", + "statistics", + "统计局", + "laosis", + "gdp", + "population", + "人口", + "poverty", + "贫困", + "asean", + "东盟", + "southeast-asia", + "东南亚", + "lao-pdr" + ], + "data_content": { + "en": [ + "National accounts and GDP statistics", + "Population and Housing Census data", + "Lao Expenditure and Consumption Survey (LECS)", + "Consumer Price Index (CPI)", + "Foreign trade statistics", + "Agriculture and forestry statistics", + "Education and health indicators", + "Provincial and district-level socio-economic data" + ], + "zh": [ + "国民账户和GDP统计", + "人口与住房普查数据", + "老挝支出和消费调查(LECS)", + "消费者价格指数(CPI)", + "对外贸易统计", + "农业和林业统计", + "教育和卫生指标", + "省级和县级社会经济数据" + ] + } +} diff --git a/firstdata/sources/countries/asia/malaysia/malaysia-dosm.json b/firstdata/sources/countries/asia/malaysia/malaysia-dosm.json new file mode 100644 index 00000000..05d62936 --- /dev/null +++ b/firstdata/sources/countries/asia/malaysia/malaysia-dosm.json @@ -0,0 +1,47 @@ +{ + "id": "malaysia-dosm", + "name": { + "en": "Department of Statistics Malaysia (DOSM)", + "zh": "马来西亚统计局" + }, + "description": { + "en": "Malaysia's national statistical agency providing comprehensive data on population, economy, and social indicators through the OpenDOSM platform.", + "zh": "马来西亚国家统计机构,通过OpenDOSM平台提供人口、经济和社会指标的综合数据。" + }, + "website": "https://www.dosm.gov.my/", + "data_url": "https://open.dosm.gov.my/", + "api_url": "https://api.dosm.gov.my/", + "authority_level": "government", + "country": "MY", + "domains": [ + "economics", + "demographics" + ], + "tags": [ + "statistics", + "gdp", + "population", + "trade", + "cpi", + "malaysia", + "open-data" + ], + "update_frequency": "monthly", + "data_content": { + "en": [ + "GDP and national accounts", + "Population demographics", + "Consumer price index", + "Labour force statistics", + "External trade" + ], + "zh": [ + "GDP和国民账户", + "人口统计", + "消费者价格指数", + "劳动力统计", + "对外贸易" + ] + }, + "geographic_scope": "national" +} diff --git a/firstdata/sources/countries/asia/myanmar/myanmar-cso.json b/firstdata/sources/countries/asia/myanmar/myanmar-cso.json new file mode 100644 index 00000000..6588b0c7 --- /dev/null +++ b/firstdata/sources/countries/asia/myanmar/myanmar-cso.json @@ -0,0 +1,57 @@ +{ + "id": "myanmar-cso", + "name": { + "en": "Central Statistical Organization (Myanmar)", + "zh": "缅甸中央统计局" + }, + "description": { + "en": "Myanmar's principal government agency responsible for collecting, processing, and disseminating official statistics including GDP, population census, CPI, labor force surveys, foreign trade, industrial production, and agricultural statistics.", + "zh": "缅甸主要政府统计机构,负责收集、处理和发布官方统计数据,包括GDP、人口普查、消费者价格指数、劳动力调查、对外贸易、工业生产和农业统计。" + }, + "website": "https://www.csostat.gov.mm", + "data_url": "https://www.csostat.gov.mm", + "api_url": null, + "country": "MM", + "geographic_scope": "national", + "authority_level": "government", + "domains": [ + "economics", + "demographics", + "trade", + "agriculture" + ], + "update_frequency": "annual", + "data_content": { + "en": [ + "GDP and national accounts", + "Population and housing census", + "Consumer price index (CPI)", + "Labor force survey", + "Foreign trade statistics", + "Industrial production index", + "Agricultural statistics", + "Social and vital statistics" + ], + "zh": [ + "GDP与国民账户", + "人口与住房普查", + "消费者价格指数", + "劳动力调查", + "对外贸易统计", + "工业生产指数", + "农业统计", + "社会与人口动态统计" + ] + }, + "tags": [ + "myanmar", + "缅甸", + "statistics", + "统计局", + "asean", + "东盟", + "gdp", + "census", + "cpi" + ] +} diff --git a/firstdata/sources/countries/asia/philippines/psa.json b/firstdata/sources/countries/asia/philippines/psa.json new file mode 100644 index 00000000..044d478e --- /dev/null +++ b/firstdata/sources/countries/asia/philippines/psa.json @@ -0,0 +1,89 @@ +{ + "id": "philippines-psa", + "name": { + "en": "Philippine Statistics Authority", + "zh": "菲律宾统计局" + }, + "description": { + "en": "The Philippine Statistics Authority (PSA) is the central statistical authority of the Philippine government, responsible for collecting, compiling, analyzing, and publishing official statistics on economic, social, demographic, political affairs, and general welfare of the Filipino people. Created by Republic Act No. 10625 (Philippine Statistical Act of 2013), PSA conducts national censuses and surveys, maintains civil registration systems, and provides comprehensive data through its OpenStat, QuickStat, and interactive map platforms.", + "zh": "菲律宾统计局(PSA)是菲律宾政府的中央统计机构,负责收集、编制、分析和发布关于经济、社会、人口、政治事务和菲律宾人民总体福祉的官方统计数据。根据第10625号共和国法(2013年菲律宾统计法)设立,PSA进行全国性普查和调查,维护民事登记系统,并通过OpenStat、QuickStat和交互式地图平台提供综合数据。" + }, + "website": "https://psa.gov.ph", + "data_url": "https://openstat.psa.gov.ph", + "api_url": null, + "country": "PH", + "domains": [ + "demographics", + "economics", + "social", + "population", + "employment", + "agriculture", + "trade", + "health", + "education", + "environment", + "government-finance", + "business", + "civil-registration" + ], + "geographic_scope": "national", + "update_frequency": "irregular", + "tags": [ + "philippines", + "菲律宾", + "national-statistics", + "国家统计", + "census", + "普查", + "demographics", + "人口统计", + "economic-indicators", + "经济指标", + "openstat", + "quickstat", + "government-data", + "政府数据", + "civil-registration", + "民事登记", + "psa", + "southeast-asia", + "东南亚", + "philippine-statistics", + "official-statistics", + "官方统计" + ], + "data_content": { + "en": [ + "Census of Population and Housing - comprehensive national census", + "National accounts and economic statistics - GDP, inflation, trade balance", + "Demographic and social statistics - population estimates, vital statistics", + "Labour force statistics - employment, unemployment, wages", + "Agricultural statistics - crop production, livestock, fisheries", + "Industry and trade statistics - manufacturing, construction, services", + "Environmental and multi-domain statistics", + "Civil registration services - birth, marriage, death certificates", + "Business and enterprise statistics", + "Education statistics - enrollment, literacy", + "Health statistics and surveys", + "Government finance and public sector data", + "Regional and provincial statistics" + ], + "zh": [ + "人口和住房普查 - 全面的全国性普查", + "国民账户和经济统计 - GDP、通货膨胀、贸易差额", + "人口和社会统计 - 人口估计、生命统计", + "劳动力统计 - 就业、失业、工资", + "农业统计 - 作物生产、畜牧业、渔业", + "工业和贸易统计 - 制造业、建筑业、服务业", + "环境和多领域统计", + "民事登记服务 - 出生、婚姻、死亡证明", + "商业和企业统计", + "教育统计 - 入学率、识字率", + "健康统计和调查", + "政府财政和公共部门数据", + "地区和省级统计" + ] + }, + "authority_level": "government" +} diff --git a/firstdata/sources/countries/asia/saudi-arabia/saudi-gastat.json b/firstdata/sources/countries/asia/saudi-arabia/saudi-gastat.json new file mode 100644 index 00000000..b560e071 --- /dev/null +++ b/firstdata/sources/countries/asia/saudi-arabia/saudi-gastat.json @@ -0,0 +1,102 @@ +{ + "id": "saudi-gastat", + "name": { + "en": "General Authority for Statistics (GASTAT)", + "zh": "沙特阿拉伯统计总局" + }, + "description": { + "en": "The General Authority for Statistics (GASTAT) is the official national statistics agency of the Kingdom of Saudi Arabia. Established under the Statistics Law, GASTAT is responsible for collecting, processing, analyzing, and disseminating official statistical data on the socioeconomic, demographic, environmental, and other aspects of Saudi society. It conducts the national population census, and publishes regular statistical releases on GDP, labor market, prices, trade, housing, and sectoral indicators in support of Saudi Vision 2030.", + "zh": "沙特阿拉伯统计总局(GASTAT)是沙特阿拉伯王国的官方国家统计机构,依据统计法成立,负责收集、处理、分析和发布有关沙特社会经济、人口、环境等各方面的官方统计数据。统计总局开展全国人口普查,定期发布GDP、劳动力市场、价格、贸易、住房和行业指标等统计数据,为沙特2030愿景提供数据支撑。" + }, + "website": "https://www.stats.gov.sa/en", + "data_url": "https://www.stats.gov.sa/statistics", + "api_url": null, + "authority_level": "government", + "country": "SA", + "domains": [ + "demographics", + "economics", + "social", + "employment", + "prices", + "trade", + "industry", + "agriculture", + "housing", + "energy", + "health" + ], + "geographic_scope": "national", + "update_frequency": "quarterly", + "tags": [ + "saudi-arabia", + "沙特阿拉伯", + "gastat", + "saudi-statistics", + "沙特统计", + "vision-2030", + "2030愿景", + "population", + "人口", + "census", + "人口普查", + "gdp", + "国内生产总值", + "oil", + "石油", + "energy", + "能源", + "labour-market", + "劳动力市场", + "employment", + "就业", + "cpi", + "consumer-price-index", + "消费者价格指数", + "trade", + "贸易", + "exports", + "出口", + "imports", + "进口", + "middle-east", + "中东", + "gulf", + "海湾", + "gcc", + "官方统计", + "official-statistics", + "government-statistics", + "政府统计" + ], + "data_content": { + "en": [ + "Population and Demography - census data, population estimates, births, deaths, naturalization, age and gender distribution", + "National Accounts - GDP by expenditure and production approach, sector accounts, capital formation, household consumption", + "Labour Market - employment by nationality and gender, unemployment rate, wages, labor force participation, Saudization (Nitaqat) rates", + "Prices - Consumer Price Index (CPI), Producer Price Index (PPI), real estate price index, construction cost index", + "Foreign Trade - merchandise exports and imports by commodity and trading partner, trade balance", + "Energy and Oil - oil production, refining capacity, electricity generation and consumption (in collaboration with SAMA and energy authorities)", + "Industry and Manufacturing - industrial production indices, output by sector, mining and quarrying, manufacturing", + "Agriculture and Food - crop and livestock production, fisheries, food supply statistics", + "Housing and Construction - building permits, dwelling stock, real estate market indicators", + "Social Statistics - education enrollment, health facilities and outcomes, poverty and income distribution, social welfare", + "Business and Finance - business registrations, economic activity by sector, public finance indicators", + "Environment - water resources, land use, environmental quality, waste management statistics" + ], + "zh": [ + "人口与人口统计 - 人口普查数据、人口估计、出生、死亡、入籍、年龄和性别分布", + "国民账户 - 支出法和生产法GDP、部门账户、资本形成、居民消费", + "劳动力市场 - 按国籍和性别划分的就业情况、失业率、工资、劳动参与率、沙特化(Nitaqat)比率", + "价格 - 消费者价格指数(CPI)、生产者价格指数(PPI)、房地产价格指数、建筑成本指数", + "对外贸易 - 按商品和贸易伙伴划分的商品出口和进口、贸易差额", + "能源与石油 - 石油产量、炼油能力、发电量和用电量", + "工业与制造业 - 工业生产指数、各部门产出、采矿采石、制造业", + "农业与食品 - 农作物和牲畜产量、渔业、食品供给统计", + "住房与建筑 - 建筑许可、住宅存量、房地产市场指标", + "社会统计 - 教育入学率、卫生设施和健康结果、贫困和收入分配、社会福利", + "商业与金融 - 企业登记、各部门经济活动、公共财政指标", + "环境 - 水资源、土地利用、环境质量、废物管理统计" + ] + } +} diff --git a/firstdata/sources/countries/asia/singapore/singapore-singstat.json b/firstdata/sources/countries/asia/singapore/singapore-singstat.json new file mode 100644 index 00000000..6951e8fa --- /dev/null +++ b/firstdata/sources/countries/asia/singapore/singapore-singstat.json @@ -0,0 +1,68 @@ +{ + "id": "singapore-singstat", + "name": { + "en": "Singapore Department of Statistics (SingStat)", + "zh": "新加坡统计局", + "native": "Department of Statistics Singapore" + }, + "description": { + "en": "The Singapore Department of Statistics (SingStat) is the national statistical authority of Singapore, responsible for producing and disseminating authoritative statistics on Singapore's economy, population, and society. It provides key economic indicators including GDP, trade, inflation, employment, and demographic data, and offers open access to its data through the SingStat Table Builder platform.", + "zh": "新加坡统计局(SingStat)是新加坡官方国家统计机构,负责生产和发布新加坡经济、人口和社会的权威统计数据,提供包括GDP、贸易、通胀、就业和人口统计在内的核心经济指标,并通过SingStat Table Builder平台提供开放数据访问。" + }, + "website": "https://www.singstat.gov.sg", + "data_url": "https://tablebuilder.singstat.gov.sg", + "api_url": "https://tablebuilder.singstat.gov.sg/api/table/metadata/", + "authority_level": "government", + "country": "SG", + "domains": [ + "economics", + "demographics", + "trade", + "employment", + "social", + "finance" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "singapore", + "singstat", + "statistics", + "gdp", + "inflation", + "population", + "census", + "employment", + "trade", + "新加坡", + "统计局", + "东南亚", + "经济统计", + "人口普查", + "table-builder" + ], + "data_content": { + "en": [ + "GDP and national accounts", + "Consumer price index (CPI) and inflation", + "International trade in goods and services", + "Population census and demographic statistics", + "Labour force and employment data", + "Household income and expenditure surveys", + "Industrial production statistics", + "Business expectations surveys", + "Tourism and visitor arrivals" + ], + "zh": [ + "GDP和国民账户", + "消费者价格指数(CPI)和通胀", + "货物和服务国际贸易", + "人口普查和人口统计", + "劳动力和就业数据", + "家庭收入和支出调查", + "工业生产统计", + "企业前景调查", + "旅游和访客数量" + ] + } +} diff --git a/firstdata/sources/countries/asia/south-korea/korea-kostat.json b/firstdata/sources/countries/asia/south-korea/korea-kostat.json new file mode 100644 index 00000000..12b3d835 --- /dev/null +++ b/firstdata/sources/countries/asia/south-korea/korea-kostat.json @@ -0,0 +1,46 @@ +{ + "id": "korea-kostat", + "name": { + "en": "Statistics Korea (KOSTAT)", + "zh": "韩国统计厅" + }, + "description": { + "en": "The national statistical office of South Korea providing comprehensive statistical data on population, economy, society, and environment through the Korean Statistical Information Service (KOSIS).", + "zh": "韩国国家统计机构,通过韩国统计信息服务(KOSIS)提供人口、经济、社会和环境的综合统计数据。" + }, + "website": "https://kostat.go.kr/", + "data_url": "https://kosis.kr/eng/", + "api_url": "https://kosis.kr/openapi/", + "authority_level": "government", + "country": "KR", + "domains": [ + "economics", + "demographics" + ], + "tags": [ + "statistics", + "gdp", + "population", + "cpi", + "employment", + "south-korea" + ], + "update_frequency": "monthly", + "data_content": { + "en": [ + "GDP and national accounts", + "Consumer price index", + "Population census", + "Employment statistics", + "Industrial production" + ], + "zh": [ + "GDP和国民账户", + "消费者价格指数", + "人口普查", + "就业统计", + "工业生产" + ] + }, + "geographic_scope": "national" +} diff --git a/firstdata/sources/countries/asia/taiwan/taiwan-dgbas.json b/firstdata/sources/countries/asia/taiwan/taiwan-dgbas.json new file mode 100644 index 00000000..a0980fa0 --- /dev/null +++ b/firstdata/sources/countries/asia/taiwan/taiwan-dgbas.json @@ -0,0 +1,46 @@ +{ + "id": "taiwan-dgbas", + "name": { + "en": "Directorate-General of Budget, Accounting and Statistics (DGBAS)", + "zh": "台湾主计总处" + }, + "description": { + "en": "The principal government statistics agency of Taiwan responsible for national statistics including GDP, CPI, population census, and household surveys.", + "zh": "台湾主要政府统计机构,负责GDP、CPI、人口普查和家庭调查等国家统计。" + }, + "website": "https://eng.dgbas.gov.tw/", + "data_url": "https://eng.stat.gov.tw/", + "api_url": null, + "authority_level": "government", + "country": "TW", + "domains": [ + "economics", + "demographics" + ], + "tags": [ + "statistics", + "gdp", + "cpi", + "population", + "census", + "taiwan" + ], + "update_frequency": "monthly", + "data_content": { + "en": [ + "GDP and national accounts", + "Consumer price index", + "Population census", + "Household income and expenditure", + "Employment statistics" + ], + "zh": [ + "GDP和国民账户", + "消费者价格指数", + "人口普查", + "家庭收支", + "就业统计" + ] + }, + "geographic_scope": "national" +} diff --git a/firstdata/sources/countries/asia/vietnam/fia-fdi.json b/firstdata/sources/countries/asia/vietnam/fia-fdi.json new file mode 100644 index 00000000..6e585d0b --- /dev/null +++ b/firstdata/sources/countries/asia/vietnam/fia-fdi.json @@ -0,0 +1,74 @@ +{ + "id": "fia-fdi", + "name": { + "en": "Foreign Investment Agency - FDI Statistics", + "zh": "越南外国投资局 - FDI统计数据" + }, + "description": { + "en": "The Foreign Investment Agency (FIA) under the Ministry of Planning and Investment of Vietnam is the official government agency responsible for publishing comprehensive statistics on foreign direct investment (FDI) in Vietnam and Vietnam's overseas investment. The agency provides detailed monthly, quarterly, and annual reports covering FDI registered capital, disbursed capital, by sector, by source country/territory, and by province.", + "zh": "越南计划投资部下属的外国投资局(FIA)是负责发布越南外国直接投资(FDI)及越南海外投资综合统计数据的官方政府机构。该机构提供详细的月度、季度和年度报告,涵盖FDI注册资本、实际到位资本、按行业分类、按来源国/地区分类以及按省份分类的数据。" + }, + "website": "https://www.mpi.gov.vn/", + "data_url": "https://www.mpi.gov.vn/en/Pages/FDI-1637.aspx", + "api_url": null, + "authority_level": "government", + "country": "VN", + "domains": [ + "foreign-direct-investment", + "international-investment", + "economic-statistics", + "investment-statistics" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "vietnam", + "越南", + "fdi", + "foreign-direct-investment", + "外国直接投资", + "investment-statistics", + "投资统计", + "economic-data", + "经济数据", + "ministry-of-planning-and-investment", + "计划投资部", + "fia", + "foreign-investment-agency", + "外国投资局", + "overseas-investment", + "对外投资", + "capital-flows", + "资本流动", + "registered-capital", + "注册资本", + "disbursed-capital", + "实际到位资本", + "investment-by-sector", + "行业投资", + "investment-by-province", + "省份投资", + "investment-by-country", + "国别投资" + ], + "data_content": { + "en": [ + "FDI registered capital and disbursed capital statistics", + "FDI by economic sector (manufacturing, real estate, electricity, etc.)", + "FDI by source country and territory (90+ countries)", + "FDI by province and locality", + "Number of FDI projects by category (new projects, additional investment, capital contribution)", + "Vietnam's overseas investment statistics", + "Monthly, quarterly, and annual FDI reports" + ], + "zh": [ + "FDI注册资本和实际到位资本统计", + "按经济部门分类的FDI(制造业、房地产、电力等)", + "按来源国家和地区分类的FDI(90多个国家)", + "按省份和地区分类的FDI", + "按类别分类的FDI项目数量(新项目、追加投资、出资购股)", + "越南对外投资统计", + "月度、季度和年度FDI报告" + ] + } +} diff --git a/firstdata/sources/countries/asia/vietnam/gdvc.json b/firstdata/sources/countries/asia/vietnam/gdvc.json new file mode 100644 index 00000000..dee5b5f2 --- /dev/null +++ b/firstdata/sources/countries/asia/vietnam/gdvc.json @@ -0,0 +1,86 @@ +{ + "id": "gdvc", + "name": { + "en": "General Department of Vietnam Customs", + "zh": "越南海关总局" + }, + "description": { + "en": "The General Department of Vietnam Customs (GDVC) is a government agency under the Ministry of Finance, responsible for customs management, revenue protection, and trade facilitation. GDVC manages import and export activities, fights against smuggling and commercial fraud, and operates the Vietnam National Single Window system. The department provides 181 online public services and maintains comprehensive customs statistics and trade data.", + "zh": "越南海关总局(GDVC)是财政部下属的政府机构,负责海关管理、收入保护和贸易便利化。GDVC管理进出口活动,打击走私和商业欺诈,并运营越南国家单一窗口系统。该部门提供181项在线公共服务,并维护全面的海关统计和贸易数据。" + }, + "website": "https://www.customs.gov.vn", + "data_url": "https://www.customs.gov.vn", + "api_url": null, + "authority_level": "government", + "geographic_scope": "national", + "country": "VN", + "domains": [ + "customs", + "trade", + "import-export", + "tariffs", + "revenue", + "border-control" + ], + "update_frequency": "daily", + "data_content": { + "en": [ + "Import and export customs declarations and statistics", + "Tariff classification and HS code database", + "Customs duty and tax collection data", + "Trade statistics by commodity, country, and port", + "E-commerce customs management data", + "Customs clearance procedures and processing times", + "Customs revenue and enforcement statistics", + "Cross-border trade facilitation metrics", + "Single Window transaction data", + "Anti-smuggling and trade fraud investigation reports" + ], + "zh": [ + "进出口海关申报与统计", + "关税分类与HS编码数据库", + "关税和税收征收数据", + "按商品、国家和港口分类的贸易统计", + "电子商务海关管理数据", + "海关清关程序与处理时间", + "海关收入与执法统计", + "跨境贸易便利化指标", + "单一窗口交易数据", + "反走私与贸易欺诈调查报告" + ] + }, + "tags": [ + "vietnam", + "越南", + "customs", + "海关", + "import-export", + "进出口", + "trade-statistics", + "贸易统计", + "tariffs", + "关税", + "hs-code", + "HS编码", + "customs-clearance", + "海关清关", + "trade-facilitation", + "贸易便利化", + "single-window", + "单一窗口", + "gdvc", + "tổng-cục-hải-quan", + "government-data", + "政府数据", + "southeast-asia", + "东南亚", + "asean", + "customs-revenue", + "海关收入", + "border-control", + "边境管控", + "e-commerce", + "电子商务", + "vnaccs" + ] +} diff --git a/firstdata/sources/countries/asia/vietnam/gso-vietnam.json b/firstdata/sources/countries/asia/vietnam/gso-vietnam.json new file mode 100644 index 00000000..be9de7c4 --- /dev/null +++ b/firstdata/sources/countries/asia/vietnam/gso-vietnam.json @@ -0,0 +1,88 @@ +{ + "id": "gso-vietnam", + "name": { + "en": "General Statistics Office of Vietnam", + "zh": "越南国家统计局" + }, + "description": { + "en": "The General Statistics Office of Vietnam (GSO) is a government agency under the Ministry of Planning and Investment, responsible for state management of statistics and providing comprehensive social and economic information. GSO operates a vertical system with headquarters, 63 provincial statistical offices, and 713 district branch offices, serving over 5,300 employees nationwide.", + "zh": "越南国家统计局(GSO)是隶属于计划与投资部的政府机构,负责国家统计管理职能,提供全面的社会经济信息。GSO采用垂直管理体系,包括总部、63个省级统计办公室和713个区级分支机构,在全国拥有超过5,300名员工。" + }, + "website": "https://www.gso.gov.vn", + "data_url": "https://www.gso.gov.vn/en/data-and-statistics/", + "api_url": null, + "authority_level": "government", + "geographic_scope": "national", + "country": "VN", + "domains": [ + "national-accounts", + "population-and-employment", + "agriculture-and-rural-development", + "industry-and-construction", + "trade-and-services", + "investment-and-finance", + "price-indices", + "social-statistics", + "education-and-health", + "transport-and-telecommunications", + "environmental-statistics" + ], + "update_frequency": "monthly", + "data_content": { + "en": [ + "National Accounts and GDP statistics", + "Population and Housing Census data", + "Industrial Production Index", + "Consumer Price Index (CPI)", + "Employment and Labor Force statistics", + "Agriculture, Forestry, and Fishery statistics", + "Trade, Investment and Construction data", + "Transport, Postal Services and Telecommunications statistics", + "Education, Health and Culture indicators", + "Income, Poverty and Living Standards data", + "Provincial and Regional statistical data", + "State Budget and Public Finance statistics" + ], + "zh": [ + "国民账户与GDP统计", + "人口与住房普查数据", + "工业生产指数", + "消费者价格指数(CPI)", + "就业与劳动力统计", + "农业、林业和渔业统计", + "贸易、投资与建设数据", + "交通、邮政与电信统计", + "教育、卫生与文化指标", + "收入、贫困与生活水平数据", + "省级与区域统计数据", + "国家预算与公共财政统计" + ] + }, + "tags": [ + "vietnam", + "越南", + "national-statistics", + "国家统计", + "economic-data", + "经济数据", + "population-census", + "人口普查", + "gdp", + "cpi", + "industrial-production", + "工业生产", + "labor-statistics", + "劳动力统计", + "trade-data", + "贸易数据", + "government-statistics", + "政府统计", + "gso", + "tổng-cục-thống-kê", + "southeast-asia", + "东南亚", + "asean", + "statistical-yearbook", + "统计年鉴" + ] +} diff --git a/firstdata/sources/countries/asia/vietnam/gso.json b/firstdata/sources/countries/asia/vietnam/gso.json new file mode 100644 index 00000000..7b2d225e --- /dev/null +++ b/firstdata/sources/countries/asia/vietnam/gso.json @@ -0,0 +1,102 @@ +{ + "id": "vietnam-gso", + "name": { + "en": "General Statistics Office of Vietnam", + "zh": "越南统计总局" + }, + "description": { + "en": "Vietnam's national statistical agency providing authoritative official statistics on economic, social, population, and environmental matters. The GSO publishes comprehensive data including GDP, CPI, FDI, population, trade, industry, and employment through quarterly and annual reports, statistical yearbooks, and online databases.", + "zh": "越南国家统计局,提供涵盖经济、社会、人口和环境事务的权威官方统计数据。GSO发布包括GDP、CPI、FDI、人口、贸易、工业和就业在内的全面数据,通过季度和年度报告、统计年鉴和在线数据库提供。" + }, + "website": "https://www.nso.gov.vn", + "data_url": "https://www.nso.gov.vn/en/statistical-data/", + "api_url": null, + "country": "VN", + "domains": [ + "economics", + "demographics", + "population", + "employment", + "trade", + "industry", + "agriculture", + "construction", + "education", + "health", + "environment", + "government-finance", + "investment" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "vietnam", + "越南", + "national-statistics", + "国家统计", + "gdp", + "cpi", + "fdi", + "foreign-direct-investment", + "外商直接投资", + "population", + "人口", + "employment", + "就业", + "trade", + "贸易", + "economic-indicators", + "经济指标", + "census", + "人口普查", + "quarterly-data", + "季度数据", + "annual-statistics", + "年度统计", + "statistical-yearbook", + "统计年鉴", + "government-data", + "政府数据", + "southeast-asia", + "东南亚" + ], + "data_content": { + "en": [ + "National accounts - GDP at current prices, GDP growth rates, GDP per capita", + "Consumer Price Index (CPI) - monthly and annual inflation data", + "Foreign Direct Investment (FDI) - inbound investment statistics", + "Population and demographics - census data, population estimates and projections", + "Labour force statistics - employment, unemployment, wages", + "International trade - exports, imports, trade balance", + "Industrial production - manufacturing and mining statistics", + "Agriculture, forestry and fishery statistics", + "Investment and construction data", + "Transport, postal services and telecommunications", + "Education and training statistics", + "Health statistics and social indicators", + "Energy and environmental data", + "Government finance statistics", + "Business and enterprise statistics", + "Statistical Yearbook - comprehensive annual publication with socio-economic data" + ], + "zh": [ + "国民账户 - 现价GDP、GDP增长率、人均GDP", + "居民消费价格指数(CPI) - 月度和年度通胀数据", + "外商直接投资(FDI) - 外资流入统计", + "人口和人口统计 - 人口普查数据、人口估计和预测", + "劳动力统计 - 就业、失业、工资", + "国际贸易 - 出口、进口、贸易差额", + "工业生产 - 制造业和采矿业统计", + "农业、林业和渔业统计", + "投资和建筑数据", + "交通、邮政和电信服务", + "教育和培训统计", + "健康统计和社会指标", + "能源和环境数据", + "政府财政统计", + "商业和企业统计", + "统计年鉴 - 包含社会经济数据的年度综合出版物" + ] + }, + "authority_level": "government" +} diff --git a/firstdata/sources/countries/asia/vietnam/mpi-fdi.json b/firstdata/sources/countries/asia/vietnam/mpi-fdi.json new file mode 100644 index 00000000..aa32de5a --- /dev/null +++ b/firstdata/sources/countries/asia/vietnam/mpi-fdi.json @@ -0,0 +1,84 @@ +{ + "id": "mpi-fdi", + "name": { + "en": "Ministry of Planning and Investment - FDI Statistics", + "zh": "越南计划投资部 - 外国直接投资统计", + "vi": "Bộ Kế hoạch và Đầu tư - Thống kê FDI" + }, + "description": { + "en": "Official source for Foreign Direct Investment (FDI) statistics and reports in Vietnam. The Ministry of Planning and Investment (MPI) provides comprehensive data on FDI inflows, registered capital, disbursed capital, investment projects by sector, and investor country breakdowns. Reports are published monthly and annually, covering both FDI attraction in Vietnam and Vietnamese overseas investment.", + "zh": "越南外国直接投资(FDI)统计数据和报告的官方来源。越南计划投资部提供全面的FDI流入数据、注册资本、实际到位资本、按行业分类的投资项目以及投资来源国分布等信息。报告按月度和年度发布,涵盖越南吸引FDI和越南对外投资两个方面。", + "vi": "Nguồn thông tin chính thức về thống kê và báo cáo Đầu tư Trực tiếp Nước ngoài (FDI) tại Việt Nam. Bộ Kế hoạch và Đầu tư cung cấp dữ liệu toàn diện về dòng vốn FDI, vốn đăng ký, vốn giải ngân, các dự án đầu tư theo ngành và phân bổ theo quốc gia đầu tư." + }, + "website": "https://www.mpi.gov.vn", + "data_url": "https://www.mpi.gov.vn/en/Pages/Report-on-Foreign-Direct-Investment-1740.aspx", + "api_url": null, + "authority_level": "government", + "country": "VN", + "geographic_scope": "national", + "domains": [ + "economics", + "investment", + "trade", + "finance" + ], + "update_frequency": "monthly", + "tags": [ + "fdi", + "foreign-direct-investment", + "vietnam-investment", + "越南投资", + "investment-statistics", + "投资统计", + "capital-flows", + "资本流动", + "investment-projects", + "投资项目", + "ofdi", + "overseas-investment", + "对外直接投资", + "海外投资", + "registered-capital", + "注册资本", + "disbursed-capital", + "实际到位资本", + "government-statistics", + "政府统计", + "bộ-kế-hoạch-và-đầu-tư", + "đầu-tư-trực-tiếp-nước-ngoài", + "vốn-đăng-ký", + "vốn-giải-ngân" + ], + "data_content": { + "en": [ + "FDI registered capital and disbursed capital statistics", + "New FDI projects and additional capital adjustments", + "FDI breakdown by sector and industry", + "FDI breakdown by investor country/region", + "FDI distribution by province and locality", + "Vietnamese overseas investment (OFDI) statistics", + "Monthly and annual FDI reports", + "Cumulative FDI data since 1988" + ], + "zh": [ + "FDI注册资本和实际到位资本统计", + "新注册FDI项目和增资调整", + "按行业和部门分类的FDI数据", + "按投资来源国/地区分类的FDI数据", + "按省份和地区分布的FDI数据", + "越南对外投资(OFDI)统计", + "月度和年度FDI报告", + "1988年以来的累计FDI数据" + ], + "vi": [ + "Thống kê vốn đăng ký và vốn giải ngân FDI", + "Dự án FDI mới và điều chỉnh vốn bổ sung", + "Phân loại FDI theo ngành và lĩnh vực", + "Phân loại FDI theo quốc gia/khu vực đầu tư", + "Phân bố FDI theo tỉnh thành và địa phương", + "Thống kê đầu tư ra nước ngoài của Việt Nam (OFDI)", + "Báo cáo FDI hàng tháng và hàng năm", + "Dữ liệu FDI tích lũy từ năm 1988" + ] + } +} diff --git a/firstdata/sources/countries/asia/vietnam/sbv.json b/firstdata/sources/countries/asia/vietnam/sbv.json new file mode 100644 index 00000000..f828d8f6 --- /dev/null +++ b/firstdata/sources/countries/asia/vietnam/sbv.json @@ -0,0 +1,88 @@ +{ + "id": "sbv", + "name": { + "en": "State Bank of Vietnam", + "zh": "越南国家银行" + }, + "description": { + "en": "The State Bank of Vietnam (SBV) is the central bank of Vietnam, organized as a ministry-level body under the Government of Vietnam. As the sole issuer of the Vietnamese đồng, the SBV performs State management of monetary and banking activities. The bank's primary objective is to maintain price stability and promote sustainable economic growth through monetary policy tools including interest rate management, money supply control, and credit growth regulation. The SBV collects and disseminates comprehensive statistical data related to Vietnam's financial sector, covering money supply, credit growth, interest rates, inflation, balance of payments, total liquidity, and national payment system transactions.", + "zh": "越南国家银行(SBV)是越南的中央银行,在越南政府下属的部级机构。作为越南盾的唯一发行者,越南国家银行负责货币和银行活动的国家管理。该银行的主要目标是通过利率管理、货币供应控制和信贷增长监管等货币政策工具维持价格稳定和促进可持续经济增长。越南国家银行收集和发布与越南金融部门相关的综合统计数据,涵盖外汇储备、货币供应量、FDI资金流向、信贷增长、利率、通货膨胀、国际收支、总流动性和国家支付系统交易。" + }, + "website": "https://www.sbv.gov.vn", + "data_url": "https://www.sbv.gov.vn/webcenter/portal/en/home/rm/public", + "api_url": null, + "country": "VN", + "domains": [ + "monetary-policy", + "banking-statistics", + "financial-sector", + "interest-rates", + "money-supply", + "credit-growth", + "inflation", + "balance-of-payments", + "payment-systems", + "foreign-exchange", + "financial-stability" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "central-bank", + "vietnam", + "monetary-policy", + "banking-statistics", + "interest-rates", + "money-supply", + "credit-growth", + "inflation", + "balance-of-payments", + "payment-systems", + "foreign-exchange", + "financial-stability", + "vietnamese-dong", + "liquidity", + "financial-sector", + "sbv", + "越南央行", + "货币政策", + "银行统计", + "利率", + "货币供应", + "信贷增长", + "国际收支", + "支付系统", + "外汇" + ], + "data_content": { + "en": [ + "Monetary Policy - Interest rates (rediscount rate, refinance rate), policy decisions, and monetary policy reports", + "Money Supply - Total liquidity, M0, M1, M2, and monetary aggregates", + "Foreign Exchange Reserves - International reserves, foreign currency holdings, and reserve asset composition", + "FDI Capital Flows - Foreign direct investment inflows, outflows, and sectoral distribution", + "Credit Statistics - Credit growth by sector, credit institutions statistics, loan classifications", + "Interest Rates - Deposit rates, lending rates, interbank rates, and policy rates", + "Balance of Payments - International payments, foreign exchange reserves, trade balance", + "Payment Systems - National payment system transactions, electronic payment statistics", + "Banking Sector - Number of credit institutions, branch networks, banking sector performance", + "Foreign Exchange - Exchange rate data, foreign currency reserves, foreign investment", + "Annual Reports - Comprehensive yearly reports on monetary policy implementation and banking sector developments", + "Financial Stability - Banking system health indicators, regulatory compliance, risk assessments" + ], + "zh": [ + "货币政策 - 利率(再贴现率、再融资率)、政策决定和货币政策报告", + "货币供应量 - 总流动性、M0、M1、M2和货币总量", + "外汇储备 - 国际储备、外币持有量和储备资产构成", + "FDI资金流向 - 外国直接投资流入、流出及行业分布", + "信贷统计 - 按部门分类的信贷增长、信贷机构统计、贷款分类", + "利率 - 存款利率、贷款利率、银行间利率和政策利率", + "国际收支 - 国际支付、外汇储备、贸易平衡", + "支付系统 - 国家支付系统交易、电子支付统计", + "银行部门 - 信贷机构数量、分支网络、银行部门绩效", + "外汇 - 汇率数据、外汇储备、外国投资", + "年度报告 - 关于货币政策实施和银行部门发展的综合年度报告", + "金融稳定 - 银行系统健康指标、监管合规、风险评估" + ] + }, + "authority_level": "government" +} diff --git a/firstdata/sources/countries/asia/vietnam/vicofa.json b/firstdata/sources/countries/asia/vietnam/vicofa.json new file mode 100644 index 00000000..f9a6be23 --- /dev/null +++ b/firstdata/sources/countries/asia/vietnam/vicofa.json @@ -0,0 +1,65 @@ +{ + "id": "vicofa", + "name": { + "en": "Vietnam Coffee and Cocoa Association", + "zh": "越南咖啡与可可协会" + }, + "description": { + "en": "Vietnam Coffee and Cocoa Association (VICOFA) is the leading industry association representing coffee and cocoa producers, processors, and exporters in Vietnam. Established in 1990, VICOFA played a key role in Vietnam's membership in the International Coffee Organization (ICO) in 1991. The association has over 100 members including enterprises, production and processing companies, research centers and institutes across both Robusta and Arabica coffee regions throughout Vietnam.", + "zh": "越南咖啡与可可协会(VICOFA)是代表越南咖啡和可可生产商、加工商和出口商的主要行业协会。成立于1990年,VICOFA在越南于1991年加入国际咖啡组织(ICO)的过程中发挥了关键作用。该协会拥有超过100个成员,包括遍布越南罗布斯塔和阿拉比卡咖啡产区的企业、生产加工公司、研究中心和研究机构。" + }, + "website": "https://vicofa.org.vn/", + "data_url": "https://vicofa.org.vn/", + "api_url": null, + "authority_level": "market", + "country": "VN", + "domains": [ + "agriculture", + "commodities", + "trade", + "coffee", + "cocoa" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "coffee", + "咖啡", + "cocoa", + "可可", + "vietnam", + "越南", + "agriculture", + "农业", + "commodities", + "大宗商品", + "exports", + "出口", + "robusta", + "罗布斯塔", + "arabica", + "阿拉比卡", + "trade-association", + "行业协会", + "ico", + "国际咖啡组织" + ], + "data_content": { + "en": [ + "Coffee production and export statistics for Vietnam", + "Cocoa industry production and trade data", + "Member directory of coffee and cocoa enterprises", + "Market analysis and industry reports", + "Coffee price trends and forecasts", + "Robusta and Arabica cultivation data" + ], + "zh": [ + "越南咖啡生产和出口统计", + "可可产业生产和贸易数据", + "咖啡和可可企业成员名录", + "市场分析和行业报告", + "咖啡价格趋势和预测", + "罗布斯塔和阿拉比卡种植数据" + ] + } +} diff --git a/firstdata/sources/countries/asia/vietnam/vietnam-fia.json b/firstdata/sources/countries/asia/vietnam/vietnam-fia.json new file mode 100644 index 00000000..9fa4b57f --- /dev/null +++ b/firstdata/sources/countries/asia/vietnam/vietnam-fia.json @@ -0,0 +1,59 @@ +{ + "id": "vietnam-fia", + "name": { + "en": "Foreign Investment Agency - Ministry of Planning and Investment", + "zh": "越南计划投资部外国投资局" + }, + "description": { + "en": "The Foreign Investment Agency (FIA) operates under Vietnam's Ministry of Planning and Investment as the country's primary agency for investment promotion and foreign direct investment (FDI) management. FIA provides comprehensive data on foreign investment projects, investment trends, sectoral analysis, and regional distribution of FDI in Vietnam.", + "zh": "越南计划投资部外国投资局(FIA)是越南投资促进和外商直接投资(FDI)管理的主要政府机构。FIA提供关于外国投资项目、投资趋势、行业分析以及越南FDI区域分布的综合数据。" + }, + "website": "https://www.mpi.gov.vn/en/pages/default.aspx", + "data_url": "https://www.mpi.gov.vn/en/Pages/FDI-1637.aspx", + "authority_level": "government", + "country": "VN", + "domains": [ + "foreign-direct-investment", + "investment-policy", + "economic-development", + "trade", + "business-registration" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "vietnam", + "越南", + "fdi", + "foreign-direct-investment", + "外商直接投资", + "investment", + "投资", + "ministry-of-planning-and-investment", + "计划投资部", + "economic-development", + "经济发展", + "southeast-asia", + "东南亚", + "government-statistics", + "政府统计" + ], + "data_content": { + "en": [ + "Foreign Direct Investment Statistics", + "Investment Project Database", + "Sectoral Investment Analysis", + "Regional FDI Distribution", + "Investment Trends and Reports", + "Investment Policies and Regulations" + ], + "zh": [ + "外商直接投资统计数据", + "投资项目数据库", + "行业投资分析", + "FDI区域分布", + "投资趋势和报告", + "投资政策和法规" + ] + } +} diff --git a/firstdata/sources/countries/asia/vietnam/vietnam-mof.json b/firstdata/sources/countries/asia/vietnam/vietnam-mof.json new file mode 100644 index 00000000..6b9746c5 --- /dev/null +++ b/firstdata/sources/countries/asia/vietnam/vietnam-mof.json @@ -0,0 +1,86 @@ +{ + "id": "vietnam-mof", + "name": { + "en": "Ministry of Finance of Vietnam", + "zh": "越南财政部" + }, + "description": { + "en": "The Ministry of Finance (MOF) is the government ministry responsible for the finances of Vietnam, including managing the national budget, tax revenue, state assets, national financial reserves and the finances of state corporations. The Ministry manages the work of national accounting, state borrowing, the activities of stock markets, and the Department of Customs. It provides comprehensive financial data, budget reports, tax statistics, and economic indicators for Vietnam.", + "zh": "越南财政部是负责越南财政事务的政府部门,包括管理国家预算、税收收入、国有资产、国家金融储备和国有企业财务。财政部管理国家会计工作、国家借贷、股票市场活动和海关部门。它提供越南的综合财政数据、预算报告、税收统计和经济指标。" + }, + "website": "https://www.mof.gov.vn", + "data_url": "https://www.mof.gov.vn/webcenter/portal/btcen/pages_r/m/statistics", + "api_url": null, + "country": "VN", + "domains": [ + "finance", + "government-budget", + "taxation", + "fiscal-policy", + "public-finance", + "national-accounting", + "customs", + "state-assets", + "financial-markets", + "economic-statistics" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "vietnam", + "finance", + "ministry-of-finance", + "government-budget", + "tax-revenue", + "taxation", + "fiscal-policy", + "public-finance", + "state-budget", + "customs", + "financial-statistics", + "economic-indicators", + "national-accounting", + "state-assets", + "financial-markets", + "越南", + "财政部", + "政府预算", + "税收", + "财政政策", + "公共财政", + "国家预算", + "海关", + "财政统计", + "经济指标", + "国家会计", + "国有资产", + "金融市场" + ], + "data_content": { + "en": [ + "State Budget Revenue - Total revenue collection, tax revenue, non-tax revenue by type and source", + "State Budget Expenditure - Government spending by sector, ministry, and program", + "Tax Statistics - Income tax, corporate tax, VAT, import/export duties collection data", + "National Debt - Public debt levels, external debt, domestic debt statistics", + "State Assets - State-owned enterprise financial performance and asset management", + "Customs Statistics - Import and export data, customs revenue, trade statistics", + "Financial Market Data - Stock market oversight, securities market statistics", + "Fiscal Policy Documents - Budget proposals, fiscal reports, policy announcements", + "National Accounting - Government financial statements and accounting standards", + "Economic Indicators - GDP contribution, fiscal balance, revenue-to-GDP ratios" + ], + "zh": [ + "国家预算收入 - 总收入、税收收入、按类型和来源分类的非税收入", + "国家预算支出 - 按部门、部委和项目分类的政府支出", + "税收统计 - 个人所得税、企业所得税、增值税、进出口关税征收数据", + "国家债务 - 公共债务水平、外债、内债统计", + "国有资产 - 国有企业财务绩效和资产管理", + "海关统计 - 进出口数据、海关收入、贸易统计", + "金融市场数据 - 股票市场监管、证券市场统计", + "财政政策文件 - 预算提案、财政报告、政策公告", + "国家会计 - 政府财务报表和会计准则", + "经济指标 - GDP贡献、财政平衡、收入占GDP比率" + ] + }, + "authority_level": "government" +} diff --git a/firstdata/sources/countries/cn/geology/cgs.json b/firstdata/sources/countries/cn/geology/cgs.json new file mode 100644 index 00000000..f351c5dc --- /dev/null +++ b/firstdata/sources/countries/cn/geology/cgs.json @@ -0,0 +1,54 @@ +{ + "id": "china-cgs", + "name": { + "en": "China Geological Survey (CGS)", + "zh": "中国地质调查局" + }, + "description": { + "en": "The China Geological Survey is a public institution under the Ministry of Natural Resources responsible for unified geological survey and mineral exploration nationwide. It provides authoritative geological data including geological maps, mineral resource assessments, hydrogeological surveys, geological hazard monitoring, and marine geological investigations.", + "zh": "中国地质调查局是自然资源部直属事业单位,负责统一管理全国地质调查和矿产勘查工作。提供权威的地质数据,包括地质图、矿产资源评估、水文地质调查、地质灾害监测和海洋地质调查。" + }, + "website": "https://www.cgs.gov.cn", + "data_url": "https://geocloud.cgs.gov.cn", + "api_url": null, + "country": "CN", + "domains": [ + "geology", + "mineral-resources", + "hydrogeology", + "geological-hazards", + "marine-geology" + ], + "geographic_scope": "national", + "update_frequency": "quarterly", + "tags": [ + "geology", + "minerals", + "geological-hazards", + "hydrogeology", + "marine-geology", + "geologic-maps", + "government-data" + ], + "data_content": { + "en": [ + "Geological maps - National and regional geological mapping data", + "Mineral resources - Mineral exploration results, resource reserves, mine locations", + "Geological hazards - Landslide, debris flow, ground subsidence monitoring", + "Hydrogeology - Groundwater surveys, water resource assessments", + "Marine geology - Offshore geological surveys, submarine topography", + "Geochemical data - Regional geochemical survey results", + "Remote sensing geology - Satellite-based geological interpretation" + ], + "zh": [ + "地质图 - 全国和区域地质制图数据", + "矿产资源 - 矿产勘查成果、资源储量、矿点位置", + "地质灾害 - 滑坡、泥石流、地面沉降监测", + "水文地质 - 地下水调查、水资源评估", + "海洋地质 - 近海地质调查、海底地形", + "地球化学数据 - 区域地球化学调查成果", + "遥感地质 - 卫星地质解译" + ] + }, + "authority_level": "government" +} diff --git a/firstdata/sources/countries/europe/at/austria-statistik.json b/firstdata/sources/countries/europe/at/austria-statistik.json new file mode 100644 index 00000000..59301a73 --- /dev/null +++ b/firstdata/sources/countries/europe/at/austria-statistik.json @@ -0,0 +1,67 @@ +{ + "id": "austria-statistik", + "name": { + "en": "Statistics Austria", + "zh": "奥地利统计局", + "native": "Statistik Austria" + }, + "description": { + "en": "Statistics Austria is the national statistical office of Austria, providing official statistics on population, economy, society, environment, and regional development. It serves as the primary source for national accounts, demographic data, labor market statistics, and social indicators.", + "zh": "奥地利统计局是奥地利官方国家统计机构,提供人口、经济、社会、环境和区域发展等方面的官方统计数据,是国民账户、人口统计、劳动力市场统计和社会指标的主要来源。" + }, + "website": "https://www.statistik.at", + "data_url": "https://www.statistik.at/statistiken", + "api_url": "https://api.statistik.at/stat/rest/v1/", + "authority_level": "government", + "country": "AT", + "domains": [ + "demographics", + "economics", + "social", + "employment", + "prices" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "austria", + "statistik-austria", + "official-statistics", + "population", + "census", + "gdp", + "national-accounts", + "labor-market", + "inflation", + "social-statistics", + "奥地利", + "奥地利统计局", + "人口统计", + "经济统计", + "就业", + "国民账户", + "通货膨胀" + ], + "data_content": { + "en": [ + "Population and census data", + "GDP and national accounts", + "Employment and unemployment statistics", + "Consumer price index and inflation", + "Housing and construction statistics", + "Education and training indicators", + "Health and social welfare data", + "Regional and municipal statistics" + ], + "zh": [ + "人口与普查数据", + "GDP与国民账户", + "就业与失业统计", + "消费者价格指数与通货膨胀", + "住房与建筑统计", + "教育与培训指标", + "卫生与社会福利数据", + "区域与市政统计" + ] + } +} diff --git a/firstdata/sources/countries/europe/bank-of-england-statistics.json b/firstdata/sources/countries/europe/bank-of-england-statistics.json new file mode 100644 index 00000000..d4642682 --- /dev/null +++ b/firstdata/sources/countries/europe/bank-of-england-statistics.json @@ -0,0 +1,79 @@ +{ + "id": "bank-of-england-statistics", + "name": { + "en": "Bank of England Statistical Database", + "zh": "英格兰银行统计数据库" + }, + "description": { + "en": "The Bank of England's official statistical database providing comprehensive data on monetary policy, financial markets, banking sector balance sheets, money and lending, interest rates, exchange rates, and financial derivatives. The database includes time series data on monetary financial institutions, public sector debt, capital issuance, and international reserves.", + "zh": "英格兰银行官方统计数据库,提供货币政策、金融市场、银行业资产负债表、货币与信贷、利率、汇率和金融衍生品的综合数据。数据库包含货币金融机构、公共部门债务、资本发行和国际储备的时间序列数据。" + }, + "website": "https://www.bankofengland.co.uk", + "data_url": "https://www.bankofengland.co.uk/boeapps/database/", + "api_url": "https://www.bankofengland.co.uk/boeapps/database/help.asp", + "authority_level": "government", + "country": "GB", + "domains": [ + "finance", + "economics", + "monetary-policy" + ], + "geographic_scope": "national", + "data_content": { + "en": [ + "Money and lending statistics", + "Monetary financial institutions' balance sheets, income and expenditure", + "Deposits and lending detailed analysis", + "External business of UK banks", + "Public sector debt and money markets operations", + "International reserves and foreign exchange", + "Capital issuance and securities", + "Financial derivatives", + "Interest rates and exchange rates", + "SONIA (Sterling Overnight Index Average) benchmark" + ], + "zh": [ + "货币与信贷统计", + "货币金融机构资产负债表、收入与支出", + "存款与贷款详细分析", + "英国银行的境外业务", + "公共部门债务与货币市场操作", + "国际储备与外汇", + "资本发行与证券", + "金融衍生品", + "利率与汇率", + "SONIA(英镑隔夜指数平均利率)基准" + ] + }, + "update_frequency": "daily", + "tags": [ + "central-bank", + "中央银行", + "monetary-policy", + "货币政策", + "financial-statistics", + "金融统计", + "banking-data", + "银行数据", + "interest-rates", + "利率", + "exchange-rates", + "汇率", + "money-supply", + "货币供应", + "lending", + "信贷", + "deposits", + "存款", + "bank-of-england", + "英格兰银行", + "uk-finance", + "英国金融", + "sonia", + "financial-derivatives", + "金融衍生品", + "reserves", + "储备", + "boe" + ] +} diff --git a/firstdata/sources/countries/europe/belgium/belgium-statbel.json b/firstdata/sources/countries/europe/belgium/belgium-statbel.json new file mode 100644 index 00000000..512b0a54 --- /dev/null +++ b/firstdata/sources/countries/europe/belgium/belgium-statbel.json @@ -0,0 +1,51 @@ +{ + "id": "belgium-statbel", + "name": { + "en": "Statbel - Belgian Statistical Office", + "zh": "比利时统计局" + }, + "description": { + "en": "Official statistical office of Belgium providing demographic, economic, and social statistics", + "zh": "比利时官方统计机构,提供人口、经济和社会统计数据" + }, + "data_url": "https://statbel.fgov.be/en/open-data", + "api_url": null, + "authority_level": "government", + "country": "BE", + "geographic_scope": "national", + "update_frequency": "monthly", + "domains": [ + "economics", + "demographics", + "employment", + "agriculture", + "social", + "trade" + ], + "data_content": { + "en": [ + "Population statistics - demographics, migration, households", + "Economic indicators - GDP, inflation, business statistics", + "Labour market - employment, unemployment, wages", + "Agriculture - crop production, livestock, farm structures", + "Social statistics - poverty, income distribution, living conditions", + "Foreign trade - import/export by commodity and partner country" + ], + "zh": [ + "人口统计 - 人口、移民、家庭", + "经济指标 - GDP、通胀、企业统计", + "劳动力市场 - 就业、失业、工资", + "农业 - 作物产量、畜牧业、农场结构", + "社会统计 - 贫困、收入分配、生活条件", + "对外贸易 - 按商品和伙伴国分类的进出口" + ] + }, + "website": "https://statbel.fgov.be/en", + "tags": [ + "statistics", + "belgium", + "europe", + "government-data", + "open-data" + ] +} diff --git a/firstdata/sources/countries/europe/bulgaria/bulgaria-nsi.json b/firstdata/sources/countries/europe/bulgaria/bulgaria-nsi.json new file mode 100644 index 00000000..e288871e --- /dev/null +++ b/firstdata/sources/countries/europe/bulgaria/bulgaria-nsi.json @@ -0,0 +1,88 @@ +{ + "id": "bulgaria-nsi", + "name": { + "en": "National Statistical Institute of Bulgaria (NSI)", + "zh": "保加利亚国家统计局" + }, + "description": { + "en": "The National Statistical Institute (NSI / Национален статистически институт, НСИ) is the official national statistical authority of Bulgaria, responsible for the collection, processing, and publication of official statistics on the Bulgarian economy, population, and society. NSI produces data harmonized with Eurostat and EU standards, covering GDP, population census, consumer prices, employment, trade, and social statistics.", + "zh": "保加利亚国家统计局(NSI / Национален статистически институт,НСИ)是保加利亚官方国家统计机构,负责收集、处理和发布有关保加利亚经济、人口和社会的官方统计数据。NSI生产与欧盟统计局(Eurostat)标准协调的数据,涵盖GDP、人口普查、消费价格、就业、贸易和社会统计。" + }, + "website": "https://www.nsi.bg", + "data_url": "https://www.nsi.bg/en/content/2666/statisticsdatabases", + "api_url": null, + "authority_level": "government", + "country": "BG", + "geographic_scope": "national", + "update_frequency": "monthly", + "domains": [ + "economics", + "demographics", + "employment", + "trade", + "prices", + "social", + "agriculture", + "industry", + "environment" + ], + "tags": [ + "bulgaria", + "nsi", + "нси", + "national-statistical-institute", + "balkan", + "eastern-europe", + "eu-member", + "eurostat-harmonized", + "population-census", + "gdp", + "national-accounts", + "cpi", + "inflation", + "employment", + "foreign-trade", + "official-statistics", + "保加利亚", + "保加利亚统计局", + "国家统计", + "人口普查", + "经济统计", + "消费价格", + "就业", + "贸易", + "欧盟" + ], + "data_content": { + "en": [ + "GDP and national accounts by sector and expenditure", + "Population census and demographic projections", + "Consumer price index and harmonized inflation (HICP)", + "Labour force survey - employment, unemployment, and wages", + "Foreign trade statistics by commodity and partner country", + "Industrial production index and manufacturing statistics", + "Agricultural production, livestock, and land use", + "Business and enterprise statistics", + "Regional statistics at NUTS 2 and NUTS 3 level", + "Tourism and hospitality statistics", + "Social protection and poverty statistics", + "Education and research & development indicators", + "Environment and energy statistics" + ], + "zh": [ + "按行业和支出GDP与国民账户", + "人口普查与人口预测", + "消费者价格指数和欧盟协调通胀率(HICP)", + "劳动力调查 - 就业、失业率和工资", + "按商品和伙伴国分类的对外贸易统计", + "工业生产指数和制造业统计", + "农业生产、牲畜和土地利用", + "企业与工商统计", + "NUTS 2和NUTS 3级别的区域统计", + "旅游和酒店业统计", + "社会保障和贫困统计", + "教育与研发指标", + "环境与能源统计" + ] + } +} diff --git a/firstdata/sources/countries/europe/croatia/croatia-dzs.json b/firstdata/sources/countries/europe/croatia/croatia-dzs.json new file mode 100644 index 00000000..bc695f46 --- /dev/null +++ b/firstdata/sources/countries/europe/croatia/croatia-dzs.json @@ -0,0 +1,70 @@ +{ + "id": "croatia-dzs", + "name": { + "en": "Croatian Bureau of Statistics (DZS)", + "zh": "克罗地亚统计局" + }, + "description": { + "en": "Official national statistical office of the Republic of Croatia, responsible for collecting, processing, and disseminating official statistics on demographics, economy, social affairs, and the environment. Operating under the DZS (Državni zavod za statistiku), it covers EU-harmonized statistics following EUROSTAT standards.", + "zh": "克罗地亚共和国官方国家统计机构(Državni zavod za statistiku,DZS),负责收集、处理和发布人口、经济、社会和环境方面的官方统计数据,遵循欧盟EUROSTAT标准。" + }, + "website": "https://dzs.gov.hr", + "data_url": "https://dzs.gov.hr/en/data-and-statistics", + "api_url": null, + "authority_level": "government", + "country": "HR", + "geographic_scope": "national", + "update_frequency": "monthly", + "domains": [ + "demographics", + "economics", + "employment", + "trade", + "agriculture", + "environment", + "social" + ], + "tags": [ + "croatia", + "克罗地亚统计", + "dzs", + "eu-member", + "europe", + "official-statistics", + "population", + "gdp", + "eurostat-harmonized", + "balkans", + "国家统计" + ], + "data_content": { + "en": [ + "National accounts - GDP, GVA by economic activity", + "Population census and demographic statistics", + "Labour force survey - employment, unemployment, wages", + "Consumer Price Index and harmonized inflation (HICP)", + "Foreign trade statistics by product and partner country", + "Agricultural production and land use statistics", + "Industrial production index and manufacturing output", + "Regional statistics at NUTS 2 and NUTS 3 level", + "Tourism statistics - arrivals, nights, receipts", + "Education and culture statistics", + "Health and social protection statistics", + "Transport and infrastructure statistics" + ], + "zh": [ + "国民账户 - 按经济活动分类的GDP、GVA", + "人口普查和人口统计数据", + "劳动力调查 - 就业、失业率和工资", + "消费者价格指数和欧盟协调通胀率(HICP)", + "按产品和伙伴国分类的对外贸易统计", + "农业生产和土地利用统计", + "工业生产指数和制造业产出", + "NUTS 2和NUTS 3级别的区域统计", + "旅游统计 - 抵达人数、住宿夜数和旅游收入", + "教育和文化统计", + "卫生和社会保障统计", + "交通运输和基础设施统计" + ] + } +} diff --git a/firstdata/sources/countries/europe/czechia/czechia-czso.json b/firstdata/sources/countries/europe/czechia/czechia-czso.json new file mode 100644 index 00000000..7db12eb6 --- /dev/null +++ b/firstdata/sources/countries/europe/czechia/czechia-czso.json @@ -0,0 +1,64 @@ +{ + "id": "czechia-czso", + "name": { + "en": "Czech Statistical Office (CZSO)", + "zh": "捷克统计局" + }, + "description": { + "en": "Official statistical office of the Czech Republic providing comprehensive demographic, economic, and social data since 1969", + "zh": "捷克共和国官方统计机构,自1969年起提供全面的人口、经济和社会数据" + }, + "website": "https://csu.gov.cz", + "data_url": "https://vdb.czso.cz", + "api_url": "https://data.gov.cz", + "authority_level": "government", + "country": "CZ", + "geographic_scope": "national", + "update_frequency": "monthly", + "domains": [ + "demographics", + "economics", + "employment", + "trade", + "agriculture", + "environment" + ], + "tags": [ + "statistics", + "czechia", + "europe", + "government-data", + "open-data", + "捷克统计" + ], + "data_content": { + "en": [ + "National accounts - GDP, GVA, productivity", + "Population census and demographic statistics", + "Labour force survey - employment, unemployment, wages", + "Consumer Price Index and inflation", + "Foreign trade statistics by product and partner", + "Agricultural census and crop statistics", + "Industrial production index", + "Regional statistics by NUTS classification", + "Environmental accounts and waste statistics", + "Tourism and hospitality statistics", + "Science, technology, and innovation indicators", + "Housing and construction statistics" + ], + "zh": [ + "国民账户 - GDP、GVA、生产力", + "人口普查和人口统计", + "劳动力调查 - 就业、失业、工资", + "消费者价格指数和通胀", + "按产品和伙伴分类的对外贸易统计", + "农业普查和作物统计", + "工业生产指数", + "按NUTS分类的区域统计", + "环境账户和废物统计", + "旅游和酒店统计", + "科技创新指标", + "住房和建筑统计" + ] + } +} diff --git a/firstdata/sources/countries/europe/dk/denmark-dst.json b/firstdata/sources/countries/europe/dk/denmark-dst.json new file mode 100644 index 00000000..00a42ccc --- /dev/null +++ b/firstdata/sources/countries/europe/dk/denmark-dst.json @@ -0,0 +1,70 @@ +{ + "id": "denmark-dst", + "name": { + "en": "Statistics Denmark", + "zh": "丹麦统计局", + "native": "Danmarks Statistik" + }, + "description": { + "en": "Statistics Denmark (Danmarks Statistik) is the national statistical institute of Denmark, responsible for collecting, compiling, and publishing official statistics on Danish society. It covers a wide range of topics including population, economy, business, trade, and social conditions, and provides open access via its StatBank API.", + "zh": "丹麦统计局(Danmarks Statistik)是丹麦官方国家统计机构,负责收集、整理和发布丹麦社会各方面的官方统计数据,涵盖人口、经济、商业、贸易和社会状况,并通过StatBank API提供开放数据访问。" + }, + "website": "https://www.dst.dk", + "data_url": "https://www.dst.dk/en/Statistik", + "api_url": "https://api.statbank.dk/v1/", + "authority_level": "government", + "country": "DK", + "domains": [ + "demographics", + "economics", + "trade", + "social", + "employment", + "prices" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "denmark", + "danmarks-statistik", + "statistics-denmark", + "statbank", + "official-statistics", + "population", + "gdp", + "national-accounts", + "trade", + "labor-market", + "cpi", + "丹麦", + "丹麦统计局", + "人口统计", + "经济统计", + "贸易", + "就业", + "国民账户", + "统计银行" + ], + "data_content": { + "en": [ + "Population and vital statistics", + "GDP and national accounts", + "Foreign trade and balance of payments", + "Employment and labor market indicators", + "Consumer price index and inflation", + "Business and enterprise statistics", + "Social conditions and welfare", + "Environmental accounts and energy statistics" + ], + "zh": [ + "人口与生命统计", + "GDP与国民账户", + "对外贸易与国际收支", + "就业与劳动力市场指标", + "消费者价格指数与通货膨胀", + "企业与工商统计", + "社会状况与福利", + "环境账户与能源统计" + ] + } +} diff --git a/firstdata/sources/countries/europe/finland/finland-stat.json b/firstdata/sources/countries/europe/finland/finland-stat.json new file mode 100644 index 00000000..3488b9ec --- /dev/null +++ b/firstdata/sources/countries/europe/finland/finland-stat.json @@ -0,0 +1,65 @@ +{ + "id": "finland-stat", + "name": { + "en": "Statistics Finland", + "zh": "芬兰统计局", + "native": "Tilastokeskus" + }, + "description": { + "en": "Statistics Finland is the national statistical institute of Finland, providing official statistics on the economy, population, society, and environment. It operates the StatFin database offering comprehensive time series data across all major statistical domains.", + "zh": "芬兰统计局是芬兰国家统计机构,提供经济、人口、社会和环境方面的官方统计数据。其StatFin数据库提供涵盖所有主要统计领域的综合时间序列数据。" + }, + "website": "https://stat.fi/en/", + "data_url": "https://pxdata.stat.fi/PxWeb/pxweb/en/StatFin/", + "api_url": "https://pxdata.stat.fi/PxWeb/api/v1/en/StatFin/", + "authority_level": "government", + "country": "FI", + "domains": [ + "economics", + "population", + "society", + "environment", + "labor" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "finland", + "statistics-finland", + "tilastokeskus", + "statfin", + "芬兰", + "芬兰统计局", + "北欧统计", + "gdp", + "人口", + "就业", + "nordic", + "official-statistics", + "pxweb", + "economy", + "census" + ], + "data_content": { + "en": [ + "National accounts and GDP", + "Population and demographic statistics", + "Labor market and employment", + "Prices and cost of living", + "Education and culture statistics", + "Environment and energy statistics", + "Foreign trade statistics", + "Health and social welfare data" + ], + "zh": [ + "国民账户和GDP", + "人口与人口统计", + "劳动力市场和就业", + "价格和生活成本", + "教育和文化统计", + "环境和能源统计", + "对外贸易统计", + "健康和社会福利数据" + ] + } +} diff --git a/firstdata/sources/countries/europe/fr/france-insee.json b/firstdata/sources/countries/europe/fr/france-insee.json new file mode 100644 index 00000000..fc54df32 --- /dev/null +++ b/firstdata/sources/countries/europe/fr/france-insee.json @@ -0,0 +1,81 @@ +{ + "id": "france-insee", + "name": { + "en": "INSEE - National Institute of Statistics and Economic Studies", + "zh": "法国国家统计与经济研究所", + "native": "Institut national de la statistique et des études économiques" + }, + "description": { + "en": "INSEE (Institut national de la statistique et des études économiques) is the national statistics institute of France, responsible for the production and dissemination of official statistics on the French economy and society. It publishes data on GDP, inflation, employment, demographics, trade, industry, agriculture, and social indicators. INSEE provides the reference source for French official statistics and maintains the BDM (Banque de données macroéconomiques) time-series database.", + "zh": "INSEE(法国国家统计与经济研究所)是法国的国家统计机构,负责生产和发布有关法国经济和社会的官方统计数据。它发布GDP、通货膨胀、就业、人口统计、贸易、工业、农业和社会指标等数据。INSEE是法国官方统计数据的权威来源,并维护BDM(宏观经济数据库)时间序列数据库。" + }, + "website": "https://www.insee.fr", + "data_url": "https://www.insee.fr/en/statistiques", + "api_url": "https://api.insee.fr/series/BDM/V1/", + "authority_level": "government", + "country": "FR", + "domains": [ + "economics", + "demographics", + "employment", + "prices", + "trade", + "industry", + "agriculture", + "social", + "housing", + "finance" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "france", + "insee", + "official-statistics", + "gdp", + "inflation", + "employment", + "population", + "census", + "cpi", + "trade", + "national-accounts", + "法国", + "国家统计", + "通货膨胀", + "就业", + "人口统计", + "价格指数", + "宏观经济" + ], + "data_content": { + "en": [ + "National Accounts (GDP, GNP, value added by sector)", + "Consumer Price Index (CPI) and inflation measures", + "Employment and unemployment statistics (Labor Force Survey)", + "Population and census data", + "Industrial production indices", + "Foreign trade statistics", + "Business surveys and economic climate indicators", + "Household income and consumption", + "Housing and construction statistics", + "Agricultural production statistics", + "Regional and local statistics", + "BDM macroeconomic time-series database" + ], + "zh": [ + "国民账户(GDP、GNP、分行业增加值)", + "消费者价格指数(CPI)和通胀指标", + "就业和失业统计(劳动力调查)", + "人口和普查数据", + "工业生产指数", + "对外贸易统计", + "企业调查和经济景气指标", + "家庭收入和消费", + "住房和建筑统计", + "农业生产统计", + "地区和地方统计", + "BDM宏观经济时间序列数据库" + ] + } +} diff --git a/firstdata/sources/countries/europe/germany/germany-destatis.json b/firstdata/sources/countries/europe/germany/germany-destatis.json new file mode 100644 index 00000000..62c1b8c4 --- /dev/null +++ b/firstdata/sources/countries/europe/germany/germany-destatis.json @@ -0,0 +1,62 @@ +{ + "id": "germany-destatis", + "name": { + "en": "Federal Statistical Office of Germany (Destatis)", + "zh": "德国联邦统计局", + "native": "Statistisches Bundesamt (Destatis)" + }, + "description": { + "en": "Destatis (Statistisches Bundesamt) is the Federal Statistical Office of Germany, the central institution for official German statistics. It collects, processes, and publishes data on German society, economy, environment, and public administration. The GENESIS-Online database provides free access to over 30,000 statistical tables. Destatis also coordinates the German statistical system comprising the federal and state statistical offices.", + "zh": "Destatis(联邦统计局)是德国联邦统计局,是德国官方统计的核心机构。它收集、处理和发布德国社会、经济、环境和公共行政数据。GENESIS-Online数据库免费提供超过30,000张统计表。Destatis还协调由联邦和州统计局组成的德国统计系统。" + }, + "website": "https://www.destatis.de/EN/", + "data_url": "https://www.destatis.de/EN/Themes/_node.html", + "api_url": "https://www-genesis.destatis.de/genesis/online", + "authority_level": "government", + "country": "DE", + "domains": ["demographics", "economics", "social", "employment", "trade", "manufacturing", "environment", "health", "education", "housing"], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "germany", "destatis", "federal-statistics", "bundesamt", + "population", "gdp", "employment", "genesis-online", + "national-statistics", "official-statistics", "open-data", "eurostat", + "德国统计局", "联邦统计", "德国数据" + ], + "data_content": { + "en": [ + "Population - population census, births, deaths, migration, life expectancy", + "National Accounts - GDP, value added, household income and expenditure", + "Labour Market - employment, unemployment, wages, working hours, strikes", + "Prices - CPI, PPI, import/export prices, construction prices", + "Foreign Trade - imports, exports by country and commodity (SITC, CN)", + "Industry and Crafts - industrial production, turnover, new orders", + "Construction and Housing - building permits, housing completions, rents", + "Agriculture - crop yields, livestock numbers, farm structures", + "Environment and Energy - greenhouse gas emissions, energy consumption, waste", + "Health - hospitals, causes of death, healthcare expenditure", + "Education and Science - students, graduates, R&D expenditure", + "Transport - road freight, passenger traffic, accidents", + "Public Finance - government revenue, expenditure, debt", + "Business Registrations - business start-ups and closures", + "Tourism - accommodation statistics, overnight stays" + ], + "zh": [ + "人口 - 人口普查、出生、死亡、移民、预期寿命", + "国民账户 - GDP、增加值、家庭收入和支出", + "劳动力市场 - 就业、失业、工资、工时、罢工", + "价格 - CPI、PPI、进出口价格、建筑价格", + "对外贸易 - 按国家和商品分类的进出口(SITC、CN)", + "工业与手工业 - 工业生产、营业额、新订单", + "建筑与住房 - 建筑许可、竣工住房、租金", + "农业 - 农作物产量、牲畜数量、农场结构", + "环境与能源 - 温室气体排放、能源消耗、废物", + "卫生 - 医院、死因统计、医疗支出", + "教育与科学 - 学生、毕业生、研发支出", + "交通运输 - 公路货运、旅客运输、交通事故", + "公共财政 - 政府收入、支出、债务", + "企业注册 - 企业创立和关闭", + "旅游业 - 住宿统计、过夜人数" + ] + } +} diff --git a/firstdata/sources/countries/europe/greece/greece-elstat.json b/firstdata/sources/countries/europe/greece/greece-elstat.json new file mode 100644 index 00000000..b8e468e5 --- /dev/null +++ b/firstdata/sources/countries/europe/greece/greece-elstat.json @@ -0,0 +1,80 @@ +{ + "id": "greece-elstat", + "name": { + "en": "Hellenic Statistical Authority (ELSTAT)", + "zh": "希腊统计局", + "native": "Ελληνική Στατιστική Αρχή (ΕΛΣΤΑΤ)" + }, + "description": { + "en": "The Hellenic Statistical Authority (ELSTAT) is the official national statistical authority of Greece, responsible for the collection, processing, and dissemination of official statistics covering the Greek economy, population, society, and environment. ELSTAT coordinates the national statistical system and produces data compliant with Eurostat and EU standards, providing open access to statistical tables, publications, and databases.", + "zh": "希腊统计局(ELSTAT)是希腊官方国家统计机构,负责收集、处理和发布涵盖希腊经济、人口、社会与环境的官方统计数据。ELSTAT协调国家统计体系,生产符合欧盟统计局(Eurostat)标准的数据,并通过统计数据库和出版物提供开放访问。" + }, + "website": "https://www.statistics.gr", + "data_url": "https://www.statistics.gr/en/statistics", + "api_url": null, + "authority_level": "government", + "country": "GR", + "domains": [ + "economics", + "demographics", + "trade", + "social", + "employment", + "prices", + "environment" + ], + "geographic_scope": "national", + "update_frequency": "quarterly", + "tags": [ + "greece", + "elstat", + "hellenic-statistical-authority", + "ελστατ", + "official-statistics", + "population", + "gdp", + "national-accounts", + "cpi", + "inflation", + "labor-market", + "trade", + "business", + "census", + "eurostat", + "eu-statistics", + "希腊", + "希腊统计局", + "人口统计", + "经济统计", + "国民账户", + "贸易", + "就业", + "欧盟" + ], + "data_content": { + "en": [ + "Population census and vital statistics", + "GDP and national accounts", + "Consumer price index and inflation", + "Foreign trade and balance of payments", + "Labor force and employment survey", + "Business and enterprise statistics", + "Agricultural and fisheries statistics", + "Income and living conditions (EU-SILC)", + "Tourism and accommodation statistics", + "Environmental and energy statistics" + ], + "zh": [ + "人口普查与生命统计", + "GDP与国民账户", + "消费者价格指数与通货膨胀", + "对外贸易与国际收支", + "劳动力与就业调查", + "企业与工商统计", + "农业与渔业统计", + "收入与生活条件(EU-SILC)", + "旅游与住宿统计", + "环境与能源统计" + ] + } +} diff --git a/firstdata/sources/countries/europe/hungary/hungary-ksh.json b/firstdata/sources/countries/europe/hungary/hungary-ksh.json new file mode 100644 index 00000000..47cf57a4 --- /dev/null +++ b/firstdata/sources/countries/europe/hungary/hungary-ksh.json @@ -0,0 +1,55 @@ +{ + "id": "hungary-ksh", + "name": { + "en": "Hungarian Central Statistical Office", + "zh": "匈牙利中央统计局" + }, + "country": "HU", + "description": { + "en": "Hungary's official national statistical office responsible for collecting, processing, and disseminating statistical data. KSH publishes comprehensive statistics covering GDP, population census, CPI, employment, industrial production, foreign trade, education, and health.", + "zh": "匈牙利官方国家统计机构,负责收集、处理和发布统计数据。KSH发布涵盖GDP、人口普查、CPI、就业、工业生产、对外贸易、教育和卫生的综合统计数据。" + }, + "website": "https://www.ksh.hu", + "data_url": "https://www.ksh.hu/engstadat", + "api_url": "https://statinfo.ksh.hu/Statinfo/haViewer.jsp", + "authority_level": "government", + "geographic_scope": "national", + "update_frequency": "monthly", + "domains": [ + "economics", + "demographics", + "employment", + "trade", + "education", + "health", + "industry" + ], + "tags": [ + "eu-member", + "eurostat-partner", + "national-statistics", + "v4-country" + ], + "data_content": { + "en": [ + "GDP and national accounts", + "Population census and vital statistics", + "Consumer price index", + "Labour force survey", + "Industrial production index", + "Foreign trade statistics", + "Education statistics", + "Health statistics" + ], + "zh": [ + "GDP与国民账户", + "人口普查与生命统计", + "消费者价格指数", + "劳动力调查", + "工业生产指数", + "对外贸易统计", + "教育统计", + "卫生统计" + ] + } +} diff --git a/firstdata/sources/countries/europe/ireland/ireland-cso.json b/firstdata/sources/countries/europe/ireland/ireland-cso.json new file mode 100644 index 00000000..3f6799b4 --- /dev/null +++ b/firstdata/sources/countries/europe/ireland/ireland-cso.json @@ -0,0 +1,67 @@ +{ + "id": "ireland-cso", + "name": { + "en": "Central Statistics Office (CSO)", + "zh": "爱尔兰中央统计局" + }, + "description": { + "en": "Ireland's national statistical office established under the Statistics Act 1993, providing comprehensive socioeconomic data", + "zh": "依据1993年《统计法》成立的爱尔兰国家统计机构,提供全面的社会经济数据" + }, + "website": "https://www.cso.ie", + "data_url": "https://data.cso.ie", + "api_url": "https://data.cso.ie", + "authority_level": "government", + "country": "IE", + "geographic_scope": "national", + "update_frequency": "monthly", + "domains": [ + "demographics", + "economics", + "employment", + "trade", + "housing", + "health", + "crime-and-justice" + ], + "tags": [ + "statistics", + "ireland", + "europe", + "government-data", + "json-stat", + "爱尔兰统计" + ], + "data_content": { + "en": [ + "National accounts - GDP, GNI, Modified GNI", + "Population census and demographic projections", + "Labour force survey - employment, unemployment", + "Consumer Price Index and inflation", + "Foreign trade - merchandise and services", + "Housing and construction statistics", + "Health statistics and vital events", + "Crime and justice statistics", + "Tourism and transport data", + "Agriculture, forestry, and fishing", + "Environmental indicators", + "Business demographics and enterprise statistics", + "Education and training statistics" + ], + "zh": [ + "国民账户 - GDP、GNI、修正GNI", + "人口普查和人口预测", + "劳动力调查 - 就业、失业", + "消费者价格指数和通胀", + "对外贸易 - 货物和服务", + "住房和建筑统计", + "卫生统计和生命事件", + "犯罪和司法统计", + "旅游和交通数据", + "农林渔业", + "环境指标", + "企业人口统计和企业统计", + "教育和培训统计" + ] + } +} diff --git a/firstdata/sources/countries/europe/italy/italy-istat.json b/firstdata/sources/countries/europe/italy/italy-istat.json new file mode 100644 index 00000000..20e5c256 --- /dev/null +++ b/firstdata/sources/countries/europe/italy/italy-istat.json @@ -0,0 +1,46 @@ +{ + "id": "italy-istat", + "name": { + "en": "Italian National Institute of Statistics", + "zh": "意大利国家统计局" + }, + "description": { + "en": "Italy's official statistical agency producing national accounts, population census, labor market, and regional statistics.", + "zh": "意大利官方统计机构,发布国民账户、人口普查、劳动力市场和区域统计数据。" + }, + "website": "https://www.istat.it", + "data_url": "https://esploradati.istat.it/databrowser/", + "api_url": "https://esploradati.istat.it/SDMXWS/rest", + "data_content": { + "en": [ + "National accounts and GDP", + "Population census", + "Labor market statistics", + "Consumer price index", + "Regional economic indicators" + ], + "zh": [ + "国民账户与GDP", + "人口普查", + "劳动力市场统计", + "消费者价格指数", + "区域经济指标" + ] + }, + "authority_level": "government", + "update_frequency": "monthly", + "domains": [ + "economics", + "demographics", + "employment" + ], + "tags": [ + "italy", + "statistics", + "gdp", + "census", + "labor" + ], + "country": "IT", + "geographic_scope": "national" +} diff --git a/firstdata/sources/countries/europe/netherlands/netherlands-cbs.json b/firstdata/sources/countries/europe/netherlands/netherlands-cbs.json new file mode 100644 index 00000000..09dbc310 --- /dev/null +++ b/firstdata/sources/countries/europe/netherlands/netherlands-cbs.json @@ -0,0 +1,54 @@ +{ + "id": "netherlands-cbs", + "name": { + "en": "Statistics Netherlands (CBS)", + "zh": "荷兰统计局" + }, + "description": { + "en": "The Dutch national statistical office providing comprehensive statistics on population, economy, trade, and society.", + "zh": "荷兰国家统计机构,提供人口、经济、贸易和社会的综合统计数据。" + }, + "website": "https://www.cbs.nl", + "data_url": "https://opendata.cbs.nl/statline/", + "api_url": "https://odata4.cbs.nl/CBS/Datasets", + "data_content": { + "en": [ + "GDP and national accounts", + "Population demographics", + "International trade", + "Labor market statistics", + "Consumer price index", + "Housing and construction", + "Environment and energy" + ], + "zh": [ + "GDP与国民账户", + "人口统计", + "国际贸易", + "劳动力市场", + "消费者价格指数", + "住房与建设", + "环境与能源" + ] + }, + "authority_level": "government", + "update_frequency": "monthly", + "domains": [ + "economics", + "demographics", + "trade", + "employment", + "environment", + "housing", + "energy" + ], + "tags": [ + "netherlands", + "statistics", + "cbs", + "odata", + "gdp" + ], + "country": "NL", + "geographic_scope": "national" +} diff --git a/firstdata/sources/countries/europe/norway/norway-ssb.json b/firstdata/sources/countries/europe/norway/norway-ssb.json new file mode 100644 index 00000000..fec3afdb --- /dev/null +++ b/firstdata/sources/countries/europe/norway/norway-ssb.json @@ -0,0 +1,64 @@ +{ + "id": "norway-ssb", + "name": { + "en": "Statistics Norway (SSB)", + "zh": "挪威统计局", + "native": "Statistisk sentralbyrå (SSB)" + }, + "description": { + "en": "Statistics Norway (SSB) is Norway's official statistics agency, responsible for collecting, processing, and publishing statistics on Norwegian society, economy, population, and environment. SSB provides comprehensive data through its StatBank platform and open API.", + "zh": "挪威统计局(SSB)是挪威官方统计机构,负责收集、处理和发布挪威社会、经济、人口和环境统计数据。SSB通过其StatBank平台和开放API提供全面的数据访问服务。" + }, + "website": "https://www.ssb.no/en", + "data_url": "https://www.ssb.no/en/statbank", + "api_url": "https://data.ssb.no/api/v0/en/table/", + "authority_level": "government", + "country": "NO", + "domains": [ + "economics", + "demographics", + "environment", + "health", + "education", + "labor" + ], + "geographic_scope": "national", + "update_frequency": "quarterly", + "tags": [ + "norway", + "ssb", + "statistics-norway", + "nordic", + "挪威", + "统计局", + "人口", + "经济", + "北欧", + "statbank", + "open-data" + ], + "data_content": { + "en": [ + "Population and migration statistics", + "National accounts and GDP", + "Labor market and employment data", + "Prices and consumer price index", + "Energy and environment statistics", + "Education and research data", + "Health and welfare statistics", + "Business and industry data", + "Foreign trade statistics" + ], + "zh": [ + "人口与移民统计", + "国民账户与GDP", + "劳动力市场与就业数据", + "物价与消费者价格指数", + "能源与环境统计", + "教育与科研数据", + "卫生与福利统计", + "工商业数据", + "对外贸易统计" + ] + } +} diff --git a/firstdata/sources/countries/europe/poland/poland-gus.json b/firstdata/sources/countries/europe/poland/poland-gus.json new file mode 100644 index 00000000..7008c6b9 --- /dev/null +++ b/firstdata/sources/countries/europe/poland/poland-gus.json @@ -0,0 +1,66 @@ +{ + "id": "poland-gus", + "name": { + "en": "Statistics Poland (GUS)", + "zh": "波兰中央统计局", + "native": "Główny Urząd Statystyczny" + }, + "description": { + "en": "Statistics Poland (GUS — Główny Urząd Statystyczny) is the central government authority for official statistics in Poland. It provides comprehensive data on the Polish economy, society, population, and environment through its Local Data Bank (BDL) and open API.", + "zh": "波兰中央统计局(GUS)是波兰官方统计的中央政府机构,通过其地方数据库(BDL)和开放API提供波兰经济、社会、人口和环境的综合数据。" + }, + "website": "https://stat.gov.pl/en/", + "data_url": "https://bdl.stat.gov.pl/BDL/start", + "api_url": "https://api.stat.gov.pl/Home/BdlApi", + "authority_level": "government", + "country": "PL", + "domains": [ + "economics", + "population", + "society", + "environment", + "labor" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "poland", + "gus", + "statistics-poland", + "bdl", + "local-data-bank", + "波兰", + "波兰统计局", + "中东欧统计", + "gdp", + "人口", + "就业", + "central-europe", + "official-statistics", + "open-data", + "economy", + "census" + ], + "data_content": { + "en": [ + "National accounts and GDP", + "Population and demographic statistics", + "Labor market and employment", + "Prices and inflation", + "Industrial and agricultural production", + "Foreign trade and balance of payments", + "Education and health statistics", + "Regional statistics by voivodeship" + ], + "zh": [ + "国民账户和GDP", + "人口与人口统计", + "劳动力市场和就业", + "价格与通货膨胀", + "工业和农业生产", + "对外贸易和国际收支", + "教育和卫生统计", + "按省份划分的区域统计" + ] + } +} diff --git a/firstdata/sources/countries/europe/portugal/portugal-ine.json b/firstdata/sources/countries/europe/portugal/portugal-ine.json new file mode 100644 index 00000000..c8dc1098 --- /dev/null +++ b/firstdata/sources/countries/europe/portugal/portugal-ine.json @@ -0,0 +1,50 @@ +{ + "id": "portugal-ine", + "name": { + "en": "Statistics Portugal (INE)", + "zh": "葡萄牙国家统计局" + }, + "description": { + "en": "National statistical institute of Portugal providing comprehensive socioeconomic data", + "zh": "葡萄牙国家统计机构,提供全面的社会经济数据" + }, + "data_url": "https://www.ine.pt/xportal/xmain?xpid=INE&xpgid=ine_base_dados", + "api_url": "https://www.ine.pt/xportal/xmain?xpid=INE&xpgid=ine_api", + "authority_level": "government", + "country": "PT", + "geographic_scope": "national", + "update_frequency": "monthly", + "domains": [ + "economics", + "demographics", + "employment", + "social", + "trade", + "housing" + ], + "data_content": { + "en": [ + "National accounts - GDP, GVA, productivity indicators", + "Population census and demographic statistics", + "Labour force survey - employment, unemployment rates", + "Social indicators - education, health, culture", + "International trade statistics by product and partner", + "Housing and construction statistics" + ], + "zh": [ + "国民账户 - GDP、GVA、生产力指标", + "人口普查和人口统计", + "劳动力调查 - 就业率、失业率", + "社会指标 - 教育、卫生、文化", + "按产品和伙伴分类的国际贸易统计", + "住房和建筑统计" + ] + }, + "website": "https://www.ine.pt", + "tags": [ + "statistics", + "portugal", + "europe", + "government-data" + ] +} diff --git a/firstdata/sources/countries/europe/romania/romania-bnr.json b/firstdata/sources/countries/europe/romania/romania-bnr.json new file mode 100644 index 00000000..88c1fd92 --- /dev/null +++ b/firstdata/sources/countries/europe/romania/romania-bnr.json @@ -0,0 +1,64 @@ +{ + "id": "romania-bnr", + "name": { + "en": "National Bank of Romania (BNR)", + "zh": "罗马尼亚国家银行" + }, + "description": { + "en": "The National Bank of Romania (BNR) is the central bank of Romania, responsible for monetary policy, financial stability, and banking supervision. It publishes comprehensive monetary, financial, and balance of payments statistics, including exchange rates, interest rates, money supply data, and financial system indicators through its interactive statistical database.", + "zh": "罗马尼亚国家银行(BNR)是罗马尼亚的中央银行,负责货币政策、金融稳定和银行监管。通过交互式统计数据库发布全面的货币、金融和国际收支统计数据,包括汇率、利率、货币供应数据和金融系统指标。" + }, + "website": "https://www.bnr.ro/Home.aspx", + "data_url": "https://www.bnr.ro/Statistics-702.aspx", + "api_url": "https://www.bnr.ro/Web-services-702.aspx", + "authority_level": "government", + "country": "RO", + "domains": [ + "finance", + "monetary-policy", + "banking", + "economics" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "romania", + "罗马尼亚", + "bnr", + "central-bank", + "中央银行", + "monetary-policy", + "货币政策", + "exchange-rate", + "汇率", + "interest-rate", + "利率", + "banking", + "financial-stability", + "balance-of-payments", + "eastern-europe", + "eu-member" + ], + "data_content": { + "en": [ + "Exchange rates (daily, historical)", + "Monetary policy interest rates and decisions", + "Money supply and monetary aggregates", + "Banking system financial soundness indicators", + "Balance of payments and external debt statistics", + "Financial accounts and flow of funds", + "Credit and deposit statistics", + "Inflation reports and forecasts" + ], + "zh": [ + "汇率数据(每日、历史)", + "货币政策利率和决策", + "货币供应量和货币总量", + "银行系统金融稳健性指标", + "国际收支和外债统计", + "金融账户和资金流量", + "信贷和存款统计", + "通胀报告和预测" + ] + } +} diff --git a/firstdata/sources/countries/europe/romania/romania-bvb.json b/firstdata/sources/countries/europe/romania/romania-bvb.json new file mode 100644 index 00000000..0946ae99 --- /dev/null +++ b/firstdata/sources/countries/europe/romania/romania-bvb.json @@ -0,0 +1,63 @@ +{ + "id": "romania-bvb", + "name": { + "en": "Bucharest Stock Exchange", + "zh": "布加勒斯特证券交易所" + }, + "description": { + "en": "Bucharest Stock Exchange (BVB) is Romania's principal securities exchange, regulated by the Romanian Financial Supervisory Authority (ASF). BVB operates equity, bond, and derivatives markets and disseminates official market data including share prices, indices (BET family), trading volumes, listed company filings, IPO and secondary-offering prospectuses, and corporate actions for Romanian listed companies.", + "zh": "布加勒斯特证券交易所(BVB)是罗马尼亚主要的证券交易所,受罗马尼亚金融监管局(ASF)监管。BVB运营股票、债券和衍生品市场,发布官方市场数据,包括股票价格、指数(BET系列)、交易量、上市公司披露、IPO及再融资招股书,以及罗马尼亚上市公司相关公司行为数据。" + }, + "website": "https://www.bvb.ro", + "data_url": "https://www.bvb.ro/FinancialInstruments/Markets/Shares", + "api_url": null, + "authority_level": "market", + "country": "RO", + "domains": [ + "finance", + "securities", + "stock-market" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "romania", + "bucharest", + "stock-exchange", + "BVB", + "securities", + "equities", + "bonds", + "derivatives", + "BET-index", + "IPO", + "market-data", + "罗马尼亚", + "布加勒斯特", + "证券交易所", + "股票市场", + "招股书" + ], + "data_content": { + "en": [ + "Real-time and historical share prices", + "Market indices (BET, BET-TR, BET-XT, BET-BK)", + "Trading volumes and turnover statistics", + "Listed company disclosures and financial filings", + "IPO, SPO and bond issue prospectuses", + "Corporate actions (dividends, splits, mergers)", + "Derivatives and fixed-income market data", + "Market participant directory" + ], + "zh": [ + "股票实时与历史价格", + "市场指数(BET、BET-TR、BET-XT、BET-BK)", + "交易量与成交金额统计", + "上市公司披露与财务报告", + "IPO、再融资与债券发行招股书", + "公司行为(股息、拆股、并购)", + "衍生品与固定收益市场数据", + "市场参与者名录" + ] + } +} diff --git a/firstdata/sources/countries/europe/romania/romania-ins.json b/firstdata/sources/countries/europe/romania/romania-ins.json new file mode 100644 index 00000000..0745ed12 --- /dev/null +++ b/firstdata/sources/countries/europe/romania/romania-ins.json @@ -0,0 +1,82 @@ +{ + "id": "romania-ins", + "name": { + "en": "National Institute of Statistics (Romania)", + "zh": "罗马尼亚国家统计局" + }, + "description": { + "en": "The National Institute of Statistics (INS) is the official national statistical authority of Romania, responsible for the collection, processing, and dissemination of official statistics on the Romanian economy, population, and society. INS produces data compliant with Eurostat and EU standards, covering GDP, population census, consumer prices, employment, trade, and agricultural statistics.", + "zh": "罗马尼亚国家统计局(INS)是罗马尼亚官方国家统计机构,负责收集、处理和发布有关罗马尼亚经济、人口和社会的官方统计数据。INS生产符合欧盟统计局(Eurostat)标准的数据,涵盖GDP、人口普查、消费价格、就业、贸易和农业统计。" + }, + "website": "https://insse.ro", + "data_url": "https://insse.ro/cms/en/statistici-2", + "api_url": "https://statistici.insse.ro:8077/tempo-online/", + "authority_level": "government", + "country": "RO", + "domains": [ + "economics", + "demographics", + "employment", + "trade", + "social", + "prices", + "agriculture", + "industry" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "romania", + "ins", + "insse", + "institutul-national-de-statistica", + "romanian-statistics", + "population-census", + "gdp", + "national-accounts", + "cpi", + "inflation", + "labor-market", + "foreign-trade", + "agriculture", + "industry", + "eurostat", + "eu-statistics", + "罗马尼亚", + "罗马尼亚统计局", + "国家统计局", + "人口普查", + "经济统计", + "消费价格", + "就业", + "贸易", + "农业", + "欧盟" + ], + "data_content": { + "en": [ + "GDP and national accounts", + "Population census and vital statistics", + "Consumer price index and inflation", + "Labour force survey and employment", + "Foreign trade statistics", + "Industrial production index", + "Agricultural statistics", + "Business and enterprise statistics", + "Income and living conditions (EU-SILC)", + "Tourism statistics" + ], + "zh": [ + "GDP与国民账户", + "人口普查与生命统计", + "消费者价格指数与通货膨胀", + "劳动力调查与就业统计", + "对外贸易统计", + "工业生产指数", + "农业统计", + "企业与工商统计", + "收入与生活条件(EU-SILC)", + "旅游统计" + ] + } +} diff --git a/firstdata/sources/countries/europe/russia/russia-rosstat.json b/firstdata/sources/countries/europe/russia/russia-rosstat.json new file mode 100644 index 00000000..9999869c --- /dev/null +++ b/firstdata/sources/countries/europe/russia/russia-rosstat.json @@ -0,0 +1,92 @@ +{ + "id": "russia-rosstat", + "name": { + "en": "Federal State Statistics Service (Rosstat)", + "zh": "俄罗斯联邦统计局", + "native": "Федеральная служба государственной статистики (Росстат)" + }, + "description": { + "en": "The Federal State Statistics Service (Rosstat) is Russia's central statistical authority responsible for collecting, processing, and publishing official statistics on the socio-economic, demographic, environmental, and other aspects of life in the Russian Federation. Rosstat maintains a comprehensive statistical database covering population, economy, industry, agriculture, trade, social welfare, housing, and environmental indicators. It publishes the official Statistical Yearbook of Russia and provides open data through its official portal.", + "zh": "俄罗斯联邦统计局(Rosstat)是俄罗斯的中央统计机构,负责收集、处理和发布俄罗斯联邦社会经济、人口、环境等各方面的官方统计数据。Rosstat维护着覆盖人口、经济、工业、农业、贸易、社会福利、住房和环境指标的综合统计数据库,发布官方《俄罗斯统计年鉴》,并通过官方门户网站提供开放数据。" + }, + "website": "https://rosstat.gov.ru", + "data_url": "https://rosstat.gov.ru/statistics", + "api_url": "https://rosstat.gov.ru/opendata", + "authority_level": "government", + "country": "RU", + "domains": [ + "demographics", + "economics", + "social", + "employment", + "prices", + "industry", + "agriculture", + "trade", + "housing", + "environment" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "russia", + "俄罗斯", + "rosstat", + "federal-statistics", + "联邦统计", + "population", + "人口", + "gdp", + "国内生产总值", + "inflation", + "通货膨胀", + "employment", + "就业", + "industry", + "工业", + "census", + "人口普查", + "statistical-yearbook", + "统计年鉴", + "eastern-europe", + "东欧", + "open-data", + "开放数据", + "government-statistics", + "政府统计" + ], + "data_content": { + "en": [ + "Population and Demography - census data, population dynamics, births, deaths, migration", + "National Accounts - GDP, GNP, value added by sector, input-output tables", + "Industry and Manufacturing - industrial production indices, output by sector", + "Agriculture - crop production, livestock, food industry statistics", + "Labor Market - employment, unemployment, wages, working hours", + "Prices - Consumer Price Index (CPI), Producer Price Index (PPI), housing prices", + "Foreign Trade - exports, imports, trade balance by commodity and country", + "Finance and Banking - federal budget, government debt, banking sector indicators", + "Social Statistics - education, healthcare, social protection, poverty", + "Housing and Construction - housing stock, new construction, utility services", + "Environment - emissions, waste, water resources, protected areas", + "Regional Statistics - socio-economic indicators broken down by federal subjects", + "Russia in Figures - annual compact statistical handbook", + "Statistical Yearbook of Russia - comprehensive annual statistical compendium" + ], + "zh": [ + "人口与人口统计 - 人口普查数据、人口动态、出生、死亡、移民", + "国民账户 - GDP、GNP、各部门增加值、投入产出表", + "工业和制造业 - 工业生产指数、各部门产出", + "农业 - 粮食产量、畜牧业、食品工业统计", + "劳动力市场 - 就业、失业、工资、工时", + "价格 - 消费者价格指数(CPI)、生产者价格指数(PPI)、房价", + "对外贸易 - 按商品和国家分类的出口、进口、贸易差额", + "金融与银行 - 联邦预算、政府债务、银行业指标", + "社会统计 - 教育、医疗、社会保障、贫困", + "住房与建筑 - 住房存量、新建筑、公用服务", + "环境 - 排放、废物、水资源、保护区", + "地区统计 - 按联邦主体划分的社会经济指标", + "俄罗斯数字 - 年度简明统计手册", + "俄罗斯统计年鉴 - 综合年度统计汇编" + ] + } +} diff --git a/firstdata/sources/countries/europe/slovakia/slovakia-susr.json b/firstdata/sources/countries/europe/slovakia/slovakia-susr.json new file mode 100644 index 00000000..960432eb --- /dev/null +++ b/firstdata/sources/countries/europe/slovakia/slovakia-susr.json @@ -0,0 +1,72 @@ +{ + "id": "slovakia-susr", + "name": { + "en": "Statistical Office of the Slovak Republic (SUSR)", + "zh": "斯洛伐克共和国统计局" + }, + "description": { + "en": "Official statistical authority of the Slovak Republic (Štatistický úrad Slovenskej republiky, ŠÚSR), responsible for coordinating and producing official national statistics in areas such as economics, social conditions, demographics, and the environment. Publishes EU-harmonized data in compliance with EUROSTAT requirements.", + "zh": "斯洛伐克共和国官方统计机构(Štatistický úrad Slovenskej republiky,ŠÚSR),负责协调和生产经济、社会状况、人口和环境领域的官方国家统计数据,遵循欧盟EUROSTAT要求发布协调统计。" + }, + "website": "https://statistics.sk", + "data_url": "https://datacube.statistics.sk", + "api_url": null, + "authority_level": "government", + "country": "SK", + "geographic_scope": "national", + "update_frequency": "monthly", + "domains": [ + "demographics", + "economics", + "employment", + "trade", + "agriculture", + "environment", + "social" + ], + "tags": [ + "slovakia", + "斯洛伐克统计", + "susr", + "šúsr", + "eu-member", + "europe", + "official-statistics", + "datacube", + "population", + "gdp", + "eurostat-harmonized", + "central-europe", + "国家统计" + ], + "data_content": { + "en": [ + "National accounts - GDP, GVA, productivity and output", + "Population census and demographic projections", + "Labour force survey - employment, unemployment, wages and earnings", + "Consumer Price Index and harmonized inflation (HICP)", + "Foreign trade statistics by commodity and partner country", + "Agricultural production, livestock and land use", + "Industrial production index and business statistics", + "Regional statistics at NUTS 2 and NUTS 3 level", + "Tourism, accommodation and hospitality statistics", + "Education indicators and research & development data", + "Health, social protection and poverty statistics", + "Environment and sustainable development indicators" + ], + "zh": [ + "国民账户 - GDP、GVA、生产力和产出", + "人口普查和人口预测", + "劳动力调查 - 就业、失业率、工资和薪酬", + "消费者价格指数和欧盟协调通胀率(HICP)", + "按商品和伙伴国分类的对外贸易统计", + "农业生产、牲畜和土地利用", + "工业生产指数和商业统计", + "NUTS 2和NUTS 3级别的区域统计", + "旅游、住宿和酒店业统计", + "教育指标和研发数据", + "卫生、社会保障和贫困统计", + "环境和可持续发展指标" + ] + } +} diff --git a/firstdata/sources/countries/europe/slovenia/slovenia-surs.json b/firstdata/sources/countries/europe/slovenia/slovenia-surs.json new file mode 100644 index 00000000..c1465586 --- /dev/null +++ b/firstdata/sources/countries/europe/slovenia/slovenia-surs.json @@ -0,0 +1,83 @@ +{ + "id": "slovenia-surs", + "name": { + "en": "Statistical Office of the Republic of Slovenia (SURS)", + "zh": "斯洛文尼亚共和国统计局" + }, + "description": { + "en": "The Statistical Office of the Republic of Slovenia (SURS) is the official national statistical authority of Slovenia, responsible for the collection, processing, and publication of official statistics covering the Slovenian economy, society, population, and environment. SURS produces data in compliance with Eurostat and European Statistical System standards, providing open access through its SiStat database.", + "zh": "斯洛文尼亚共和国统计局(SURS)是斯洛文尼亚官方国家统计机构,负责收集、处理和发布涵盖斯洛文尼亚经济、社会、人口和环境的官方统计数据。SURS依照欧盟统计局(Eurostat)和欧洲统计系统标准生产数据,并通过SiStat数据库提供开放访问。" + }, + "website": "https://www.stat.si", + "data_url": "https://www.stat.si/StatWeb/en", + "api_url": "https://pxweb.stat.si/SiStatData/api/v1/en/", + "authority_level": "government", + "country": "SI", + "domains": [ + "economics", + "demographics", + "employment", + "trade", + "social", + "environment", + "prices", + "industry" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "slovenia", + "surs", + "statisticni-urad", + "sistat", + "slovenian-statistics", + "population-census", + "gdp", + "national-accounts", + "cpi", + "inflation", + "labour-market", + "foreign-trade", + "environment", + "industry", + "eurostat", + "eu-statistics", + "pxweb", + "斯洛文尼亚", + "斯洛文尼亚统计局", + "国家统计局", + "人口普查", + "经济统计", + "消费价格", + "就业", + "贸易", + "环境", + "欧盟" + ], + "data_content": { + "en": [ + "GDP and national accounts", + "Population census and vital statistics", + "Consumer price index and inflation", + "Labour force survey and employment", + "Foreign trade statistics", + "Industrial production index", + "Environmental statistics", + "Business and enterprise statistics", + "Income and living conditions (EU-SILC)", + "Tourism and accommodation statistics" + ], + "zh": [ + "GDP与国民账户", + "人口普查与生命统计", + "消费者价格指数与通货膨胀", + "劳动力调查与就业统计", + "对外贸易统计", + "工业生产指数", + "环境统计", + "企业与工商统计", + "收入与生活条件(EU-SILC)", + "旅游与住宿统计" + ] + } +} diff --git a/firstdata/sources/countries/europe/spain/spain-ine.json b/firstdata/sources/countries/europe/spain/spain-ine.json new file mode 100644 index 00000000..b6b24976 --- /dev/null +++ b/firstdata/sources/countries/europe/spain/spain-ine.json @@ -0,0 +1,46 @@ +{ + "id": "spain-ine", + "name": { + "en": "National Statistics Institute of Spain", + "zh": "西班牙国家统计局" + }, + "description": { + "en": "Spain's national statistical office producing official statistics on demographics, economy, labor market, and social conditions.", + "zh": "西班牙国家统计机构,发布人口、经济、劳动力市场和社会状况的官方统计数据。" + }, + "website": "https://www.ine.es", + "data_url": "https://www.ine.es/dyngs/INEbase/listaoperaciones.htm", + "api_url": "https://servicios.ine.es/wstempus/js", + "data_content": { + "en": [ + "CPI and inflation", + "Labor force survey", + "Population census", + "GDP and national accounts", + "Industrial production index" + ], + "zh": [ + "消费者价格指数与通胀", + "劳动力调查", + "人口普查", + "GDP与国民账户", + "工业生产指数" + ] + }, + "authority_level": "government", + "update_frequency": "monthly", + "domains": [ + "economics", + "demographics", + "employment" + ], + "tags": [ + "spain", + "statistics", + "cpi", + "labor", + "gdp" + ], + "country": "ES", + "geographic_scope": "national" +} diff --git a/firstdata/sources/countries/europe/sweden/sweden-scb.json b/firstdata/sources/countries/europe/sweden/sweden-scb.json new file mode 100644 index 00000000..6513ea2c --- /dev/null +++ b/firstdata/sources/countries/europe/sweden/sweden-scb.json @@ -0,0 +1,54 @@ +{ + "id": "sweden-scb", + "name": { + "en": "Statistics Sweden (SCB)", + "zh": "瑞典统计局" + }, + "description": { + "en": "Sweden's central government authority for official statistics covering population, economy, labor market, and living conditions.", + "zh": "瑞典中央统计局,提供人口、经济、劳动力市场和生活条件的官方统计数据。" + }, + "website": "https://www.scb.se", + "data_url": "https://www.statistikdatabasen.scb.se", + "api_url": "https://api.scb.se/OV0104/v1/doris/en", + "data_content": { + "en": [ + "Population statistics", + "GDP and economic indicators", + "Labor force surveys", + "Foreign trade", + "Consumer price index", + "Education statistics", + "Environmental accounts" + ], + "zh": [ + "人口统计", + "GDP与经济指标", + "劳动力调查", + "对外贸易", + "消费者价格指数", + "教育统计", + "环境账户" + ] + }, + "authority_level": "government", + "update_frequency": "monthly", + "domains": [ + "economics", + "demographics", + "trade", + "employment", + "education", + "environment", + "energy" + ], + "tags": [ + "sweden", + "statistics", + "scb", + "gdp", + "population" + ], + "country": "SE", + "geographic_scope": "national" +} diff --git a/firstdata/sources/countries/europe/switzerland/switzerland-fso.json b/firstdata/sources/countries/europe/switzerland/switzerland-fso.json new file mode 100644 index 00000000..81f6e43b --- /dev/null +++ b/firstdata/sources/countries/europe/switzerland/switzerland-fso.json @@ -0,0 +1,65 @@ +{ + "id": "switzerland-fso", + "name": { + "en": "Swiss Federal Statistical Office (FSO)", + "zh": "瑞士联邦统计局", + "native": "Bundesamt für Statistik (BFS)" + }, + "description": { + "en": "The Swiss Federal Statistical Office (FSO) is Switzerland's national statistics authority. It produces and publishes official statistics on Swiss economy, society, population, environment, and politics. FSO provides data through its STAT-TAB interactive database and PX-Web API.", + "zh": "瑞士联邦统计局(FSO/BFS)是瑞士国家统计机构,负责生产和发布关于瑞士经济、社会、人口、环境和政治的官方统计数据,通过STAT-TAB交互式数据库和PX-Web API提供数据访问。" + }, + "website": "https://www.bfs.admin.ch/bfs/en/home.html", + "data_url": "https://www.bfs.admin.ch/bfs/en/home/statistics.html", + "api_url": "https://www.pxweb.bfs.admin.ch/api/v1/en", + "authority_level": "government", + "country": "CH", + "domains": [ + "economics", + "demographics", + "environment", + "health", + "education", + "labor" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "switzerland", + "fso", + "bfs", + "swiss-statistics", + "瑞士", + "联邦统计局", + "人口", + "经济", + "欧洲", + "stat-tab", + "px-web", + "open-data" + ], + "data_content": { + "en": [ + "Population and household statistics", + "National accounts and GDP", + "Labor market and wages data", + "Prices and purchasing power", + "Health and social security statistics", + "Education and science data", + "Environment and energy statistics", + "Agriculture and forestry data", + "Foreign trade and balance of payments" + ], + "zh": [ + "人口与家庭统计", + "国民账户与GDP", + "劳动力市场与工资数据", + "物价与购买力", + "卫生与社会保障统计", + "教育与科学数据", + "环境与能源统计", + "农业与林业数据", + "对外贸易与国际收支" + ] + } +} diff --git a/firstdata/sources/countries/europe/turkey/turkey-tuik.json b/firstdata/sources/countries/europe/turkey/turkey-tuik.json new file mode 100644 index 00000000..9f4ab884 --- /dev/null +++ b/firstdata/sources/countries/europe/turkey/turkey-tuik.json @@ -0,0 +1,45 @@ +{ + "id": "turkey-tuik", + "name": { + "en": "Turkish Statistical Institute (TurkStat)", + "zh": "土耳其统计局", + "native": "Türkiye İstatistik Kurumu (TÜİK)" + }, + "description": { + "en": "The Turkish Statistical Institute (TurkStat / TÜİK) is the official national statistical authority of Turkey, responsible for collecting, compiling, and disseminating statistical data on Turkey's economy, population, social structure, environment, and other sectors. It publishes key indicators including GDP, inflation, foreign trade, population census results, employment, and agricultural production.", + "zh": "土耳其统计局(TurkStat / TÜİK)是土耳其官方国家统计机构,负责收集、整理和发布土耳其经济、人口、社会结构、环境等领域的统计数据,发布包括GDP、通胀、对外贸易、人口普查、就业和农业生产在内的核心指标。" + }, + "website": "https://www.tuik.gov.tr", + "data_url": "https://data.tuik.gov.tr", + "api_url": "https://data.tuik.gov.tr/api", + "authority_level": "government", + "country": "TR", + "domains": ["economics", "demographics", "employment", "trade", "agriculture", "social"], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": ["turkey", "tuik", "turkstat", "türkiye", "statistics", "gdp", "inflation", "population", "census", "employment", "trade", "土耳其", "统计局", "经济统计", "人口普查"], + "data_content": { + "en": [ + "GDP and national accounts", + "Consumer price index (CPI) and inflation", + "Foreign trade statistics", + "Population census and demographic data", + "Employment and labor force statistics", + "Agricultural production data", + "Industrial production indices", + "Tourism statistics", + "Income and living conditions surveys" + ], + "zh": [ + "GDP和国民账户", + "消费者价格指数(CPI)和通货膨胀", + "对外贸易统计", + "人口普查和人口统计数据", + "就业和劳动力统计", + "农业生产数据", + "工业生产指数", + "旅游统计", + "收入和生活条件调查" + ] + } +} diff --git a/firstdata/sources/countries/europe/uk-ons-cpi-rpi.json b/firstdata/sources/countries/europe/uk-ons-cpi-rpi.json new file mode 100644 index 00000000..a54b4578 --- /dev/null +++ b/firstdata/sources/countries/europe/uk-ons-cpi-rpi.json @@ -0,0 +1,72 @@ +{ + "id": "uk-ons-cpi-rpi", + "name": { + "en": "UK Office for National Statistics - Consumer Price Index and Retail Prices Index", + "zh": "英国国家统计局 - 消费者价格指数和零售价格指数" + }, + "description": { + "en": "The Office for National Statistics (ONS) is the UK's largest independent producer of official statistics and the recognised national statistical institute of the United Kingdom. The ONS publishes comprehensive inflation measures including the Consumer Prices Index (CPI), Consumer Prices Index including owner occupiers' housing costs (CPIH), and Retail Prices Index (RPI). The CPI is the UK's primary measure of inflation used for monetary policy decisions by the Bank of England. The ONS provides monthly data on price changes for goods and services, detailed breakdowns by category, and extensive time series data dating back decades. Note: RPI and its subcomponents do not meet the required standard for designation as accredited official statistics but continue to be published due to widespread use in contracts.", + "zh": "英国国家统计局(ONS)是英国最大的独立官方统计生产机构,是英国公认的国家统计机构。ONS发布全面的通货膨胀指标,包括消费者价格指数(CPI)、包含自有住房成本的消费者价格指数(CPIH)和零售价格指数(RPI)。CPI是英国央行用于货币政策决策的主要通胀指标。ONS提供商品和服务价格变化的月度数据、按类别的详细分类以及可追溯数十年的广泛时间序列数据。注:RPI及其子指标不符合官方统计认证标准,但由于在合同中广泛使用而继续发布。" + }, + "website": "https://www.ons.gov.uk/", + "data_url": "https://www.ons.gov.uk/economy/inflationandpriceindices", + "api_url": null, + "country": "GB", + "domains": [ + "economics", + "price-statistics", + "inflation", + "consumer-prices", + "monetary-policy", + "economic-indicators" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "cpi", + "rpi", + "cpih", + "inflation", + "consumer-prices", + "retail-prices", + "price-index", + "uk-statistics", + "ons", + "消费者价格指数", + "零售价格指数", + "通货膨胀", + "物价指数", + "英国统计", + "price-statistics", + "economic-indicators", + "monetary-policy", + "价格统计", + "经济指标", + "货币政策" + ], + "data_content": { + "en": [ + "Consumer Prices Index (CPI) - Monthly inflation rate measuring changes in prices of goods and services purchased by households", + "Consumer Prices Index including owner occupiers' housing costs (CPIH) - Most comprehensive measure of inflation including housing costs", + "Retail Prices Index (RPI) - Legacy inflation measure still widely used in contracts and indexation", + "Detailed price indices by product category - Food, housing, transport, recreation, clothing, etc.", + "Historical time series data - CPI data from 1988, RPI from 1947, extensive historical records", + "Index numbers and percentage changes - Month-on-month, year-on-year, and average annual rates", + "Weights and basket composition - Annual updates to the basket of goods and services used in calculations", + "Regional price statistics - Price variations across different UK regions", + "International comparisons - UK inflation in context of European and global measures" + ], + "zh": [ + "消费者价格指数(CPI) - 衡量家庭购买的商品和服务价格变化的月度通胀率", + "包含自有住房成本的消费者价格指数(CPIH) - 包含住房成本的最全面通胀指标", + "零售价格指数(RPI) - 在合同和指数化中仍广泛使用的传统通胀指标", + "按产品类别的详细价格指数 - 食品、住房、交通、娱乐、服装等", + "历史时间序列数据 - 自1988年起的CPI数据、自1947年起的RPI数据及广泛的历史记录", + "指数数值和百分比变化 - 环比、同比和年平均增长率", + "权重和商品篮子构成 - 计算中使用的商品和服务篮子的年度更新", + "区域价格统计 - 英国不同地区的价格差异", + "国际比较 - 英国通胀在欧洲和全球指标背景下的表现" + ] + }, + "authority_level": "government" +} diff --git a/firstdata/sources/countries/europe/uk/bank-of-england.json b/firstdata/sources/countries/europe/uk/bank-of-england.json index 27c8f5b5..2523afed 100644 --- a/firstdata/sources/countries/europe/uk/bank-of-england.json +++ b/firstdata/sources/countries/europe/uk/bank-of-england.json @@ -13,15 +13,15 @@ "api_url": null, "country": "GB", "domains": [ - "monetary policy", - "financial markets", + "monetary-policy", + "financial-markets", "banking", - "interest rates", - "exchange rates", + "interest-rates", + "exchange-rates", "credit", - "financial stability", - "payment systems", - "regulatory capital" + "financial-stability", + "payment-systems", + "regulatory-capital" ], "geographic_scope": "national", "update_frequency": "daily", @@ -32,9 +32,9 @@ "interest-rates", "exchange-rates", "banking", - "UK", - "United Kingdom", - "England", + "uk", + "united-kingdom", + "england", "regulatory-data", "financial-markets", "payment-systems" diff --git a/firstdata/sources/countries/europe/uk/uk-data-gov.json b/firstdata/sources/countries/europe/uk/uk-data-gov.json index 01aebb31..cda5cc91 100644 --- a/firstdata/sources/countries/europe/uk/uk-data-gov.json +++ b/firstdata/sources/countries/europe/uk/uk-data-gov.json @@ -13,19 +13,19 @@ "api_url": "https://guidance.data.gov.uk/get_data/api_documentation/", "country": "GB", "domains": [ - "business and economy", - "crime and justice", + "business-and-economy", + "crime-and-justice", "defence", "education", "environment", "government", - "government spending", + "government-spending", "health", "mapping", "society", - "towns and cities", + "towns-and-cities", "transport", - "digital service performance" + "digital-service-performance" ], "geographic_scope": "national", "update_frequency": "daily", diff --git a/firstdata/sources/countries/europe/uk/uk-met-office.json b/firstdata/sources/countries/europe/uk/uk-met-office.json new file mode 100644 index 00000000..669d988c --- /dev/null +++ b/firstdata/sources/countries/europe/uk/uk-met-office.json @@ -0,0 +1,41 @@ +{ + "id": "uk-met-office", + "name": { + "en": "UK Met Office", + "zh": "英国气象局" + }, + "description": { + "en": "The UK's national weather service providing weather forecasts, climate data, and atmospheric research datasets.", + "zh": "英国国家气象服务机构,提供天气预报、气候数据和大气研究数据集。" + }, + "website": "https://www.metoffice.gov.uk", + "data_url": "https://www.metoffice.gov.uk/research/climate/maps-and-data", + "api_url": "https://data.hub.api.metoffice.gov.uk", + "data_content": { + "en": [ + "UK climate observations", + "global climate projections", + "HadCRUT temperature records", + "weather warnings", + "historical weather data" + ], + "zh": [ + "英国气候观测、全球气候预测、HadCRUT温度记录、天气预警、历史天气数据" + ] + }, + "authority_level": "government", + "update_frequency": "daily", + "domains": [ + "climate", + "environment" + ], + "tags": [ + "weather", + "climate", + "temperature", + "hadcrut", + "uk" + ], + "country": "GB", + "geographic_scope": "national" +} diff --git a/firstdata/sources/countries/north-america/canada/aafc.json b/firstdata/sources/countries/north-america/canada/aafc.json index 2e5b1875..44265a9c 100644 --- a/firstdata/sources/countries/north-america/canada/aafc.json +++ b/firstdata/sources/countries/north-america/canada/aafc.json @@ -15,14 +15,14 @@ "country": "CA", "domains": [ "agriculture", - "crop production", - "land use", - "geospatial data", - "environmental monitoring", - "agricultural economics", - "food security", - "agricultural research", - "market information" + "crop-production", + "land-use", + "geospatial-data", + "environmental-monitoring", + "agricultural-economics", + "food-security", + "agricultural-research", + "market-information" ], "geographic_scope": "national", "update_frequency": "annual", diff --git a/firstdata/sources/countries/north-america/canada/canada-boc.json b/firstdata/sources/countries/north-america/canada/canada-boc.json index 2e40e4f4..19240ba9 100644 --- a/firstdata/sources/countries/north-america/canada/canada-boc.json +++ b/firstdata/sources/countries/north-america/canada/canada-boc.json @@ -14,13 +14,13 @@ "api_url": "https://www.bankofcanada.ca/valet/docs", "country": "CA", "domains": [ - "monetary_policy", - "exchange_rates", - "interest_rates", + "monetary-policy", + "exchange-rates", + "interest-rates", "inflation", "banking", - "financial_markets", - "economic_indicators" + "financial-markets", + "economic-indicators" ], "geographic_scope": "national", "update_frequency": "daily", @@ -72,4 +72,4 @@ ] }, "authority_level": "government" -} \ No newline at end of file +} diff --git a/firstdata/sources/countries/north-america/canada/canada-cihi.json b/firstdata/sources/countries/north-america/canada/canada-cihi.json index 7755c69a..2ed8fa17 100644 --- a/firstdata/sources/countries/north-america/canada/canada-cihi.json +++ b/firstdata/sources/countries/north-america/canada/canada-cihi.json @@ -14,18 +14,18 @@ "api_url": "https://www.cihi.ca/en/submit-data-and-view-standards/codes-and-classifications", "country": "CA", "domains": [ - "health_care", - "hospital_services", + "health-care", + "hospital-services", "pharmaceuticals", - "medical_imaging", - "emergency_care", - "mental_health", - "continuing_care", - "health_spending", - "health_workforce", - "population_health", - "patient_outcomes", - "health_system_performance" + "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", @@ -84,4 +84,4 @@ ] }, "authority_level": "government" -} \ No newline at end of file +} diff --git a/firstdata/sources/countries/north-america/canada/canada-energy-regulator.json b/firstdata/sources/countries/north-america/canada/canada-energy-regulator.json index 32eb5dad..6ddf41e1 100644 --- a/firstdata/sources/countries/north-america/canada/canada-energy-regulator.json +++ b/firstdata/sources/countries/north-america/canada/canada-energy-regulator.json @@ -14,14 +14,14 @@ "api_url": "https://open.canada.ca/data/en/organization/cer-rec", "country": "CA", "domains": [ - "energy infrastructure", - "pipeline regulation", - "electricity transmission", - "oil and gas", - "renewable energy", - "energy safety", - "energy markets", - "energy trade" + "energy-infrastructure", + "pipeline-regulation", + "electricity-transmission", + "oil-and-gas", + "renewable-energy", + "energy-safety", + "energy-markets", + "energy-trade" ], "geographic_scope": "national", "update_frequency": "monthly", diff --git a/firstdata/sources/countries/north-america/mexico/banxico.json b/firstdata/sources/countries/north-america/mexico/banxico.json index 71547829..aa4d12bb 100644 --- a/firstdata/sources/countries/north-america/mexico/banxico.json +++ b/firstdata/sources/countries/north-america/mexico/banxico.json @@ -14,16 +14,16 @@ "api_url": "https://www.banxico.org.mx/SieAPIRest/service/v1/", "country": "MX", "domains": [ - "monetary_policy", - "financial_markets", + "monetary-policy", + "financial-markets", "banking", - "payment_systems", - "exchange_rates", + "payment-systems", + "exchange-rates", "inflation", - "balance_of_payments", - "public_finance", + "balance-of-payments", + "public-finance", "production", - "labor_market" + "labor-market" ], "geographic_scope": "national", "update_frequency": "daily", @@ -37,10 +37,10 @@ "banking", "payment_systems", "balance_of_payments", - "Mexico", - "Latin_America", + "mexico", + "latin_america", "time_series", - "API" + "api" ], "data_content": { "en": [ @@ -79,4 +79,4 @@ ] }, "authority_level": "government" -} \ No newline at end of file +} diff --git a/firstdata/sources/countries/north-america/mexico/mexico-inegi.json b/firstdata/sources/countries/north-america/mexico/mexico-inegi.json new file mode 100644 index 00000000..16403667 --- /dev/null +++ b/firstdata/sources/countries/north-america/mexico/mexico-inegi.json @@ -0,0 +1,79 @@ +{ + "id": "mexico-inegi", + "name": { + "en": "National Institute of Statistics and Geography (INEGI)", + "zh": "墨西哥国家统计和地理研究所", + "native": "Instituto Nacional de Estadística y Geografía (INEGI)" + }, + "description": { + "en": "Mexico's national statistics office responsible for collecting, processing, and disseminating geographic, statistical and economic information about the country. INEGI conducts population and housing censuses, agricultural censuses, and economic censuses, and provides comprehensive data on demographics, economy, geography, environment, and social conditions. It offers an open data API (INEGI Indicators API) with over 1,000 economic, demographic, and social indicators.", + "zh": "墨西哥国家统计机构,负责收集、处理和传播国家地理、统计和经济信息。INEGI开展人口与住房普查、农业普查和经济普查,提供涵盖人口、经济、地理、环境和社会状况的全面数据,并通过开放数据API(INEGI指标API)提供逾1000项经济、人口和社会指标。" + }, + "website": "https://www.inegi.org.mx", + "data_url": "https://www.inegi.org.mx/datos/", + "api_url": "https://www.inegi.org.mx/servicios/api_indicadores.html", + "authority_level": "government", + "country": "MX", + "domains": [ + "demographics", + "economics", + "geography", + "environment", + "employment", + "agriculture", + "trade", + "prices", + "housing", + "social" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "inegi", + "mexico", + "statistics", + "census", + "demographics", + "gdp", + "inflation", + "employment", + "geography", + "open-data", + "api", + "墨西哥", + "国家统计", + "人口普查", + "经济普查", + "拉丁美洲" + ], + "data_content": { + "en": [ + "Population and Housing Census (Censos de Población y Vivienda) - conducted every 10 years", + "National Survey of Occupation and Employment (ENOE) - quarterly labor market data", + "National Consumer Price Index (INPC) - monthly inflation indicators", + "Economic Activity Indicator (IGAE) - monthly GDP proxy", + "Economic Census (Censos Económicos) - comprehensive business and industry data", + "Agricultural, Livestock, Forestry and Fishing Census", + "National Income and Expenditure Survey (ENIGH) - household income and spending", + "Foreign trade statistics - imports and exports by product and country", + "Industrial production index and manufacturing statistics", + "Geographic data and cartography - national geographic information system", + "Environment and natural resources statistics", + "Business Confidence Index and economic expectations surveys" + ], + "zh": [ + "人口与住房普查(每10年一次)", + "全国就业调查(ENOE)- 季度劳动力市场数据", + "全国消费者价格指数(INPC)- 月度通货膨胀指标", + "经济活动指标(IGAE)- 月度GDP代理指标", + "经济普查(每5年一次)- 全面的企业和行业数据", + "农业、畜牧业、林业和渔业普查", + "全国收入与支出调查(ENIGH)- 家庭收入与消费", + "外贸统计 - 按产品和国家分类的进出口数据", + "工业生产指数和制造业统计", + "地理数据和制图 - 国家地理信息系统", + "环境与自然资源统计", + "企业信心指数和经济预期调查" + ] + } +} diff --git a/firstdata/sources/countries/north-america/usa/census-bureau.json b/firstdata/sources/countries/north-america/usa/census-bureau.json deleted file mode 100644 index aa5d3d5a..00000000 --- a/firstdata/sources/countries/north-america/usa/census-bureau.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "id": "usa-census-bureau", - "name": { - "en": "United States Census Bureau", - "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)、经济普查以及涵盖人口统计、住房、商业、贸易和政府的众多其他调查。是美国有关人口和经济数据的主要提供者。" - }, - "website": "https://www.census.gov", - "data_url": "https://www.census.gov", - "api_url": "https://www.census.gov/data/developers.html", - "country": "US", - "domains": [ - "demographics", - "economics", - "housing", - "business", - "trade", - "government", - "geography", - "population", - "income", - "employment", - "education", - "health" - ], - "geographic_scope": "national", - "update_frequency": "irregular", - "tags": [ - "united-states", - "national-statistics", - "census", - "demographics", - "economic-indicators", - "housing-data", - "population-data", - "geospatial", - "open-data", - "government-data", - "api-available" - ], - "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" -} \ No newline at end of file diff --git a/firstdata/sources/countries/north-america/usa/eia.json b/firstdata/sources/countries/north-america/usa/eia.json index aa5d1344..82265e1a 100644 --- a/firstdata/sources/countries/north-america/usa/eia.json +++ b/firstdata/sources/countries/north-america/usa/eia.json @@ -15,11 +15,11 @@ "domains": [ "energy", "petroleum", - "natural gas", + "natural-gas", "coal", "electricity", - "nuclear energy", - "renewable energy", + "nuclear-energy", + "renewable-energy", "environment", "economics", "markets" @@ -76,4 +76,4 @@ ] }, "authority_level": "government" -} \ No newline at end of file +} diff --git a/firstdata/sources/countries/north-america/usa/noaa-cdo.json b/firstdata/sources/countries/north-america/usa/noaa-cdo.json index b507123d..261172fe 100644 --- a/firstdata/sources/countries/north-america/usa/noaa-cdo.json +++ b/firstdata/sources/countries/north-america/usa/noaa-cdo.json @@ -15,8 +15,8 @@ "domains": [ "climate", "meteorology", - "environmental_science", - "atmospheric_science" + "environmental-science", + "atmospheric-science" ], "geographic_scope": "global", "update_frequency": "daily", @@ -26,16 +26,16 @@ "temperature", "precipitation", "meteorology", - "NOAA", - "NCEI", - "NCDC", - "historical climate data", - "weather stations", - "climate normals", - "atmospheric data", - "environmental data", - "time series", - "global coverage" + "noaa", + "ncei", + "ncdc", + "historical-climate-data", + "weather-stations", + "climate-normals", + "atmospheric-data", + "environmental-data", + "time-series", + "global-coverage" ], "data_content": { "en": [ @@ -66,4 +66,4 @@ ] }, "authority_level": "government" -} \ No newline at end of file +} diff --git a/firstdata/sources/countries/north-america/usa/us-bea.json b/firstdata/sources/countries/north-america/usa/us-bea.json index 548cf40c..cc77bd1d 100644 --- a/firstdata/sources/countries/north-america/usa/us-bea.json +++ b/firstdata/sources/countries/north-america/usa/us-bea.json @@ -2,100 +2,74 @@ "id": "us-bea", "name": { "en": "Bureau of Economic Analysis", - "zh": "美国经济分析局" + "zh": "经济分析局" }, "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. The agency serves government and business decision makers, researchers, and the public to help them understand the performance of the U.S. economy.", - "zh": "美国经济分析局(BEA)是美国商务部下属机构,负责编制包括GDP、个人收入、企业利润、国际贸易与投资、区域经济数据在内的关键经济统计数据。BEA的数据全面反映了美国经济及其与全球经济的互动情况。该机构为政府和企业决策者、研究人员以及公众提供服务,帮助他们了解美国经济的运行状况。" + "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://www.bea.gov", "data_url": "https://www.bea.gov/data", - "api_url": "https://apps.bea.gov/API/signup/", + "api_url": "https://apps.bea.gov/api/signup/index.cfm", "country": "US", "domains": [ "economics", "gdp", - "national accounts", - "international trade", - "foreign direct investment", - "personal income", - "consumer spending", - "corporate profits", - "regional economics", - "industry economics", - "input-output tables", - "fixed assets" + "national-accounts", + "international-trade", + "foreign-direct-investment", + "personal-income", + "consumer-spending", + "corporate-profits", + "regional-economics", + "industry-economics" ], "geographic_scope": "national", - "update_frequency": "monthly", + "update_frequency": "quarterly", "tags": [ "economics", - "经济统计", "gdp", - "国内生产总值", "national-accounts", - "国民账户", "united-states", - "美国", "trade", - "贸易", "investment", - "投资", "official-statistics", - "官方统计", "government", - "政府", "time-series", - "时间序列", "macroeconomics", - "宏观经济", "regional-data", - "区域数据", - "industry-data", - "行业数据", - "personal-income", - "个人收入", - "bea", - "经济分析局" + "industry-data" ], "data_content": { "en": [ - "Gross Domestic Product (GDP) - Real GDP estimates released quarterly, covering national, regional, and industry-level data", + "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 by region", - "International Trade in Goods and Services - Monthly trade statistics covering 237 countries and areas", - "International Transactions - Quarterly balance of payments data (ITA)", + "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.", - "International Investment Position (IIP) - Cross-border investment positions", - "Multinational Enterprises (MNE) - Activities and operations of multinational companies", - "Regional Economic Accounts - State, county, and metropolitan area economic data", - "GDP by Industry - Value added by industry with underlying details", - "Input-Output Tables - Industry interrelationships and economic flows", - "Fixed Assets - Investment in structures, equipment, and intellectual property products", - "Consumer Spending - Personal consumption expenditures by product and region", + "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", - "Research and Development - R&D satellite account tracking innovation investment", - "Distribution of Personal Income - Nowcast and forecast data" + "Price Indexes - GDP deflators and PCE price indexes" ], "zh": [ - "国内生产总值(GDP)- 季度发布的实际GDP估算,涵盖国家、地区和行业层面数据", + "国内生产总值(GDP)- 国家、地区和行业层面的GDP数据", "国民收入和产品账户(NIPAs)- 综合性收入、支出和储蓄统计", - "个人收入和支出 - 按地区分类的月度收入、消费和储蓄数据", - "商品和服务国际贸易 - 涵盖237个国家和地区的月度贸易统计", - "国际交易 - 季度国际收支数据(ITA)", + "个人收入和支出 - 月度收入、消费和储蓄数据", + "商品和服务国际贸易 - 月度贸易平衡数据", + "国际交易 - 季度国际收支数据", "外国直接投资 - 美国对外直接投资和外国对美投资", - "国际投资头寸(IIP)- 跨境投资头寸数据", - "跨国企业(MNE)- 跨国公司的活动和运营数据", - "区域经济账户 - 州、县和都市区经济数据", - "按行业划分的GDP - 按行业增加值及基础明细", - "投入产出表 - 行业间关系和经济流动", - "固定资产 - 结构、设备和知识产权产品投资", - "消费支出 - 按产品和地区分类的个人消费支出", + "跨国企业 - 跨国公司活动数据", + "区域经济账户 - 州、县和都市区数据", + "按行业划分的GDP - 按行业增加值", + "固定资产 - 结构、设备和知识产权投资", + "消费支出 - 按产品分类的个人消费支出", "企业利润 - 季度企业利润数据", - "价格指数 - GDP平减指数和PCE价格指数", - "研究与开发 - 跟踪创新投资的研发卫星账户", - "个人收入分配 - 即时预测和预测数据" + "价格指数 - GDP平减指数和PCE价格指数" ] }, "authority_level": "government" diff --git a/firstdata/sources/countries/north-america/usa/us-bls.json b/firstdata/sources/countries/north-america/usa/us-bls.json index a3009409..87daaa83 100644 --- a/firstdata/sources/countries/north-america/usa/us-bls.json +++ b/firstdata/sources/countries/north-america/usa/us-bls.json @@ -2,32 +2,31 @@ "id": "us-bls", "name": { "en": "Bureau of Labor Statistics", - "zh": "美国劳工统计局" + "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还为美国劳工部提供统计资源服务,并开展就业、劳动经济学和价格水平方面的研究。" + "zh": "美国劳工统计局(BLS)是负责衡量美国经济中劳动力市场活动、工作条件和价格变化的主要联邦机构。BLS收集、处理、分析并向美国公众、国会、其他联邦机构、州和地方政府、企业和劳工组织传播重要的统计数据。BLS还为美国劳工部提供统计资源服务,并开展就业、劳动经济学和价格水平方面的研究。" }, "website": "https://www.bls.gov", "data_url": "https://www.bls.gov/data/", "api_url": "https://www.bls.gov/developers/", - "authority_level": "government", "country": "US", - "geographic_scope": "national", "domains": [ "employment", "unemployment", - "labor force", + "labor-force", "wages", "earnings", "prices", "inflation", - "consumer expenditures", + "consumer-expenditures", "productivity", - "workplace safety", - "occupational statistics", - "industry statistics" + "workplace-safety", + "occupational-statistics", + "industry-statistics" ], + "geographic_scope": "national", "update_frequency": "monthly", "tags": [ "employment", @@ -51,15 +50,7 @@ "labor-force", "employment-projections", "us-government", - "economic-indicators", - "美国劳工", - "就业数据", - "失业率", - "通货膨胀", - "消费者物价指数", - "生产者物价指数", - "工资统计", - "劳动力市场" + "economic-indicators" ], "data_content": { "en": [ @@ -98,5 +89,6 @@ "进出口价格指数 - 国际贸易商品和服务的价格变化", "企业就业动态 - 就业创造和破坏、企业新生和死亡" ] - } + }, + "authority_level": "government" } diff --git a/firstdata/sources/countries/north-america/usa/us-cdc.json b/firstdata/sources/countries/north-america/usa/us-cdc.json index 925bcbfd..8d0008af 100644 --- a/firstdata/sources/countries/north-america/usa/us-cdc.json +++ b/firstdata/sources/countries/north-america/usa/us-cdc.json @@ -1,123 +1,83 @@ { "id": "us-cdc", "name": { - "en": "CDC Data & Statistics", - "zh": "美国疾控中心数据与统计" + "en": "Centers for Disease Control and Prevention", + "zh": "美国疾病控制与预防中心" }, "description": { - "en": "The Centers for Disease Control and Prevention (CDC) is the nation's leading public health institute. CDC provides comprehensive public health data through multiple platforms: data.cdc.gov (open data portal with datasets across health topics), CDC WONDER (Wide-ranging Online Data for Epidemiologic Research with ad-hoc query system), and NCHS (National Center for Health Statistics - the nation's official source for health statistics). The data covers vital statistics, disease surveillance, environmental health, vaccine safety, cancer registries, and over 180 health topics. CDC data supports research, policy development, and public health practice across infectious diseases, chronic diseases, injuries, environmental health, and health equity.", - "zh": "美国疾病控制与预防中心(CDC)是美国领先的公共卫生机构。CDC通过多个平台提供全面的公共卫生数据:data.cdc.gov(涵盖各健康主题的开放数据门户)、CDC WONDER(流行病学研究广泛在线数据,具有即席查询系统)和NCHS(国家健康统计中心-美国官方健康统计来源)。数据涵盖生命统计、疾病监测、环境健康、疫苗安全、癌症登记和超过180个健康主题。CDC数据支持传染病、慢性病、伤害、环境健康和健康公平等领域的研究、政策制定和公共卫生实践。" + "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.cdc.gov/", - "data_url": "https://data.cdc.gov/", - "api_url": "https://dev.socrata.com/foundry/data.cdc.gov", + "data_url": "https://wonder.cdc.gov/", + "api_url": "https://wonder.cdc.gov/wonder/help/wonder-api.html", "country": "US", "domains": [ - "public health", - "health statistics", - "infectious diseases", - "chronic diseases", - "vital statistics", + "public-health", + "infectious-diseases", + "chronic-diseases", + "vital-statistics", "mortality", "natality", - "environmental health", + "environmental-health", "cancer", "tuberculosis", - "sexually transmitted diseases", - "vaccine safety", - "population health", - "health equity", - "disease surveillance", - "epidemiology", - "healthcare access", - "nutrition" + "sexually-transmitted-diseases", + "vaccine-safety", + "population-health", + "health-equity", + "disease-surveillance", + "epidemiology" ], "geographic_scope": "national", "update_frequency": "weekly", "tags": [ - "cdc", - "疾控中心", "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", - "nchs", "births", - "出生", - "deaths", - "死亡", - "covid-19", - "新冠", - "vaccination", - "疫苗接种", - "healthcare", - "医疗保健", - "nutrition", - "营养" + "deaths" ], "data_content": { "en": [ - "Vital Statistics - Birth and death certificates, infant mortality, fetal deaths, maternal health indicators", - "Mortality Data - Underlying and multiple causes of death, compressed mortality files by age, race, geography", - "Natality Data - Birth statistics, maternal characteristics, infant health, birth trends and demographics", - "Cancer Surveillance - Incidence, mortality, survival rates from SEER and NPCR cancer registries", - "Infectious Disease Surveillance - COVID-19, tuberculosis, sexually transmitted diseases, HIV/AIDS, national notifiable conditions", - "Chronic Disease Data - Heart disease, diabetes, obesity, asthma prevalence and risk factors", - "Vaccine Safety - Vaccine Adverse Event Reporting System (VAERS), immunization coverage data", - "Environmental Health - Air quality (PM2.5), temperature, heat waves, climate-related health impacts", - "National Health Surveys - NHIS (health interview), NHANES (nutrition examination), NSFG (family growth)", - "Healthcare Statistics - Healthcare utilization, access to care, insurance coverage, ambulatory care visits", - "Population Estimates - Bridged-race and single-race populations, demographic projections through 2060", - "NNDSS Data - National Notifiable Diseases Surveillance System with weekly and annual reporting", - "Injury & Violence - Motor vehicle crashes, traumatic brain injury, firearm injuries, overdose deaths", - "Behavioral Risk Factors - Smoking, tobacco use, physical activity, nutrition behaviors", - "Geographic Health Data - State, county, metropolitan area health statistics and health disparities" + "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": [ - "生命统计 - 出生和死亡证明、婴儿死亡率、胎儿死亡、孕产妇健康指标", - "死亡率数据 - 按年龄、种族、地理位置分类的基础和多重死因、压缩死亡率档案", - "出生统计数据 - 出生统计、孕产妇特征、婴儿健康、出生趋势和人口统计", - "癌症监测 - 来自SEER和NPCR癌症登记处的发病率、死亡率、存活率", - "传染病监测 - COVID-19、结核病、性传播疾病、HIV/艾滋病、国家应报告疾病", - "慢性病数据 - 心脏病、糖尿病、肥胖、哮喘患病率和风险因素", - "疫苗安全 - 疫苗不良事件报告系统(VAERS)、免疫接种覆盖率数据", - "环境健康 - 空气质量(PM2.5)、温度、热浪、气候相关健康影响", - "国家健康调查 - NHIS(健康访谈)、NHANES(营养检查)、NSFG(家庭成长)", - "医疗保健统计 - 医疗保健利用、就医机会、保险覆盖、门诊就诊", - "人口估计 - 桥接种族和单一种族人口、到2060年的人口预测", - "NNDSS数据 - 国家应报告疾病监测系统,包含每周和年度报告", - "伤害与暴力 - 机动车事故、创伤性脑损伤、枪支伤害、过量死亡", - "行为风险因素 - 吸烟、烟草使用、体育活动、营养行为", - "地理健康数据 - 州、县、都市区健康统计和健康差异" + "死亡率数据 - 基础和多重死因、婴儿死亡、胎儿死亡、压缩死亡率档案", + "出生统计 - 包括孕产妇健康、婴儿特征和出生趋势", + "癌症统计 - 来自癌症登记处的发病率、死亡率和存活数据", + "传染病监测 - 艾滋病、结核病、性传播疾病、国家应报告疾病", + "环境健康 - 热浪天数、气温、地表温度、细颗粒物、降水、阳光暴露", + "疫苗安全 - 疫苗不良事件报告系统(VAERS)数据", + "人口估计 - 桥接种族人口、单一种族人口、人口预测", + "国家应报告疾病监测系统(NNDSS) - 每周和年度疾病报告数据", + "气候与健康 - 与健康结果相关的温度、降水、空气质量数据", + "地理健康数据 - 州、县和都市区健康统计" ] }, "authority_level": "government" diff --git a/firstdata/sources/countries/north-america/usa/us-census.json b/firstdata/sources/countries/north-america/usa/us-census.json new file mode 100644 index 00000000..af024023 --- /dev/null +++ b/firstdata/sources/countries/north-america/usa/us-census.json @@ -0,0 +1,84 @@ +{ + "id": "us-census", + "name": { + "en": "U.S. Census Bureau", + "zh": "美国人口普查局" + }, + "description": { + "en": "The U.S. Census Bureau is the principal agency of the U.S. Federal Statistical System responsible for producing data about the American people and economy. It conducts the decennial census, the American Community Survey, and over 130 other surveys and censuses. The Bureau provides critical economic indicators including retail sales, housing starts, international trade, construction spending, and manufacturing data, serving as the primary source for U.S. demographic and economic statistics.", + "zh": "美国人口普查局是美国联邦统计系统的主要机构,负责生产关于美国人口和经济的数据。它进行十年一次的人口普查、美国社区调查以及130多项其他调查和普查。该局提供关键经济指标,包括零售销售、住房开工、国际贸易、建设支出和制造业数据,是美国人口和经济统计数据的主要来源。" + }, + "website": "https://www.census.gov", + "data_url": "https://data.census.gov", + "api_url": "https://www.census.gov/data/developers.html", + "country": "US", + "domains": [ + "demographics", + "economics", + "housing", + "business", + "trade", + "government", + "geography", + "manufacturing", + "retail", + "employment", + "education", + "health" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "census", + "demographics", + "population", + "retail-sales", + "housing", + "international-trade", + "manufacturing", + "economic-indicators", + "美国人口普查", + "人口统计", + "零售销售", + "住房数据" + ], + "data_content": { + "en": [ + "Decennial Census - Complete count of U.S. population every 10 years", + "American Community Survey - Annual demographics, housing, economic data", + "Economic Indicators - Retail sales, housing starts, construction spending", + "International Trade - Monthly import/export statistics by commodity and country", + "Manufacturing - Manufacturers' shipments, inventories, and orders", + "Business Formation - New business applications and formations", + "Population Estimates - Annual intercensal population estimates", + "Housing - New residential construction, home ownership rates", + "Current Population Survey (CPS) - monthly employment and labor statistics", + "American Housing Survey - housing characteristics and costs", + "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年一次的美国人口完整统计", + "美国社区调查 - 年度人口、住房、经济数据", + "经济指标 - 零售销售、住房开工、建设支出", + "国际贸易 - 按商品和国家分类的月度进出口统计", + "制造业 - 制造商出货量、库存和订单", + "企业创设 - 新企业申请和创设", + "人口估计 - 年度人口估计", + "住房 - 新住宅建设、住房拥有率", + "当前人口调查(CPS) - 月度就业和劳动力统计", + "美国住房调查 - 住房特征和成本", + "政府财政统计", + "地图边界文件和地理数据", + "收入、贫困和财富统计", + "教育程度和入学数据", + "健康保险覆盖统计", + "迁移和流动性数据" + ] + }, + "authority_level": "government" +} diff --git a/firstdata/sources/countries/north-america/usa/us-data-gov.json b/firstdata/sources/countries/north-america/usa/us-data-gov.json index 0942274e..3eb63467 100644 --- a/firstdata/sources/countries/north-america/usa/us-data-gov.json +++ b/firstdata/sources/countries/north-america/usa/us-data-gov.json @@ -22,12 +22,12 @@ "finance", "health", "transportation", - "public safety", - "science & research", + "public-safety", + "science-and-research", "environment", "manufacturing", "ocean", - "local government", + "local-government", "maritime", "ecosystems" ], diff --git a/firstdata/sources/countries/north-america/usa/us-federalreserve.json b/firstdata/sources/countries/north-america/usa/us-federalreserve.json new file mode 100644 index 00000000..9b1714b5 --- /dev/null +++ b/firstdata/sources/countries/north-america/usa/us-federalreserve.json @@ -0,0 +1,75 @@ +{ + "id": "us-federalreserve", + "name": { + "en": "Federal Reserve Board", + "zh": "美联储理事会" + }, + "description": { + "en": "The Board of Governors of the Federal Reserve System is the central bank of the United States, responsible for monetary policy, banking supervision, and maintaining financial stability. The Fed publishes authoritative data including FOMC meeting minutes, the Beige Book, Financial Accounts of the United States (Z.1), consumer credit, industrial production, capacity utilization, and the Senior Loan Officer Opinion Survey. Distinct from FRED (the data aggregation service), the Board's website provides primary-source policy documents and regulatory data.", + "zh": "美联储理事会是美国的中央银行,负责货币政策制定、银行业监管和维护金融稳定。美联储发布权威数据,包括FOMC会议纪要、褐皮书、美国金融账户(Z.1)、消费信贷、工业生产、产能利用率以及高级信贷官意见调查等。与FRED(数据聚合服务)不同,理事会网站提供一手政策文件和监管数据。" + }, + "website": "https://www.federalreserve.gov/", + "data_url": "https://www.federalreserve.gov/data.htm", + "api_url": null, + "country": "US", + "domains": [ + "monetary-policy", + "banking", + "finance", + "economics", + "financial-stability", + "consumer-credit" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "usa", + "central-bank", + "monetary-policy", + "fomc", + "interest-rates", + "banking-supervision", + "financial-stability", + "consumer-credit", + "industrial-production", + "美联储", + "联邦储备", + "货币政策", + "利率" + ], + "data_content": { + "en": [ + "FOMC Meeting Minutes and Statements", + "Beige Book (Regional Economic Conditions)", + "Financial Accounts of the United States (Z.1)", + "Consumer Credit (G.19)", + "Industrial Production and Capacity Utilization (G.17)", + "Money Stock Measures (H.6)", + "Selected Interest Rates (H.15)", + "Assets and Liabilities of Commercial Banks (H.8)", + "Senior Loan Officer Opinion Survey", + "Summary of Economic Projections (SEP)", + "Financial Stability Reports", + "Supervision and Regulation Reports", + "Flow of Funds Data", + "Foreign Exchange Rates (H.10)" + ], + "zh": [ + "FOMC会议纪要和声明", + "褐皮书(地区经济状况)", + "美国金融账户(Z.1)", + "消费信贷(G.19)", + "工业生产和产能利用率(G.17)", + "货币存量指标(H.6)", + "精选利率(H.15)", + "商业银行资产负债表(H.8)", + "高级信贷官意见调查", + "经济预测摘要(SEP)", + "金融稳定报告", + "监管报告", + "资金流量数据", + "外汇汇率(H.10)" + ] + }, + "authority_level": "government" +} diff --git a/firstdata/sources/countries/north-america/usa/us-treasury.json b/firstdata/sources/countries/north-america/usa/us-treasury.json new file mode 100644 index 00000000..a1fab7ee --- /dev/null +++ b/firstdata/sources/countries/north-america/usa/us-treasury.json @@ -0,0 +1,62 @@ +{ + "id": "us-treasury", + "name": { + "en": "U.S. Department of the Treasury", + "zh": "美国财政部" + }, + "description": { + "en": "The U.S. Department of the Treasury provides comprehensive data on federal finances, government debt, treasury securities, and economic policy. Key datasets include daily treasury statements, monthly treasury statements, treasury securities auction data, TIPS (Treasury Inflation-Protected Securities), international capital flows (TIC), and sanctions data. The Treasury is the authoritative source for U.S. government fiscal data and sovereign debt information.", + "zh": "美国财政部提供联邦财政、政府债务、国债证券和经济政策的综合数据。主要数据集包括每日国库报告、月度国库报告、国债拍卖数据、通胀保值国债(TIPS)、国际资本流动(TIC)和制裁数据。财政部是美国政府财政数据和主权债务信息的权威来源。" + }, + "website": "https://home.treasury.gov", + "data_url": "https://fiscaldata.treasury.gov", + "api_url": "https://fiscaldata.treasury.gov/api-documentation/", + "country": "US", + "domains": [ + "finance", + "fiscal-policy", + "government-debt", + "treasury-securities", + "international-capital-flows", + "sanctions" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "treasury", + "fiscal-data", + "government-debt", + "treasury-securities", + "tips", + "tic", + "sanctions", + "federal-budget", + "美国财政部", + "国债", + "财政数据", + "通胀保值债券" + ], + "data_content": { + "en": [ + "Daily Treasury Statement - Daily cash and debt operations of the U.S. Treasury", + "Monthly Treasury Statement - Monthly receipts, outlays, and deficit/surplus", + "Treasury Securities - Auction results, yield curves, outstanding debt", + "TIPS - Treasury Inflation-Protected Securities data", + "TIC Data - International capital flows, foreign holdings of U.S. securities", + "Federal Debt - Total public debt outstanding, debt to the penny", + "OFAC Sanctions - Sanctions lists and compliance data", + "Interest Rates - Treasury bill, note, and bond rates" + ], + "zh": [ + "每日国库报告 - 美国国库每日现金和债务操作", + "月度国库报告 - 月度收入、支出和赤字/盈余", + "国债证券 - 拍卖结果、收益率曲线、未偿债务", + "通胀保值国债 - TIPS数据", + "国际资本流动 - TIC数据、外国持有美国证券", + "联邦债务 - 公共债务总额", + "OFAC制裁 - 制裁名单和合规数据", + "利率 - 国库券、票据和债券利率" + ] + }, + "authority_level": "government" +} diff --git a/firstdata/sources/countries/north-america/usa/usaid-ddl.json b/firstdata/sources/countries/north-america/usa/usaid-ddl.json new file mode 100644 index 00000000..6d577466 --- /dev/null +++ b/firstdata/sources/countries/north-america/usa/usaid-ddl.json @@ -0,0 +1,62 @@ +{ + "id": "usaid-ddl", + "name": { + "en": "USAID Development Data Library", + "zh": "美国国际开发署发展数据库" + }, + "description": { + "en": "The USAID Development Data Library (DDL) is the U.S. Agency for International Development's public repository for USAID-funded, machine-readable data. It provides open access to datasets across all sectors of international development, including health, education, agriculture, economic growth, democracy, and humanitarian assistance. The DDL supports USAID's open data policy and makes development data freely available to researchers, policymakers, and the public.", + "zh": "美国国际开发署发展数据库(DDL)是美国国际开发署资助的机器可读数据的公共存储库。它提供国际发展各领域的开放数据访问,包括卫生、教育、农业、经济增长、民主治理和人道主义援助。DDL支持USAID的开放数据政策,向研究人员、政策制定者和公众免费提供发展数据。" + }, + "website": "https://www.usaid.gov", + "data_url": "https://data.usaid.gov", + "api_url": "https://data.usaid.gov/developers", + "country": "US", + "domains": [ + "international-development", + "foreign-aid", + "health", + "education", + "agriculture", + "economic-growth", + "humanitarian-assistance", + "democracy-and-governance" + ], + "geographic_scope": "global", + "update_frequency": "irregular", + "tags": [ + "usaid", + "development", + "foreign-aid", + "international-development", + "open-data", + "humanitarian", + "对外援助", + "国际发展", + "美国援助", + "发展数据" + ], + "data_content": { + "en": [ + "Foreign Aid - U.S. government foreign assistance data by country and sector", + "Health Programs - Global health initiative datasets including HIV/AIDS, malaria, maternal health", + "Education - Education program data across developing countries", + "Agriculture and Food Security - Feed the Future and food security datasets", + "Economic Growth - Trade, investment, and economic development data", + "Democracy and Governance - Democratic institution and governance program data", + "Humanitarian Assistance - Disaster response and humanitarian aid data", + "Gender - Gender equality and women's empowerment datasets" + ], + "zh": [ + "对外援助 - 按国家和行业分类的美国政府对外援助数据", + "卫生项目 - 全球卫生倡议数据集,包括艾滋病、疟疾、母婴健康", + "教育 - 发展中国家教育项目数据", + "农业与粮食安全 - 粮食安全数据集", + "经济增长 - 贸易、投资和经济发展数据", + "民主治理 - 民主制度和治理项目数据", + "人道主义援助 - 灾害响应和人道主义援助数据", + "性别 - 性别平等和妇女赋权数据集" + ] + }, + "authority_level": "government" +} diff --git a/firstdata/sources/countries/north-america/usa/usda-fas.json b/firstdata/sources/countries/north-america/usa/usda-fas.json new file mode 100644 index 00000000..af72ab6f --- /dev/null +++ b/firstdata/sources/countries/north-america/usa/usda-fas.json @@ -0,0 +1,74 @@ +{ + "id": "usda-fas", + "name": { + "en": "USDA Foreign Agricultural Service", + "zh": "美国农业部对外农业局" + }, + "description": { + "en": "The Foreign Agricultural Service (FAS) of the U.S. Department of Agriculture links U.S. agriculture to the world to enhance export opportunities and global food security. FAS maintains a global network of agricultural attachés and provides comprehensive data on international agricultural production, supply, demand, and trade through its Production, Supply, and Distribution (PSD) database and Global Agricultural Trade System (GATS).", + "zh": "美国农业部对外农业局(FAS)是连接美国农业与世界的桥梁,致力于增强出口机会和全球粮食安全。FAS在全球维护农业参赞网络,通过其生产、供应和分配(PSD)数据库及全球农业贸易系统(GATS)提供全面的国际农业生产、供应、需求和贸易数据。" + }, + "website": "https://www.fas.usda.gov", + "data_url": "https://apps.fas.usda.gov/psdonline/app/index.html", + "api_url": "https://apps.fas.usda.gov/opendata/swagger/ui/index", + "authority_level": "government", + "country": "US", + "domains": [ + "agriculture", + "trade", + "food-security", + "commodity-markets", + "international-trade" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "agriculture", + "trade", + "export", + "import", + "commodity", + "grain", + "oilseed", + "coffee", + "cotton", + "sugar", + "livestock", + "dairy", + "food-security", + "crop-production", + "psd-database", + "gats", + "global-agriculture", + "usda", + "美国农业部", + "农产品贸易", + "国际农业" + ], + "data_content": { + "en": [ + "Production, Supply, and Distribution (PSD) - Global production, supply, demand, and trade data for major agricultural commodities", + "Global Agricultural Trade System (GATS) - U.S. agricultural import and export statistics by commodity and country", + "World Agricultural Production Reports - Monthly circulars on global crop and livestock production estimates", + "Grain and Feed Data - Global grain production, consumption, trade, and stocks data", + "Oilseeds Data - World oilseed and products production, crush, trade, and stocks", + "Coffee Market Data - Global coffee production, consumption, trade, and stocks by country", + "Cotton Data - World cotton production, mill use, trade, and ending stocks", + "Sugar and Sweeteners Data - Global sugar production, consumption, trade, and prices", + "Livestock and Poultry Data - International meat and dairy production, consumption, and trade", + "Commodity Intelligence Reports - Analysis of agricultural conditions and market developments worldwide" + ], + "zh": [ + "生产、供应和分配(PSD)- 主要农产品的全球生产、供应、需求和贸易数据", + "全球农业贸易系统(GATS)- 按商品和国家分类的美国农产品进出口统计", + "世界农业生产报告 - 全球作物和畜产品产量估算月度通报", + "谷物和饲料数据 - 全球谷物生产、消费、贸易和库存数据", + "油籽数据 - 世界油籽及制品的生产、压榨、贸易和库存", + "咖啡市场数据 - 全球咖啡生产、消费、贸易和库存(按国家)", + "棉花数据 - 世界棉花生产、纺织消费、贸易和期末库存", + "糖和甜味剂数据 - 全球糖的生产、消费、贸易和价格", + "畜牧和家禽数据 - 国际肉类和乳制品的生产、消费和贸易", + "商品情报报告 - 全球农业状况和市场发展分析" + ] + } +} diff --git a/firstdata/sources/countries/oceania/australia/aihw.json b/firstdata/sources/countries/oceania/australia/aihw.json index 4e84a790..6d558b0f 100644 --- a/firstdata/sources/countries/oceania/australia/aihw.json +++ b/firstdata/sources/countries/oceania/australia/aihw.json @@ -16,15 +16,15 @@ "health", "welfare", "hospitals", - "mental health", - "aged care", + "mental-health", + "aged-care", "disability", - "child protection", + "child-protection", "homelessness", "housing", - "indigenous health", - "alcohol and drugs", - "disease and injury", + "indigenous-health", + "alcohol-and-drugs", + "disease-and-injury", "mortality" ], "geographic_scope": "national", @@ -33,7 +33,7 @@ "health", "welfare", "hospitals", - "Australia", + "australia", "government", "mental-health", "aged-care", diff --git a/firstdata/sources/countries/oceania/australia/asx.json b/firstdata/sources/countries/oceania/australia/asx.json new file mode 100644 index 00000000..eec08653 --- /dev/null +++ b/firstdata/sources/countries/oceania/australia/asx.json @@ -0,0 +1,63 @@ +{ + "id": "asx", + "name": { + "en": "Australian Securities Exchange", + "zh": "澳大利亚证券交易所" + }, + "description": { + "en": "The Australian Securities Exchange (ASX) is Australia's primary securities exchange and one of the leading financial markets in the Asia-Pacific region. ASX provides official market data covering listed equities, indices (S&P/ASX 200, All Ordinaries), exchange-traded funds, interest-rate and equity derivatives, IPO and secondary-listing filings, short-selling reports, and corporate governance disclosures for companies listed on ASX.", + "zh": "澳大利亚证券交易所(ASX)是澳大利亚主要的证券交易所,也是亚太地区领先的金融市场之一。ASX提供涵盖上市股票、指数(标普/ASX 200、全普指数)、交易所交易基金、利率及股票衍生品、IPO及二次上市披露文件、卖空报告以及上市公司治理披露在内的官方市场数据。" + }, + "website": "https://www.asx.com.au", + "data_url": "https://www.asx.com.au/markets", + "api_url": null, + "authority_level": "market", + "country": "AU", + "domains": [ + "finance", + "securities", + "stock-market", + "derivatives" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "australia", + "asx", + "stock-exchange", + "securities", + "equities", + "ASX-200", + "All-Ordinaries", + "derivatives", + "ETF", + "IPO", + "market-data", + "澳大利亚", + "澳洲证券交易所", + "股票市场", + "澳交所" + ], + "data_content": { + "en": [ + "Real-time and historical equity prices", + "Market indices (S&P/ASX 200, All Ordinaries, sector indices)", + "Listed company announcements and filings", + "IPO and secondary-listing prospectuses", + "Derivatives and interest-rate market data", + "ETF and managed funds data", + "Short-selling and securities lending reports", + "Market statistics and trading activity" + ], + "zh": [ + "股票实时与历史价格", + "市场指数(标普/ASX 200、全普指数、行业指数)", + "上市公司公告与披露文件", + "IPO及二次上市招股书", + "衍生品与利率市场数据", + "ETF与基金数据", + "卖空与证券借贷报告", + "市场统计与交易活动数据" + ] + } +} diff --git a/firstdata/sources/countries/oceania/australia/bureau-of-meteorology.json b/firstdata/sources/countries/oceania/australia/bureau-of-meteorology.json index b281e3e7..4bcc54fd 100644 --- a/firstdata/sources/countries/oceania/australia/bureau-of-meteorology.json +++ b/firstdata/sources/countries/oceania/australia/bureau-of-meteorology.json @@ -17,7 +17,7 @@ "climate", "water", "oceans", - "space weather", + "space-weather", "atmosphere", "meteorology", "hydrology", @@ -79,4 +79,4 @@ ] }, "authority_level": "government" -} \ No newline at end of file +} diff --git a/firstdata/sources/countries/oceania/new-zealand/nz-stats.json b/firstdata/sources/countries/oceania/new-zealand/nz-stats.json new file mode 100644 index 00000000..cdaabcf7 --- /dev/null +++ b/firstdata/sources/countries/oceania/new-zealand/nz-stats.json @@ -0,0 +1,101 @@ +{ + "id": "nz-stats", + "name": { + "en": "Statistics New Zealand (Stats NZ)", + "zh": "新西兰统计局" + }, + "description": { + "en": "Statistics New Zealand (Stats NZ) is New Zealand's national statistics office, operating under the Statistics Act 1975. It produces a wide range of official statistics covering population, economy, society, environment, and culture. Stats NZ publishes the New Zealand Census of Population and Dwellings every five years, as well as regular releases on national accounts, labour market, price indices, trade, and much more. Its Infoshare platform provides free online access to a large collection of statistical time series data.", + "zh": "新西兰统计局(Stats NZ)是新西兰的国家统计机构,依据1975年《统计法》运作,负责生产涵盖人口、经济、社会、环境和文化的各类官方统计数据。统计局每五年发布一次新西兰人口与住房普查,并定期发布国民账户、劳动力市场、价格指数、贸易等统计数据。其Infoshare平台提供海量统计时间序列数据的免费在线访问。" + }, + "website": "https://www.stats.govt.nz", + "data_url": "https://infoshare.stats.govt.nz", + "api_url": null, + "authority_level": "government", + "country": "NZ", + "domains": [ + "demographics", + "economics", + "social", + "employment", + "prices", + "trade", + "environment", + "agriculture", + "housing", + "education", + "health" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "new-zealand", + "新西兰", + "stats-nz", + "statistics-new-zealand", + "infoshare", + "population", + "人口", + "census", + "人口普查", + "gdp", + "国内生产总值", + "national-accounts", + "国民账户", + "labour-market", + "劳动力市场", + "employment", + "就业", + "cpi", + "consumer-price-index", + "消费者价格指数", + "trade", + "贸易", + "exports", + "出口", + "imports", + "进口", + "housing", + "住房", + "environment", + "环境", + "oceania", + "大洋洲", + "pacific", + "太平洋", + "official-statistics", + "官方统计", + "open-data", + "开放数据" + ], + "data_content": { + "en": [ + "Population and Demography - census data, population estimates, births, deaths, migration, age and ethnic distribution", + "National Accounts - GDP, gross national income, expenditure and income approaches, sector accounts", + "Labour Market - employment, unemployment, underemployment, earnings, hours worked, labour force participation", + "Prices - Consumer Price Index (CPI), Producers Price Index (PPI), housing price index, farm expenses index", + "International Trade - merchandise trade (exports and imports by commodity and country), balance of payments, current account", + "Business Statistics - business demography, industry production, retail trade, building consents", + "Housing and Construction - building consents, dwelling counts, residential property transfers", + "Agriculture - farm production, livestock numbers, horticultural crops, fisheries", + "Social Statistics - education enrolments, crime statistics, health outcomes, income and poverty indicators", + "Environment - environmental-economic accounts, greenhouse gas emissions, waste, water, biodiversity", + "Tourism - visitor arrivals and departures, tourism satellite account", + "Infoshare - interactive data portal with hundreds of statistical time series across all topics" + ], + "zh": [ + "人口与人口统计 - 人口普查数据、人口估计、出生、死亡、移民、年龄和族裔分布", + "国民账户 - GDP、国民总收入、支出法和收入法、部门账户", + "劳动力市场 - 就业、失业、就业不足、收入、工时、劳动参与率", + "价格 - 消费者价格指数(CPI)、生产者价格指数(PPI)、住房价格指数、农业支出指数", + "国际贸易 - 商品贸易(按商品和国家分类的出口和进口)、国际收支、经常账户", + "商业统计 - 企业人口统计、工业产出、零售贸易、建筑许可", + "住房与建筑 - 建筑许可、住宅数量、住宅房产转让", + "农业 - 农场产出、牲畜数量、园艺作物、渔业", + "社会统计 - 教育入学率、犯罪统计、健康结果、收入和贫困指标", + "环境 - 环境经济账户、温室气体排放、废物、水、生物多样性", + "旅游业 - 游客到达和离境、旅游卫星账户", + "Infoshare - 覆盖所有主题的数百个统计时间序列的交互式数据门户" + ] + } +} diff --git a/firstdata/sources/countries/south-america/argentina/argentina-indec.json b/firstdata/sources/countries/south-america/argentina/argentina-indec.json new file mode 100644 index 00000000..11e9b303 --- /dev/null +++ b/firstdata/sources/countries/south-america/argentina/argentina-indec.json @@ -0,0 +1,50 @@ +{ + "id": "argentina-indec", + "name": { + "en": "National Institute of Statistics and Censuses (INDEC)", + "zh": "阿根廷国家统计与普查局" + }, + "description": { + "en": "Official statistical agency of Argentina providing demographic, economic, and social data", + "zh": "阿根廷官方统计机构,提供人口、经济和社会数据" + }, + "website": "https://www.indec.gob.ar", + "data_url": "https://www.indec.gob.ar/indec/web/Nivel3-Tema-3-35", + "api_url": "https://apis.datos.gob.ar/series/api/", + "authority_level": "government", + "country": "AR", + "geographic_scope": "national", + "update_frequency": "monthly", + "domains": [ + "demographics", + "economics", + "trade", + "employment", + "social" + ], + "tags": [ + "statistics", + "argentina", + "south-america", + "government-data", + "census" + ], + "data_content": { + "en": [ + "National Census - population, housing, economic census", + "Consumer Price Index (IPC) and inflation statistics", + "Foreign trade - imports and exports by product and partner", + "Labour market - employment, unemployment, wages", + "National accounts - GDP, industrial production", + "Poverty and income distribution" + ], + "zh": [ + "国家普查 - 人口、住房、经济普查", + "消费者价格指数(IPC)和通胀统计", + "对外贸易 - 按产品和伙伴分类的进出口", + "劳动力市场 - 就业、失业、工资", + "国民账户 - GDP、工业生产", + "贫困和收入分配" + ] + } +} diff --git a/firstdata/sources/countries/south-america/brazil-cecafe.json b/firstdata/sources/countries/south-america/brazil-cecafe.json index 0fdf42b0..83e0736c 100644 --- a/firstdata/sources/countries/south-america/brazil-cecafe.json +++ b/firstdata/sources/countries/south-america/brazil-cecafe.json @@ -41,7 +41,7 @@ "罗布斯塔", "monthly-reports", "月度报告", - "CECAFE", + "cecafe", "south-america", "南美洲", "industry-association", diff --git a/firstdata/sources/countries/south-america/brazil-conab.json b/firstdata/sources/countries/south-america/brazil-conab.json index 31997d0c..7984d156 100644 --- a/firstdata/sources/countries/south-america/brazil-conab.json +++ b/firstdata/sources/countries/south-america/brazil-conab.json @@ -50,7 +50,7 @@ "农业统计", "quarterly-reports", "季度报告", - "CONAB", + "conab", "south-america", "南美洲", "government-data", diff --git a/firstdata/sources/countries/south-america/brazil-ibge.json b/firstdata/sources/countries/south-america/brazil-ibge.json index a94c7c4d..c4c9baf6 100644 --- a/firstdata/sources/countries/south-america/brazil-ibge.json +++ b/firstdata/sources/countries/south-america/brazil-ibge.json @@ -56,7 +56,7 @@ "api-available", "south-america", "南美洲", - "IBGE" + "ibge" ], "data_content": { "en": [ diff --git a/firstdata/sources/countries/south-america/brazil/brazil-bcb.json b/firstdata/sources/countries/south-america/brazil/brazil-bcb.json index 265fb6d1..d91db504 100644 --- a/firstdata/sources/countries/south-america/brazil/brazil-bcb.json +++ b/firstdata/sources/countries/south-america/brazil/brazil-bcb.json @@ -14,16 +14,16 @@ "api_url": "https://dadosabertos.bcb.gov.br/dataset", "country": "BR", "domains": [ - "monetary policy", - "financial statistics", + "monetary-policy", + "financial-statistics", "banking", - "payment systems", - "exchange rates", - "interest rates", - "credit data", - "balance of payments", - "financial stability", - "currency and coins" + "payment-systems", + "exchange-rates", + "interest-rates", + "credit-data", + "balance-of-payments", + "financial-stability", + "currency-and-coins" ], "geographic_scope": "national", "update_frequency": "daily", diff --git a/firstdata/sources/countries/south-america/brazil/brazil-mapa.json b/firstdata/sources/countries/south-america/brazil/brazil-mapa.json new file mode 100644 index 00000000..5e319af0 --- /dev/null +++ b/firstdata/sources/countries/south-america/brazil/brazil-mapa.json @@ -0,0 +1,69 @@ +{ + "id": "brazil-mapa", + "name": { + "en": "Brazil Ministry of Agriculture and Livestock", + "zh": "巴西农业和畜牧部" + }, + "description": { + "en": "The Ministry of Agriculture and Livestock (MAPA) of Brazil is the federal government body responsible for formulating and implementing policies for the development of agriculture, livestock, and agribusiness. MAPA publishes comprehensive statistics on Brazilian agricultural production, crop forecasts, phytosanitary data, animal health, rural credit, and agricultural trade. Brazil is the world's largest producer and exporter of coffee, soybeans, sugar, and orange juice, making MAPA a critical global data source for agricultural commodities.", + "zh": "巴西农业和畜牧部(MAPA)是负责制定和实施农业、畜牧业和农业综合企业发展政策的联邦政府机构。MAPA发布巴西农业生产、作物预测、植物检疫、动物卫生、农村信贷和农业贸易的综合统计数据。巴西是全球最大的咖啡、大豆、糖和橙汁生产国和出口国,使MAPA成为农产品领域的关键全球数据源。" + }, + "website": "https://www.gov.br/agricultura", + "data_url": "https://indicadores.agricultura.gov.br/agrostat/index.htm", + "api_url": null, + "authority_level": "government", + "country": "BR", + "domains": [ + "agriculture", + "livestock", + "trade", + "food-safety" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "agriculture", + "livestock", + "coffee", + "soybean", + "sugar", + "corn", + "beef", + "poultry", + "crop-forecast", + "rural-credit", + "agribusiness", + "agrostat", + "brazil", + "巴西农业", + "咖啡", + "大豆", + "农产品" + ], + "data_content": { + "en": [ + "Crop Production Statistics - Area planted, harvested, and production volumes for major crops (soybeans, corn, coffee, sugar cane, cotton)", + "AgroStat Trade Data - Brazilian agricultural export and import statistics by product, country, and state of origin", + "Coffee Statistics - Production, exports, domestic consumption, and stocks of Brazilian coffee by variety and state", + "Livestock Data - Cattle herd size, beef and poultry production, slaughter volumes, and animal health indicators", + "Crop Forecasts - Monthly crop production forecasts and harvest estimates", + "Rural Credit - Agricultural financing data, credit disbursements by program, region, and crop", + "Phytosanitary Data - Plant health surveillance, pest and disease monitoring, quarantine statistics", + "Organic Agriculture - Certified organic producers, area, and product categories", + "Agricultural Insurance - Crop insurance coverage, claims, and indemnity data by state and product", + "Grain Stocks - Official grain stock positions and storage capacity by region" + ], + "zh": [ + "作物生产统计 - 主要作物(大豆、玉米、咖啡、甘蔗、棉花)的种植面积、收获面积和产量", + "AgroStat贸易数据 - 按产品、国家和产地州分类的巴西农产品进出口统计", + "咖啡统计 - 按品种和州分类的巴西咖啡产量、出口、国内消费和库存", + "畜牧数据 - 牛群规模、牛肉和家禽产量、屠宰量和动物卫生指标", + "作物预测 - 月度作物产量预测和收成估算", + "农村信贷 - 按项目、地区和作物分类的农业融资数据和信贷发放", + "植物检疫数据 - 植物健康监测、病虫害监测、检疫统计", + "有机农业 - 认证有机生产者、面积和产品类别", + "农业保险 - 按州和产品分类的作物保险覆盖、索赔和赔偿数据", + "粮食库存 - 按地区分类的官方粮食库存状况和仓储容量" + ] + } +} diff --git a/firstdata/sources/countries/south-america/brazil/brazil-mdic-secex.json b/firstdata/sources/countries/south-america/brazil/brazil-mdic-secex.json new file mode 100644 index 00000000..62d63b41 --- /dev/null +++ b/firstdata/sources/countries/south-america/brazil/brazil-mdic-secex.json @@ -0,0 +1,61 @@ +{ + "id": "brazil-mdic-secex", + "name": { + "en": "Brazil Ministry of Development, Industry, Commerce and Services - Foreign Trade Secretariat", + "zh": "巴西发展、工业、商业和服务部外贸秘书处" + }, + "description": { + "en": "The Foreign Trade Secretariat (SECEX) under Brazil's Ministry of Development, Industry, Commerce and Services (MDIC) is the official source for Brazilian foreign trade statistics. Through its ComexStat platform, SECEX provides comprehensive and granular data on Brazil's international trade, including exports and imports by product (NCM/HS codes), country, state, port of entry, and transportation mode. The data covers all officially registered foreign trade transactions and is widely used for economic analysis and trade policy research.", + "zh": "巴西发展、工业、商业和服务部(MDIC)下属的外贸秘书处(SECEX)是巴西外贸统计的官方来源。通过其ComexStat平台,SECEX提供全面细致的巴西国际贸易数据,包括按产品(NCM/HS编码)、国家、州、入境口岸和运输方式分类的进出口数据。数据涵盖所有官方登记的外贸交易,广泛用于经济分析和贸易政策研究。" + }, + "website": "https://www.gov.br/mdic", + "data_url": "https://comexstat.mdic.gov.br/en/home", + "api_url": "https://comexstat.mdic.gov.br/en/about/api", + "authority_level": "government", + "country": "BR", + "domains": [ + "trade", + "economics", + "industry" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "foreign-trade", + "export", + "import", + "comexstat", + "trade-balance", + "hs-code", + "ncm", + "customs", + "brazil", + "trade-statistics", + "巴西贸易", + "进出口", + "外贸统计", + "贸易平衡" + ], + "data_content": { + "en": [ + "Export Statistics - Brazilian exports by product (NCM/HS), destination country, state of origin, port, and transportation mode", + "Import Statistics - Imports by product, country of origin, state of destination, entry port, and transportation mode", + "Trade Balance - Monthly and annual trade balance data with breakdown by major trading partners", + "Historical Trade Series - Long-term foreign trade time series dating back to 1997", + "Trade by Economic Block - Export and import data aggregated by economic blocs (Mercosur, EU, NAFTA, BRICS, etc.)", + "Trade by Factor Aggregate - Exports classified by technology intensity and factor content (basic, semi-manufactured, manufactured)", + "State-Level Trade Data - Foreign trade statistics disaggregated by Brazilian state", + "Commodity Trade Detail - Detailed product-level trade data at 8-digit NCM code granularity" + ], + "zh": [ + "出口统计 - 按产品(NCM/HS)、目的地国家、产地州、港口和运输方式分类的巴西出口数据", + "进口统计 - 按产品、原产国、目的地州、入境港口和运输方式分类的进口数据", + "贸易平衡 - 按主要贸易伙伴细分的月度和年度贸易平衡数据", + "历史贸易序列 - 可追溯至1997年的长期外贸时间序列", + "按经济集团贸易 - 按经济集团(南方共同市场、欧盟、北美自贸区、金砖国家等)汇总的进出口数据", + "按要素分类贸易 - 按技术密度和要素含量(初级、半制成品、制成品)分类的出口", + "州级贸易数据 - 按巴西各州细分的外贸统计", + "商品贸易明细 - 8位NCM编码粒度的详细产品级贸易数据" + ] + } +} diff --git a/firstdata/sources/countries/south-america/chile/chile-ine.json b/firstdata/sources/countries/south-america/chile/chile-ine.json new file mode 100644 index 00000000..1fe825d7 --- /dev/null +++ b/firstdata/sources/countries/south-america/chile/chile-ine.json @@ -0,0 +1,49 @@ +{ + "id": "chile-ine", + "name": { + "en": "National Statistics Institute of Chile (INE)", + "zh": "智利国家统计局" + }, + "description": { + "en": "Official statistical agency of Chile providing demographic, economic, and social statistics", + "zh": "智利官方统计机构,提供人口、经济和社会统计数据" + }, + "website": "https://www.ine.gob.cl", + "data_url": "https://www.ine.gob.cl/estadisticas", + "api_url": null, + "authority_level": "government", + "country": "CL", + "geographic_scope": "national", + "update_frequency": "monthly", + "domains": [ + "demographics", + "economics", + "employment", + "social", + "environment" + ], + "tags": [ + "statistics", + "chile", + "south-america", + "government-data" + ], + "data_content": { + "en": [ + "Population Census and demographic projections", + "Consumer Price Index (IPC) and inflation", + "Employment and labour force surveys", + "Economic activity indicators", + "Environmental statistics", + "Gender and social statistics" + ], + "zh": [ + "人口普查和人口预测", + "消费者价格指数(IPC)和通胀", + "就业和劳动力调查", + "经济活动指标", + "环境统计", + "性别和社会统计" + ] + } +} diff --git a/firstdata/sources/countries/south-america/colombia/colombia-dane.json b/firstdata/sources/countries/south-america/colombia/colombia-dane.json new file mode 100644 index 00000000..90320b26 --- /dev/null +++ b/firstdata/sources/countries/south-america/colombia/colombia-dane.json @@ -0,0 +1,81 @@ +{ + "id": "colombia-dane", + "name": { + "en": "National Administrative Department of Statistics (DANE)", + "zh": "哥伦比亚国家统计局", + "native": "Departamento Administrativo Nacional de Estadística (DANE)" + }, + "description": { + "en": "The National Administrative Department of Statistics (DANE) is Colombia's official national statistics agency, responsible for the production and dissemination of official statistics on population, economy, industry, agriculture, and social conditions. DANE conducts national censuses, household surveys, and economic censuses, and provides open data access through its statistics portal and microdata repository.", + "zh": "哥伦比亚国家统计局(DANE)是哥伦比亚官方国家统计机构,负责生产和发布有关人口、经济、工业、农业和社会状况的官方统计数据。DANE开展全国人口普查、住户调查和经济普查,并通过其统计门户网站和微观数据库提供开放数据访问。" + }, + "website": "https://www.dane.gov.co", + "data_url": "https://www.dane.gov.co/index.php/estadisticas-por-tema", + "api_url": "https://microdatos.dane.gov.co/", + "authority_level": "government", + "country": "CO", + "domains": [ + "economics", + "demographics", + "agriculture", + "social", + "employment", + "prices", + "trade" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "colombia", + "dane", + "estadisticas", + "national-statistics", + "official-statistics", + "population", + "census", + "gdp", + "cpi", + "inflation", + "labor-market", + "employment", + "household-survey", + "encuesta", + "agriculture", + "trade", + "microdata", + "哥伦比亚", + "哥伦比亚统计局", + "人口普查", + "经济统计", + "就业", + "物价", + "农业", + "南美洲" + ], + "data_content": { + "en": [ + "Population census and demographic statistics", + "GDP and national accounts", + "Consumer price index and inflation", + "Labor market and employment (GEIH survey)", + "Foreign trade statistics (imports and exports)", + "Agricultural production and crop surveys", + "Industrial and manufacturing census", + "Housing and quality of life surveys", + "Income distribution and poverty indicators", + "Microdata repository for research access" + ], + "zh": [ + "人口普查与人口统计", + "GDP与国民账户", + "消费者价格指数与通货膨胀", + "劳动力市场与就业(GEIH调查)", + "对外贸易统计(进出口)", + "农业生产与作物调查", + "工业与制造业普查", + "住房与生活质量调查", + "收入分配与贫困指标", + "供研究使用的微观数据库" + ] + } +} diff --git a/firstdata/sources/countries/south-america/peru/peru-inei.json b/firstdata/sources/countries/south-america/peru/peru-inei.json new file mode 100644 index 00000000..25810ee4 --- /dev/null +++ b/firstdata/sources/countries/south-america/peru/peru-inei.json @@ -0,0 +1,84 @@ +{ + "id": "peru-inei", + "name": { + "en": "National Institute of Statistics and Informatics of Peru (INEI)", + "zh": "秘鲁国家统计和信息学研究所" + }, + "description": { + "en": "The National Institute of Statistics and Informatics (Instituto Nacional de Estadística e Informática, INEI) is the official statistical agency of Peru, responsible for producing and disseminating official national statistics covering economic activity, population, employment, prices, trade, and social conditions. INEI conducts national censuses, household surveys, and compiles key macroeconomic indicators for Peru.", + "zh": "秘鲁国家统计和信息学研究所(INEI)是秘鲁官方统计机构,负责生产和发布涵盖经济活动、人口、就业、价格、贸易和社会状况的官方国家统计数据。INEI开展全国人口普查、家庭调查,并编制秘鲁主要宏观经济指标。" + }, + "website": "https://www.inei.gob.pe", + "data_url": "https://www.inei.gob.pe/estadisticas/", + "api_url": null, + "authority_level": "government", + "country": "PE", + "geographic_scope": "national", + "update_frequency": "monthly", + "domains": [ + "demographics", + "economics", + "employment", + "prices", + "trade", + "social", + "agriculture", + "industry" + ], + "tags": [ + "peru", + "inei", + "peru-statistics", + "instituto-nacional-estadistica", + "population-census", + "south-america", + "latin-america", + "gdp", + "national-accounts", + "cpi", + "inflation", + "employment", + "household-survey", + "poverty", + "秘鲁", + "秘鲁统计局", + "国家统计", + "人口普查", + "经济统计", + "消费价格", + "就业", + "家庭调查", + "贫困", + "拉丁美洲" + ], + "data_content": { + "en": [ + "GDP and national accounts by sector", + "Population census and demographic projections", + "Consumer price index (IPC) and inflation", + "National household survey (ENAHO) - poverty and living conditions", + "Employment and labour force survey", + "Foreign trade statistics by product and partner country", + "Industrial production and manufacturing output", + "Agricultural production statistics", + "Business and enterprise statistics", + "Health and education indicators", + "Regional and subnational statistics by department", + "Social and welfare statistics" + ], + "zh": [ + "按行业GDP与国民账户", + "人口普查与人口预测", + "消费者价格指数(IPC)与通货膨胀", + "全国家庭调查(ENAHO)- 贫困与生活条件", + "就业与劳动力调查", + "按产品和伙伴国分类的对外贸易统计", + "工业生产与制造业产出", + "农业生产统计", + "企业与工商统计", + "卫生和教育指标", + "按省份的地区和次国家统计", + "社会和福利统计" + ] + } +} diff --git a/firstdata/sources/countries/us/geology/usgs.json b/firstdata/sources/countries/us/geology/usgs.json new file mode 100644 index 00000000..6802253e --- /dev/null +++ b/firstdata/sources/countries/us/geology/usgs.json @@ -0,0 +1,61 @@ +{ + "id": "usgs", + "name": { + "en": "U.S. Geological Survey (USGS)", + "zh": "美国地质调查局" + }, + "description": { + "en": "The U.S. Geological Survey is a scientific agency of the United States government providing reliable scientific information on natural hazards, natural resources, ecosystems, environmental health, and climate change. USGS provides extensive geospatial, geological, hydrological, and biological datasets covering earthquakes, volcanoes, minerals, water resources, and land use.", + "zh": "美国地质调查局是美国政府科学机构,提供有关自然灾害、自然资源、生态系统、环境健康和气候变化的可靠科学信息。USGS提供广泛的地理空间、地质、水文和生物数据集,涵盖地震、火山、矿产、水资源和土地利用。" + }, + "website": "https://www.usgs.gov", + "data_url": "https://www.usgs.gov/products/data", + "api_url": "https://www.usgs.gov/products/web-tools/apis", + "country": "US", + "domains": [ + "geology", + "earthquakes", + "volcanoes", + "water-resources", + "mineral-resources", + "natural-hazards", + "earth-science" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "geology", + "earthquakes", + "volcanoes", + "water", + "minerals", + "natural-hazards", + "geospatial", + "open-data", + "api", + "government-data" + ], + "data_content": { + "en": [ + "Earthquake data - Real-time and historical earthquake catalog, seismic hazard maps", + "Volcano monitoring - Eruption alerts, volcanic activity data, ash advisories", + "Mineral resources - Mineral commodity data, mine locations, resource assessments", + "Water resources - Streamflow, groundwater, water quality monitoring", + "Geologic maps - National and regional geologic mapping products", + "Land cover / Land use - NLCD, remote sensing, land change monitoring", + "Natural hazards - Landslide, flood, wildfire, coastal erosion data", + "Topographic maps - National Map, elevation data, lidar surveys" + ], + "zh": [ + "地震数据 - 实时和历史地震目录、地震危险性图", + "火山监测 - 喷发预警、火山活动数据、火山灰通报", + "矿产资源 - 矿产商品数据、矿点位置、资源评估", + "水资源 - 径流、地下水、水质监测", + "地质图 - 全国和区域地质制图产品", + "土地覆盖/利用 - 国家土地覆盖数据库、遥感、土地变化监测", + "自然灾害 - 滑坡、洪水、野火、海岸侵蚀数据", + "地形图 - 国家地图、高程数据、激光雷达测量" + ] + }, + "authority_level": "government" +} diff --git a/firstdata/sources/india/technology/india-meity.json b/firstdata/sources/india/technology/india-meity.json new file mode 100644 index 00000000..921ef5a3 --- /dev/null +++ b/firstdata/sources/india/technology/india-meity.json @@ -0,0 +1,43 @@ +{ + "id": "india-meity", + "name": { + "en": "Ministry of Electronics and Information Technology of India", + "zh": "印度电子和信息技术部" + }, + "description": { + "en": "MeitY is the Indian government ministry responsible for IT policy, electronics manufacturing (including PLI scheme), digital governance, and cybersecurity. It publishes data on electronics production, exports, and digital infrastructure.", + "zh": "印度电子和信息技术部是负责IT政策、电子制造(包括PLI计划)、数字治理和网络安全的印度政府部门。发布电子产品生产、出口和数字基础设施数据。" + }, + "website": "https://www.meity.gov.in", + "data_url": "https://www.meity.gov.in/content/annual-report", + "country": "IN", + "domains": [ + "technology", + "manufacturing", + "trade" + ], + "tags": [ + "electronics", + "it-policy", + "pli-scheme", + "digital-governance" + ], + "authority_level": "government", + "update_frequency": "annual", + "geographic_scope": "national", + "data_content": { + "en": [ + "Electronics Production - Domestic electronics manufacturing output and growth", + "IT Exports - Software and IT services export revenue", + "PLI Scheme - Production Linked Incentive scheme progress and investments", + "Digital Infrastructure - Internet penetration, digital payment, and e-governance metrics" + ], + "zh": [ + "电子产品生产 - 国内电子制造产值和增长", + "IT出口 - 软件和IT服务出口收入", + "PLI计划 - 生产挂钩激励计划进展和投资", + "数字基础设施 - 互联网普及率、数字支付和电子政务指标" + ] + }, + "api_url": null +} diff --git a/firstdata/sources/international/agriculture/cgiar-research-data.json b/firstdata/sources/international/agriculture/cgiar-research-data.json index a8a4195a..20d92b66 100644 --- a/firstdata/sources/international/agriculture/cgiar-research-data.json +++ b/firstdata/sources/international/agriculture/cgiar-research-data.json @@ -14,18 +14,18 @@ "country": null, "domains": [ "agriculture", - "food security", - "climate change adaptation", - "agricultural biodiversity", - "crop science", - "livestock systems", - "water resources management", - "soil science", - "genetics and genomics", - "sustainable intensification", + "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", + "agricultural-economics", + "agricultural-policy", "agroforestry" ], "geographic_scope": "global", diff --git a/firstdata/sources/international/agriculture/faostat.json b/firstdata/sources/international/agriculture/faostat.json index 139cb4c4..1c7d18ad 100644 --- a/firstdata/sources/international/agriculture/faostat.json +++ b/firstdata/sources/international/agriculture/faostat.json @@ -14,12 +14,12 @@ "country": null, "domains": [ "agriculture", - "food security", + "food-security", "nutrition", "trade", - "climate change", + "climate-change", "environment", - "land use", + "land-use", "forestry", "fisheries", "livestock", diff --git a/firstdata/sources/international/agriculture/ico-coffee.json b/firstdata/sources/international/agriculture/ico-coffee.json new file mode 100644 index 00000000..8000d918 --- /dev/null +++ b/firstdata/sources/international/agriculture/ico-coffee.json @@ -0,0 +1,64 @@ +{ + "id": "ico-coffee", + "name": { + "en": "International Coffee Organization", + "zh": "国际咖啡组织" + }, + "description": { + "en": "The International Coffee Organization (ICO) is the main intergovernmental organization for coffee, bringing together exporting and importing countries to address challenges facing the world coffee sector through international cooperation. Established in 1963 under the auspices of the United Nations, ICO collects and publishes comprehensive statistics on global coffee production, trade, consumption, and prices, serving as the authoritative source for the international coffee market.", + "zh": "国际咖啡组织(ICO)是咖啡领域的主要政府间国际组织,汇集出口国和进口国,通过国际合作应对全球咖啡行业面临的挑战。ICO于1963年在联合国主持下成立,收集并发布全球咖啡生产、贸易、消费和价格的综合统计数据,是国际咖啡市场的权威数据来源。" + }, + "website": "https://www.ico.org", + "data_url": "https://www.ico.org/trade_statistics.asp", + "api_url": null, + "authority_level": "international", + "country": null, + "domains": [ + "agriculture", + "commodity-markets", + "trade", + "food-and-beverage" + ], + "geographic_scope": "global", + "update_frequency": "monthly", + "tags": [ + "coffee", + "咖啡", + "commodity", + "agriculture", + "trade", + "production", + "consumption", + "export", + "import", + "coffee-prices", + "arabica", + "robusta", + "ico-composite-indicator", + "国际咖啡组织", + "咖啡贸易", + "大宗商品" + ], + "data_content": { + "en": [ + "Coffee Production - Annual and monthly production data by country, broken down by Arabica and Robusta varieties", + "Coffee Trade Statistics - Exports and imports by country, form (green, roasted, soluble), and destination/origin", + "Coffee Consumption - Per capita and total consumption by country and region", + "ICO Composite Indicator Price - Daily and monthly composite and group indicator prices for coffee", + "Coffee Inventories - Certified stocks in importing countries and port stocks", + "Historical Data Series - Long-term time series dating back to the 1960s for production, trade, and prices", + "Country Coffee Profiles - Detailed statistical profiles for major producing and consuming countries", + "Market Reports - Monthly and annual coffee market reports with analysis and forecasts" + ], + "zh": [ + "咖啡产量 - 按国家和阿拉比卡/罗布斯塔品种分类的年度和月度产量数据", + "咖啡贸易统计 - 按国家、形态(生豆、烘焙、速溶)和目的地/产地分类的进出口数据", + "咖啡消费 - 按国家和地区分类的人均和总消费量", + "ICO综合指标价格 - 咖啡的每日和每月综合及分组指标价格", + "咖啡库存 - 进口国认证库存和港口库存", + "历史数据系列 - 可追溯至1960年代的产量、贸易和价格长期时间序列", + "国家咖啡概况 - 主要生产国和消费国的详细统计概况", + "市场报告 - 附带分析和预测的月度和年度咖啡市场报告" + ] + } +} diff --git a/firstdata/sources/international/climate/cdp.json b/firstdata/sources/international/climate/cdp.json new file mode 100644 index 00000000..06015ed0 --- /dev/null +++ b/firstdata/sources/international/climate/cdp.json @@ -0,0 +1,54 @@ +{ + "id": "cdp", + "name": { + "en": "CDP - Carbon Disclosure Project", + "zh": "碳信息披露项目" + }, + "description": { + "en": "CDP (formerly the Carbon Disclosure Project) runs the world's largest environmental disclosure system for companies, cities, states, and regions. Its Open Data Portal provides company-level disclosures on climate change, water security, and forests, including Scope 1/2/3 greenhouse gas emissions, climate risk assessments, and emissions-reduction targets.", + "zh": "CDP(原碳信息披露项目)运营全球最大的企业、城市、州省和地区环境信息披露系统。其开放数据门户提供公司层级的气候变化、水安全与森林披露数据,包括范围1/2/3温室气体排放、气候风险评估和减排目标。" + }, + "website": "https://www.cdp.net", + "data_url": "https://www.cdp.net/en/data", + "api_url": null, + "authority_level": "research", + "country": null, + "domains": [ + "climate", + "environment", + "finance" + ], + "geographic_scope": "global", + "update_frequency": "annual", + "tags": [ + "esg", + "环境信息披露", + "climate-disclosure", + "气候披露", + "corporate-emissions", + "企业排放", + "scope-3", + "范围三", + "carbon-disclosure", + "碳披露", + "climate-risk", + "气候风险", + "CDP" + ], + "data_content": { + "en": [ + "Corporate climate change disclosures including Scope 1/2/3 greenhouse gas emissions", + "Water security and forests disclosures from thousands of companies worldwide", + "Company climate scores (A to D-) and sector-level benchmarking", + "City and regional government environmental disclosures", + "Supply chain emissions and science-based targets data" + ], + "zh": [ + "企业气候变化披露,包括范围1/2/3温室气体排放", + "全球数千家公司的水安全与森林披露", + "公司气候评分(A至D-)和行业基准对比", + "城市和区域政府环境信息披露", + "供应链排放与科学碳目标数据" + ] + } +} diff --git a/firstdata/sources/international/climate/ecmwf.json b/firstdata/sources/international/climate/ecmwf.json new file mode 100644 index 00000000..9a0747ec --- /dev/null +++ b/firstdata/sources/international/climate/ecmwf.json @@ -0,0 +1,41 @@ +{ + "id": "ecmwf", + "name": { + "en": "European Centre for Medium-Range Weather Forecasts", + "zh": "欧洲中期天气预报中心" + }, + "description": { + "en": "ECMWF is an independent intergovernmental organisation producing global numerical weather predictions and reanalysis datasets including ERA5.", + "zh": "ECMWF是独立的政府间组织,生产全球数值天气预报和再分析数据集(包括ERA5)。" + }, + "website": "https://www.ecmwf.int", + "data_url": "https://cds.climate.copernicus.eu", + "api_url": "https://cds.climate.copernicus.eu/api", + "data_content": { + "en": [ + "Global weather forecasts", + "ERA5 reanalysis", + "seasonal predictions", + "atmospheric composition data", + "ocean wave data" + ], + "zh": [ + "全球天气预报、ERA5再分析数据、季节预测、大气成分数据、海洋波浪数据" + ] + }, + "authority_level": "international", + "update_frequency": "daily", + "domains": [ + "climate", + "environment" + ], + "tags": [ + "weather", + "era5", + "reanalysis", + "forecast", + "climate" + ], + "country": null, + "geographic_scope": "global" +} diff --git a/firstdata/sources/international/climate/ember-climate.json b/firstdata/sources/international/climate/ember-climate.json new file mode 100644 index 00000000..5cea4615 --- /dev/null +++ b/firstdata/sources/international/climate/ember-climate.json @@ -0,0 +1,34 @@ +{ + "id": "ember-climate", + "name": { + "en": "Ember Global Electricity Data", + "zh": "Ember全球电力数据平台" + }, + "description": { + "en": "Ember is an independent energy think tank that provides open, transparent data on global electricity generation and carbon emissions from the power sector. It publishes the annual Global Electricity Review and maintains comprehensive datasets covering electricity generation by source, power sector CO2 emissions, and clean energy transition progress for over 200 countries.", + "zh": "Ember是一家独立能源智库,提供全球电力生产和电力部门碳排放的开放透明数据。发布年度《全球电力评估》报告,维护覆盖200多个国家的电力生产来源、电力部门二氧化碳排放和清洁能源转型进展的综合数据集。" + }, + "website": "https://ember-climate.org", + "data_url": "https://ember-climate.org/data/", + "api_url": "https://ember-climate.org/data/data-tools/data-explorer/", + "authority_level": "research", + "country": null, + "domains": ["energy", "climate", "environment"], + "geographic_scope": "global", + "update_frequency": "monthly", + "tags": ["electricity", "电力", "carbon-emissions", "碳排放", "renewable-energy", "可再生能源", "power-sector", "clean-energy", "energy-transition", "能源转型", "coal", "煤电"], + "data_content": { + "en": [ + "Electricity generation by source (coal, gas, nuclear, wind, solar, hydro, etc.) for 200+ countries", + "Power sector CO2 emissions and carbon intensity of electricity", + "Clean energy share of electricity generation trends", + "Annual Global Electricity Review and regional analysis reports" + ], + "zh": [ + "200多个国家按来源分类的发电量(煤、气、核、风、光、水等)", + "电力部门二氧化碳排放和电力碳强度", + "清洁能源占发电量比例趋势", + "年度全球电力评估和区域分析报告" + ] + } +} diff --git a/firstdata/sources/international/climate/global-carbon-project.json b/firstdata/sources/international/climate/global-carbon-project.json new file mode 100644 index 00000000..7d6bd245 --- /dev/null +++ b/firstdata/sources/international/climate/global-carbon-project.json @@ -0,0 +1,56 @@ +{ + "id": "global-carbon-project", + "name": { + "en": "Global Carbon Project", + "zh": "全球碳项目" + }, + "description": { + "en": "The Global Carbon Project (GCP) is an international scientific consortium that coordinates and publishes the annual Global Carbon Budget, providing the authoritative assessment of anthropogenic CO2, CH4, and N2O emissions, sinks, and atmospheric concentrations. Data products include country- and sector-level fossil fuel CO2 emissions, land-use change emissions, and ocean/land carbon sink estimates.", + "zh": "全球碳项目(GCP)是国际科学联盟,负责协调并发布年度《全球碳收支》报告,提供人为二氧化碳、甲烷和氧化亚氮排放、吸收汇及大气浓度的权威评估。数据产品包括国家与行业级化石燃料二氧化碳排放、土地利用变化排放以及海洋和陆地碳汇估算。" + }, + "website": "https://www.globalcarbonproject.org", + "data_url": "https://www.globalcarbonproject.org/carbonbudget/", + "api_url": null, + "authority_level": "research", + "country": null, + "domains": [ + "climate", + "environment", + "energy" + ], + "geographic_scope": "global", + "update_frequency": "annual", + "tags": [ + "carbon-budget", + "全球碳收支", + "co2-emissions", + "二氧化碳排放", + "methane", + "甲烷", + "carbon-sink", + "碳汇", + "greenhouse-gas", + "温室气体", + "climate-change", + "气候变化", + "fossil-fuels", + "化石燃料", + "GCP" + ], + "data_content": { + "en": [ + "Annual Global Carbon Budget: fossil fuel and land-use change CO2 emissions by country and sector", + "Global methane (CH4) and nitrous oxide (N2O) budgets", + "Ocean and terrestrial carbon sink estimates", + "Historical atmospheric CO2 concentrations and growth rates", + "National emissions trajectories and per-capita emissions data" + ], + "zh": [ + "年度全球碳收支:按国家和行业划分的化石燃料与土地利用变化二氧化碳排放", + "全球甲烷(CH4)和氧化亚氮(N2O)收支", + "海洋和陆地碳汇估算", + "历史大气二氧化碳浓度与增长率", + "各国排放轨迹和人均排放数据" + ] + } +} diff --git a/firstdata/sources/international/climate/ipcc.json b/firstdata/sources/international/climate/ipcc.json new file mode 100644 index 00000000..38d3326f --- /dev/null +++ b/firstdata/sources/international/climate/ipcc.json @@ -0,0 +1,41 @@ +{ + "id": "ipcc", + "name": { + "en": "IPCC Data Distribution Centre", + "zh": "政府间气候变化专门委员会数据分发中心" + }, + "description": { + "en": "The IPCC Data Distribution Centre provides climate, socio-economic, and environmental data, both from the past and projected, to facilitate climate change research.", + "zh": "IPCC数据分发中心提供历史和预测的气候、社会经济及环境数据,用于促进气候变化研究。" + }, + "website": "https://www.ipcc-data.org", + "data_url": "https://www.ipcc-data.org/observ/index.html", + "api_url": null, + "data_content": { + "en": [ + "Climate model outputs", + "observed climate data", + "socio-economic scenarios", + "emission scenarios", + "sea level projections" + ], + "zh": [ + "气候模型输出、观测气候数据、社会经济情景、排放情景、海平面预测" + ] + }, + "authority_level": "international", + "update_frequency": "irregular", + "domains": [ + "climate", + "environment" + ], + "tags": [ + "ipcc", + "climate-change", + "greenhouse-gas", + "temperature", + "sea-level" + ], + "country": null, + "geographic_scope": "global" +} diff --git a/firstdata/sources/international/climate/unfccc.json b/firstdata/sources/international/climate/unfccc.json new file mode 100644 index 00000000..fc9952db --- /dev/null +++ b/firstdata/sources/international/climate/unfccc.json @@ -0,0 +1,51 @@ +{ + "id": "unfccc", + "name": { + "en": "UNFCCC - United Nations Framework Convention on Climate Change", + "zh": "联合国气候变化框架公约" + }, + "description": { + "en": "The UNFCCC is the international treaty framework for climate change governance. Its data portal provides access to national greenhouse gas inventories, Nationally Determined Contributions (NDCs), climate finance reports, and adaptation communications submitted by parties to the Convention and the Paris Agreement.", + "zh": "联合国气候变化框架公约是气候变化治理的国际条约框架。其数据门户提供国家温室气体清单、国家自主贡献(NDC)、气候融资报告和缔约方提交的适应通讯。" + }, + "website": "https://unfccc.int", + "data_url": "https://di.unfccc.int", + "api_url": "https://di.unfccc.int/api", + "authority_level": "international", + "country": null, + "domains": [ + "climate", + "environment", + "energy" + ], + "geographic_scope": "global", + "update_frequency": "annual", + "tags": [ + "climate-change", + "气候变化", + "greenhouse-gas", + "温室气体", + "ndc", + "国家自主贡献", + "paris-agreement", + "巴黎协定", + "carbon-neutrality", + "碳中和", + "emissions-inventory", + "排放清单" + ], + "data_content": { + "en": [ + "National greenhouse gas inventory data reported by 197 parties", + "Nationally Determined Contributions (NDCs) and implementation progress", + "Climate finance flows from developed to developing countries", + "National adaptation plans and communications" + ], + "zh": [ + "197个缔约方报告的国家温室气体清单数据", + "国家自主贡献(NDC)及实施进展", + "发达国家向发展中国家的气候融资流量", + "国家适应计划和通讯" + ] + } +} diff --git a/firstdata/sources/international/construction/eu-construction.json b/firstdata/sources/international/construction/eu-construction.json new file mode 100644 index 00000000..282066cd --- /dev/null +++ b/firstdata/sources/international/construction/eu-construction.json @@ -0,0 +1,52 @@ +{ + "id": "eu-construction", + "name": { + "en": "European Commission - Construction and Buildings", + "zh": "欧盟委员会 - 建筑与建设", + "native": "European Commission - Construction and Buildings" + }, + "description": { + "en": "The European Commission provides comprehensive data on EU construction policies, the Construction Products Regulation (CPR), Energy Performance of Buildings Directive (EPBD), and the European construction industry. Covers sustainable construction, building renovation, and harmonized standards for construction products.", + "zh": "欧盟委员会提供欧盟建筑政策、建筑产品法规(CPR)、建筑能源性能指令(EPBD)和欧洲建筑行业的综合数据。涵盖可持续建筑、建筑翻新和建筑产品协调标准。" + }, + "website": "https://single-market-economy.ec.europa.eu/sectors/construction_en", + "data_url": "https://ec.europa.eu/growth/sectors/construction_en", + "api_url": null, + "country": null, + "domains": [ + "construction", + "regulation", + "energy-efficiency", + "standards" + ], + "geographic_scope": "regional", + "update_frequency": "quarterly", + "tags": [ + "eu", + "construction", + "building-regulation", + "energy-performance", + "sustainable-construction", + "construction-products", + "harmonized-standards" + ], + "data_content": { + "en": [ + "Construction Products Regulation - Harmonized standards and CE marking requirements for construction products", + "Energy Performance of Buildings - EPBD implementation data and nearly zero-energy building (NZEB) statistics", + "Building Renovation Wave - EU building renovation strategy data and progress indicators", + "Construction Industry Statistics - EU construction sector output, employment, and investment data", + "Sustainable Construction - Environmental assessment methods and sustainability criteria for buildings", + "Eurocodes - Structural design standards for buildings and civil engineering works" + ], + "zh": [ + "建筑产品法规 - 建筑产品协调标准和CE标志要求", + "建筑能源性能 - EPBD实施数据和近零能耗建筑(NZEB)统计", + "建筑翻新浪潮 - 欧盟建筑翻新战略数据和进展指标", + "建筑行业统计 - 欧盟建筑行业产出、就业和投资数据", + "可持续建筑 - 建筑环境评估方法和可持续性标准", + "欧洲规范 - 建筑和土木工程结构设计标准" + ] + }, + "authority_level": "international" +} \ No newline at end of file diff --git a/firstdata/sources/international/construction/iso-construction.json b/firstdata/sources/international/construction/iso-construction.json new file mode 100644 index 00000000..37c08ac1 --- /dev/null +++ b/firstdata/sources/international/construction/iso-construction.json @@ -0,0 +1,49 @@ +{ + "id": "iso-construction", + "name": { + "en": "ISO Technical Committee 59 - Buildings and Civil Engineering Works", + "zh": "ISO技术委员会59 - 建筑与土木工程", + "native": "ISO/TC 59 - Buildings and civil engineering works" + }, + "description": { + "en": "ISO Technical Committee 59 develops international standards for buildings and civil engineering works, including sustainability in buildings, design life, tolerances, and modular coordination. Covers environmental performance, building information modeling (BIM), and structural safety standards.", + "zh": "ISO技术委员会59制定建筑和土木工程国际标准,包括建筑可持续性、设计使用年限、公差和模块化协调。涵盖环境性能、建筑信息模型(BIM)和结构安全标准。" + }, + "website": "https://www.iso.org/committee/49070.html", + "data_url": "https://www.iso.org/committee/49070/x/catalogue/", + "api_url": null, + "country": null, + "domains": [ + "construction", + "standards", + "sustainability" + ], + "geographic_scope": "global", + "update_frequency": "quarterly", + "tags": [ + "iso", + "construction", + "building-standards", + "sustainability", + "bim", + "civil-engineering", + "international-standards" + ], + "data_content": { + "en": [ + "Building Sustainability Standards - ISO 15392 and related environmental performance standards", + "Design Life Standards - Service life planning for buildings and constructed assets", + "BIM Standards - Building Information Modeling data exchange standards (ISO 19650 series)", + "Modular Coordination - Dimensional coordination standards for building components", + "Structural Safety - Performance requirements for structural safety and serviceability" + ], + "zh": [ + "建筑可持续性标准 - ISO 15392及相关环境性能标准", + "设计使用年限标准 - 建筑和建造资产的使用寿命规划", + "BIM标准 - 建筑信息模型数据交换标准(ISO 19650系列)", + "模块化协调 - 建筑构件尺寸协调标准", + "结构安全 - 结构安全性和适用性的性能要求" + ] + }, + "authority_level": "international" +} \ No newline at end of file diff --git a/firstdata/sources/international/construction/us-hud.json b/firstdata/sources/international/construction/us-hud.json new file mode 100644 index 00000000..ec78a788 --- /dev/null +++ b/firstdata/sources/international/construction/us-hud.json @@ -0,0 +1,55 @@ +{ + "id": "us-hud", + "name": { + "en": "U.S. Department of Housing and Urban Development", + "zh": "美国住房和城市发展部", + "native": "U.S. Department of Housing and Urban Development" + }, + "description": { + "en": "The U.S. Department of Housing and Urban Development (HUD) provides data on housing markets, building codes, fair housing regulations, community development programs, and housing affordability. It offers comprehensive datasets on rental markets, homeownership, housing discrimination, and public housing.", + "zh": "美国住房和城市发展部(HUD)提供住房市场、建筑规范、公平住房法规、社区发展项目和住房可负担性数据。提供租赁市场、房屋所有权、住房歧视和公共住房的综合数据集。" + }, + "website": "https://www.hud.gov", + "data_url": "https://www.huduser.gov/portal/datasets/", + "api_url": "https://www.huduser.gov/hudapi/public/", + "country": "US", + "domains": [ + "construction", + "housing", + "urban-development", + "real-estate" + ], + "geographic_scope": "national", + "update_frequency": "quarterly", + "tags": [ + "usa", + "hud", + "housing", + "construction", + "building-codes", + "urban-development", + "fair-housing", + "real-estate" + ], + "data_content": { + "en": [ + "Housing Market Data - National and regional housing market indicators and trends", + "Building Codes - Federal building standards and manufactured housing construction codes", + "Fair Housing Data - Housing discrimination complaints and enforcement actions", + "Affordable Housing - Low-income housing tax credit data and Section 8 voucher statistics", + "Public Housing - Public housing inventory, occupancy, and condition data", + "Community Development - Community Development Block Grant (CDBG) allocation data", + "Housing Finance - FHA mortgage insurance data and housing counseling statistics" + ], + "zh": [ + "住房市场数据 - 全国及地区住房市场指标和趋势", + "建筑规范 - 联邦建筑标准和制造住房建设规范", + "公平住房数据 - 住房歧视投诉和执法行动", + "经济适用房 - 低收入住房税收抵免数据和第8条代金券统计", + "公共住房 - 公共住房库存、入住率和状况数据", + "社区发展 - 社区发展整体拨款(CDBG)分配数据", + "住房金融 - FHA抵押贷款保险数据和住房咨询统计" + ] + }, + "authority_level": "government" +} diff --git a/firstdata/sources/international/demographics/unfpa-china.json b/firstdata/sources/international/demographics/unfpa-china.json new file mode 100644 index 00000000..7a9b9091 --- /dev/null +++ b/firstdata/sources/international/demographics/unfpa-china.json @@ -0,0 +1,86 @@ +{ + "id": "unfpa-china", + "name": { + "en": "UNFPA China", + "zh": "联合国人口基金驻华代表处" + }, + "description": { + "en": "UNFPA is the United Nations sexual and reproductive health agency. UNFPA China works to ensure that every pregnancy is wanted, every childbirth is safe and every young person's potential is fulfilled. Since 1979, UNFPA has contributed to strengthened capacity for demographic analyses, policy planning, and addressing priorities related to population dynamics, youth empowerment, gender equality, and sexual and reproductive health.", + "zh": "联合国人口基金是联合国性与生殖健康机构。联合国人口基金驻华代表处致力于确保每个妊娠都是自愿的,每次分娩都是安全的,每个年轻人的潜力都能得到充分发挥。自1979年以来,联合国人口基金为加强人口分析、政策规划能力做出贡献,并致力于解决人口动态、青年赋能、性别平等以及性与生殖健康等重点问题。" + }, + "website": "https://china.unfpa.org/en", + "data_url": "https://china.unfpa.org/en/publications", + "api_url": null, + "authority_level": "international", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "population", + "demographics", + "health", + "reproductive-health", + "gender-equality", + "youth-development", + "sustainable-development" + ], + "update_frequency": "irregular", + "tags": [ + "population", + "人口", + "demographics", + "人口统计", + "census", + "人口普查", + "fertility", + "生育率", + "reproductive-health", + "生殖健康", + "maternal-health", + "孕产妇健康", + "gender-equality", + "性别平等", + "youth", + "青年", + "aging", + "老龄化", + "urbanization", + "城镇化", + "sustainable-development", + "可持续发展", + "sdg", + "united-nations", + "联合国", + "unfpa", + "人口基金", + "population-dynamics", + "人口动态", + "sex-ratio", + "性别比", + "migration", + "人口迁移", + "poverty", + "贫困" + ], + "data_content": { + "en": [ + "Population census data and analysis from China's National Population Censuses (including the Seventh Census in 2020)", + "Demographic trends including fertility rates, sex ratio at birth, aging population, and urbanization", + "Sexual and reproductive health data and indicators", + "Gender equality and women's empowerment statistics", + "Youth development and adolescent health data", + "State of World Population reports with China-specific analysis", + "Population data for sustainable development goals (SDG) tracking", + "Multi-dimensional poverty and migration data" + ], + "zh": [ + "中国人口普查数据和分析(包括2020年第七次人口普查)", + "人口趋势数据,包括生育率、出生性别比、人口老龄化和城镇化", + "性与生殖健康数据和指标", + "性别平等和妇女赋权统计数据", + "青年发展和青少年健康数据", + "世界人口状况报告及中国专题分析", + "可持续发展目标(SDG)追踪的人口数据", + "多维贫困和人口迁移数据" + ] + } +} diff --git a/firstdata/sources/international/demographics/unfpa-urbanization.json b/firstdata/sources/international/demographics/unfpa-urbanization.json new file mode 100644 index 00000000..c4984c76 --- /dev/null +++ b/firstdata/sources/international/demographics/unfpa-urbanization.json @@ -0,0 +1,85 @@ +{ + "id": "unfpa-urbanization", + "name": { + "zh": "联合国人口基金 - 城镇化数据", + "en": "UNFPA - Urbanization Data" + }, + "description": { + "zh": "联合国人口基金(UNFPA)提供全球及中国城镇化趋势分析报告和数据。涵盖全球城市化进程、贫民窟人口、城市增长预测等主题,支持各国制定有效的城市发展政策和人口健康项目。UNFPA自1979年起在中国开展合作,提供人口分析、城镇化、老龄化、性别比等领域的数据支持。", + "en": "The United Nations Population Fund (UNFPA) provides global and China urbanization trend analysis reports and data. Covering topics such as global urbanization processes, slum populations, urban growth projections, and supporting countries in developing effective urban development policies and population health programs. UNFPA has been working in China since 1979, providing data support in areas such as demographic analysis, urbanization, aging, and sex ratios." + }, + "website": "https://www.unfpa.org", + "data_url": "https://www.unfpa.org/urbanization", + "api_url": null, + "authority_level": "international", + "country": null, + "geographic_scope": "global", + "update_frequency": "annual", + "domains": [ + "demographics", + "urbanization", + "population-development", + "slums", + "reproductive-health", + "gender-equality" + ], + "data_content": { + "zh": [ + "全球城镇化趋势和预测(2007-2050年)", + "中国人口中长期变动趋势预测(2021-2050年)", + "贫民窟人口统计(1990-2020年,全球约11亿人)", + "城市人口占比数据(2007年首次超过50%,2050年预计达68%)", + "中国流动人口报告(2018)", + "世界人口状况报告(年度)", + "中国城镇化率数据(2020年达63.9%)", + "青少年人口状况统计", + "性别比失衡分析", + "生殖健康服务数据" + ], + "en": [ + "Global urbanization trends and projections (2007-2050)", + "China population projection (2021-2050)", + "Slum population statistics (1990-2020, globally ~1.1 billion people)", + "Urban population percentage (crossed 50% in 2007, projected 68% by 2050)", + "China internal migration report (2018)", + "State of World Population reports (annual)", + "China urbanization rate (63.9% in 2020)", + "Adolescent population statistics", + "Sex ratio imbalance analysis", + "Reproductive health service data" + ] + }, + "tags": [ + "联合国", + "人口基金", + "unfpa", + "united-nations", + "population-fund", + "城镇化", + "城市化", + "urbanization", + "贫民窟", + "slums", + "人口预测", + "population-projections", + "中国人口", + "china-population", + "流动人口", + "migration", + "internal-migration", + "老龄化", + "aging", + "世界人口状况", + "state-of-world-population", + "人口发展", + "demographic-trends", + "性别比", + "sex-ratio", + "生殖健康", + "reproductive-health", + "gender-equality", + "性别平等", + "青少年", + "adolescents" + ] +} diff --git a/firstdata/sources/international/development/adb-data-library.json b/firstdata/sources/international/development/adb-data-library.json index f6006d91..6690bf06 100644 --- a/firstdata/sources/international/development/adb-data-library.json +++ b/firstdata/sources/international/development/adb-data-library.json @@ -15,20 +15,20 @@ "country": null, "domains": [ "economics", - "development finance", - "social statistics", + "development-finance", + "social-statistics", "infrastructure", - "climate change", - "public finance", + "climate-change", + "public-finance", "trade", - "balance of payments", - "labor market", - "poverty and inequality", + "balance-of-payments", + "labor-market", + "poverty-and-inequality", "education", "health", "energy", "environment", - "regional integration" + "regional-integration" ], "geographic_scope": "regional", "update_frequency": "quarterly", diff --git a/firstdata/sources/international/development/adb-key-indicators.json b/firstdata/sources/international/development/adb-key-indicators.json index 2e76f1b5..6b962075 100644 --- a/firstdata/sources/international/development/adb-key-indicators.json +++ b/firstdata/sources/international/development/adb-key-indicators.json @@ -15,16 +15,16 @@ "domains": [ "economics", "finance", - "social development", + "social-development", "demographics", "environment", "infrastructure", "energy", "transportation", "communications", - "government finance", + "government-finance", "trade", - "sustainable development goals" + "sustainable-development-goals" ], "geographic_scope": "regional", "update_frequency": "annual", diff --git a/firstdata/sources/international/development/afdb.json b/firstdata/sources/international/development/afdb.json index adce9a08..d25a85f2 100644 --- a/firstdata/sources/international/development/afdb.json +++ b/firstdata/sources/international/development/afdb.json @@ -13,13 +13,13 @@ "api_url": "http://dataportal.opendataforafrica.org/", "country": null, "domains": [ - "development finance", - "economic statistics", - "social development", + "development-finance", + "economic-statistics", + "social-development", "infrastructure", "agriculture", "energy", - "climate change", + "climate-change", "governance", "health", "education" @@ -32,11 +32,11 @@ "economic-development", "social-development", "infrastructure", - "SDGs", + "sdgs", "multilateral-development-bank", "open-data", "project-data", - "IATI" + "iati" ], "data_content": { "en": [ diff --git a/firstdata/sources/international/development/aiddata.json b/firstdata/sources/international/development/aiddata.json new file mode 100644 index 00000000..6d3b760e --- /dev/null +++ b/firstdata/sources/international/development/aiddata.json @@ -0,0 +1,51 @@ +{ + "id": "aiddata", + "name": { + "en": "AidData - Global Development Finance", + "zh": "AidData全球发展援助数据库" + }, + "description": { + "en": "AidData is a research lab at William & Mary's Global Research Institute that tracks and geocodes international development finance from major bilateral and multilateral donors. It provides the most comprehensive dataset on Chinese overseas development finance and publishes project-level data covering aid, debt, and investment flows to developing countries.", + "zh": "AidData是威廉与玛丽学院全球研究所的研究实验室,追踪和地理编码主要双边及多边捐助方的国际发展融资。提供最全面的中国海外发展融资数据集,发布覆盖对发展中国家援助、债务和投资流向的项目级数据。" + }, + "website": "https://www.aiddata.org", + "data_url": "https://www.aiddata.org/datasets", + "api_url": null, + "authority_level": "research", + "country": null, + "domains": [ + "development", + "economics", + "finance" + ], + "geographic_scope": "global", + "update_frequency": "irregular", + "tags": [ + "development-aid", + "发展援助", + "oda", + "foreign-aid", + "对外援助", + "geocoded", + "地理编码", + "china-overseas-finance", + "中国海外融资", + "belt-and-road", + "一带一路", + "development-finance" + ], + "data_content": { + "en": [ + "Geocoded project-level data on international development finance from 2000 to present", + "Chinese overseas development finance tracking (loans, grants, technical assistance)", + "Bilateral and multilateral aid flow data with geographic coordinates", + "Development effectiveness research and impact evaluations" + ], + "zh": [ + "2000年至今的地理编码项目级国际发展融资数据", + "中国海外发展融资追踪(贷款、赠款、技术援助)", + "带有地理坐标的双边及多边援助流量数据", + "发展有效性研究和影响评估" + ] + } +} diff --git a/firstdata/sources/international/development/caf.json b/firstdata/sources/international/development/caf.json index 61d20f33..3e23979e 100644 --- a/firstdata/sources/international/development/caf.json +++ b/firstdata/sources/international/development/caf.json @@ -14,23 +14,23 @@ "api_url": null, "country": null, "domains": [ - "development finance", - "economic development", + "development-finance", + "economic-development", "infrastructure", - "energy transition", - "climate finance", - "social development", + "energy-transition", + "climate-finance", + "social-development", "education", "health", - "water resources", + "water-resources", "transportation", - "digital transformation", + "digital-transformation", "innovation", "agriculture", - "environmental sustainability", - "climate resilience", - "urban development", - "regional integration" + "environmental-sustainability", + "climate-resilience", + "urban-development", + "regional-integration" ], "geographic_scope": "regional", "update_frequency": "annual", diff --git a/firstdata/sources/international/development/caribbean-development-bank.json b/firstdata/sources/international/development/caribbean-development-bank.json index 4405c455..23b4d9cc 100644 --- a/firstdata/sources/international/development/caribbean-development-bank.json +++ b/firstdata/sources/international/development/caribbean-development-bank.json @@ -13,16 +13,16 @@ "api_url": null, "country": null, "domains": [ - "development finance", - "economic development", + "development-finance", + "economic-development", "infrastructure", "education", "health", "agriculture", - "social development", - "environmental sustainability", - "climate resilience", - "poverty reduction" + "social-development", + "environmental-sustainability", + "climate-resilience", + "poverty-reduction" ], "geographic_scope": "regional", "update_frequency": "annual", diff --git a/firstdata/sources/international/development/idb.json b/firstdata/sources/international/development/idb.json index 6caa640f..cdf0ab41 100644 --- a/firstdata/sources/international/development/idb.json +++ b/firstdata/sources/international/development/idb.json @@ -13,17 +13,17 @@ "api_url": "https://data.iadb.org/dataset/", "country": null, "domains": [ - "development finance", - "macroeconomic statistics", - "fiscal policy", - "social development", + "development-finance", + "macroeconomic-statistics", + "fiscal-policy", + "social-development", "education", "health", - "labor markets", - "trade and integration", + "labor-markets", + "trade-and-integration", "agriculture", - "public sector", - "financial sector" + "public-sector", + "financial-sector" ], "geographic_scope": "regional", "update_frequency": "quarterly", diff --git a/firstdata/sources/international/development/undp-hdr.json b/firstdata/sources/international/development/undp-hdr.json new file mode 100644 index 00000000..9e5f060c --- /dev/null +++ b/firstdata/sources/international/development/undp-hdr.json @@ -0,0 +1,64 @@ +{ + "id": "undp-hdr", + "name": { + "en": "UNDP Human Development Reports", + "zh": "联合国开发计划署人类发展报告" + }, + "description": { + "en": "The United Nations Development Programme (UNDP) Human Development Report Office publishes the Human Development Index (HDI) and related composite indices since 1990. It provides authoritative data on human development across 190+ countries, including education, health, income, inequality, gender, and multidimensional poverty indicators. The HDI is the world's most widely cited measure of national development beyond GDP.", + "zh": "联合国开发计划署(UNDP)人类发展报告办公室自1990年起发布人类发展指数(HDI)及相关综合指数。它提供190多个国家的人类发展权威数据,涵盖教育、健康、收入、不平等、性别和多维贫困指标。HDI是全球引用最广泛的超越GDP的国家发展衡量指标。" + }, + "website": "https://hdr.undp.org", + "data_url": "https://hdr.undp.org/data-center", + "api_url": null, + "country": null, + "domains": [ + "development", + "social", + "economics", + "education", + "health" + ], + "geographic_scope": "global", + "update_frequency": "annual", + "tags": [ + "hdi", + "human-development", + "poverty", + "inequality", + "education", + "health", + "undp", + "人类发展指数", + "贫困", + "不平等", + "发展指标", + "mpi", + "gii", + "gender", + "sustainable-development" + ], + "data_content": { + "en": [ + "Human Development Index (HDI) - composite index of life expectancy, education, and income", + "Inequality-adjusted HDI (IHDI) - HDI adjusted for inequality in each dimension", + "Gender Development Index (GDI) - gender gaps in human development", + "Gender Inequality Index (GII) - gender-based disadvantage across health, empowerment, labor", + "Multidimensional Poverty Index (MPI) - non-income poverty across health, education, living standards", + "Planetary pressures-adjusted HDI (PHDI) - sustainability-adjusted development measure", + "Country profiles and dashboards - detailed statistics for 190+ countries", + "Historical time series data from 1990 onwards" + ], + "zh": [ + "人类发展指数(HDI)- 预期寿命、教育和收入的综合指数", + "不平等调整人类发展指数(IHDI)- 按各维度不平等调整的HDI", + "性别发展指数(GDI)- 人类发展中的性别差距", + "性别不平等指数(GII)- 健康、赋权、劳动方面的性别劣势", + "多维贫困指数(MPI)- 健康、教育、生活水平方面的非收入贫困", + "行星压力调整HDI(PHDI)- 可持续发展调整的发展指标", + "国家概况和仪表板 - 190多个国家的详细统计", + "1990年以来的历史时间序列数据" + ] + }, + "authority_level": "international" +} diff --git a/firstdata/sources/international/earth-science/copernicus-data-space.json b/firstdata/sources/international/earth-science/copernicus-data-space.json index 68c377a9..05998b52 100644 --- a/firstdata/sources/international/earth-science/copernicus-data-space.json +++ b/firstdata/sources/international/earth-science/copernicus-data-space.json @@ -13,13 +13,13 @@ "api_url": "https://documentation.dataspace.copernicus.eu", "country": null, "domains": [ - "earth observation", - "remote sensing", - "climate change", - "land monitoring", - "ocean monitoring", - "atmosphere monitoring", - "emergency management", + "earth-observation", + "remote-sensing", + "climate-change", + "land-monitoring", + "ocean-monitoring", + "atmosphere-monitoring", + "emergency-management", "agriculture", "forestry" ], diff --git a/firstdata/sources/international/economics/adb-ado.json b/firstdata/sources/international/economics/adb-ado.json index 6fa1ad67..e2d5482a 100644 --- a/firstdata/sources/international/economics/adb-ado.json +++ b/firstdata/sources/international/economics/adb-ado.json @@ -2,97 +2,67 @@ "id": "adb-ado", "name": { "en": "Asian Development Outlook", - "zh": "亚洲开发展望" + "zh": "亚洲发展展望" }, "description": { - "en": "The Asian Development Outlook (ADO) is the flagship economic analysis publication of the Asian Development Bank. Published quarterly (April, July, September, and December), it provides comprehensive GDP growth forecasts, inflation rate projections, and economic analysis for 46 ADB developing member economies across five subregions: Caucasus and Central Asia, East Asia, South Asia, Southeast Asia, and The Pacific. The ADO delivers evidence-based policy recommendations for policymakers to address economic and development challenges in the Asia-Pacific region.", - "zh": "亚洲开发展望(ADO)是亚洲开发银行的旗舰经济分析出版物。该报告每季度发布一次(4月、7月、9月和12月),为亚行46个发展中成员经济体提供全面的GDP增长预测、通货膨胀率预测和经济分析,涵盖五个次区域:高加索和中亚、东亚、南亚、东南亚和太平洋地区。ADO为政策制定者提供基于证据的政策建议,以应对亚太地区的经济和发展挑战。" + "en": "The Asian Development Outlook (ADO) is the Asian Development Bank's flagship annual economic publication that analyzes economic and development issues in developing countries across Asia and the Pacific. It provides comprehensive GDP growth and inflation forecasts, examines social development issues, and offers policy recommendations for regional economies. Published quarterly with editions in April, July, September, and December.", + "zh": "亚洲发展展望(ADO)是亚洲开发银行的旗舰年度经济出版物,分析亚洲及太平洋地区发展中国家的经济和发展问题。它提供全面的GDP增长和通货膨胀预测,考察社会发展问题,并为区域经济提供政策建议。每年发布四次,分别在4月、7月、9月和12月出版。" }, - "website": "https://www.adb.org", - "data_url": "https://www.adb.org/outlook", + "website": "https://www.adb.org/", + "data_url": "https://www.adb.org/publications/series/asian-development-outlook", "api_url": null, + "authority_level": "international", "country": null, "domains": [ "economics", - "economic forecasting", - "macroeconomics", "finance", - "development economics", - "gdp growth", - "inflation", - "poverty analysis", - "regional economics", - "public sector management" + "development", + "social" ], "geographic_scope": "regional", "update_frequency": "quarterly", "tags": [ - "asian-development-bank", "adb", - "ado", - "asian-development-outlook", + "asian-development-bank", "亚洲开发银行", - "亚洲开发展望", - "economic-forecasting", - "经济预测", + "ado", + "economic-outlook", + "经济展望", "gdp-growth", - "gdp", - "国内生产总值", - "经济增长", + "GDP增长", "inflation", "通货膨胀", + "economic-forecast", + "经济预测", "asia-pacific", "亚太地区", - "developing-economies", - "发展中经济体", - "macroeconomic-indicators", - "宏观经济指标", - "economic-outlook", - "经济展望", - "regional-economics", - "区域经济", - "development-analysis", - "发展分析", - "poverty", - "贫困", - "china", - "中国", - "india", - "印度", - "southeast-asia", - "东南亚", - "central-asia", - "中亚", - "caucasus", - "高加索", - "pacific-islands", - "太平洋岛国" + "developing-countries", + "发展中国家", + "economic-analysis", + "经济分析", + "development-policy", + "发展政策" ], "data_content": { "en": [ - "GDP Growth Forecasts - Quarterly projections for 46 developing member economies across the Asia-Pacific region", - "Inflation Rate Projections - Consumer price index forecasts and inflation analysis", - "Economic Analysis by Subregion - Detailed analysis for Caucasus and Central Asia (11 countries), East Asia (2 countries), South Asia (6 countries), Southeast Asia (8 countries), and The Pacific (15 countries)", - "Macroeconomic Indicators - Comprehensive economic statistics including fiscal policy, monetary policy, trade balance, and current account data", - "Development Trends - Analysis of poverty reduction, inclusive growth, and sustainable development progress", - "Risk Assessment - Evaluation of economic risks including global conditions, commodity prices, financial market volatility, and geopolitical factors", - "Policy Recommendations - Evidence-based policy guidance for economic development and crisis response for policymakers", - "Country-Specific Forecasts - Individual economic outlooks for major economies including China, India, and other developing Asian countries", - "Regional Economic Integration - Analysis of trade flows, investment patterns, and regional cooperation initiatives", - "Statistical Tables - Downloadable economic data linked to ADB Data Library" + "GDP growth forecasts for developing Asian economies", + "Inflation rate projections and analysis", + "Subregional economic assessments (5 subregions)", + "Country-level economic indicators and trends", + "Social development indicators and analysis", + "Development policy recommendations", + "Economic risk assessments", + "Macroeconomic statistics and historical data" ], "zh": [ - "GDP增长预测 - 亚太地区46个发展中成员经济体的季度增长预测", - "通货膨胀率预测 - 消费者价格指数预测和通胀分析", - "分次区域经济分析 - 高加索和中亚(11国)、东亚(2国)、南亚(6国)、东南亚(8国)和太平洋地区(15国)的详细分析", - "宏观经济指标 - 包括财政政策、货币政策、贸易平衡和经常账户数据在内的综合经济统计", - "发展趋势 - 减贫、包容性增长和可持续发展进展分析", - "风险评估 - 经济风险评估,包括全球环境、大宗商品价格、金融市场波动和地缘政治因素", - "政策建议 - 为政策制定者提供基于证据的经济发展和危机应对政策指导", - "国别预测 - 包括中国、印度等主要经济体的单独经济展望", - "区域经济一体化 - 贸易流动、投资模式和区域合作倡议分析", - "统计表格 - 可下载的经济数据,链接到亚行数据库" + "亚洲发展中经济体的GDP增长预测", + "通货膨胀率预测和分析", + "次区域经济评估(5个次区域)", + "国家级经济指标和趋势", + "社会发展指标和分析", + "发展政策建议", + "经济风险评估", + "宏观经济统计和历史数据" ] - }, - "authority_level": "international" + } } diff --git a/firstdata/sources/international/economics/adb-vietnam-data.json b/firstdata/sources/international/economics/adb-vietnam-data.json new file mode 100644 index 00000000..b3fcb2fd --- /dev/null +++ b/firstdata/sources/international/economics/adb-vietnam-data.json @@ -0,0 +1,77 @@ +{ + "id": "adb-vietnam-data", + "name": { + "en": "Asian Development Bank - Vietnam Country Data", + "zh": "亚洲开发银行越南国别数据" + }, + "description": { + "en": "Comprehensive economic development data and statistics for Vietnam provided by the Asian Development Bank (ADB). The platform provides country-specific economic indicators including GDP growth forecasts, inflation rates, poverty statistics, development project performance metrics, key economic and social indicators, and cofinancing data. ADB's Vietnam data supports policy analysis and tracks the country's economic performance and development progress across multiple sectors.", + "zh": "亚洲开发银行(ADB)提供的越南综合经济发展数据和统计资料。该平台提供特定国家的经济指标,包括GDP增长预测、通货膨胀率、贫困统计、发展项目绩效指标、关键经济和社会指标,以及联合融资数据。亚行的越南数据支持政策分析,跟踪该国在多个部门的经济表现和发展进展。" + }, + "website": "https://www.adb.org", + "data_url": "https://www.adb.org/countries/viet-nam/data", + "api_url": null, + "country": "VN", + "domains": [ + "economics", + "development", + "finance", + "poverty", + "social-development", + "infrastructure" + ], + "geographic_scope": "national", + "update_frequency": "quarterly", + "tags": [ + "asian-development-bank", + "adb", + "vietnam", + "viet-nam", + "economic-indicators", + "gdp-forecast", + "inflation", + "poverty-statistics", + "development-projects", + "economic-growth", + "key-indicators", + "country-data", + "quarterly-data", + "亚洲开发银行", + "亚行", + "越南", + "经济指标", + "GDP预测", + "通货膨胀", + "贫困统计", + "发展项目", + "经济增长", + "关键指标", + "国别数据", + "季度数据" + ], + "data_content": { + "en": [ + "Economic Forecasts - GDP growth projections (6.7% in 2025, 6.0% in 2026), inflation forecasts (3.9% in 2025, 3.8% in 2026)", + "Key Economic Indicators - Comprehensive economic, financial, social, environmental, and SDG indicators for Vietnam", + "Poverty Statistics - Poverty levels, trends, and poverty reduction metrics", + "Development Project Performance - Success rates database (2000-2018), results tracking of ADB-supported operations", + "Cofinancing Data - Information on projects cofinanced during 2014-2018", + "Country Dashboard - Latest selected data on Vietnam's economy, poverty, socioeconomic development, and cumulative ADB assistance", + "Input-Output Economic Indicators - Statistics for analyzing cross-border production arrangements at local, regional, and global levels", + "GNI per capita - National income measurements", + "Asian Development Outlook Data - Regular economic analysis and forecasts specific to Vietnam" + ], + "zh": [ + "经济预测 - GDP增长预测(2025年6.7%,2026年6.0%)、通货膨胀预测(2025年3.9%,2026年3.8%)", + "关键经济指标 - 越南的综合经济、金融、社会、环境和可持续发展目标指标", + "贫困统计 - 贫困水平、趋势和减贫指标", + "发展项目绩效 - 成功率数据库(2000-2018)、亚行支持项目的成果跟踪", + "联合融资数据 - 2014-2018年期间联合融资项目信息", + "国家仪表板 - 越南经济、贫困、社会经济发展和亚行累计援助的最新精选数据", + "投入产出经济指标 - 用于分析地方、区域和全球层面跨境生产安排的统计数据", + "人均国民总收入 - 国民收入测量", + "亚洲发展展望数据 - 针对越南的定期经济分析和预测" + ] + }, + "authority_level": "international" +} diff --git a/firstdata/sources/international/economics/adb.json b/firstdata/sources/international/economics/adb.json new file mode 100644 index 00000000..f92c8201 --- /dev/null +++ b/firstdata/sources/international/economics/adb.json @@ -0,0 +1,110 @@ +{ + "id": "adb", + "name": { + "en": "Asian Development Bank Data", + "zh": "亚洲开发银行数据" + }, + "description": { + "en": "Asian Development Bank (ADB) is a leading multilateral development bank supporting inclusive, resilient, and sustainable growth across Asia and the Pacific. Established in 1966 with 69 member countries, ADB provides comprehensive economic, financial, social, and environmental data through multiple platforms including the ADB Data Library, Key Indicators Database (KIDB), and AsianBondsOnline. The data covers macroeconomic indicators, development statistics, project information, and sector-specific data across Asia-Pacific region.", + "zh": "亚洲开发银行(ADB)是支持亚太地区包容性、韧性和可持续增长的领先多边开发银行。成立于1966年,拥有69个成员国,亚行通过多个平台提供全面的经济、金融、社会和环境数据,包括亚行数据库、关键指标数据库(KIDB)和亚洲债券在线等。数据涵盖亚太地区的宏观经济指标、发展统计、项目信息和行业特定数据。" + }, + "website": "https://www.adb.org", + "data_url": "https://www.adb.org/what-we-do/data", + "api_url": null, + "authority_level": "international", + "country": null, + "domains": [ + "economics", + "finance", + "development", + "infrastructure", + "agriculture", + "education", + "health", + "environment", + "climate-change", + "energy", + "transport", + "water", + "urban-development", + "gender-equality", + "social-development", + "governance", + "regional-cooperation", + "trade", + "digital-technology" + ], + "geographic_scope": "regional", + "update_frequency": "quarterly", + "tags": [ + "asian-development-bank", + "adb", + "multilateral-development-bank", + "asia", + "pacific", + "asia-pacific", + "economic-indicators", + "development-finance", + "infrastructure-investment", + "sustainable-development", + "sdg", + "climate-finance", + "poverty-reduction", + "macroeconomic-data", + "gdp-forecasts", + "asian-development-outlook", + "ado", + "key-indicators", + "kidb", + "regional-cooperation", + "bond-market", + "亚洲开发银行", + "亚行", + "多边开发银行", + "亚太地区", + "经济指标", + "发展融资", + "基础设施投资", + "可持续发展", + "气候融资", + "减贫", + "宏观经济数据", + "GDP预测", + "亚洲发展展望", + "关键指标", + "区域合作", + "债券市场" + ], + "data_content": { + "en": [ + "Macroeconomic Indicators - GDP growth, inflation, fiscal balance, current account balance, exchange rates for 50 regional member countries", + "Asian Development Outlook (ADO) - Economic forecasts and analysis released regularly with growth projections for Asia-Pacific economies", + "Key Indicators for Asia and the Pacific - Annual comprehensive statistical compilation covering economic, social, and environmental indicators", + "Key Indicators Database (KIDB) - One of the world's most comprehensive resources for macroeconomic and social indicators from across Asia and the Pacific", + "Development Finance Data - ADB project financing information, loan disbursements, technical assistance, and grant allocations", + "Infrastructure Statistics - Infrastructure investment needs, project data, and sector-specific infrastructure indicators", + "Climate Change Data - Climate financing metrics, emissions data, environmental indicators, and climate vulnerability assessments", + "Asian Economic Integration Report - Regional integration trends, trade flows, and cross-border investment statistics", + "AsianBondsOnline - Bond market information and statistics for emerging East Asian markets", + "Sustainable Development Goals (SDG) Indicators - Progress monitoring and tracking for Asia-Pacific region", + "Social Development Data - Education, health, gender equality, poverty, and employment statistics", + "Sector-Specific Data - Agriculture, energy, transport, water, urban development, and digital technology statistics", + "Country Economic Profiles - Comprehensive country-level economic and development data for member countries" + ], + "zh": [ + "宏观经济指标 - 50个区域成员国的GDP增长、通货膨胀、财政平衡、经常账户余额、汇率", + "亚洲发展展望(ADO) - 定期发布的经济预测和分析,包含亚太经济体的增长预测", + "亚洲及太平洋地区关键指标 - 年度综合统计汇编,涵盖经济、社会和环境指标", + "关键指标数据库(KIDB) - 全球最全面的亚太地区宏观经济和社会指标资源之一", + "发展融资数据 - 亚行项目融资信息、贷款支付、技术援助和赠款分配", + "基础设施统计 - 基础设施投资需求、项目数据和特定部门基础设施指标", + "气候变化数据 - 气候融资指标、排放数据、环境指标和气候脆弱性评估", + "亚洲经济一体化报告 - 区域一体化趋势、贸易流量和跨境投资统计", + "亚洲债券在线 - 新兴东亚市场的债券市场信息和统计", + "可持续发展目标(SDG)指标 - 亚太地区的进展监测和跟踪", + "社会发展数据 - 教育、卫生、性别平等、贫困和就业统计", + "行业特定数据 - 农业、能源、交通、水资源、城市发展和数字技术统计", + "国家经济概况 - 成员国的全面国家级经济和发展数据" + ] + } +} diff --git a/firstdata/sources/international/economics/asean-stats.json b/firstdata/sources/international/economics/asean-stats.json new file mode 100644 index 00000000..289fe1df --- /dev/null +++ b/firstdata/sources/international/economics/asean-stats.json @@ -0,0 +1,45 @@ +{ + "id": "asean-stats", + "name": { + "en": "ASEAN Statistics", + "zh": "东盟统计局", + "native": "ASEANstats" + }, + "description": { + "en": "ASEANstats is the statistical division of the ASEAN Secretariat, providing harmonized statistics on trade, investment, tourism, demographics, and economic indicators for the 10 ASEAN member states.", + "zh": "东盟统计局是东盟秘书处的统计部门,提供10个东盟成员国贸易、投资、旅游、人口和经济指标的统一口径统计数据。" + }, + "website": "https://www.aseanstats.org", + "data_url": "https://data.aseanstats.org", + "country": null, + "domains": [ + "economics", + "trade", + "demographics", + "tourism" + ], + "tags": [ + "asean", + "regional-statistics", + "trade", + "investment" + ], + "authority_level": "international", + "update_frequency": "annual", + "geographic_scope": "regional", + "data_content": { + "en": [ + "Trade Statistics - Intra-ASEAN and external trade flows", + "Investment - FDI inflows by source country and sector", + "Tourism - International visitor arrivals to ASEAN member states", + "Economic Indicators - GDP, inflation, employment across 10 member states" + ], + "zh": [ + "贸易统计 - 东盟内部和对外贸易流向", + "投资 - 按来源国和行业分类的FDI流入", + "旅游 - 东盟成员国国际游客人次", + "经济指标 - 10个成员国GDP、通胀、就业" + ] + }, + "api_url": null +} diff --git a/firstdata/sources/international/economics/ecb-sdw.json b/firstdata/sources/international/economics/ecb-sdw.json index c77237c4..175a21fe 100644 --- a/firstdata/sources/international/economics/ecb-sdw.json +++ b/firstdata/sources/international/economics/ecb-sdw.json @@ -13,16 +13,16 @@ "api_url": "https://data.ecb.europa.eu/help/api/overview", "country": null, "domains": [ - "monetary policy", - "banking statistics", - "balance of payments", - "government finance", - "financial markets", - "exchange rates", - "interest rates", - "financial stability", - "banking supervision", - "national accounts" + "monetary-policy", + "banking-statistics", + "balance-of-payments", + "government-finance", + "financial-markets", + "exchange-rates", + "interest-rates", + "financial-stability", + "banking-supervision", + "national-accounts" ], "geographic_scope": "regional", "update_frequency": "daily", diff --git a/firstdata/sources/international/economics/eurostat.json b/firstdata/sources/international/economics/eurostat.json new file mode 100644 index 00000000..6fb974f2 --- /dev/null +++ b/firstdata/sources/international/economics/eurostat.json @@ -0,0 +1,77 @@ +{ + "id": "eurostat", + "name": { + "en": "Eurostat - Statistical Office of the European Union", + "zh": "欧盟统计局", + "native": "Eurostat" + }, + "description": { + "en": "Eurostat is the statistical office of the European Union, providing high-quality statistics on Europe. It produces comparable statistical information at European level and promotes the use of common statistical methods across EU member states. Data covers economics, population, social conditions, industry, trade, environment, and regional statistics for all 27 EU member states.", + "zh": "欧盟统计局(Eurostat)是欧盟的统计机构,提供有关欧洲的高质量统计数据。制作欧洲层面的可比统计信息,并推动欧盟成员国使用共同的统计方法。数据涵盖全部27个欧盟成员国的经济、人口、社会状况、工业、贸易、环境和区域统计。" + }, + "website": "https://ec.europa.eu/eurostat", + "data_url": "https://ec.europa.eu/eurostat/databrowser/explore/all/all_themes", + "api_url": "https://ec.europa.eu/eurostat/api/dissemination/statistics/1.0/data/", + "country": null, + "authority_level": "international", + "domains": [ + "economics", + "demographics", + "social", + "trade", + "environment", + "industry", + "agriculture" + ], + "geographic_scope": "regional", + "update_frequency": "monthly", + "tags": [ + "europe", + "eu", + "eurostat", + "欧盟", + "欧洲统计", + "gdp", + "inflation", + "employment", + "trade", + "population", + "official-statistics", + "government", + "regional-statistics" + ], + "data_content": { + "en": [ + "GDP and National Accounts - Gross domestic product, national income, and expenditure accounts for EU member states", + "Population and Demographics - Population size, age structure, fertility, mortality, and migration statistics", + "Employment and Labor Market - Employment rates, unemployment, working conditions, and labor costs by country", + "Prices and Inflation - Harmonised Index of Consumer Prices (HICP), producer prices, and purchasing power parities", + "International Trade - Intra-EU and extra-EU trade in goods and services by country and product", + "Industry and Energy - Industrial production indices, energy consumption, and production statistics", + "Agriculture and Food - Agricultural output, land use, farm structure, and food safety data", + "Environment and Climate - Greenhouse gas emissions, waste, water, and biodiversity indicators", + "Education and Training - Educational attainment, enrollment rates, and lifelong learning statistics", + "Health Statistics - Healthcare expenditure, life expectancy, causes of death, and health behaviors", + "Regional Statistics - NUTS-level data for sub-national regions across Europe", + "Digital Economy - Internet usage, e-commerce, and ICT adoption statistics", + "Government Finance - Public deficit, debt, revenue, and expenditure by country", + "Science and Technology - R&D expenditure, patent statistics, and innovation indicators" + ], + "zh": [ + "GDP与国民账户 - 欧盟成员国国内生产总值、国民收入和支出账户", + "人口与人口统计 - 人口规模、年龄结构、生育率、死亡率和移民统计", + "就业与劳动市场 - 各国就业率、失业率、劳动条件和劳动力成本", + "价格与通货膨胀 - 协调消费者价格指数(HICP)、生产者价格和购买力平价", + "国际贸易 - 欧盟内部和对外商品及服务贸易(按国家和产品分类)", + "工业与能源 - 工业生产指数、能源消耗和生产统计", + "农业与食品 - 农业产值、土地利用、农场结构和食品安全数据", + "环境与气候 - 温室气体排放、废物、水资源和生物多样性指标", + "教育与培训 - 教育程度、入学率和终身学习统计", + "健康统计 - 医疗支出、预期寿命、死亡原因和健康行为", + "区域统计 - 欧洲各次国家地区的NUTS级数据", + "数字经济 - 互联网使用、电子商务和信息通信技术普及统计", + "政府财政 - 各国公共赤字、债务、收入和支出", + "科学与技术 - 研发支出、专利统计和创新指标" + ] + } +} diff --git a/firstdata/sources/international/economics/unsd-national-accounts.json b/firstdata/sources/international/economics/unsd-national-accounts.json new file mode 100644 index 00000000..713798f4 --- /dev/null +++ b/firstdata/sources/international/economics/unsd-national-accounts.json @@ -0,0 +1,71 @@ +{ + "id": "unsd-national-accounts", + "name": { + "en": "UN National Accounts Database", + "zh": "联合国统计司国民账户数据库" + }, + "description": { + "en": "The United Nations Statistics Division (UNSD) National Accounts Database provides comprehensive national accounts statistics for over 200 countries and territories worldwide. The database includes main aggregates, detailed tables, and analytical indicators following the System of National Accounts (SNA) framework. Data covers GDP, national income, consumption, investment, government finance, and other macroeconomic indicators from 1970 onwards, updated annually in December.", + "zh": "联合国统计司(UNSD)国民账户数据库为全球200多个国家和地区提供全面的国民账户统计数据。该数据库包括主要总量、详细表格和分析指标,遵循国民账户体系(SNA)框架。数据涵盖GDP、国民收入、消费、投资、政府财政和其他宏观经济指标,时间跨度从1970年至今,每年12月更新。" + }, + "website": "https://unstats.un.org", + "data_url": "https://unstats.un.org/unsd/snaama", + "api_url": "https://data.un.org/Host.aspx?Content=API", + "authority_level": "international", + "country": null, + "geographic_scope": "global", + "update_frequency": "annual", + "domains": [ + "economics", + "finance" + ], + "tags": [ + "national-accounts", + "gdp", + "经济统计", + "国民账户", + "宏观经济", + "sna", + "国民生产总值", + "macroeconomic-indicators", + "un", + "unsd", + "联合国", + "economic-growth", + "government-finance", + "consumption", + "investment", + "per-capita-gdp", + "人均gdp", + "gni", + "人均gni" + ], + "data_content": { + "en": [ + "GDP and GDP per capita by expenditure approach (current and constant prices)", + "National income and gross national income (GNI)", + "Final consumption expenditure by households and government", + "Gross capital formation and fixed capital formation", + "Exports and imports of goods and services", + "Government revenue and expenditure", + "Compensation of employees and operating surplus", + "Value added by economic activity", + "Population and employment data", + "National accounts main aggregates following SNA 2008 framework", + "Detailed national accounts tables for UN member states" + ], + "zh": [ + "按支出法计算的GDP和人均GDP(现价和不变价格)", + "国民收入和国民总收入(GNI)", + "住户和政府最终消费支出", + "资本形成总额和固定资本形成", + "货物和服务的进出口", + "政府收入和支出", + "雇员报酬和营业盈余", + "按经济活动分类的增加值", + "人口和就业数据", + "遵循SNA 2008框架的国民账户主要总量", + "联合国会员国详细国民账户表" + ] + } +} diff --git a/firstdata/sources/international/education/iea-education-studies.json b/firstdata/sources/international/education/iea-education-studies.json index d1f7d932..5b12e0ec 100644 --- a/firstdata/sources/international/education/iea-education-studies.json +++ b/firstdata/sources/international/education/iea-education-studies.json @@ -27,11 +27,11 @@ "国际评估", "student-achievement", "学生成就", - "TIMSS", - "PIRLS", - "ICCS", - "ICILS", - "LaNA", + "timss", + "pirls", + "iccs", + "icils", + "lana", "mathematics", "数学", "science", diff --git a/firstdata/sources/international/education/oecd-pisa.json b/firstdata/sources/international/education/oecd-pisa.json index 0499258a..2522e214 100644 --- a/firstdata/sources/international/education/oecd-pisa.json +++ b/firstdata/sources/international/education/oecd-pisa.json @@ -14,13 +14,13 @@ "country": null, "domains": [ "education", - "student assessment", - "reading literacy", - "mathematical literacy", - "scientific literacy", - "financial literacy", - "creative thinking", - "global competence" + "student-assessment", + "reading-literacy", + "mathematical-literacy", + "scientific-literacy", + "financial-literacy", + "creative-thinking", + "global-competence" ], "geographic_scope": "global", "update_frequency": "irregular", diff --git a/firstdata/sources/international/education/unesco-uis.json b/firstdata/sources/international/education/unesco-uis.json new file mode 100644 index 00000000..be06f11c --- /dev/null +++ b/firstdata/sources/international/education/unesco-uis.json @@ -0,0 +1,73 @@ +{ + "id": "unesco-uis", + "name": { + "en": "UNESCO Institute for Statistics", + "zh": "联合国教科文组织统计研究所" + }, + "description": { + "en": "The UNESCO Institute for Statistics (UIS) is the official statistical agency of UNESCO and the primary UN source for internationally comparable data on education, science, technology, innovation, culture, and communication. UIS maintains the most comprehensive global education database covering enrollment, literacy, expenditure, learning outcomes, and teacher statistics for over 200 countries.", + "zh": "联合国教科文组织统计研究所(UIS)是UNESCO的官方统计机构,也是联合国在教育、科学、技术、创新、文化和传播领域国际可比数据的主要来源。UIS维护着最全面的全球教育数据库,涵盖200多个国家的入学率、识字率、教育支出、学习成果和教师统计数据。" + }, + "website": "https://uis.unesco.org/", + "data_url": "https://data.uis.unesco.org/", + "api_url": null, + "country": null, + "domains": [ + "education", + "science", + "technology", + "innovation", + "culture", + "communication" + ], + "geographic_scope": "global", + "update_frequency": "annual", + "tags": [ + "unesco", + "education", + "literacy", + "enrollment", + "science-statistics", + "r&d", + "sdg4", + "learning-outcomes", + "education-expenditure", + "teachers", + "international-comparison", + "教育", + "识字率", + "入学率", + "科研统计" + ], + "data_content": { + "en": [ + "Education Enrollment and Completion Rates (Pre-primary to Tertiary)", + "Literacy and Educational Attainment by Age and Gender", + "Education Expenditure (Public and Private)", + "Teacher Statistics (Pupil-Teacher Ratios, Qualifications)", + "Learning Outcomes and Assessments", + "Out-of-School Children and Youth Statistics", + "SDG 4 Education Monitoring Indicators", + "Science, Technology and Innovation Statistics", + "R&D Expenditure and Researcher Data", + "Cultural Statistics and Heritage Data", + "ICT in Education Statistics", + "International Student Mobility Data" + ], + "zh": [ + "教育入学率和完成率(学前至高等教育)", + "识字率和受教育程度(按年龄和性别)", + "教育支出(公共和私人)", + "教师统计(师生比、教师资质)", + "学习成果和评估", + "失学儿童和青年统计", + "SDG 4教育监测指标", + "科学、技术和创新统计", + "研发支出和研究人员数据", + "文化统计和遗产数据", + "教育信息化统计", + "国际学生流动数据" + ] + }, + "authority_level": "international" +} diff --git a/firstdata/sources/international/energy/iaea-energy-data.json b/firstdata/sources/international/energy/iaea-energy-data.json index 942c0ba0..2ccf5fb8 100644 --- a/firstdata/sources/international/energy/iaea-energy-data.json +++ b/firstdata/sources/international/energy/iaea-energy-data.json @@ -21,24 +21,24 @@ "geographic_scope": "global", "update_frequency": "monthly", "tags": [ - "nuclear energy", + "nuclear-energy", "核能", - "power reactors", + "power-reactors", "动力堆", - "PRIS", - "atomic energy", + "pris", + "atomic-energy", "原子能", - "reactor data", + "reactor-data", "反应堆数据", - "energy production", + "energy-production", "能源生产", - "nuclear statistics", + "nuclear-statistics", "核能统计", - "IAEA", + "iaea", "国际原子能机构", - "nuclear research", + "nuclear-research", "核研究", - "fuel testing", + "fuel-testing", "燃料测试" ], "data_content": { diff --git a/firstdata/sources/international/energy/irena.json b/firstdata/sources/international/energy/irena.json new file mode 100644 index 00000000..eb40ec9b --- /dev/null +++ b/firstdata/sources/international/energy/irena.json @@ -0,0 +1,66 @@ +{ + "id": "irena", + "name": { + "en": "IRENA - International Renewable Energy Agency", + "zh": "国际可再生能源署" + }, + "description": { + "en": "The International Renewable Energy Agency (IRENA) is an intergovernmental organisation supporting countries in their transition to a sustainable energy future. IRENA provides the most comprehensive global dataset on renewable energy capacity, generation, costs and investment. Its statistics cover 200+ countries with data from 2000 onwards, serving as the definitive reference for renewable energy deployment worldwide.", + "zh": "国际可再生能源署(IRENA)是支持各国向可持续能源未来转型的政府间组织。IRENA提供全球最全面的可再生能源装机容量、发电量、成本和投资数据集,统计覆盖200多个国家,数据从2000年起,是全球可再生能源部署的权威参考。" + }, + "website": "https://www.irena.org", + "data_url": "https://www.irena.org/Data", + "api_url": "https://pxweb.irena.org/pxweb/en/IRENASTAT", + "country": null, + "domains": [ + "energy", + "climate", + "environment", + "economics" + ], + "geographic_scope": "global", + "update_frequency": "annual", + "tags": [ + "renewable-energy", + "solar", + "wind", + "hydropower", + "bioenergy", + "geothermal", + "energy-transition", + "可再生能源", + "太阳能", + "风能", + "装机容量", + "发电量", + "能源成本", + "irena", + "clean-energy", + "energy-investment" + ], + "data_content": { + "en": [ + "Renewable Energy Statistics - capacity, generation and balances for 200+ countries", + "Renewable Power Generation Costs - LCOE data for solar, wind, hydro, bioenergy, geothermal", + "Renewable Energy Employment - jobs by technology and country", + "IRENA RE Capacity Statistics - installed capacity by technology and country", + "Global Landscape of Renewable Energy Finance", + "Renewable Energy Auctions - contract prices and volumes", + "Off-grid Renewable Energy Statistics", + "Hydrogen cost and production data", + "Energy Transition Investment Tracking" + ], + "zh": [ + "可再生能源统计 - 200多个国家的装机容量、发电量和能源平衡", + "可再生能源发电成本 - 太阳能、风能、水电、生物能源、地热的平准化度电成本", + "可再生能源就业 - 按技术和国家分类的就业数据", + "可再生能源装机容量统计 - 按技术和国家分类的装机容量", + "全球可再生能源融资格局", + "可再生能源拍卖 - 合同价格和交易量", + "离网可再生能源统计", + "氢能成本和生产数据", + "能源转型投资追踪" + ] + }, + "authority_level": "international" +} diff --git a/firstdata/sources/international/energy/jodi.json b/firstdata/sources/international/energy/jodi.json new file mode 100644 index 00000000..17dfcdb4 --- /dev/null +++ b/firstdata/sources/international/energy/jodi.json @@ -0,0 +1,56 @@ +{ + "id": "jodi", + "name": { + "en": "JODI - Joint Organisations Data Initiative", + "zh": "联合组织数据倡议" + }, + "description": { + "en": "The Joint Organisations Data Initiative (JODI) is a concrete outcome of international efforts to improve the availability and reliability of energy data. It collects and disseminates data on oil and natural gas from over 100 countries, representing approximately 90% of global supply and demand. JODI is supported by seven international organizations (APEC, Eurostat, IEA, IEF, OLADE, OPEC, UNSD) and provides timely, transparent, and freely accessible energy statistics to enhance market transparency and reduce price volatility.", + "zh": "联合组织数据倡议(JODI)是国际社会提高能源数据可用性和可靠性的重要成果。它收集并发布来自100多个国家的石油和天然气数据,覆盖全球约90%的供需量。JODI由七个国际组织(APEC、Eurostat、IEA、IEF、OLADE、OPEC、UNSD)支持,提供及时、透明和免费的能源统计数据,以增强市场透明度并降低价格波动。" + }, + "website": "https://www.jodidata.org", + "data_url": "https://www.jodidata.org/oil/database/data-downloads.aspx", + "api_url": null, + "country": null, + "domains": [ + "energy", + "commodities" + ], + "geographic_scope": "global", + "update_frequency": "monthly", + "tags": [ + "jodi", + "oil", + "natural-gas", + "energy-data", + "energy-transparency", + "石油数据", + "天然气", + "能源统计", + "international-organization", + "market-transparency", + "energy-supply", + "energy-demand" + ], + "data_content": { + "en": [ + "JODI Oil World Database - monthly oil statistics from 100+ countries", + "JODI Gas World Database - monthly natural gas statistics", + "Production, imports, exports, refinery intake/output data", + "Stock levels and stock changes", + "Demand/consumption data by product category", + "Country-level data with historical time series", + "Data quality assessments and timeliness indicators" + ], + "zh": [ + "JODI石油世界数据库 - 100多个国家的月度石油统计", + "JODI天然气世界数据库 - 月度天然气统计", + "生产、进口、出口、炼油进出料数据", + "库存水平和库存变化", + "按产品类别的需求/消费数据", + "国家级数据及历史时间序列", + "数据质量评估和时效性指标" + ] + }, + "authority_level": "international" +} diff --git a/firstdata/sources/international/energy/opec-statistics.json b/firstdata/sources/international/energy/opec-statistics.json new file mode 100644 index 00000000..9df8731c --- /dev/null +++ b/firstdata/sources/international/energy/opec-statistics.json @@ -0,0 +1,65 @@ +{ + "id": "opec-statistics", + "name": { + "en": "OPEC Statistics", + "zh": "石油输出国组织统计数据" + }, + "description": { + "en": "The Organization of the Petroleum Exporting Countries (OPEC) provides authoritative data on global oil markets, including crude oil production, exports, prices, and demand forecasts. OPEC publishes the Monthly Oil Market Report (MOMR) and the Annual Statistical Bulletin (ASB), covering oil supply/demand balances, refinery operations, tanker markets, and macroeconomic indicators for its 13 member countries and beyond. Founded in 1960, OPEC coordinates petroleum policies among member states and is a primary source for global oil market intelligence.", + "zh": "石油输出国组织(OPEC)提供全球石油市场的权威数据,包括原油产量、出口量、价格和需求预测。OPEC发布月度石油市场报告(MOMR)和年度统计公报(ASB),涵盖石油供需平衡、炼油作业、油轮市场和13个成员国及全球宏观经济指标。OPEC成立于1960年,负责协调成员国的石油政策,是全球石油市场情报的主要来源。" + }, + "website": "https://www.opec.org", + "data_url": "https://asb.opec.org", + "api_url": null, + "country": null, + "domains": [ + "energy", + "economics", + "commodities" + ], + "geographic_scope": "global", + "update_frequency": "monthly", + "tags": [ + "opec", + "oil", + "petroleum", + "crude-oil", + "石油", + "原油", + "energy", + "能源", + "oil-production", + "oil-prices", + "oil-market", + "international-organization", + "commodities", + "大宗商品" + ], + "data_content": { + "en": [ + "Monthly Oil Market Report (MOMR) - oil supply/demand analysis and forecasts", + "Annual Statistical Bulletin (ASB) - comprehensive oil and energy statistics", + "Crude oil production data by member country", + "Oil exports and import data", + "OPEC Reference Basket price tracking", + "World oil demand and supply estimates", + "Refinery throughput and capacity data", + "Natural gas production statistics for member countries", + "Macroeconomic indicators for oil-producing nations", + "Tanker and freight market data" + ], + "zh": [ + "月度石油市场报告(MOMR)- 石油供需分析与预测", + "年度统计公报(ASB)- 综合石油和能源统计", + "成员国原油产量数据", + "石油进出口数据", + "OPEC参考篮子价格跟踪", + "全球石油需求和供应估计", + "炼油产能和加工量数据", + "成员国天然气生产统计", + "产油国宏观经济指标", + "油轮和运费市场数据" + ] + }, + "authority_level": "international" +} diff --git a/firstdata/sources/international/environment/basel-convention.json b/firstdata/sources/international/environment/basel-convention.json index 9e70c6a9..64583a52 100644 --- a/firstdata/sources/international/environment/basel-convention.json +++ b/firstdata/sources/international/environment/basel-convention.json @@ -14,25 +14,25 @@ "country": null, "domains": [ "environment", - "waste management", - "hazardous materials", - "international trade", - "environmental law" + "waste-management", + "hazardous-materials", + "international-trade", + "environmental-law" ], "geographic_scope": "global", "update_frequency": "annual", "tags": [ - "hazardous waste", - "environmental protection", - "waste management", - "transboundary movements", - "international convention", - "UNEP", + "hazardous-waste", + "environmental-protection", + "waste-management", + "transboundary-movements", + "international-convention", + "unep", "e-waste", - "plastic waste", - "circular economy", - "environmental law", - "illegal trafficking" + "plastic-waste", + "circular-economy", + "environmental-law", + "illegal-trafficking" ], "data_content": { "en": [ diff --git a/firstdata/sources/international/environment/cdiac.json b/firstdata/sources/international/environment/cdiac.json index b231a354..7004fcd1 100644 --- a/firstdata/sources/international/environment/cdiac.json +++ b/firstdata/sources/international/environment/cdiac.json @@ -13,12 +13,12 @@ "api_url": "https://api-sandbox.ess-dive.lbl.gov/", "country": null, "domains": [ - "climate change", + "climate-change", "environment", - "carbon emissions", - "atmospheric science", - "energy statistics", - "greenhouse gases" + "carbon-emissions", + "atmospheric-science", + "energy-statistics", + "greenhouse-gases" ], "geographic_scope": "global", "update_frequency": "irregular", diff --git a/firstdata/sources/international/environment/cites-trade-database.json b/firstdata/sources/international/environment/cites-trade-database.json index 8542f7c9..34bfd244 100644 --- a/firstdata/sources/international/environment/cites-trade-database.json +++ b/firstdata/sources/international/environment/cites-trade-database.json @@ -13,27 +13,27 @@ "api_url": null, "country": null, "domains": [ - "wildlife conservation", - "endangered species", - "international trade", - "environmental protection", + "wildlife-conservation", + "endangered-species", + "international-trade", + "environmental-protection", "biodiversity" ], "geographic_scope": "global", "update_frequency": "annual", "tags": [ - "CITES", - "wildlife trade", - "endangered species", + "cites", + "wildlife-trade", + "endangered-species", "conservation", "biodiversity", - "international trade", - "environmental protection", - "UNEP-WCMC", - "species monitoring", - "wildlife conservation", - "trade regulations", - "fauna and flora" + "international-trade", + "environmental-protection", + "unep-wcmc", + "species-monitoring", + "wildlife-conservation", + "trade-regulations", + "fauna-and-flora" ], "data_content": { "en": [ diff --git a/firstdata/sources/international/environment/eea-climate.json b/firstdata/sources/international/environment/eea-climate.json new file mode 100644 index 00000000..bdd9610f --- /dev/null +++ b/firstdata/sources/international/environment/eea-climate.json @@ -0,0 +1,72 @@ +{ + "id": "eea-climate", + "name": { + "en": "European Environment Agency", + "zh": "欧洲环境署" + }, + "description": { + "en": "The European Environment Agency (EEA) is an agency of the European Union whose task is to provide sound, independent information on the environment. The EEA collects, manages, and publishes comprehensive data on Europe's environment, including climate change indicators, greenhouse gas emissions, air quality, biodiversity, and resource use. It supports EU environmental policy development and public awareness through its data portal and indicator assessments.", + "zh": "欧洲环境署(EEA)是欧盟的一个机构,其任务是提供关于环境的可靠、独立的信息。EEA收集、管理和发布关于欧洲环境的综合数据,包括气候变化指标、温室气体排放、空气质量、生物多样性和资源利用。通过其数据门户和指标评估,支持欧盟环境政策制定和公众意识提升。" + }, + "website": "https://www.eea.europa.eu", + "data_url": "https://www.eea.europa.eu/en/datahub", + "api_url": "https://discodata.eea.europa.eu/", + "authority_level": "international", + "country": null, + "domains": [ + "environment", + "climate", + "energy", + "air-quality", + "biodiversity", + "water" + ], + "geographic_scope": "regional", + "update_frequency": "annual", + "tags": [ + "climate-change", + "greenhouse-gas", + "emissions", + "air-quality", + "biodiversity", + "environment", + "europe", + "eu", + "carbon", + "renewable-energy", + "water-quality", + "waste", + "pollution", + "eea", + "气候变化", + "温室气体", + "欧洲环境", + "空气质量" + ], + "data_content": { + "en": [ + "Greenhouse Gas Emissions - National and EU-level GHG emission inventories, trends, and projections by sector", + "Climate Change Indicators - Temperature anomalies, sea level rise, glacier retreat, extreme weather events across Europe", + "Air Quality Data - Real-time and historical air pollutant concentrations (PM2.5, PM10, NO2, O3) from monitoring stations across Europe", + "Renewable Energy Statistics - Share of renewable energy in gross final energy consumption by country and sector", + "EU Emissions Trading System (ETS) - Verified emissions, allowances, and compliance data from EU ETS installations", + "Biodiversity Indicators - Species population trends, habitat conservation status, protected area coverage", + "Water Quality and Quantity - Bathing water quality, river and lake ecological status, water exploitation index", + "Waste Generation and Recycling - Municipal waste generation, recycling rates, and circular economy indicators by country", + "Land Use and Land Cover - CORINE Land Cover data and land use change statistics across Europe", + "Transport and Environment - Transport-related emissions, fuel consumption, and modal split data" + ], + "zh": [ + "温室气体排放 - 国家和欧盟层面的温室气体排放清单、趋势和按部门分类的预测", + "气候变化指标 - 欧洲各地的温度异常、海平面上升、冰川退缩、极端天气事件", + "空气质量数据 - 欧洲各监测站的实时和历史空气污染物浓度(PM2.5、PM10、NO2、O3)", + "可再生能源统计 - 按国家和部门分类的可再生能源在最终能源消费总量中的占比", + "欧盟排放交易体系(ETS)- 来自EU ETS设施的核实排放量、配额和合规数据", + "生物多样性指标 - 物种种群趋势、栖息地保护状况、保护区覆盖率", + "水质和水量 - 浴场水质、河流和湖泊生态状况、水资源开发指数", + "废物产生和回收 - 按国家分类的城市废物产生量、回收率和循环经济指标", + "土地利用和土地覆盖 - CORINE土地覆盖数据和欧洲各地的土地利用变化统计", + "交通与环境 - 交通相关排放、燃料消耗和运输方式分担率数据" + ] + } +} diff --git a/firstdata/sources/international/environment/isric-world-soil.json b/firstdata/sources/international/environment/isric-world-soil.json new file mode 100644 index 00000000..853757a9 --- /dev/null +++ b/firstdata/sources/international/environment/isric-world-soil.json @@ -0,0 +1,51 @@ +{ + "id": "isric-world-soil", + "name": { + "en": "ISRIC World Soil Information", + "zh": "ISRIC世界土壤信息中心" + }, + "description": { + "en": "ISRIC - World Soil Information is an independent foundation established in 1966, serving as the global reference center for soil data and information. It hosts SoilGrids, a global gridded soil information system providing predictions of soil properties at 250m resolution, and the World Soil Reference Collection. ISRIC supports sustainable land management and food security through standardized soil data.", + "zh": "ISRIC世界土壤信息中心成立于1966年,是全球土壤数据和信息的参考中心。托管SoilGrids全球网格化土壤信息系统,提供250米分辨率的土壤属性预测,以及世界土壤参考收藏。通过标准化土壤数据支持可持续土地管理和粮食安全。" + }, + "website": "https://www.isric.org", + "data_url": "https://www.isric.org/explore", + "api_url": "https://rest.isric.org", + "authority_level": "research", + "country": null, + "domains": [ + "environment", + "agriculture", + "earth-science" + ], + "geographic_scope": "global", + "update_frequency": "annual", + "tags": [ + "soil", + "土壤", + "land-degradation", + "土地退化", + "soil-carbon", + "土壤碳", + "soilgrids", + "erosion", + "侵蚀", + "food-security", + "粮食安全", + "land-management" + ], + "data_content": { + "en": [ + "SoilGrids: global soil property maps at 250m resolution (organic carbon, pH, texture, etc.)", + "World Soil Reference Collection with 1,000+ soil profiles", + "Soil erosion risk assessments and land degradation indicators", + "Harmonized soil property databases (WoSIS)" + ], + "zh": [ + "SoilGrids:250米分辨率的全球土壤属性图(有机碳、pH、质地等)", + "包含1000多个土壤剖面的世界土壤参考收藏", + "土壤侵蚀风险评估和土地退化指标", + "统一的土壤属性数据库(WoSIS)" + ] + } +} diff --git a/firstdata/sources/international/finance/bis-cbta.json b/firstdata/sources/international/finance/bis-cbta.json new file mode 100644 index 00000000..8eb23f77 --- /dev/null +++ b/firstdata/sources/international/finance/bis-cbta.json @@ -0,0 +1,59 @@ +{ + "id": "bis-cbta", + "name": { + "en": "BIS Central Bank Total Assets", + "zh": "国际清算银行中央银行总资产统计" + }, + "description": { + "en": "The BIS Central Bank Total Assets dataset tracks the evolution of central bank balance sheets across more than 50 advanced and emerging market economies. Financial assets include gold, foreign exchange reserves, and claims on government, financial and non-financial sectors. The dataset features long historical series, with annual data averaging approximately 100 years and some series extending back to the 19th century.", + "zh": "国际清算银行中央银行总资产数据集追踪全球50多个发达和新兴市场经济体的中央银行资产负债表变化。金融资产包括黄金、外汇储备以及对政府、金融和非金融部门的债权。该数据集提供长期历史序列,年度数据平均约100年,部分序列可追溯至19世纪。" + }, + "website": "https://www.bis.org", + "data_url": "https://data.bis.org/topics/CBTA", + "api_url": "https://stats.bis.org/api-doc/v2/", + "authority_level": "international", + "country": null, + "domains": [ + "finance", + "monetary-policy", + "central-banking" + ], + "geographic_scope": "global", + "update_frequency": "quarterly", + "tags": [ + "central-bank", + "中央银行", + "foreign-exchange-reserves", + "外汇储备", + "balance-sheet", + "资产负债表", + "monetary-statistics", + "货币统计", + "gold-reserves", + "黄金储备", + "bis", + "国际清算银行", + "official-reserves", + "官方储备", + "total-assets", + "总资产" + ], + "data_content": { + "en": [ + "Central bank total assets for 50+ countries", + "Gold and foreign exchange reserves holdings", + "Claims on government, financial and non-financial sectors", + "Monthly, quarterly, and annual time series", + "Historical data extending back to the 19th century for some countries", + "Data available in domestic currency, percentage of GDP, and US dollars" + ], + "zh": [ + "50多个国家的中央银行总资产", + "黄金和外汇储备持有量", + "对政府、金融和非金融部门的债权", + "月度、季度和年度时间序列", + "部分国家的历史数据可追溯至19世纪", + "提供本币、GDP百分比和美元三种计量单位" + ] + } +} diff --git a/firstdata/sources/international/finance/bis-reserves.json b/firstdata/sources/international/finance/bis-reserves.json index 35644627..92194a37 100644 --- a/firstdata/sources/international/finance/bis-reserves.json +++ b/firstdata/sources/international/finance/bis-reserves.json @@ -14,11 +14,11 @@ "authority_level": "international", "country": null, "domains": [ - "central banking", - "foreign exchange reserves", - "monetary policy", - "financial markets", - "international finance" + "central-banking", + "foreign-exchange-reserves", + "monetary-policy", + "financial-markets", + "international-finance" ], "geographic_scope": "global", "update_frequency": "quarterly", diff --git a/firstdata/sources/international/finance/iais.json b/firstdata/sources/international/finance/iais.json index 4595afc5..122eab44 100644 --- a/firstdata/sources/international/finance/iais.json +++ b/firstdata/sources/international/finance/iais.json @@ -27,14 +27,14 @@ "保险监管", "financial-stability", "金融稳定", - "GIMAR", + "gimar", "全球保险市场报告", - "ICS", + "ics", "insurance-capital-standard", "保险资本标准", "systemic-risk", "系统性风险", - "ComFrame", + "comframe", "insurance-core-principles", "保险核心原则", "climate-risk", diff --git a/firstdata/sources/international/health/africa-cdc.json b/firstdata/sources/international/health/africa-cdc.json index 5e2bcaa2..4f782fb3 100644 --- a/firstdata/sources/international/health/africa-cdc.json +++ b/firstdata/sources/international/health/africa-cdc.json @@ -13,30 +13,30 @@ "api_url": null, "country": null, "domains": [ - "public health", + "public-health", "epidemiology", - "disease surveillance", - "outbreak response", - "laboratory systems", - "health security" + "disease-surveillance", + "outbreak-response", + "laboratory-systems", + "health-security" ], "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" + "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": [ @@ -63,4 +63,4 @@ ] }, "authority_level": "international" -} \ No newline at end of file +} diff --git a/firstdata/sources/international/health/ecdc-surveillance.json b/firstdata/sources/international/health/ecdc-surveillance.json index 3f4f4904..93a80db3 100644 --- a/firstdata/sources/international/health/ecdc-surveillance.json +++ b/firstdata/sources/international/health/ecdc-surveillance.json @@ -13,16 +13,16 @@ "api_url": null, "country": null, "domains": [ - "infectious diseases", - "public health", + "infectious-diseases", + "public-health", "epidemiology", - "disease surveillance", - "antimicrobial resistance", + "disease-surveillance", + "antimicrobial-resistance", "immunization", - "healthcare-associated infections", - "vector-borne diseases", - "food and waterborne diseases", - "respiratory diseases" + "healthcare-associated-infections", + "vector-borne-diseases", + "food-and-waterborne-diseases", + "respiratory-diseases" ], "geographic_scope": "regional", "update_frequency": "weekly", diff --git a/firstdata/sources/international/health/gavi.json b/firstdata/sources/international/health/gavi.json new file mode 100644 index 00000000..24d319f8 --- /dev/null +++ b/firstdata/sources/international/health/gavi.json @@ -0,0 +1,54 @@ +{ + "id": "gavi", + "name": { + "en": "GAVI, the Vaccine Alliance", + "zh": "全球疫苗免疫联盟" + }, + "description": { + "en": "GAVI, the Vaccine Alliance is an international organisation that brings together public and private sectors to create equal access to new and underused vaccines for children in the world's poorest countries. GAVI provides data on global immunization coverage, vaccine supply and procurement, COVAX facility allocations, country-level vaccination programs, and financing for immunization. It is the primary data source for equitable vaccine distribution in developing countries.", + "zh": "全球疫苗免疫联盟(GAVI)是一个国际组织,汇集公共和私营部门,为世界最贫穷国家的儿童创造平等获取新型和未充分使用疫苗的机会。GAVI提供全球免疫覆盖、疫苗供应和采购、COVAX分配、国家级疫苗接种计划和免疫融资数据。它是发展中国家公平疫苗分配的主要数据来源。" + }, + "website": "https://www.gavi.org", + "data_url": "https://www.gavi.org/programmes-impact/our-impact/facts-and-figures", + "api_url": null, + "country": null, + "domains": [ + "health", + "immunization", + "vaccines", + "global-health", + "development" + ], + "geographic_scope": "global", + "update_frequency": "quarterly", + "tags": [ + "gavi", + "vaccines", + "immunization", + "covax", + "global-health", + "疫苗", + "免疫接种", + "全球卫生", + "疫苗联盟" + ], + "data_content": { + "en": [ + "Immunization Coverage - Country-level vaccination coverage rates", + "COVAX Facility - COVID-19 vaccine allocation and delivery data", + "Vaccine Supply - Procurement, supply chain, and market data", + "Financing - Donor contributions and co-financing data", + "Programme Impact - Lives saved, future deaths averted estimates", + "Country Profiles - Individual country immunization programme data" + ], + "zh": [ + "免疫覆盖 - 国家级疫苗接种覆盖率", + "COVAX设施 - COVID-19疫苗分配和交付数据", + "疫苗供应 - 采购、供应链和市场数据", + "融资 - 捐助方贡献和联合融资数据", + "项目影响 - 挽救生命和避免死亡估计", + "国家概况 - 各国免疫项目数据" + ] + }, + "authority_level": "international" +} diff --git a/firstdata/sources/international/health/who-gho.json b/firstdata/sources/international/health/who-gho.json new file mode 100644 index 00000000..0053516a --- /dev/null +++ b/firstdata/sources/international/health/who-gho.json @@ -0,0 +1,43 @@ +{ + "id": "who-gho", + "name": { + "en": "WHO Global Health Observatory", + "zh": "世界卫生组织全球卫生观察站" + }, + "description": { + "en": "WHO's Global Health Observatory provides access to health statistics for WHO member states, including disease burden, health systems, and risk factors.", + "zh": "世界卫生组织全球卫生观察站提供成员国的卫生统计数据,包括疾病负担、卫生系统和风险因素。" + }, + "website": "https://www.who.int/data/gho", + "data_url": "https://www.who.int/data/gho/data/indicators", + "api_url": "https://ghoapi.azureedge.net/api", + "data_content": { + "en": [ + "Mortality", + "disease incidence", + "health workforce", + "immunization coverage", + "environmental health", + "NCDs", + "infectious diseases", + "UHC indicators" + ], + "zh": [ + "死亡率、疾病发病率、卫生人力、免疫覆盖率、环境卫生、非传染性疾病、传染病、全民健康覆盖指标" + ] + }, + "authority_level": "international", + "update_frequency": "annual", + "domains": [ + "health" + ], + "tags": [ + "who", + "health", + "mortality", + "disease", + "immunization" + ], + "country": null, + "geographic_scope": "global" +} diff --git a/firstdata/sources/international/humanitarian/un-ocha-fts.json b/firstdata/sources/international/humanitarian/un-ocha-fts.json new file mode 100644 index 00000000..18fd0dd5 --- /dev/null +++ b/firstdata/sources/international/humanitarian/un-ocha-fts.json @@ -0,0 +1,49 @@ +{ + "id": "un-ocha-fts", + "name": { + "en": "UN OCHA Financial Tracking Service", + "zh": "联合国人道主义事务协调厅资金追踪系统" + }, + "description": { + "en": "The Financial Tracking Service (FTS) is a centralized platform maintained by the United Nations Office for the Coordination of Humanitarian Affairs (OCHA) that records all reported humanitarian aid contributions and pledges worldwide. It tracks funding flows from donors to implementing organizations across humanitarian emergencies, providing real-time transparency on humanitarian financing.", + "zh": "资金追踪系统(FTS)是联合国人道主义事务协调厅(OCHA)维护的全球人道主义援助资金追踪平台,记录所有已报告的人道主义捐款和承诺,追踪从捐助方到执行组织的资金流向,为人道主义融资提供实时透明度。" + }, + "website": "https://www.unocha.org", + "data_url": "https://fts.unocha.org", + "api_url": "https://fts.unocha.org/content/fts-public-api", + "authority_level": "international", + "country": null, + "domains": [ + "humanitarian", + "development", + "finance" + ], + "geographic_scope": "global", + "update_frequency": "daily", + "tags": [ + "humanitarian-aid", + "人道主义援助", + "funding", + "资金追踪", + "ocha", + "联合国", + "emergency-response", + "donor-contributions", + "development-assistance", + "人道主义融资" + ], + "data_content": { + "en": [ + "Humanitarian aid contributions and pledges by donor country and organization", + "Funding flows by emergency, sector, and recipient organization", + "Appeals and response plans funding status", + "Historical humanitarian financing data from 1992 to present" + ], + "zh": [ + "按捐助国和组织分类的人道主义援助捐款和承诺", + "按紧急事件、部门和受援组织分类的资金流向", + "呼吁和应对计划的资金状况", + "1992年至今的历史人道主义融资数据" + ] + } +} diff --git a/firstdata/sources/international/humanitarian/un-population.json b/firstdata/sources/international/humanitarian/un-population.json new file mode 100644 index 00000000..810631c7 --- /dev/null +++ b/firstdata/sources/international/humanitarian/un-population.json @@ -0,0 +1,41 @@ +{ + "id": "un-population", + "name": { + "en": "UN Population Division", + "zh": "联合国人口司" + }, + "description": { + "en": "The UN Population Division provides authoritative estimates and projections of world population, fertility, mortality, and migration.", + "zh": "联合国人口司提供权威的全球人口估计和预测,涵盖生育率、死亡率和迁移数据。" + }, + "website": "https://population.un.org", + "data_url": "https://population.un.org/wpp/", + "api_url": "https://population.un.org/dataportalapi/api/v1", + "data_content": { + "en": [ + "World population prospects", + "population estimates", + "fertility rates", + "life expectancy", + "migration flows", + "urbanization projections" + ], + "zh": [ + "世界人口展望、人口估计、生育率、预期寿命、迁移流动、城市化预测" + ] + }, + "authority_level": "international", + "update_frequency": "irregular", + "domains": [ + "demographics" + ], + "tags": [ + "population", + "fertility", + "mortality", + "migration", + "urbanization" + ], + "country": null, + "geographic_scope": "global" +} diff --git a/firstdata/sources/international/humanitarian/unhcr.json b/firstdata/sources/international/humanitarian/unhcr.json new file mode 100644 index 00000000..ebf80c85 --- /dev/null +++ b/firstdata/sources/international/humanitarian/unhcr.json @@ -0,0 +1,42 @@ +{ + "id": "unhcr", + "name": { + "en": "UNHCR Refugee Data Finder", + "zh": "联合国难民署难民数据查询" + }, + "description": { + "en": "UNHCR's statistical database on refugees, asylum-seekers, internally displaced persons, and stateless people worldwide.", + "zh": "联合国难民署关于全球难民、寻求庇护者、境内流离失所者和无国籍人的统计数据库。" + }, + "website": "https://www.unhcr.org", + "data_url": "https://www.unhcr.org/refugee-statistics/", + "api_url": "https://api.unhcr.org/population/v1/", + "data_content": { + "en": [ + "Refugee populations", + "asylum applications", + "internally displaced persons", + "stateless persons", + "resettlement data", + "country of origin/asylum statistics" + ], + "zh": [ + "难民人口、庇护申请、境内流离失所者、无国籍人、重新安置数据、来源国/庇护国统计" + ] + }, + "authority_level": "international", + "update_frequency": "annual", + "domains": [ + "demographics", + "humanitarian" + ], + "tags": [ + "unhcr", + "refugees", + "asylum", + "displacement", + "humanitarian" + ], + "country": null, + "geographic_scope": "global" +} diff --git a/firstdata/sources/international/humanitarian/unicef.json b/firstdata/sources/international/humanitarian/unicef.json new file mode 100644 index 00000000..3ddfa694 --- /dev/null +++ b/firstdata/sources/international/humanitarian/unicef.json @@ -0,0 +1,44 @@ +{ + "id": "unicef", + "name": { + "en": "UNICEF Data", + "zh": "联合国儿童基金会数据" + }, + "description": { + "en": "UNICEF collects and disseminates data on the situation of children and women worldwide, including health, education, and child protection indicators.", + "zh": "联合国儿童基金会收集和发布全球儿童和妇女状况数据,包括健康、教育和儿童保护指标。" + }, + "website": "https://data.unicef.org", + "data_url": "https://data.unicef.org/resources/resource-type/datasets/", + "api_url": "https://sdmx.data.unicef.org/ws/public/sdmxapi/rest", + "data_content": { + "en": [ + "Child mortality", + "immunization", + "nutrition", + "education", + "child protection", + "water and sanitation", + "HIV/AIDS indicators" + ], + "zh": [ + "儿童死亡率、免疫接种、营养、教育、儿童保护、水与卫生、艾滋病指标" + ] + }, + "authority_level": "international", + "update_frequency": "annual", + "domains": [ + "health", + "demographics", + "education" + ], + "tags": [ + "unicef", + "children", + "health", + "education", + "development" + ], + "country": null, + "geographic_scope": "global" +} diff --git a/firstdata/sources/international/infrastructure/unctad-infrastructure-statistics.json b/firstdata/sources/international/infrastructure/unctad-infrastructure-statistics.json new file mode 100644 index 00000000..65b5d961 --- /dev/null +++ b/firstdata/sources/international/infrastructure/unctad-infrastructure-statistics.json @@ -0,0 +1,72 @@ +{ + "id": "unctad-infrastructure-statistics", + "name": { + "en": "UNCTAD Infrastructure Statistics Database", + "zh": "联合国贸发会议基础设施统计数据库" + }, + "description": { + "en": "UNCTADstat provides comprehensive infrastructure statistics covering transport, telecommunications, electricity, and water sectors as part of its Production Capacity Index (PCI). The database harmonizes and integrates infrastructure-related indicators for 193 economies, including both developed and developing countries, with particular focus on developing nations and transition economies.", + "zh": "联合国贸发会议统计数据库(UNCTADstat)提供涵盖运输、电信、电力和水利等部门的全面基础设施统计数据,作为其生产能力指数(PCI)的一部分。该数据库整合了193个经济体的基础设施相关指标,包括发达国家和发展中国家,特别关注发展中国家和转型经济体。" + }, + "website": "https://unctad.org", + "data_url": "https://unctadstat.unctad.org/datacentre", + "api_url": "https://unctadstat.unctad.org/EN/Documentation.html", + "authority_level": "international", + "country": null, + "domains": [ + "infrastructure", + "transport", + "telecommunications", + "energy", + "water-utilities", + "ict" + ], + "geographic_scope": "global", + "update_frequency": "annual", + "tags": [ + "infrastructure", + "基础设施", + "transport", + "运输", + "telecommunications", + "电信", + "ict", + "信息通信技术", + "electricity", + "电力", + "water-utilities", + "水利", + "production-capacity", + "生产能力", + "development-indicators", + "发展指标", + "unctad", + "贸发会议", + "un-statistics", + "联合国统计", + "trade-and-development", + "贸易与发展", + "developing-countries", + "发展中国家", + "global-infrastructure", + "全球基础设施" + ], + "data_content": { + "en": [ + "Transport infrastructure indicators (roads, railways, ports, airports)", + "Telecommunications and ICT infrastructure statistics", + "Electricity generation and distribution infrastructure data", + "Water utilities and infrastructure indicators", + "Production Capacity Index (PCI) with 46 indicators across 8 components", + "Infrastructure investment and development statistics" + ], + "zh": [ + "运输基础设施指标(道路、铁路、港口、机场)", + "电信和信息通信技术基础设施统计", + "电力生产和配送基础设施数据", + "水利公用事业和基础设施指标", + "生产能力指数(PCI),涵盖8个组成部分的46个指标", + "基础设施投资和发展统计" + ] + } +} diff --git a/firstdata/sources/international/intellectual-property/wipo.json b/firstdata/sources/international/intellectual-property/wipo.json index 68571ce9..84c8d437 100644 --- a/firstdata/sources/international/intellectual-property/wipo.json +++ b/firstdata/sources/international/intellectual-property/wipo.json @@ -14,7 +14,7 @@ "api_url": null, "country": null, "domains": [ - "intellectual property", + "intellectual-property", "patents", "trademarks", "innovation", @@ -74,4 +74,4 @@ ] }, "authority_level": "international" -} \ No newline at end of file +} diff --git a/firstdata/sources/international/labor/ilo-statistics.json b/firstdata/sources/international/labor/ilo-statistics.json new file mode 100644 index 00000000..8e44323e --- /dev/null +++ b/firstdata/sources/international/labor/ilo-statistics.json @@ -0,0 +1,46 @@ +{ + "id": "ilo-statistics", + "name": { + "en": "International Labour Organization Statistics (ILOSTAT)", + "zh": "国际劳工组织统计数据库" + }, + "description": { + "en": "The world's leading source for international labour statistics, providing comprehensive data on employment, wages, working conditions, and social protection across 230+ countries.", + "zh": "世界领先的国际劳工统计来源,提供230多个国家的就业、工资、工作条件和社会保障数据。" + }, + "website": "https://ilostat.ilo.org/", + "data_url": "https://ilostat.ilo.org/data/", + "api_url": "https://ilostat.ilo.org/resources/sdmx-tools/", + "authority_level": "international", + "country": null, + "domains": [ + "labor", + "economics" + ], + "tags": [ + "employment", + "wages", + "labor-market", + "unemployment", + "social-protection", + "ilo" + ], + "update_frequency": "annual", + "data_content": { + "en": [ + "Employment and unemployment rates", + "Wages and earnings", + "Working conditions", + "Child labour statistics", + "Social protection coverage" + ], + "zh": [ + "就业和失业率", + "工资和收入", + "工作条件", + "童工统计", + "社会保障覆盖" + ] + }, + "geographic_scope": "global" +} diff --git a/firstdata/sources/international/paleontology/gbif.json b/firstdata/sources/international/paleontology/gbif.json new file mode 100644 index 00000000..0616dbc8 --- /dev/null +++ b/firstdata/sources/international/paleontology/gbif.json @@ -0,0 +1,55 @@ +{ + "id": "gbif", + "name": { + "en": "Global Biodiversity Information Facility (GBIF)", + "zh": "全球生物多样性信息设施" + }, + "description": { + "en": "GBIF is an international network and data infrastructure providing open access to biodiversity data from around the world. It aggregates over 2.6 billion species occurrence records from thousands of institutions, including museum specimens, citizen science observations, and environmental DNA samples. Essential for research in ecology, conservation, paleontology, and evolution.", + "zh": "GBIF是一个国际网络和数据基础设施,提供全球生物多样性数据的开放访问。汇聚来自数千家机构的超过26亿条物种记录,包括博物馆标本、公民科学观测和环境DNA样本。是生态学、保护、古生物学和进化研究的重要资源。" + }, + "website": "https://www.gbif.org", + "data_url": "https://www.gbif.org/occurrence/search", + "api_url": "https://www.gbif.org/developer/summary", + "country": null, + "domains": [ + "biodiversity", + "ecology", + "paleontology", + "biology", + "conservation" + ], + "geographic_scope": "global", + "update_frequency": "daily", + "tags": [ + "biodiversity", + "species", + "ecology", + "conservation", + "specimens", + "citizen-science", + "open-data", + "api" + ], + "data_content": { + "en": [ + "Species occurrences - Over 2.6 billion georeferenced records worldwide", + "Taxonomy backbone - Standardized species classification and nomenclature", + "Museum specimens - Digitized natural history collections from global institutions", + "Citizen science data - Observations from platforms like iNaturalist, eBird", + "Environmental DNA - Metabarcoding and eDNA sampling records", + "Fossil records - Paleontological specimen data from natural history museums", + "Species checklists - Regional and thematic species inventories" + ], + "zh": [ + "物种记录 - 全球超过26亿条地理参考记录", + "分类学骨架 - 标准化物种分类和命名", + "博物馆标本 - 全球机构数字化自然历史收藏", + "公民科学数据 - 来自 iNaturalist、eBird 等平台的观测", + "环境DNA - 宏条形码和eDNA采样记录", + "化石记录 - 自然历史博物馆的古生物标本数据", + "物种名录 - 区域和专题物种清单" + ] + }, + "authority_level": "international" +} diff --git a/firstdata/sources/international/paleontology/paleobiodb.json b/firstdata/sources/international/paleontology/paleobiodb.json new file mode 100644 index 00000000..ccb8dd76 --- /dev/null +++ b/firstdata/sources/international/paleontology/paleobiodb.json @@ -0,0 +1,54 @@ +{ + "id": "paleobiodb", + "name": { + "en": "Paleobiology Database (PBDB)", + "zh": "古生物学数据库" + }, + "description": { + "en": "The Paleobiology Database is a public resource for paleontological data, providing information on the fossil record of plants, animals, and microorganisms. It contains over 1.5 million fossil occurrences from more than 80,000 collections worldwide, spanning the entire Phanerozoic eon. The database supports research on biodiversity, extinction, evolution, and paleoecology.", + "zh": "古生物学数据库是古生物数据的公共资源,提供植物、动物和微生物的化石记录信息。包含全球超过80,000个采集点的150多万条化石记录,时间跨度涵盖整个显生宙。支持生物多样性、灭绝、进化和古生态学研究。" + }, + "website": "https://paleobiodb.org", + "data_url": "https://paleobiodb.org/navigator/", + "api_url": "https://paleobiodb.org/data1.2/", + "country": null, + "domains": [ + "paleontology", + "biology", + "geology", + "evolution" + ], + "geographic_scope": "global", + "update_frequency": "weekly", + "tags": [ + "paleontology", + "fossils", + "biodiversity", + "evolution", + "extinction", + "stratigraphy", + "open-data", + "api" + ], + "data_content": { + "en": [ + "Fossil occurrences - Over 1.5 million records with taxonomic, geographic, and stratigraphic data", + "Taxonomic database - Classification of fossil organisms across all major groups", + "Geologic time scale - Temporal framework for fossil record analysis", + "Paleogeographic data - Ancient plate positions and continental configurations", + "Collection records - Locality, lithology, and environmental information", + "Diversity curves - Biodiversity trends through geological time", + "Mass extinction data - Records of major extinction events" + ], + "zh": [ + "化石记录 - 超过150万条含分类学、地理和地层信息的记录", + "分类数据库 - 所有主要类群化石生物的分类", + "地质年代表 - 化石记录分析的时间框架", + "古地理数据 - 古板块位置和大陆构型", + "采集记录 - 产地、岩性和环境信息", + "多样性曲线 - 地质时期生物多样性趋势", + "大灭绝数据 - 主要灭绝事件记录" + ] + }, + "authority_level": "research" +} diff --git a/firstdata/sources/international/standards-metrology/bipm-kcdb.json b/firstdata/sources/international/standards-metrology/bipm-kcdb.json index 31ebab37..1878d720 100644 --- a/firstdata/sources/international/standards-metrology/bipm-kcdb.json +++ b/firstdata/sources/international/standards-metrology/bipm-kcdb.json @@ -15,30 +15,30 @@ "country": null, "domains": [ "metrology", - "measurement standards", - "international system of units (si)", - "time and frequency", - "mass and related quantities", + "measurement-standards", + "international-system-of-units", + "time-and-frequency", + "mass-and-related-quantities", "length", "thermometry", - "electricity and magnetism", - "photometry and radiometry", - "ionizing radiation", - "chemistry and biology", - "acoustics, ultrasound and vibration" + "electricity-and-magnetism", + "photometry-and-radiometry", + "ionizing-radiation", + "chemistry-and-biology", + "acoustics-ultrasound-and-vibration" ], "geographic_scope": "global", "update_frequency": "daily", "tags": [ "metrology", "measurement-standards", - "SI-units", + "si-units", "calibration", "international-standards", "quality-assurance", - "UTC", + "utc", "traceability", - "CIPM-MRA", + "cipm-mra", "national-metrology-institutes" ], "data_content": { diff --git a/firstdata/sources/international/standards-metrology/codex-alimentarius.json b/firstdata/sources/international/standards-metrology/codex-alimentarius.json index f50d4de0..55c59913 100644 --- a/firstdata/sources/international/standards-metrology/codex-alimentarius.json +++ b/firstdata/sources/international/standards-metrology/codex-alimentarius.json @@ -13,18 +13,18 @@ "api_url": null, "country": null, "domains": [ - "food safety", - "food standards", - "food labeling", - "food hygiene", - "food additives", - "pesticide residues", - "veterinary drug residues", + "food-safety", + "food-standards", + "food-labeling", + "food-hygiene", + "food-additives", + "pesticide-residues", + "veterinary-drug-residues", "contaminants", - "food inspection", - "certification systems", + "food-inspection", + "certification-systems", "nutrition", - "food quality" + "food-quality" ], "geographic_scope": "global", "update_frequency": "annual", diff --git a/firstdata/sources/international/standards-metrology/global-reporting-initiative.json b/firstdata/sources/international/standards-metrology/global-reporting-initiative.json new file mode 100644 index 00000000..acefd93f --- /dev/null +++ b/firstdata/sources/international/standards-metrology/global-reporting-initiative.json @@ -0,0 +1,53 @@ +{ + "id": "global-reporting-initiative", + "name": { + "en": "GRI - Global Reporting Initiative", + "zh": "全球报告倡议组织" + }, + "description": { + "en": "The Global Reporting Initiative (GRI) is an independent international organization that publishes the most widely adopted sustainability reporting standards. GRI provides the GRI Standards for economic, environmental, social and governance disclosures, a Sustainability Disclosure Database of corporate reports, and topic-specific guidance used by companies and regulators worldwide.", + "zh": "全球报告倡议组织(GRI)是独立的国际组织,发布全球采用最广泛的可持续发展报告标准。GRI 提供涵盖经济、环境、社会和治理披露的《GRI 准则》、企业报告的可持续发展披露数据库以及各议题专项指南,被全球企业和监管机构广泛使用。" + }, + "website": "https://www.globalreporting.org", + "data_url": "https://www.globalreporting.org/standards/", + "api_url": null, + "authority_level": "international", + "country": null, + "domains": [ + "esg-data", + "sustainability", + "standards" + ], + "geographic_scope": "global", + "update_frequency": "irregular", + "tags": [ + "esg", + "esg-reporting", + "esg披露", + "sustainability-reporting", + "可持续发展报告", + "gri-standards", + "gri准则", + "sustainability", + "可持续发展", + "corporate-disclosure", + "企业披露", + "GRI" + ], + "data_content": { + "en": [ + "GRI Standards: Universal, Sector and Topic Standards for sustainability reporting", + "GRI Sustainability Disclosure Database of corporate reports", + "Sector-specific reporting guidance (e.g., oil & gas, agriculture, coal)", + "Interoperability mappings with TCFD, ISSB, SASB and EU CSRD", + "Topic-specific standards on GHG emissions, water, biodiversity, labor and human rights" + ], + "zh": [ + "GRI 准则:可持续发展报告的通用、行业和议题标准", + "GRI 可持续发展披露数据库中的企业报告", + "行业专项报告指南(如油气、农业、煤炭)", + "与 TCFD、ISSB、SASB 和欧盟 CSRD 的互操作映射", + "有关温室气体排放、水、生物多样性、劳工和人权等议题的专项标准" + ] + } +} diff --git a/firstdata/sources/international/standards-metrology/sasb-standards.json b/firstdata/sources/international/standards-metrology/sasb-standards.json new file mode 100644 index 00000000..603f5865 --- /dev/null +++ b/firstdata/sources/international/standards-metrology/sasb-standards.json @@ -0,0 +1,54 @@ +{ + "id": "sasb-standards", + "name": { + "en": "SASB Standards (IFRS Foundation)", + "zh": "SASB可持续发展会计准则(IFRS基金会)" + }, + "description": { + "en": "SASB Standards, now maintained by the IFRS Foundation alongside the ISSB, provide industry-specific sustainability disclosure standards covering 77 industries. They identify the subset of environmental, social, and governance (ESG) issues most relevant to financial performance and enterprise value, and are widely used for investor-focused sustainability disclosure globally.", + "zh": "SASB 可持续发展会计准则现由 IFRS 基金会与国际可持续准则理事会(ISSB)共同维护,提供覆盖 77 个行业的专项可持续披露准则。该准则识别与财务表现和企业价值最相关的环境、社会与治理(ESG)议题,是面向投资者的可持续信息披露的全球通用标准。" + }, + "website": "https://sasb.ifrs.org", + "data_url": "https://sasb.ifrs.org/standards/", + "api_url": null, + "authority_level": "international", + "country": null, + "domains": [ + "esg-data", + "sustainability", + "standards", + "finance" + ], + "geographic_scope": "global", + "update_frequency": "irregular", + "tags": [ + "sasb", + "esg", + "esg披露", + "sustainability-accounting", + "可持续会计", + "industry-standards", + "行业标准", + "issb", + "国际可持续准则", + "investor-disclosure", + "投资者披露", + "IFRS" + ], + "data_content": { + "en": [ + "SASB Standards covering 77 industries across 11 sectors", + "Industry-specific financially material ESG disclosure topics and metrics", + "Materiality Finder tool for identifying relevant sustainability topics by industry", + "Mapping between SASB Standards and IFRS S1/S2 (ISSB) disclosure requirements", + "Implementation resources, FAQs, and downloadable standards" + ], + "zh": [ + "覆盖 11 个行业板块、77 个细分行业的 SASB 准则", + "财务重要的行业特定 ESG 披露议题与指标", + "重要性查询工具(Materiality Finder),按行业识别相关可持续议题", + "SASB 准则与 IFRS S1/S2(ISSB)披露要求的映射", + "实施资源、常见问题和可下载准则文本" + ] + } +} diff --git a/firstdata/sources/international/trade/bea-international-trade.json b/firstdata/sources/international/trade/bea-international-trade.json index 4fa9d848..ccadd2e2 100644 --- a/firstdata/sources/international/trade/bea-international-trade.json +++ b/firstdata/sources/international/trade/bea-international-trade.json @@ -1,17 +1,16 @@ { "id": "bea-international-trade", "name": { - "en": "BEA International Trade in Goods and Services", - "zh": "美国经济分析局国际贸易数据" + "en": "BEA Interactive Data - International Trade", + "zh": "美国经济分析局国际贸易互动数据" }, "description": { - "en": "The U.S. Bureau of Economic Analysis (BEA) provides comprehensive monthly statistics on U.S. international trade in goods and services. The dataset includes detailed historical data from 1960 to present, covering exports and imports by country and product category, with both seasonally adjusted and unadjusted figures. Data is accessible through interactive tables, API, and downloadable formats.", - "zh": "美国经济分析局(BEA)提供全面的美国国际货物和服务贸易月度统计数据。数据集包含从1960年至今的详细历史数据,涵盖按国家和产品类别分类的出口和进口数据,提供季节性调整和未调整数据。数据可通过交互式表格、API和可下载格式访问。" + "en": "The Bureau of Economic Analysis (BEA) Interactive Data application provides comprehensive U.S. international trade statistics including goods and services trade, bilateral trade flows, and services supplied through affiliates. Features customizable time ranges from 1960 to present with monthly and annual data releases.", + "zh": "美国经济分析局(BEA)互动数据应用提供全面的美国国际贸易统计数据,包括商品和服务贸易、双边贸易流以及通过附属机构提供的服务。提供从1960年至今的可自定义时间范围,包含月度和年度数据发布。" }, "website": "https://www.bea.gov", "data_url": "https://apps.bea.gov/iTable/index_ita.cfm", - "api_url": "https://apps.bea.gov/API/signup/index.html", - "authority_level": "government", + "api_url": "https://apps.bea.gov/API/docs/index.htm", "country": "US", "domains": [ "trade", @@ -22,46 +21,43 @@ "update_frequency": "monthly", "tags": [ "international_trade", - "国际贸易", - "exports", - "出口", - "imports", - "进口", + "美国贸易数据", + "us_trade_statistics", + "goods_and_services", + "bilateral_trade", + "双边贸易", "trade_balance", - "贸易差额", - "goods_trade", - "货物贸易", + "贸易平衡", "services_trade", "服务贸易", - "us_trade", - "美国贸易", - "bilateral_trade", - "双边贸易", - "trade_statistics", - "贸易统计", "bea", - "bureau_of_economic_analysis" + "economic_analysis", + "trade_deficit", + "贸易逆差", + "export_import", + "进出口", + "international_transactions", + "国际交易", + "trade_in_value_added", + "增加值贸易" ], "data_content": { "en": [ - "Monthly U.S. international trade in goods and services from 1960 to present, including total exports, imports, and trade balance", - "Bilateral trade data by country and geographic area (available from 1999 onwards) covering major trading partners", - "Trade in goods with detailed product category breakdowns (seasonally adjusted and unadjusted)", - "Trade in services including categories such as travel, transport, intellectual property, financial services, and other business services", - "International Transactions Balance of Payments - comprehensive U.S. transactions in goods, services, income, and investment with other countries", - "International Services Expanded Detail - detailed service sector information including multinational enterprise activities", - "International Investment Position - financial asset and liability records between the U.S. and other nations", - "Direct Investment by Country and Industry - investment data involving business control or significant influence" + "International Trade in Goods and Services - Monthly and annual U.S. trade data including goods trade deficit, services surplus, and geographic breakdowns by country and region (1960-present)", + "International Transactions Accounts - Comprehensive data on all transactions between U.S. and foreign residents including trade, investment income, and financial flows", + "International Services Trade - Detailed annual statistics on U.S. trade in services by type of service for 90+ countries and areas, including ICT-related services", + "Trade by Country and Area - Bilateral trade statistics with selected countries and geographic regions from 1999 onwards", + "Trade in Value Added (TiVA) - Analysis of domestic and foreign value-added content in exports and imports", + "International Services Supplied Through Affiliates - Data on services supplied by affiliates of multinational enterprises operating across borders" ], "zh": [ - "从1960年至今的美国国际货物和服务贸易月度数据,包括总出口、进口和贸易差额", - "按国家和地理区域分类的双边贸易数据(1999年起可用),涵盖主要贸易伙伴", - "货物贸易详细产品类别细分(包含季节性调整和未调整数据)", - "服务贸易,包括旅行、运输、知识产权、金融服务和其他商业服务等类别", - "国际交易收支平衡表 - 美国与其他国家在货物、服务、收入和投资方面的全面交易数据", - "国际服务扩展详细信息 - 详细的服务业信息,包括跨国企业活动", - "国际投资头寸 - 美国与其他国家之间的金融资产和负债记录", - "按国家和行业分类的直接投资 - 涉及企业控制权或重大影响力的投资数据" + "国际商品和服务贸易 - 月度和年度美国贸易数据,包括商品贸易逆差、服务顺差以及按国家和地区的地理细分(1960年至今)", + "国际交易账户 - 美国与外国居民之间所有交易的综合数据,包括贸易、投资收入和金融流动", + "国际服务贸易 - 按服务类型分类的美国与90多个国家和地区的服务贸易详细年度统计,包括信息通信技术相关服务", + "按国家和地区分类的贸易 - 1999年以来与特定国家和地理区域的双边贸易统计", + "增加值贸易(TiVA) - 分析出口和进口中的国内和国外增加值含量", + "通过附属机构提供的国际服务 - 跨国企业附属机构跨境提供服务的数据" ] - } + }, + "authority_level": "government" } diff --git a/firstdata/sources/international/trade/icc-trade-register.json b/firstdata/sources/international/trade/icc-trade-register.json index c1280a07..57a8bc8b 100644 --- a/firstdata/sources/international/trade/icc-trade-register.json +++ b/firstdata/sources/international/trade/icc-trade-register.json @@ -21,29 +21,29 @@ "geographic_scope": "global", "update_frequency": "annual", "tags": [ - "trade finance", + "trade-finance", "贸易融资", - "supply chain finance", + "supply-chain-finance", "供应链金融", - "trade statistics", + "trade-statistics", "贸易统计", - "default rates", + "default-rates", "违约率", - "loss given default", + "loss-given-default", "违约损失率", - "trade register", + "trade-register", "贸易登记", - "ICC", + "icc", "国际商会", "banking", "银行业", - "risk assessment", + "risk-assessment", "风险评估", - "trade credit", + "trade-credit", "贸易信贷", - "documentary trade", + "documentary-trade", "跟单贸易", - "letter of credit", + "letter-of-credit", "信用证", "guarantees", "保函" diff --git a/firstdata/sources/international/trade/unctad-trade-transport.json b/firstdata/sources/international/trade/unctad-trade-transport.json new file mode 100644 index 00000000..ef387cc0 --- /dev/null +++ b/firstdata/sources/international/trade/unctad-trade-transport.json @@ -0,0 +1,81 @@ +{ + "id": "unctad-trade-transport", + "name": { + "en": "UNCTAD Trade-and-Transport Dataset", + "zh": "联合国贸发会议贸易与运输数据集" + }, + "description": { + "en": "The Trade-and-Transport Dataset, developed by UNCTAD and the World Bank, provides comprehensive data on merchandise trade value and volume, freight transport costs, and transport work required per shipment between over 170 economies from 2016 to 2021. Data is broken down by commodity group and mode of transport, offering derived indicators such as freight rates and transport cost intensities.", + "zh": "贸易与运输数据集由联合国贸发会议(UNCTAD)和世界银行联合开发,提供2016-2021年间170多个经济体的货物贸易价值和数量、货运成本以及每次装运所需运输工作量的综合数据。数据按商品组和运输方式细分,提供运费率和运输成本强度等衍生指标。" + }, + "website": "https://unctad.org", + "data_url": "https://unctadstat.unctad.org/EN/TransportCost.html", + "api_url": "https://unctadstat.unctad.org/datacentre", + "authority_level": "international", + "country": null, + "domains": [ + "trade", + "transportation", + "logistics", + "economics" + ], + "geographic_scope": "global", + "update_frequency": "annual", + "tags": [ + "unctad", + "联合国贸发会议", + "trade", + "贸易", + "transport", + "运输", + "logistics", + "物流", + "freight-cost", + "运费成本", + "shipping", + "海运", + "transport-cost", + "运输成本", + "merchandise-trade", + "货物贸易", + "freight-rates", + "运费率", + "unctadstat", + "trade-statistics", + "贸易统计", + "transport-statistics", + "运输统计", + "global-trade", + "全球贸易", + "supply-chain", + "供应链", + "world-bank", + "世界银行" + ], + "data_content": { + "en": [ + "Merchandise trade value and volume for 170+ economies (2016-2021)", + "Freight transport costs per shipment by commodity group", + "Transport work required (ton-kilometers) by mode of transport", + "Freight rates by commodity and transport mode", + "Transport cost intensities by value and volume", + "Trade flows broken down by mode of transport (sea, air, land, rail)", + "Liner shipping connectivity index", + "Maritime transport costs and seaborne trade statistics", + "Country-pair bilateral trade and transport data", + "Data available via UNCTADstat portal, API, and bulk file downloads" + ], + "zh": [ + "170多个经济体的货物贸易价值和数量(2016-2021年)", + "按商品组分类的每次装运货运成本", + "按运输方式分类的所需运输工作量(吨公里)", + "按商品和运输方式分类的运费率", + "按价值和数量分类的运输成本强度", + "按运输方式(海运、空运、陆运、铁路)细分的贸易流量", + "班轮航运连通性指数", + "海运成本和海运贸易统计", + "国家对之间的双边贸易和运输数据", + "通过UNCTADstat门户、API和批量文件下载提供数据" + ] + } +} diff --git a/firstdata/sources/international/transportation/icao-aviation-data.json b/firstdata/sources/international/transportation/icao-aviation-data.json index d6a26d43..bb1728ca 100644 --- a/firstdata/sources/international/transportation/icao-aviation-data.json +++ b/firstdata/sources/international/transportation/icao-aviation-data.json @@ -24,30 +24,30 @@ "tags": [ "aviation", "航空", - "civil aviation", + "civil-aviation", "民用航空", - "airport codes", + "airport-codes", "机场代码", - "airline codes", + "airline-codes", "航空公司代码", - "aircraft codes", + "aircraft-codes", "飞机代码", - "ICAO", + "icao", "国际民航组织", - "NOTAM", + "notam", "航行通告", - "flight data", + "flight-data", "飞行数据", - "air traffic", + "air-traffic", "空中交通", - "aviation safety", + "aviation-safety", "航空安全", - "accident statistics", + "accident-statistics", "事故统计", - "DOC7910", - "DOC8585", - "DOC8643", - "API" + "doc7910", + "doc8585", + "doc8643", + "api" ], "data_content": { "en": [ diff --git a/firstdata/sources/international/transportation/itf-transport.json b/firstdata/sources/international/transportation/itf-transport.json new file mode 100644 index 00000000..f75a508b --- /dev/null +++ b/firstdata/sources/international/transportation/itf-transport.json @@ -0,0 +1,76 @@ +{ + "id": "itf-transport", + "name": { + "en": "ITF Transport Statistics", + "zh": "国际交通论坛交通统计" + }, + "description": { + "en": "The International Transport Forum (ITF), an intergovernmental organisation with 68 member countries affiliated with the OECD, publishes comprehensive global transport statistics covering road safety, infrastructure investment, passenger and freight transport volumes, CO2 emissions from transport, and modal split across all transport modes including road, rail, aviation, and maritime.", + "zh": "国际交通论坛(ITF)是附属于经合组织的政府间国际组织,拥有68个成员国,发布涵盖道路安全、基础设施投资、客货运量、交通碳排放以及公路、铁路、航空和海运等各运输方式运量份额的综合全球交通统计数据。" + }, + "website": "https://www.itf-oecd.org/", + "data_url": "https://www.itf-oecd.org/transport-statistics", + "api_url": "https://data-explorer.oecd.org/vis?df[ds]=dsDisseminateFinalDMZ&df[id]=ITF_INDICATORS&df[ag]=ITF", + "authority_level": "international", + "country": null, + "domains": [ + "transportation", + "infrastructure", + "environment", + "statistics" + ], + "geographic_scope": "global", + "update_frequency": "annual", + "tags": [ + "transport", + "交通", + "road-safety", + "道路安全", + "freight", + "货运", + "passenger-transport", + "客运", + "infrastructure-investment", + "基础设施投资", + "co2-emissions", + "碳排放", + "modal-split", + "运输方式结构", + "itf", + "国际交通论坛", + "oecd", + "经合组织", + "rail", + "铁路", + "maritime", + "海运", + "logistics", + "物流" + ], + "data_content": { + "en": [ + "Road fatalities and injury statistics by country and year", + "Passenger transport volumes by mode (road, rail, air, waterborne)", + "Freight transport volumes by mode (road, rail, inland waterways, maritime)", + "Transport infrastructure investment and maintenance expenditure", + "CO2 emissions from transport sector by country and mode", + "Vehicle fleet size and composition statistics", + "Transport network length (road, rail, waterways) by country", + "Urban public transport statistics", + "Port and maritime shipping traffic data", + "Transport price indices and economic indicators" + ], + "zh": [ + "各国历年道路死亡和受伤统计数据", + "各运输方式客运量(公路、铁路、航空、水运)", + "各运输方式货运量(公路、铁路、内河航运、海运)", + "交通基础设施投资和维护支出", + "各国各运输方式交通碳排放量", + "车辆保有量及结构统计", + "各国交通网络里程(公路、铁路、内河航道)", + "城市公共交通统计数据", + "港口和海上航运流量数据", + "交通价格指数和经济指标" + ] + } +} diff --git a/firstdata/sources/japan/trade/japan-customs.json b/firstdata/sources/japan/trade/japan-customs.json new file mode 100644 index 00000000..51e870c0 --- /dev/null +++ b/firstdata/sources/japan/trade/japan-customs.json @@ -0,0 +1,43 @@ +{ + "id": "japan-customs", + "name": { + "en": "Japan Customs Trade Statistics", + "zh": "日本财务省贸易统计", + "native": "貿易統計" + }, + "description": { + "en": "Trade Statistics of Japan, compiled by the Ministry of Finance, provides detailed import and export data by commodity, country, and customs district. Covers all goods crossing Japanese borders.", + "zh": "日本贸易统计由财务省编制,提供按商品、国家和海关辖区分类的详细进出口数据。覆盖所有进出日本国境的商品。" + }, + "website": "https://www.customs.go.jp", + "data_url": "https://www.customs.go.jp/toukei/info/index_e.htm", + "api_url": "https://www.e-stat.go.jp/api/", + "country": "JP", + "domains": [ + "trade", + "economics" + ], + "tags": [ + "customs", + "imports", + "exports", + "trade-statistics" + ], + "authority_level": "government", + "update_frequency": "monthly", + "geographic_scope": "national", + "data_content": { + "en": [ + "Trade Statistics - Monthly import/export by commodity and country", + "Customs District Data - Trade volumes by port and customs office", + "HS Code Analysis - Detailed commodity-level trade classification", + "Trade Trends - Year-over-year trade value and volume changes" + ], + "zh": [ + "贸易统计 - 按商品和国家分类的月度进出口", + "海关辖区数据 - 按港口和海关办事处分类的贸易量", + "HS编码分析 - 详细商品级贸易分类", + "贸易趋势 - 贸易额和贸易量同比变化" + ] + } +} diff --git a/firstdata/sources/regional/asean-centre-for-energy.json b/firstdata/sources/regional/asean-centre-for-energy.json new file mode 100644 index 00000000..037b0572 --- /dev/null +++ b/firstdata/sources/regional/asean-centre-for-energy.json @@ -0,0 +1,60 @@ +{ + "id": "asean-centre-for-energy", + "name": { + "en": "ASEAN Centre for Energy", + "zh": "东盟能源中心" + }, + "description": { + "en": "The ASEAN Centre for Energy (ACE) is an intergovernmental organisation established by ASEAN member states to accelerate the integration of energy strategies across Southeast Asia. ACE publishes authoritative regional energy data covering energy supply and demand balances, electricity generation mix, renewable energy capacity, energy efficiency indicators, and the flagship ASEAN Energy Outlook which projects long-term energy pathways for the ten ASEAN countries.", + "zh": "东盟能源中心(ACE)是由东盟成员国共同设立的政府间组织,致力于推进东南亚地区能源战略一体化。ACE发布权威的区域能源数据,涵盖能源供需平衡、电力生产结构、可再生能源装机容量、能效指标,以及其旗舰出版物《东盟能源展望》——对东盟十国的中长期能源发展路径进行预测。" + }, + "website": "https://aseanenergy.org", + "data_url": "https://aseanenergy.org/publications/", + "api_url": null, + "authority_level": "international", + "country": null, + "domains": [ + "energy", + "environment", + "economics" + ], + "geographic_scope": "regional", + "update_frequency": "annual", + "tags": [ + "asean", + "southeast-asia", + "energy", + "renewable-energy", + "electricity", + "energy-outlook", + "energy-efficiency", + "intergovernmental", + "ACE", + "东盟", + "东南亚", + "能源", + "可再生能源", + "能源展望", + "能源中心" + ], + "data_content": { + "en": [ + "ASEAN Energy Outlook (long-term projections)", + "Regional energy balances (supply/demand)", + "Electricity generation mix and capacity", + "Renewable energy deployment statistics", + "Energy efficiency and conservation indicators", + "Cross-border power trade (ASEAN Power Grid)", + "Country-level energy profiles for 10 ASEAN members" + ], + "zh": [ + "《东盟能源展望》长期预测报告", + "区域能源平衡(供需)数据", + "电力生产结构与装机容量", + "可再生能源部署统计", + "能效与节能指标", + "跨境电力贸易(东盟电网)", + "东盟十国国别能源数据" + ] + } +} diff --git a/firstdata/sources/regional/europe/entso-e.json b/firstdata/sources/regional/europe/entso-e.json new file mode 100644 index 00000000..6d6752a0 --- /dev/null +++ b/firstdata/sources/regional/europe/entso-e.json @@ -0,0 +1,64 @@ +{ + "id": "entso-e", + "name": { + "en": "ENTSO-E Transparency Platform", + "zh": "欧洲输电系统运营商联盟透明平台" + }, + "description": { + "en": "The European Network of Transmission System Operators for Electricity (ENTSO-E) Transparency Platform provides free, continuous access to pan-European electricity market data. Mandated by EU Regulation 543/2013, it publishes data from 42 TSOs across 36 countries covering generation, load, transmission, balancing, and outages. It is the authoritative source for European electricity market transparency, serving policymakers, researchers, traders, and the public.", + "zh": "欧洲输电系统运营商联盟(ENTSO-E)透明平台提供泛欧电力市场数据的免费持续访问。根据欧盟法规543/2013的要求,该平台发布来自36个国家42个输电系统运营商的数据,涵盖发电、负荷、输电、平衡和停运信息。这是欧洲电力市场透明度的权威数据来源,服务于政策制定者、研究人员、交易商和公众。" + }, + "website": "https://www.entsoe.eu", + "data_url": "https://transparency.entsoe.eu", + "api_url": "https://transparency.entsoe.eu/content/static_content/Static%20content/web%20api/Guide.html", + "country": null, + "domains": [ + "energy", + "infrastructure" + ], + "geographic_scope": "regional", + "update_frequency": "real-time", + "tags": [ + "entso-e", + "electricity", + "power-grid", + "european-energy", + "电力市场", + "欧洲电力", + "transmission", + "输电", + "generation", + "发电", + "energy-market", + "renewable-energy", + "cross-border-flow", + "day-ahead-prices" + ], + "data_content": { + "en": [ + "Actual generation output per generation unit and type", + "Day-ahead and intraday electricity prices", + "Cross-border physical flows between countries", + "Total load (actual and forecast)", + "Installed generation capacity by fuel type", + "Transmission capacity and congestion data", + "Balancing market data", + "Planned and forced outages (generation and transmission)", + "Wind and solar generation forecasts", + "Net transfer capacity (NTC) between bidding zones" + ], + "zh": [ + "各发电机组和类型的实际发电量", + "日前和日内电力价格", + "跨境物理电力流", + "总负荷(实际和预测)", + "按燃料类型的装机容量", + "输电容量和拥塞数据", + "平衡市场数据", + "计划和非计划停运(发电和输电)", + "风电和光伏发电预测", + "竞价区域间的净传输容量(NTC)" + ] + }, + "authority_level": "international" +} diff --git a/firstdata/sources/sectors/A-agriculture/amis.json b/firstdata/sources/sectors/A-agriculture/amis.json index b882affc..72caed99 100644 --- a/firstdata/sources/sectors/A-agriculture/amis.json +++ b/firstdata/sources/sectors/A-agriculture/amis.json @@ -14,12 +14,12 @@ "country": null, "domains": [ "agriculture", - "food security", - "commodity markets", - "agricultural trade", - "food prices", - "market transparency", - "policy coordination" + "food-security", + "commodity-markets", + "agricultural-trade", + "food-prices", + "market-transparency", + "policy-coordination" ], "geographic_scope": "global", "update_frequency": "monthly", diff --git a/firstdata/sources/sectors/B-mining/rare-earth/china-rare-earth-association.json b/firstdata/sources/sectors/B-mining/rare-earth/china-rare-earth-association.json index 27264822..251e96c9 100644 --- a/firstdata/sources/sectors/B-mining/rare-earth/china-rare-earth-association.json +++ b/firstdata/sources/sectors/B-mining/rare-earth/china-rare-earth-association.json @@ -14,11 +14,11 @@ "country": "CN", "domains": [ "mining", - "rare earth industry", - "metal materials", - "resource management", - "industrial economics", - "commodity price" + "rare-earth-industry", + "metal-materials", + "resource-management", + "industrial-economics", + "commodity-price" ], "geographic_scope": "national", "update_frequency": "daily", @@ -49,7 +49,7 @@ "rare-earth-applications", "稀土资源", "rare-earth-resources", - "ACREI" + "acrei" ], "data_content": { "en": [ diff --git a/firstdata/sources/sectors/C-manufacturing/additive/china-additive-manufacturing-alliance.json b/firstdata/sources/sectors/C-manufacturing/additive/china-additive-manufacturing-alliance.json index 5d2a0c6a..5216a0f9 100644 --- a/firstdata/sources/sectors/C-manufacturing/additive/china-additive-manufacturing-alliance.json +++ b/firstdata/sources/sectors/C-manufacturing/additive/china-additive-manufacturing-alliance.json @@ -13,13 +13,13 @@ "api_url": null, "country": "CN", "domains": [ - "additive manufacturing", - "3d printing", - "advanced manufacturing", - "industrial statistics", - "manufacturing technology", - "materials science", - "equipment manufacturing" + "additive-manufacturing", + "3d-printing", + "advanced-manufacturing", + "industrial-statistics", + "manufacturing-technology", + "materials-science", + "equipment-manufacturing" ], "geographic_scope": "national", "update_frequency": "monthly", diff --git a/firstdata/sources/sectors/C-manufacturing/automotive/china-auto-association.json b/firstdata/sources/sectors/C-manufacturing/automotive/china-auto-association.json index 4d645458..f72d8c55 100644 --- a/firstdata/sources/sectors/C-manufacturing/automotive/china-auto-association.json +++ b/firstdata/sources/sectors/C-manufacturing/automotive/china-auto-association.json @@ -16,8 +16,8 @@ "automotive", "manufacturing", "transportation", - "new energy vehicles", - "industrial statistics" + "new-energy-vehicles", + "industrial-statistics" ], "geographic_scope": "national", "update_frequency": "monthly", diff --git a/firstdata/sources/sectors/C-manufacturing/automotive/china-charging-alliance.json b/firstdata/sources/sectors/C-manufacturing/automotive/china-charging-alliance.json index b0aa3c6e..244b1f1c 100644 --- a/firstdata/sources/sectors/C-manufacturing/automotive/china-charging-alliance.json +++ b/firstdata/sources/sectors/C-manufacturing/automotive/china-charging-alliance.json @@ -26,11 +26,11 @@ "electric-vehicle", "电动汽车", "新能源汽车", - "NEV", + "nev", "充电站", "charging-station", "充电联盟", - "EVCIPA", + "evcipa", "运营商统计", "operator-statistics", "充电设施", diff --git a/firstdata/sources/sectors/C-manufacturing/chemicals/china-petroleum-chemical-federation.json b/firstdata/sources/sectors/C-manufacturing/chemicals/china-petroleum-chemical-federation.json index 8300ff8d..66048609 100644 --- a/firstdata/sources/sectors/C-manufacturing/chemicals/china-petroleum-chemical-federation.json +++ b/firstdata/sources/sectors/C-manufacturing/chemicals/china-petroleum-chemical-federation.json @@ -13,14 +13,14 @@ "api_url": null, "country": "CN", "domains": [ - "chemical industry", - "petroleum industry", - "industrial statistics", + "chemical-industry", + "petroleum-industry", + "industrial-statistics", "catalysts", - "chemical materials", + "chemical-materials", "petrochemicals", - "industry standards", - "economic analysis" + "industry-standards", + "economic-analysis" ], "geographic_scope": "national", "update_frequency": "monthly", @@ -39,7 +39,7 @@ "industry-statistics", "经济运行", "economic-operation", - "CPCIF", + "cpcif", "中国石油和化学工业联合会", "行业协会", "industry-association", diff --git a/firstdata/sources/sectors/C-manufacturing/electronics/china-lcd-association.json b/firstdata/sources/sectors/C-manufacturing/electronics/china-lcd-association.json index da00a950..141580db 100644 --- a/firstdata/sources/sectors/C-manufacturing/electronics/china-lcd-association.json +++ b/firstdata/sources/sectors/C-manufacturing/electronics/china-lcd-association.json @@ -1,5 +1,4 @@ { - "$schema": "https://firstdata.org/schemas/firstdata-v2.json", "id": "china-lcd-association", "name": { "en": "China Optoelectronic Display Association - Liquid Crystal Division (CODA)", @@ -9,8 +8,8 @@ "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": "http://www.coda.org.cn/", - "data_url": "http://www.coda.org.cn/#/details/more?type=list-info&id=61b1c9ec105e35101858fc49&bannerId=61b30eaa105e353264b3f083", + "website": "https://www.coda.org.cn/", + "data_url": "https://www.coda.org.cn", "api_url": null, "authority_level": "market", "country": "CN", @@ -23,28 +22,28 @@ ], "update_frequency": "irregular", "tags": [ - "LCD", - "OLED", - "Micro-LED", + "lcd", + "oled", + "micro-led", "液晶面板", "显示面板", - "panel capacity", + "panel-capacity", "面板产能", - "TFT-LCD", - "AMOLED", - "display industry", + "tft-lcd", + "amoled", + "display-industry", "显示产业", "面板制造", - "panel manufacturing", + "panel-manufacturing", "驱动芯片", - "driver IC", - "display technology", + "driver-ic", + "display-technology", "显示技术", "产业数据", - "industry statistics", - "market forecast", + "industry-statistics", + "market-forecast", "市场预测", - "CODA", + "coda", "光电子", "optoelectronics" ], diff --git a/firstdata/sources/sectors/C-manufacturing/electronics/china-optical-association.json b/firstdata/sources/sectors/C-manufacturing/electronics/china-optical-association.json index 6f7914bf..33826714 100644 --- a/firstdata/sources/sectors/C-manufacturing/electronics/china-optical-association.json +++ b/firstdata/sources/sectors/C-manufacturing/electronics/china-optical-association.json @@ -32,34 +32,34 @@ "红外", "infrared", "液晶", - "LCD", + "lcd", "LED显示", - "LED display", + "led-display", "光通信", - "optical communication", + "optical-communication", "硅光子", - "silicon photonics", + "silicon-photonics", "光学元件", - "optical components", + "optical-components", "光学仪器", - "optical instruments", + "optical-instruments", "行业协会", - "industry association", - "COEMA", + "industry-association", + "coema", "制造业", "manufacturing", "光电器件", - "photoelectric devices", + "photoelectric-devices", "光伏", "photovoltaic", "机器视觉", - "machine vision", + "machine-vision", "显示面板", - "display panel", + "display-panel", "行业数据", - "industry data", + "industry-data", "行业分析", - "industry analysis" + "industry-analysis" ], "data_content": { "en": [ diff --git a/firstdata/sources/sectors/C-manufacturing/electronics/china-semiconductor-association.json b/firstdata/sources/sectors/C-manufacturing/electronics/china-semiconductor-association.json index e25dfd2f..0302a48f 100644 --- a/firstdata/sources/sectors/C-manufacturing/electronics/china-semiconductor-association.json +++ b/firstdata/sources/sectors/C-manufacturing/electronics/china-semiconductor-association.json @@ -25,22 +25,22 @@ "半导体", "semiconductor", "集成电路", - "integrated circuit", + "integrated-circuit", "IC产业", - "IC industry", + "ic-industry", "晶圆产能", - "wafer capacity", + "wafer-capacity", "芯片制造", - "chip manufacturing", + "chip-manufacturing", "封装测试", - "packaging and testing", + "packaging-and-testing", "行业统计", - "industry statistics", + "industry-statistics", "产业运行", - "industrial operation", - "CSIA", + "industrial-operation", + "csia", "中国半导体", - "China semiconductors" + "china-semiconductors" ], "data_content": { "en": [ diff --git a/firstdata/sources/sectors/C-manufacturing/electronics/semi.json b/firstdata/sources/sectors/C-manufacturing/electronics/semi.json new file mode 100644 index 00000000..c6203401 --- /dev/null +++ b/firstdata/sources/sectors/C-manufacturing/electronics/semi.json @@ -0,0 +1,65 @@ +{ + "id": "semi", + "name": { + "en": "SEMI - Semiconductor Equipment and Materials International", + "zh": "SEMI国际半导体产业协会" + }, + "description": { + "en": "SEMI is the global industry association connecting over 3,000 member companies across the electronics design and manufacturing supply chain. Founded in 1970, SEMI provides authoritative market data and industry statistics for the semiconductor equipment, materials, and manufacturing sectors. It publishes the World Fab Forecast, equipment market statistics, materials market reports, and comprehensive industry analysis covering wafer fabrication, packaging, and testing. SEMI's data is the industry standard reference for semiconductor capital expenditure trends, fab construction activity, equipment billings, and supply chain dynamics worldwide. Note: Website returns 403 for automated requests (WAF/bot protection). Content accessible via standard browser.", + "zh": "SEMI国际半导体产业协会是连接全球3000多家会员企业的电子设计和制造供应链行业协会。SEMI成立于1970年,为半导体设备、材料和制造行业提供权威的市场数据和行业统计。发布全球晶圆厂预测报告、设备市场统计、材料市场报告以及涵盖晶圆制造、封装和测试的综合行业分析。SEMI的数据是半导体资本支出趋势、晶圆厂建设动态、设备出货额和全球供应链分析的行业标准参考。" + }, + "website": "https://semi.org", + "data_url": "https://semi.org/en/products-services/market-data", + "api_url": null, + "authority_level": "research", + "country": null, + "geographic_scope": "global", + "domains": [ + "semiconductors", + "electronics", + "manufacturing" + ], + "update_frequency": "quarterly", + "tags": [ + "半导体", + "semiconductor", + "芯片", + "chip", + "半导体设备", + "semiconductor-equipment", + "半导体材料", + "semiconductor-materials", + "晶圆厂", + "wafer-fab", + "semi", + "芯片制造", + "chip-manufacturing", + "设备出货", + "equipment-billings", + "封装测试", + "packaging-and-testing", + "world-fab-forecast", + "半导体产业", + "semiconductor-industry", + "集成电路", + "integrated-circuit" + ], + "data_content": { + "en": [ + "World Fab Forecast: quarterly database tracking global semiconductor fabrication facilities, capacity, and construction plans", + "Equipment market statistics: monthly and quarterly semiconductor equipment billings data by region (North America, Japan, Europe, China, etc.)", + "Materials market reports: annual silicon wafer, photomask, CMP, gases, and other materials shipment data", + "Industry outlook: annual semiconductor industry forecasts covering revenue, capex, and technology trends", + "Fab construction: new fab announcements, construction timelines, and investment amounts worldwide", + "Regional analysis: semiconductor market data broken down by major regions including China, Taiwan, South Korea, and North America" + ], + "zh": [ + "全球晶圆厂预测:追踪全球半导体制造设施、产能和建设计划的季度数据库", + "设备市场统计:按地区(北美、日本、欧洲、中国等)分类的月度和季度半导体设备出货数据", + "材料市场报告:硅晶圆、光掩模、CMP、气体等材料的年度出货数据", + "行业展望:涵盖收入、资本支出和技术趋势的年度半导体行业预测", + "晶圆厂建设:全球新晶圆厂公告、建设时间表和投资金额", + "区域分析:按中国、台湾、韩国、北美等主要地区分类的半导体市场数据" + ] + } +} diff --git a/firstdata/sources/sectors/C-manufacturing/machinery/china-machine-tool-association.json b/firstdata/sources/sectors/C-manufacturing/machinery/china-machine-tool-association.json index 6fcf71cb..57a1d864 100644 --- a/firstdata/sources/sectors/C-manufacturing/machinery/china-machine-tool-association.json +++ b/firstdata/sources/sectors/C-manufacturing/machinery/china-machine-tool-association.json @@ -43,9 +43,9 @@ "industry-statistics", "经济运行", "economic-performance", - "CMTBA", - "CIMT", - "CCMT" + "cmtba", + "cimt", + "ccmt" ], "data_content": { "en": [ diff --git a/firstdata/sources/sectors/C-manufacturing/robotics/china-robot-industry-alliance.json b/firstdata/sources/sectors/C-manufacturing/robotics/china-robot-industry-alliance.json index 04cd888f..f379db36 100644 --- a/firstdata/sources/sectors/C-manufacturing/robotics/china-robot-industry-alliance.json +++ b/firstdata/sources/sectors/C-manufacturing/robotics/china-robot-industry-alliance.json @@ -8,16 +8,16 @@ "en": "The Robot Branch of China Machinery Industry Federation (formerly China Robot Industry Alliance, established in April 2013) is a national industry organization led by China Machinery Industry Federation. With over 520 member units including domestic and international robot companies, research institutes, and universities, it serves as a collaborative platform for industry-academia-research-application cooperation. The branch provides industry statistical reports, organizes conferences and competitions, promotes standardization, and coordinates resources to enhance the competitiveness of China's robot industry.", "zh": "中国机械工业联合会机器人分会(前身为2013年4月成立的中国机器人产业联盟)是由中国机械工业联合会领导的全国性行业组织。拥有520余家会员单位,包括国内外机器人企业、科研院所和高校,是我国机器人产业全国性产、学、研、用行业协同工作平台。分会发布行业统计报告,组织会议和竞赛活动,推进标准化工作,协调产业资源,提升中国机器人产业竞争力。" }, - "website": "http://cria.mei.net.cn/", - "data_url": "http://cria.mei.net.cn/gzpt.asp?lm=/1310", + "website": "https://cria.mei.net.cn/", + "data_url": "https://cria.mei.net.cn/gzpt.asp?lm=/1310", "api_url": null, "country": "CN", "domains": [ "robotics", - "industrial automation", + "industrial-automation", "manufacturing", - "industry statistics", - "technology standards" + "industry-statistics", + "technology-standards" ], "geographic_scope": "national", "update_frequency": "annual", diff --git a/firstdata/sources/sectors/D-energy/bp-statistical-review.json b/firstdata/sources/sectors/D-energy/bp-statistical-review.json index ee7ff391..08ae3e2b 100644 --- a/firstdata/sources/sectors/D-energy/bp-statistical-review.json +++ b/firstdata/sources/sectors/D-energy/bp-statistical-review.json @@ -14,15 +14,15 @@ "country": null, "domains": [ "energy", - "energy economics", - "energy statistics", - "energy production", - "energy consumption", - "energy trade", - "renewable energy", - "fossil fuels", - "climate change", - "energy transition" + "energy-economics", + "energy-statistics", + "energy-production", + "energy-consumption", + "energy-trade", + "renewable-energy", + "fossil-fuels", + "climate-change", + "energy-transition" ], "geographic_scope": "global", "update_frequency": "annual", diff --git a/firstdata/sources/sectors/J-information-communication/bookscorpus.json b/firstdata/sources/sectors/J-information-communication/bookscorpus.json index eeac33f4..f056078e 100644 --- a/firstdata/sources/sectors/J-information-communication/bookscorpus.json +++ b/firstdata/sources/sectors/J-information-communication/bookscorpus.json @@ -13,29 +13,29 @@ "api_url": null, "country": null, "domains": [ - "natural language processing", - "machine learning", - "computational linguistics", - "text mining", - "deep learning" + "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", + "natural-language-processing", + "nlp", + "text-corpus", + "language-modeling", + "bert", + "gpt", "transformer", "pre-training", - "unsupervised learning", + "unsupervised-learning", "books", - "narrative text", - "machine learning", - "deep learning", - "computational linguistics" + "narrative-text", + "machine-learning", + "deep-learning", + "computational-linguistics" ], "data_content": { "en": [ diff --git a/firstdata/sources/sectors/J-information-communication/china-imt2030.json b/firstdata/sources/sectors/J-information-communication/china-imt2030.json index c69db50b..23fe79f6 100644 --- a/firstdata/sources/sectors/J-information-communication/china-imt2030.json +++ b/firstdata/sources/sectors/J-information-communication/china-imt2030.json @@ -23,8 +23,8 @@ "geographic_scope": "national", "update_frequency": "irregular", "tags": [ - "6G", - "IMT-2030", + "6g", + "imt-2030", "sixth-generation", "第六代移动通信", "wireless-communication", @@ -38,7 +38,7 @@ "5g", "next-generation", "下一代通信", - "CAICT", + "caict", "中国信息通信研究院", "空天地一体化", "integrated-space-air-ground", diff --git a/firstdata/sources/sectors/J-information-communication/china-software-association.json b/firstdata/sources/sectors/J-information-communication/china-software-association.json index 8d46b93e..2e2c84b4 100644 --- a/firstdata/sources/sectors/J-information-communication/china-software-association.json +++ b/firstdata/sources/sectors/J-information-communication/china-software-association.json @@ -21,22 +21,22 @@ "geographic_scope": "national", "update_frequency": "annual", "tags": [ - "software industry", + "software-industry", "软件产业", - "enterprise ranking", + "enterprise-ranking", "企业排行", - "industry revenue", + "industry-revenue", "产业收入", - "CSIA", + "csia", "软件百强", - "top 100 software", - "information technology", + "top-100-software", + "information-technology", "信息技术服务", - "software revenue", + "software-revenue", "软件业务收入", - "industry association", + "industry-association", "行业协会", - "benchmark data", + "benchmark-data", "基准数据" ], "data_content": { diff --git a/firstdata/sources/sectors/J-information-communication/cifar.json b/firstdata/sources/sectors/J-information-communication/cifar.json index dba0ab9f..6afd0fc3 100644 --- a/firstdata/sources/sectors/J-information-communication/cifar.json +++ b/firstdata/sources/sectors/J-information-communication/cifar.json @@ -8,17 +8,17 @@ "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", + "website": "https://web.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" + "computer-vision", + "deep-learning", + "machine-learning", + "image-classification", + "object-recognition", + "artificial-intelligence" ], "geographic_scope": "global", "update_frequency": "irregular", diff --git a/firstdata/sources/sectors/J-information-communication/common-crawl.json b/firstdata/sources/sectors/J-information-communication/common-crawl.json index f284a00d..4f448586 100644 --- a/firstdata/sources/sectors/J-information-communication/common-crawl.json +++ b/firstdata/sources/sectors/J-information-communication/common-crawl.json @@ -13,15 +13,15 @@ "api_url": "https://index.commoncrawl.org", "country": null, "domains": [ - "web crawling", - "natural language processing", - "machine learning", - "data science", - "information retrieval", - "web analytics", - "artificial intelligence", + "web-crawling", + "natural-language-processing", + "machine-learning", + "data-science", + "information-retrieval", + "web-analytics", + "artificial-intelligence", "research", - "large language models" + "large-language-models" ], "geographic_scope": "global", "update_frequency": "monthly", diff --git a/firstdata/sources/sectors/J-information-communication/conll-shared-tasks.json b/firstdata/sources/sectors/J-information-communication/conll-shared-tasks.json index 4e54fa13..dcd0b599 100644 --- a/firstdata/sources/sectors/J-information-communication/conll-shared-tasks.json +++ b/firstdata/sources/sectors/J-information-communication/conll-shared-tasks.json @@ -13,29 +13,29 @@ "api_url": null, "country": null, "domains": [ - "natural language processing", - "computational linguistics", - "machine learning", - "named entity recognition", + "natural-language-processing", + "computational-linguistics", + "machine-learning", + "named-entity-recognition", "parsing", - "semantic analysis" + "semantic-analysis" ], "geographic_scope": "global", "update_frequency": "annual", "tags": [ - "NLP", - "natural language processing", - "machine learning", - "named entity recognition", - "NER", + "nlp", + "natural-language-processing", + "machine-learning", + "named-entity-recognition", + "ner", "parsing", "chunking", - "semantic role labeling", - "coreference resolution", + "semantic-role-labeling", + "coreference-resolution", "multilingual", - "benchmark datasets", - "shared task", - "computational linguistics" + "benchmark-datasets", + "shared-task", + "computational-linguistics" ], "data_content": { "en": [ diff --git a/firstdata/sources/sectors/J-information-communication/imagenet.json b/firstdata/sources/sectors/J-information-communication/imagenet.json index 263e8a7d..80b15353 100644 --- a/firstdata/sources/sectors/J-information-communication/imagenet.json +++ b/firstdata/sources/sectors/J-information-communication/imagenet.json @@ -13,12 +13,12 @@ "api_url": null, "country": null, "domains": [ - "computer vision", - "deep learning", - "machine learning", - "artificial intelligence", - "image classification", - "object recognition" + "computer-vision", + "deep-learning", + "machine-learning", + "artificial-intelligence", + "image-classification", + "object-recognition" ], "geographic_scope": "global", "update_frequency": "irregular", diff --git a/firstdata/sources/sectors/K-finance-insurance/akshare.json b/firstdata/sources/sectors/K-finance-insurance/akshare.json index 7438ac72..faf66c92 100644 --- a/firstdata/sources/sectors/K-finance-insurance/akshare.json +++ b/firstdata/sources/sectors/K-finance-insurance/akshare.json @@ -1,30 +1,30 @@ { "id": "akshare", "name": { - "en": "AKShare - Open Source Financial Data Interface Library", - "zh": "AKShare - 开源财经数据接口库" + "en": "AkShare", + "zh": "AkShare" }, "description": { - "en": "AKShare is an elegant and simple financial data interface library for Python, built for human beings. It provides comprehensive access to financial data including stocks, futures, options, funds, forex, bonds, indices, and cryptocurrencies. The library aggregates data from authoritative financial websites and is designed for academic research and quantitative analysis. Emphasizing the philosophy of 'Write less, get more!', it enables users to obtain complex financial data with simple one-line commands.", - "zh": "AKShare 是一个优雅简洁的 Python 财经数据接口库,专为人类设计。它提供对股票、期货、期权、基金、外汇、债券、指数和加密货币等金融数据的全面访问。该库聚合了来自权威财经网站的数据,专为学术研究和量化分析设计。秉承'代码更少,数据更多'的理念,用户可以用简单的单行命令获取复杂的财经数据。" + "en": "AkShare is an elegant and simple financial data interface library for Python, built for human beings. It provides a comprehensive collection of financial data APIs covering stocks, futures, options, funds, forex, bonds, indices, cryptocurrencies, and macroeconomic indicators. The library aims to simplify the process of acquiring financial data from authoritative sources and is primarily designed for academic research purposes. AkShare aggregates data from over 25 major financial data providers and exchanges, offering unified, well-documented Python interfaces with consistent naming conventions.", + "zh": "AkShare 是一个优雅而简洁的 Python 财经数据接口库,为人类而生。它提供了全面的金融数据 API 集合,覆盖股票、期货、期权、基金、外汇、债券、指数、加密货币和宏观经济指标。该库旨在简化从权威来源获取金融数据的过程,主要用于学术研究目的。AkShare 聚合了超过 25 个主要金融数据提供商和交易所的数据,提供统一的、文档完善的 Python 接口,具有一致的命名规范。" }, "website": "https://akshare.akfamily.xyz/", "data_url": "https://github.com/akfamily/akshare", - "api_url": "https://akshare.akfamily.xyz/", + "api_url": "https://akshare.akfamily.xyz/introduction.html", "country": null, "domains": [ "finance", - "financial markets", - "stock market", + "stock-market", "futures", "options", "funds", - "foreign exchange", + "foreign-exchange", "bonds", "indices", "cryptocurrency", - "macroeconomic data", - "quantitative finance" + "macroeconomics", + "economic-indicators", + "financial-data" ], "geographic_scope": "global", "update_frequency": "daily", @@ -32,59 +32,62 @@ "akshare", "python", "financial-data", - "stock-data", + "stock-market", + "股票", + "期货", "futures", "options", + "期权", "funds", - "forex", - "bonds", - "cryptocurrency", - "quantitative-finance", - "open-source", - "数据接口", - "财经数据", - "股票数据", - "期货", "基金", + "forex", "外汇", + "bonds", "债券", + "indices", + "指数", + "cryptocurrency", "加密货币", + "macroeconomics", + "宏观经济", + "quantitative-finance", "量化金融", - "开源库", - "金融API", - "数据聚合", "financial-api", - "data-aggregation", - "market-data", - "东方财富", - "新浪财经" + "open-source", + "开源", + "data-interface", + "数据接口", + "financial-research", + "金融研究" ], "data_content": { "en": [ - "Stock Market Data - Real-time and historical stock prices, trading volumes, market indices from major exchanges", - "Futures Market - Commodity futures, financial futures, options data and derivatives pricing", - "Bond Market - Government bonds, corporate bonds, bond indices and fixed income securities", - "Fund Data - Mutual funds, ETFs, private funds, fund net values and performance metrics", - "Foreign Exchange - Currency exchange rates, forex trading data and currency pairs", - "Cryptocurrency - Digital currency prices, trading volumes, and blockchain data", - "Macroeconomic Indicators - GDP, CPI, interest rates, employment data and economic statistics", - "Market Indices - Stock indices, commodity indices, volatility indices from global markets", - "Alternative Data - Migration data, natural language processing, high-frequency data, policy uncertainty indices", - "Energy Data - Energy consumption, production and pricing information", - "Multi-factor Data - Quantitative factors for investment analysis and portfolio construction" + "Stock Market Data - Real-time and historical quotes, trading volumes, market depth, IPO data, and corporate fundamentals from major exchanges including Shanghai, Shenzhen, Beijing, Hong Kong, and international markets", + "Futures Data - Futures prices, trading volumes, open interest, and contract specifications for commodity futures, financial futures, and index futures", + "Options Data - Options chains, Greeks, implied volatility, and trading statistics for equity and index options", + "Fund Data - Mutual funds, ETFs, private equity funds performance, NAV, holdings, and fund manager information", + "Foreign Exchange - Spot rates, forward rates, and historical exchange rates for major currency pairs", + "Bond Market - Government bonds, corporate bonds, convertible bonds prices, yields, and issuance data", + "Market Indices - Price levels, composition, and historical data for domestic and international indices", + "Cryptocurrency - Real-time and historical prices, trading volumes, and market capitalization for major cryptocurrencies", + "Macroeconomic Indicators - GDP, CPI, PPI, unemployment rate, money supply, and other economic statistics from various countries", + "Interest Rates - Central bank rates, interbank rates (SHIBOR, LIBOR), and benchmark lending rates", + "Commodity Prices - Spot and futures prices for energy, metals, agricultural products, and other commodities", + "Financial News and Sentiment - News feeds, financial reports, and market sentiment indicators" ], "zh": [ - "股票市场数据 - 主要交易所的实时和历史股价、交易量、市场指数", - "期货市场 - 商品期货、金融期货、期权数据和衍生品定价", - "债券市场 - 国债、企业债券、债券指数和固定收益证券", - "基金数据 - 公募基金、ETF、私募基金、基金净值和业绩指标", - "外汇市场 - 货币汇率、外汇交易数据和货币对", - "加密货币 - 数字货币价格、交易量和区块链数据", - "宏观经济指标 - GDP、CPI、利率、就业数据和经济统计", - "市场指数 - 全球市场的股票指数、商品指数、波动率指数", - "另类数据 - 迁徙数据、自然语言处理、高频数据、政策不确定性指数", - "能源数据 - 能源消费、生产和价格信息", - "多因子数据 - 用于投资分析和组合构建的量化因子" + "股票市场数据 - 来自上海、深圳、北京、香港等主要交易所的实时和历史行情、成交量、盘口数据、IPO 数据和公司基本面信息", + "期货数据 - 商品期货、金融期货和指数期货的价格、成交量、持仓量和合约规格", + "期权数据 - 股票和指数期权的期权链、希腊字母、隐含波动率和交易统计", + "基金数据 - 公募基金、ETF、私募基金的业绩、净值、持仓和基金经理信息", + "外汇数据 - 主要货币对的即期汇率、远期汇率和历史汇率", + "债券市场 - 国债、公司债、可转债的价格、收益率和发行数据", + "市场指数 - 国内外指数的价格水平、成份股和历史数据", + "加密货币 - 主要加密货币的实时和历史价格、交易量和市值", + "宏观经济指标 - 来自各国的 GDP、CPI、PPI、失业率、货币供应量等经济统计数据", + "利率数据 - 央行利率、银行间拆借利率(SHIBOR、LIBOR)和基准贷款利率", + "大宗商品价格 - 能源、金属、农产品等大宗商品的现货和期货价格", + "金融新闻和情绪 - 新闻源、财经报告和市场情绪指标" ] }, "authority_level": "other" diff --git a/firstdata/sources/sectors/K-finance-insurance/alpha-vantage.json b/firstdata/sources/sectors/K-finance-insurance/alpha-vantage.json index c2b562c3..dcb78b89 100644 --- a/firstdata/sources/sectors/K-finance-insurance/alpha-vantage.json +++ b/firstdata/sources/sectors/K-finance-insurance/alpha-vantage.json @@ -13,12 +13,12 @@ "api_url": "https://www.alphavantage.co/documentation/", "country": null, "domains": [ - "stock markets", - "foreign exchange", + "stock-markets", + "foreign-exchange", "cryptocurrencies", "commodities", - "economic indicators", - "technical analysis" + "economic-indicators", + "technical-analysis" ], "geographic_scope": "global", "update_frequency": "real-time", diff --git a/firstdata/sources/sectors/K-finance-insurance/bloomberg-ipo-database.json b/firstdata/sources/sectors/K-finance-insurance/bloomberg-ipo-database.json new file mode 100644 index 00000000..5331ba81 --- /dev/null +++ b/firstdata/sources/sectors/K-finance-insurance/bloomberg-ipo-database.json @@ -0,0 +1,82 @@ +{ + "id": "bloomberg-ipo-database", + "name": { + "en": "Bloomberg IPO Database", + "zh": "彭博IPO数据库" + }, + "description": { + "en": "Bloomberg IPO Database is a comprehensive database of Initial Public Offering (IPO) data accessible through the Bloomberg Terminal (Bloomberg Professional Service). The database provides detailed information on equity offerings globally, including IPO announcements, pricing, underwriters, deal structure, and post-IPO performance. Users can search and filter IPO data by offer type, date range, equity index, and other criteria, with results exportable to Excel. The database is part of Bloomberg L.P.'s financial data ecosystem, serving institutional investors, research analysts, and academic institutions worldwide.", + "zh": "彭博IPO数据库是通过彭博终端(Bloomberg Professional Service)访问的全面的首次公开募股(IPO)数据库。该数据库提供全球股权发行的详细信息,包括IPO公告、定价、承销商、交易结构和上市后表现。用户可以按发行类型、日期范围、股票指数和其他标准搜索和筛选IPO数据,结果可导出至Excel。该数据库是彭博有限合伙公司(Bloomberg L.P.)金融数据生态系统的一部分,为全球机构投资者、研究分析师和学术机构提供服务。" + }, + "website": "https://www.bloomberg.com", + "data_url": "https://www.bloomberg.com/professional/products/bloomberg-terminal/", + "api_url": "https://www.bloomberg.com/professional/support/api-library/", + "country": null, + "domains": [ + "finance", + "capital-markets", + "equity-markets", + "ipo", + "corporate-finance", + "investment-banking", + "securities" + ], + "geographic_scope": "global", + "update_frequency": "real-time", + "tags": [ + "ipo", + "initial-public-offering", + "首次公开募股", + "equity-offerings", + "股权发行", + "capital-markets", + "资本市场", + "bloomberg", + "彭博", + "bloomberg-terminal", + "彭博终端", + "underwriters", + "承销商", + "prospectus", + "招股书", + "ipo-pricing", + "IPO定价", + "listing", + "上市", + "stock-exchange", + "证券交易所", + "financial-data", + "金融数据", + "investment-banking", + "投资银行", + "securities", + "证券" + ], + "data_content": { + "en": [ + "IPO Announcements - Initial public offering announcements and filing dates", + "IPO Pricing - Offer price, price range, and final pricing details", + "Deal Structure - Share quantity, deal size, and offering structure", + "Underwriters - Lead underwriters, syndicate members, and banking fees", + "Company Information - Issuer details, industry sector, and business description", + "Index Membership - Coverage of major equity indices (S&P 500, FTSE, etc.)", + "Historical Data - Historical IPO records and time series data", + "Post-IPO Performance - First-day trading performance and aftermarket metrics", + "Geographic Coverage - Global IPO data across major stock exchanges", + "Export Capabilities - Simple and advanced export options to Excel" + ], + "zh": [ + "IPO公告 - 首次公开募股公告和申报日期", + "IPO定价 - 发行价格、价格区间和最终定价详情", + "交易结构 - 股份数量、交易规模和发行结构", + "承销商 - 主承销商、辛迪加成员和银行费用", + "公司信息 - 发行人详情、行业部门和业务描述", + "指数成分 - 主要股票指数成分(标普500、富时等)", + "历史数据 - 历史IPO记录和时间序列数据", + "上市后表现 - 首日交易表现和后市指标", + "地理覆盖 - 全球主要证券交易所的IPO数据", + "导出功能 - 简单和高级导出选项至Excel" + ] + }, + "authority_level": "commercial" +} diff --git a/firstdata/sources/sectors/K-finance-insurance/bloomberg-terminal-ipo.json b/firstdata/sources/sectors/K-finance-insurance/bloomberg-terminal-ipo.json index 7b8bf616..46d404e2 100644 --- a/firstdata/sources/sectors/K-finance-insurance/bloomberg-terminal-ipo.json +++ b/firstdata/sources/sectors/K-finance-insurance/bloomberg-terminal-ipo.json @@ -14,10 +14,10 @@ "country": null, "domains": [ "ipo", - "equity offerings", - "capital markets", - "investment banking", - "securities issuance" + "equity-offerings", + "capital-markets", + "investment-banking", + "securities-issuance" ], "geographic_scope": "global", "update_frequency": "real-time", diff --git a/firstdata/sources/sectors/K-finance-insurance/bloomberg-terminal.json b/firstdata/sources/sectors/K-finance-insurance/bloomberg-terminal.json index dac98fba..9636d82a 100644 --- a/firstdata/sources/sectors/K-finance-insurance/bloomberg-terminal.json +++ b/firstdata/sources/sectors/K-finance-insurance/bloomberg-terminal.json @@ -14,14 +14,14 @@ "country": null, "domains": [ "equities", - "fixed income", + "fixed-income", "currencies", "commodities", "derivatives", - "economic data", - "financial news", - "corporate fundamentals", - "esg data" + "economic-data", + "financial-news", + "corporate-fundamentals", + "esg-data" ], "geographic_scope": "global", "update_frequency": "real-time", diff --git a/firstdata/sources/sectors/K-finance-insurance/crsp.json b/firstdata/sources/sectors/K-finance-insurance/crsp.json index 2d7b1d0c..84aece11 100644 --- a/firstdata/sources/sectors/K-finance-insurance/crsp.json +++ b/firstdata/sources/sectors/K-finance-insurance/crsp.json @@ -13,12 +13,12 @@ "api_url": "https://www.crsp.org/products/documentation/getting-started", "country": "US", "domains": [ - "stock markets", + "stock-markets", "equities", - "market indices", - "corporate actions", - "investment research", - "asset pricing" + "market-indices", + "corporate-actions", + "investment-research", + "asset-pricing" ], "geographic_scope": "national", "update_frequency": "monthly", @@ -26,10 +26,10 @@ "stock-market", "equities", "historical-data", - "US-markets", - "NYSE", - "NASDAQ", - "AMEX", + "us-markets", + "nyse", + "nasdaq", + "amex", "academic-research", "financial-data", "market-indices", @@ -37,7 +37,7 @@ "asset-pricing", "corporate-actions", "subscription-based", - "WRDS", + "wrds", "investment-research" ], "data_content": { diff --git a/firstdata/sources/sectors/K-finance-insurance/cryptocurrency-data.json b/firstdata/sources/sectors/K-finance-insurance/cryptocurrency-data.json index 087d7b3f..ea7eaeb4 100644 --- a/firstdata/sources/sectors/K-finance-insurance/cryptocurrency-data.json +++ b/firstdata/sources/sectors/K-finance-insurance/cryptocurrency-data.json @@ -13,13 +13,13 @@ "api_url": "https://coinmarketcap.com/api/documentation/v1/", "country": null, "domains": [ - "cryptocurrency markets", - "blockchain analytics", - "digital assets", - "defi (decentralized finance)", - "nft markets", - "trading data", - "financial technology" + "cryptocurrency-markets", + "blockchain-analytics", + "digital-assets", + "defi", + "nft-markets", + "trading-data", + "financial-technology" ], "geographic_scope": "global", "update_frequency": "real-time", diff --git a/firstdata/sources/sectors/K-finance-insurance/hundsun-juyuan.json b/firstdata/sources/sectors/K-finance-insurance/hundsun-juyuan.json new file mode 100644 index 00000000..e2cc7d28 --- /dev/null +++ b/firstdata/sources/sectors/K-finance-insurance/hundsun-juyuan.json @@ -0,0 +1,102 @@ +{ + "id": "hundsun-juyuan", + "name": { + "en": "Hundsun JuYuan Financial Data", + "zh": "恒生聚源金融数据" + }, + "description": { + "en": "Shanghai Hundsun JuYuan Data Service Co., Ltd., established in 2000 and a wholly-owned subsidiary of Hundsun Technologies since 2010, is a leading financial and industrial data and information service provider in China. The company has established extensive business partnerships with domestic securities, funds, insurance, trusts, banks, futures, and asset management companies, serving over 700 financial institutions. JuYuan offers comprehensive financial databases, terminals, and intelligent analytics tools covering A-shares, Hong Kong stocks, New Third Board, bonds, funds, wealth management products, macroeconomic data, industry data, and indices.", + "zh": "上海恒生聚源数据服务有限公司成立于2000年9月,2010年1月起成为恒生电子全资子公司,是中国领先的金融、产业数据资讯服务提供商。公司与国内券商、基金、保险、信托、银行、期货、资产管理公司等700多家金融机构建立了广泛的业务合作。聚源拥有金融数据库、金融终端、智能分析工具等产品线,涵盖A股、港股、新三板、债券、基金、理财、宏观、行业、指数等全方位金融数据。" + }, + "website": "https://www.gildata.com/", + "data_url": "https://gildata.hs.net/", + "api_url": "https://gildata.hs.net/wiki", + "country": "CN", + "domains": [ + "finance", + "securities", + "funds", + "insurance", + "banking", + "futures", + "asset-management", + "bonds", + "macroeconomics", + "financial-markets" + ], + "geographic_scope": "national", + "update_frequency": "real-time", + "tags": [ + "finance", + "金融数据", + "financial-data", + "securities", + "证券", + "funds", + "基金", + "bonds", + "债券", + "insurance", + "保险", + "banking", + "银行", + "futures", + "期货", + "asset-management", + "资产管理", + "stock-market", + "股票市场", + "a-shares", + "A股", + "hong-kong-stocks", + "港股", + "new-third-board", + "新三板", + "macroeconomic-data", + "宏观经济", + "financial-terminal", + "金融终端", + "hundsun", + "恒生", + "juyuan", + "聚源", + "gildata", + "financial-database", + "金融数据库", + "market-data", + "行情数据", + "financial-analytics", + "金融分析" + ], + "data_content": { + "en": [ + "A-Share Market Data - Stock prices, trading volumes, corporate actions, and market indices", + "Hong Kong Stocks - HKEX listed securities data, prices, and trading information", + "New Third Board - NEEQ (National Equities Exchange and Quotations) data", + "Bond Markets - Government bonds, corporate bonds, convertible bonds, and bond indices", + "Funds Data - Mutual funds, ETFs, private equity funds performance and holdings", + "Wealth Management - Bank wealth management products, trust products, and asset management plans", + "Macroeconomic Indicators - GDP, CPI, PMI, and other key economic statistics", + "Industry Data - Sector-specific data, industry indices, and industry analysis", + "Financial News & Announcements - Real-time market news, company announcements, and regulatory filings", + "Research Reports - Analyst reports, investment research, and market analysis", + "Alternative Data - AI-friendly financial database (AIDB) for large language model applications", + "Smart Analytics - Intelligent tools including Gil-GPT for financial information generation" + ], + "zh": [ + "A股市场数据 - 股票价格、交易量、公司行为和市场指数", + "港股数据 - 香港交易所上市证券数据、价格和交易信息", + "新三板数据 - 全国中小企业股份转让系统数据", + "债券市场 - 国债、企业债、可转债和债券指数", + "基金数据 - 公募基金、ETF、私募基金业绩和持仓", + "理财产品 - 银行理财产品、信托产品和资管计划", + "宏观经济指标 - GDP、CPI、PMI等关键经济统计数据", + "行业数据 - 行业专项数据、行业指数和行业分析", + "金融资讯与公告 - 实时市场新闻、公司公告和监管文件", + "研究报告 - 分析师报告、投资研究和市场分析", + "AI友好型数据 - 为大模型金融业务场景提供的高精准底层数据(AIDB)", + "智能分析工具 - 包括Gil-GPT金融资讯生成等智能工具" + ] + }, + "authority_level": "commercial" +} diff --git a/firstdata/sources/sectors/K-finance-insurance/refinitiv-lseg.json b/firstdata/sources/sectors/K-finance-insurance/refinitiv-lseg.json new file mode 100644 index 00000000..41c60f91 --- /dev/null +++ b/firstdata/sources/sectors/K-finance-insurance/refinitiv-lseg.json @@ -0,0 +1,98 @@ +{ + "id": "refinitiv-lseg", + "name": { + "en": "LSEG Data & Analytics (Refinitiv)", + "zh": "伦敦证交所数据分析(路孚特)" + }, + "description": { + "en": "LSEG Data & Analytics, formerly known as Refinitiv, is a global provider of financial markets data and infrastructure. Originally the Financial & Risk division of Thomson Reuters, it became independent in 2018 and was acquired by London Stock Exchange Group (LSEG) in 2021. The platform provides comprehensive financial data, analytics, trading platforms, and risk management solutions to over 40,000 institutions across 190+ countries. Key products include LSEG Workspace (formerly Eikon), Datastream for historical financial data, real-time market data via Elektron, and the Refinitiv Data Platform APIs for programmatic access.", + "zh": "伦敦证交所数据分析(原路孚特)是全球领先的金融市场数据和基础设施提供商。最初为汤森路透金融与风险部门,2018年独立,2021年被伦敦证券交易所集团(LSEG)收购。该平台为全球190多个国家的40,000多家机构提供全面的金融数据、分析、交易平台和风险管理解决方案。主要产品包括LSEG Workspace(原Eikon)、Datastream历史金融数据库、Elektron实时市场数据服务,以及用于程序化访问的Refinitiv数据平台API。" + }, + "website": "https://www.lseg.com/en/data-analytics", + "data_url": "https://www.lseg.com/en/data-analytics/products/workspace", + "api_url": "https://developers.lseg.com/en/api-catalog/refinitiv-data-platform/refinitiv-data-platform-apis", + "country": null, + "domains": [ + "financial-markets", + "financial-data", + "market-data", + "economic-data", + "trading", + "risk-management", + "investment-analysis", + "fixed-income", + "equities", + "foreign-exchange", + "commodities", + "derivatives", + "esg-data", + "alternative-data" + ], + "geographic_scope": "global", + "update_frequency": "real-time", + "tags": [ + "financial-data", + "market-data", + "real-time-data", + "historical-data", + "refinitiv", + "lseg", + "eikon", + "datastream", + "workspace", + "trading-platform", + "financial-analytics", + "risk-management", + "equities", + "fixed-income", + "forex", + "fx", + "commodities", + "derivatives", + "bonds", + "stocks", + "economic-indicators", + "company-financials", + "esg", + "api", + "路孚特", + "金融数据", + "市场数据", + "实时数据" + ], + "data_content": { + "en": [ + "Real-time market data - Live prices, quotes, and trades across global exchanges", + "Equities - Company fundamentals, financial statements, analyst estimates, ownership data", + "Fixed Income - Bond prices, yields, ratings, issuance data for government and corporate bonds", + "Foreign Exchange - Real-time and historical FX rates, forwards, options across 180+ currencies", + "Commodities - Prices and analytics for energy, metals, agriculture commodities", + "Derivatives - Futures, options, swaps data across asset classes", + "Economic Data - Macroeconomic indicators, GDP, inflation, employment from 200+ countries", + "Company Financials - Income statements, balance sheets, cash flows dating back to 1960s", + "News & Research - Real-time financial news, analyst reports, research from global sources", + "ESG Data - Environmental, Social, Governance scores and metrics for companies worldwide", + "Reference Data - Security master data, corporate actions, dividends, splits", + "Time Series Data - Historical price and volume data via Datastream", + "Analytics - Valuation models, risk analytics, portfolio analytics, screening tools", + "Alternative Data - Sentiment analysis, supply chain data, satellite imagery insights" + ], + "zh": [ + "实时市场数据 - 全球交易所的实时价格、报价和交易数据", + "股票 - 公司基本面、财务报表、分析师预测、持股数据", + "固定收益 - 政府和企业债券的价格、收益率、评级、发行数据", + "外汇 - 180多种货币的实时和历史汇率、远期、期权数据", + "大宗商品 - 能源、金属、农产品的价格和分析", + "衍生品 - 跨资产类别的期货、期权、掉期数据", + "经济数据 - 来自200多个国家的宏观经济指标、GDP、通胀、就业数据", + "公司财务 - 可追溯至1960年代的损益表、资产负债表、现金流量表", + "新闻与研究 - 来自全球来源的实时金融新闻、分析师报告、研究", + "ESG数据 - 全球公司的环境、社会、治理评分和指标", + "参考数据 - 证券主数据、公司行为、股息、拆股信息", + "时间序列数据 - 通过Datastream提供的历史价格和成交量数据", + "分析工具 - 估值模型、风险分析、投资组合分析、筛选工具", + "另类数据 - 情绪分析、供应链数据、卫星图像洞察" + ] + }, + "authority_level": "commercial" +} diff --git a/firstdata/sources/sectors/M-professional-scientific/cambridge-structural-database.json b/firstdata/sources/sectors/M-professional-scientific/cambridge-structural-database.json index 98241888..5f5d15df 100644 --- a/firstdata/sources/sectors/M-professional-scientific/cambridge-structural-database.json +++ b/firstdata/sources/sectors/M-professional-scientific/cambridge-structural-database.json @@ -14,17 +14,17 @@ "country": null, "domains": [ "crystallography", - "structural chemistry", - "pharmaceutical sciences", - "drug discovery", - "drug development", - "agrochemical research", - "materials science", - "metal-organic frameworks", + "structural-chemistry", + "pharmaceutical-sciences", + "drug-discovery", + "drug-development", + "agrochemical-research", + "materials-science", + "metal-organic-frameworks", "catalysis", - "functional materials", - "organic chemistry", - "inorganic chemistry" + "functional-materials", + "organic-chemistry", + "inorganic-chemistry" ], "geographic_scope": "global", "update_frequency": "daily", diff --git a/firstdata/sources/sectors/M-professional-scientific/derwent-innovation-index.json b/firstdata/sources/sectors/M-professional-scientific/derwent-innovation-index.json index 1b5f447d..1c10b66f 100644 --- a/firstdata/sources/sectors/M-professional-scientific/derwent-innovation-index.json +++ b/firstdata/sources/sectors/M-professional-scientific/derwent-innovation-index.json @@ -15,17 +15,17 @@ "domains": [ "patents", "innovation", - "intellectual property", + "intellectual-property", "pharmaceuticals", "biotechnology", "chemistry", "electronics", "engineering", "telecommunications", - "materials science", - "medical technology", - "mechanical engineering", - "computer science", + "materials-science", + "medical-technology", + "mechanical-engineering", + "computer-science", "aerospace", "automotive" ], diff --git a/firstdata/sources/sectors/P-education/arwu.json b/firstdata/sources/sectors/P-education/arwu.json index b65bd40b..70101f91 100644 --- a/firstdata/sources/sectors/P-education/arwu.json +++ b/firstdata/sources/sectors/P-education/arwu.json @@ -13,11 +13,11 @@ "api_url": null, "country": null, "domains": [ - "higher education", - "university rankings", - "research performance", - "academic excellence", - "education assessment" + "higher-education", + "university-rankings", + "research-performance", + "academic-excellence", + "education-assessment" ], "geographic_scope": "global", "update_frequency": "annual", diff --git a/firstdata/sources/sectors/P-education/qs-world-university-rankings.json b/firstdata/sources/sectors/P-education/qs-world-university-rankings.json index 97ee535a..9029f0c5 100644 --- a/firstdata/sources/sectors/P-education/qs-world-university-rankings.json +++ b/firstdata/sources/sectors/P-education/qs-world-university-rankings.json @@ -13,14 +13,14 @@ "api_url": null, "country": null, "domains": [ - "higher education", - "education assessment", - "university rankings", - "education quality", - "academic research", - "student outcomes", - "education statistics", - "global education" + "higher-education", + "education-assessment", + "university-rankings", + "education-quality", + "academic-research", + "student-outcomes", + "education-statistics", + "global-education" ], "geographic_scope": "global", "update_frequency": "annual", diff --git a/firstdata/sources/sectors/R-arts-entertainment/british-museum-collection.json b/firstdata/sources/sectors/R-arts-entertainment/british-museum-collection.json index 4df97be3..0cfa74a5 100644 --- a/firstdata/sources/sectors/R-arts-entertainment/british-museum-collection.json +++ b/firstdata/sources/sectors/R-arts-entertainment/british-museum-collection.json @@ -13,26 +13,26 @@ "api_url": null, "country": null, "domains": [ - "cultural heritage", + "cultural-heritage", "archaeology", - "art history", + "art-history", "anthropology", - "ancient civilizations", - "museum studies" + "ancient-civilizations", + "museum-studies" ], "geographic_scope": "global", "update_frequency": "daily", "tags": [ - "cultural heritage", + "cultural-heritage", "museum", "archaeology", - "art history", + "art-history", "artifacts", - "world history", + "world-history", "anthropology", "ethnography", - "ancient civilizations", - "British Museum" + "ancient-civilizations", + "british-museum" ], "data_content": { "en": [ diff --git a/firstdata/sources/sectors/R-arts-entertainment/tennis-atp-wta-data.json b/firstdata/sources/sectors/R-arts-entertainment/tennis-atp-wta-data.json index bfc3d7f1..bab6326d 100644 --- a/firstdata/sources/sectors/R-arts-entertainment/tennis-atp-wta-data.json +++ b/firstdata/sources/sectors/R-arts-entertainment/tennis-atp-wta-data.json @@ -13,10 +13,10 @@ "api_url": null, "country": null, "domains": [ - "sports statistics", + "sports-statistics", "tennis", - "professional sports data", - "player performance analytics" + "professional-sports-data", + "player-performance-analytics" ], "geographic_scope": "global", "update_frequency": "irregular", diff --git a/firstdata/sources/sectors/computer_science_ai/aws-open-data-registry.json b/firstdata/sources/sectors/computer_science_ai/aws-open-data-registry.json index ad51fc63..22aaf627 100644 --- a/firstdata/sources/sectors/computer_science_ai/aws-open-data-registry.json +++ b/firstdata/sources/sectors/computer_science_ai/aws-open-data-registry.json @@ -13,22 +13,22 @@ "api_url": null, "country": "US", "domains": [ - "machine learning", - "artificial intelligence", - "computer science", + "machine-learning", + "artificial-intelligence", + "computer-science", "astronomy", - "climate science", + "climate-science", "economics", "genomics", "geospatial", - "life sciences", + "life-sciences", "sustainability", "transportation", "chemistry", "imaging", - "medical imaging", - "computer vision", - "disaster response" + "medical-imaging", + "computer-vision", + "disaster-response" ], "geographic_scope": "global", "update_frequency": "irregular", diff --git a/firstdata/sources/sectors/finance_markets/joinquant.json b/firstdata/sources/sectors/finance_markets/joinquant.json new file mode 100644 index 00000000..861ca47b --- /dev/null +++ b/firstdata/sources/sectors/finance_markets/joinquant.json @@ -0,0 +1,79 @@ +{ + "id": "joinquant", + "name": { + "zh": "聚宽量化交易平台", + "en": "JoinQuant Quantitative Trading Platform" + }, + "description": { + "zh": "聚宽是中国领先的量化投资交易服务平台,成立于2015年,由北京小龙虾科技有限公司运营。平台提供经过专业清洗的A股、期货、期权、基金、宏观等全面的金融数据,支持策略研究、历史回测、模拟交易和实盘交易。用户可通过Web平台或本地SDK(jqdatasdk)访问数据,日均免费调用量达100万条记录。平台注册用户近50万,是国内量化交易领域的先行者之一,已获得国家高新技术企业、北京市专精特新企业等认证。", + "en": "JoinQuant is a leading quantitative investment and trading platform in China, founded in 2015 and operated by Beijing Xiaolongxia Technology Co., Ltd. The platform offers professionally cleaned financial data including A-shares, futures, options, funds, and macroeconomic data, supporting strategy research, historical backtesting, simulated trading, and live trading. Users can access data through the web platform or local SDK (jqdatasdk), with up to 1 million free API calls per day. With nearly 500,000 registered users, it is one of the pioneers in China's quantitative trading industry and has been certified as a National High-Tech Enterprise and Beijing Specialized and Innovative Enterprise." + }, + "website": "https://www.joinquant.com/", + "data_url": "https://www.joinquant.com/data", + "api_url": "https://www.joinquant.com/help/api/doc?name=JQDatadoc", + "authority_level": "commercial", + "country": "CN", + "geographic_scope": "national", + "domains": [ + "finance", + "securities", + "quantitative-trading" + ], + "update_frequency": "daily", + "tags": [ + "量化交易", + "quantitative-trading", + "A股数据", + "a-share-data", + "期货数据", + "futures-data", + "基金数据", + "fund-data", + "回测平台", + "backtesting-platform", + "策略研发", + "strategy-research", + "金融数据", + "financial-data", + "joinquant", + "聚宽", + "量化投资", + "quantitative-investing", + "python-sdk", + "jqdatasdk", + "财务数据", + "financial-statements", + "宏观数据", + "macroeconomic-data", + "期权", + "options", + "etf", + "lof", + "融资融券", + "margin-trading" + ], + "data_content": { + "zh": [ + "A股股票行情数据(日线、分钟线、Tick级)", + "上市公司财务数据(2005年以来)", + "期货行情数据(中金所金融期货产品)", + "基金数据(ETF、LOF、分级基金、货币基金等600+品种)", + "股票指数数据(近600种指数及成分股)", + "期权数据(行情与基本信息)", + "宏观经济数据", + "融资融券数据", + "数百个量化因子库" + ], + "en": [ + "A-share stock market data (daily, minute, tick-level)", + "Listed company financial data (since 2005)", + "Futures market data (CFFEX financial futures products)", + "Fund data (ETF, LOF, structured funds, money market funds, 600+ varieties)", + "Stock index data (nearly 600 indexes and constituents)", + "Options data (market data and basic information)", + "Macroeconomic data", + "Margin trading data", + "Hundreds of quantitative factor libraries" + ] + } +} diff --git a/firstdata/sources/sectors/sports/tennis-abstract-atp-wta.json b/firstdata/sources/sectors/sports/tennis-abstract-atp-wta.json index 322efa31..01695f8a 100644 --- a/firstdata/sources/sectors/sports/tennis-abstract-atp-wta.json +++ b/firstdata/sources/sectors/sports/tennis-abstract-atp-wta.json @@ -15,10 +15,10 @@ "domains": [ "sports", "tennis", - "sports statistics", - "sports analytics", - "player performance", - "tournament data" + "sports-statistics", + "sports-analytics", + "player-performance", + "tournament-data" ], "geographic_scope": "global", "update_frequency": "weekly", diff --git a/firstdata/sources/sectors/sports/tennis-sackmann.json b/firstdata/sources/sectors/sports/tennis-sackmann.json index d02e6557..9f56fa5b 100644 --- a/firstdata/sources/sectors/sports/tennis-sackmann.json +++ b/firstdata/sources/sectors/sports/tennis-sackmann.json @@ -23,22 +23,22 @@ "tags": [ "tennis", "网球", - "ATP", - "WTA", + "atp", + "wta", "rankings", "排名", - "match results", + "match-results", "比赛结果", - "player statistics", + "player-statistics", "球员统计", - "sports data", + "sports-data", "体育数据", - "open data", + "open-data", "开放数据", - "CSV", - "grand slam", + "csv", + "grand-slam", "大满贯", - "professional tennis", + "professional-tennis", "职业网球" ], "data_content": { diff --git a/firstdata/sources/singapore/national/singapore-dos.json b/firstdata/sources/singapore/national/singapore-dos.json new file mode 100644 index 00000000..9d313ef2 --- /dev/null +++ b/firstdata/sources/singapore/national/singapore-dos.json @@ -0,0 +1,44 @@ +{ + "id": "singapore-dos", + "name": { + "en": "Department of Statistics Singapore", + "zh": "新加坡统计局" + }, + "description": { + "en": "The Department of Statistics Singapore (DOS) is the national statistical authority providing official statistics on population, economy, trade, digital economy, and social indicators.", + "zh": "新加坡统计局是新加坡国家统计机构,提供人口、经济、贸易、数字经济和社会指标的官方统计数据。" + }, + "website": "https://www.singstat.gov.sg", + "data_url": "https://tablebuilder.singstat.gov.sg", + "api_url": "https://tablebuilder.singstat.gov.sg/api", + "country": "SG", + "domains": [ + "economics", + "demographics", + "trade", + "technology" + ], + "tags": [ + "statistics", + "gdp", + "population", + "digital-economy" + ], + "authority_level": "government", + "update_frequency": "monthly", + "geographic_scope": "national", + "data_content": { + "en": [ + "GDP and Economic Performance - Quarterly national accounts and growth forecasts", + "Population and Demographics - Resident population, age structure, and labor force", + "Trade Statistics - Merchandise and services trade by partner and commodity", + "Digital Economy - ICT sector performance and digital adoption metrics" + ], + "zh": [ + "GDP和经济表现 - 季度国民账户和增长预测", + "人口和人口统计 - 常住人口、年龄结构和劳动力", + "贸易统计 - 按伙伴和商品分类的货物和服务贸易", + "数字经济 - ICT部门表现和数字化采用指标" + ] + } +} diff --git a/firstdata/sources/thailand/national/thailand-nso.json b/firstdata/sources/thailand/national/thailand-nso.json new file mode 100644 index 00000000..989e0296 --- /dev/null +++ b/firstdata/sources/thailand/national/thailand-nso.json @@ -0,0 +1,45 @@ +{ + "id": "thailand-nso", + "name": { + "en": "National Statistical Office of Thailand", + "zh": "泰国国家统计局", + "native": "สำนักงานสถิติแห่งชาติ" + }, + "description": { + "en": "The National Statistical Office (NSO) is Thailand's central government agency for statistical data. It provides data on demographics, economy, labor, trade, and social indicators.", + "zh": "泰国国家统计局是泰国统计数据的中央政府机构。提供人口、经济、劳动力、贸易和社会指标数据。" + }, + "website": "https://www.nso.go.th", + "data_url": "https://www.nso.go.th/nsoweb/officialStatistics", + "country": "TH", + "domains": [ + "economics", + "demographics", + "labor", + "trade" + ], + "tags": [ + "statistics", + "gdp", + "population", + "employment" + ], + "authority_level": "government", + "update_frequency": "quarterly", + "geographic_scope": "national", + "data_content": { + "en": [ + "Population Census - Demographics, households, and urbanization", + "Labor Force Survey - Employment, unemployment, and wage statistics", + "Economic Statistics - GDP components, prices, and business surveys", + "Social Indicators - Education, health, and income distribution" + ], + "zh": [ + "人口普查 - 人口、家庭和城镇化", + "劳动力调查 - 就业、失业和工资统计", + "经济统计 - GDP构成、价格和企业调查", + "社会指标 - 教育、卫生和收入分配" + ] + }, + "api_url": null +} diff --git a/firstdata/sources/us/economics/us-fred.json b/firstdata/sources/us/economics/us-fred.json new file mode 100644 index 00000000..b6d00ef5 --- /dev/null +++ b/firstdata/sources/us/economics/us-fred.json @@ -0,0 +1,73 @@ +{ + "id": "us-fred", + "name": { + "en": "FRED - Federal Reserve Economic Data", + "zh": "美联储经济数据库" + }, + "description": { + "en": "FRED (Federal Reserve Economic Data) is a comprehensive database maintained by the Federal Reserve Bank of St. Louis containing over 800,000 economic time series from 100+ sources. It is one of the most widely used free macroeconomic data platforms globally, covering GDP, employment, inflation, interest rates, money supply, trade, housing, and hundreds of other economic indicators for the US and international economies.", + "zh": "FRED(美联储经济数据)是由圣路易斯联邦储备银行维护的综合数据库,包含来自100多个数据源的超过80万条经济时间序列。它是全球使用最广泛的免费宏观经济数据平台之一,涵盖美国和国际经济的GDP、就业、通胀、利率、货币供应、贸易、住房等数百种经济指标。" + }, + "website": "https://fred.stlouisfed.org", + "data_url": "https://fred.stlouisfed.org", + "api_url": "https://fred.stlouisfed.org/docs/api/fred/", + "country": "US", + "domains": [ + "economics", + "finance", + "labor", + "trade" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "fred", + "federal-reserve", + "macroeconomics", + "gdp", + "inflation", + "interest-rates", + "unemployment", + "money-supply", + "cpi", + "美联储", + "宏观经济", + "经济数据", + "利率", + "通胀", + "m2", + "time-series", + "economic-indicators" + ], + "data_content": { + "en": [ + "GDP and National Accounts - real/nominal GDP, GDP components, growth rates", + "Employment and Labor - unemployment rate, nonfarm payrolls, labor force participation", + "Prices and Inflation - CPI, PCE, PPI, breakeven inflation", + "Interest Rates - federal funds rate, Treasury yields, LIBOR/SOFR", + "Money Supply - M1, M2, monetary base", + "Banking - commercial bank assets/liabilities, lending standards", + "Housing - home prices, housing starts, mortgage rates", + "International Trade - trade balance, exchange rates", + "Industrial Production and Capacity Utilization", + "Consumer and Business Surveys - consumer confidence, PMI", + "Regional Data - state and metro area economic indicators", + "International data from IMF, World Bank, OECD, and other sources" + ], + "zh": [ + "GDP和国民账户 - 实际/名义GDP、GDP构成、增长率", + "就业和劳动力 - 失业率、非农就业、劳动参与率", + "物价和通胀 - CPI、PCE、PPI、盈亏平衡通胀率", + "利率 - 联邦基金利率、国债收益率、LIBOR/SOFR", + "货币供应量 - M1、M2、基础货币", + "银行业 - 商业银行资产负债、贷款标准", + "住房 - 房价、新房开工、抵押贷款利率", + "国际贸易 - 贸易差额、汇率", + "工业生产和产能利用率", + "消费者和商业调查 - 消费者信心、PMI", + "地区数据 - 州和都会区经济指标", + "来自IMF、世界银行、OECD等来源的国际数据" + ] + }, + "authority_level": "government" +} diff --git a/firstdata/sources/usa/finance/sec-edgar.json b/firstdata/sources/usa/finance/sec-edgar.json new file mode 100644 index 00000000..54fb9358 --- /dev/null +++ b/firstdata/sources/usa/finance/sec-edgar.json @@ -0,0 +1,45 @@ +{ + "id": "sec-edgar", + "name": { + "en": "SEC EDGAR", + "zh": "美国证券交易委员会EDGAR系统" + }, + "description": { + "en": "U.S. Securities and Exchange Commission's Electronic Data Gathering, Analysis, and Retrieval system. Provides free public access to corporate filings including 10-K, 10-Q, 8-K, proxy statements, and insider trading reports for all publicly traded companies in the United States.", + "zh": "美国证券交易委员会的电子数据收集、分析和检索系统,提供所有美国上市公司的10-K、10-Q、8-K等财务报告的免费公开访问。" + }, + "website": "https://www.sec.gov/edgar", + "data_url": "https://www.sec.gov/cgi-bin/browse-edgar?action=getcompany", + "api_url": "https://efts.sec.gov/LATEST/search-index?q=", + "authority_level": "government", + "country": "US", + "domains": [ + "finance", + "economics" + ], + "tags": [ + "securities", + "corporate-filings", + "financial-reporting", + "stock-market", + "sec" + ], + "update_frequency": "daily", + "data_content": { + "en": [ + "Corporate annual reports (10-K)", + "Quarterly reports (10-Q)", + "Current reports (8-K)", + "Proxy statements", + "Insider trading reports" + ], + "zh": [ + "企业年度报告(10-K)", + "季度报告(10-Q)", + "临时报告(8-K)", + "代理声明", + "内幕交易报告" + ] + }, + "geographic_scope": "national" +} diff --git a/pyproject.toml b/pyproject.toml index 3b5fd9a2..6a3085d3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "firstdata" version = "0.1.0" -description = "A curated knowledge base of global authoritative open data sources" +description = "The External Facts Context Layer for AI Agents — purpose-built, authoritative, structured data sources" authors = [ { name = "mininglamp", email = "firstdata@mininglamp.com" }, ] diff --git a/scripts/cleanup-tag-spaces.py b/scripts/cleanup-tag-spaces.py new file mode 100644 index 00000000..9fe9be18 --- /dev/null +++ b/scripts/cleanup-tag-spaces.py @@ -0,0 +1,73 @@ +#!/usr/bin/env python3 +"""Cleanup tags with whitespace: replace spaces with hyphens. + +Preserves Chinese tags (schema allows mixed Chinese/English). +Only acts on tags that contain ASCII whitespace characters. +Lowercases the result to match project convention for English tags. +""" +import json +import re +import sys +from pathlib import Path + +WHITESPACE_RE = re.compile(r'\s+') +HAN_RE = re.compile(r'[\u4e00-\u9fff]') + +def clean_tag(tag: str) -> str: + """Replace runs of whitespace with a single hyphen. + + - If tag contains Han characters, preserve case (Chinese phrases). + - Otherwise lowercase (English phrases convention). + - Strip leading/trailing hyphens after substitution. + """ + new = WHITESPACE_RE.sub('-', tag).strip('-') + if not HAN_RE.search(new): + new = new.lower() + return new + +def process_file(path: Path) -> int: + """Return number of tags modified in this file.""" + try: + data = json.loads(path.read_text()) + except Exception as e: + print(f"SKIP {path}: parse error: {e}", file=sys.stderr) + return 0 + tags = data.get('tags') + if not isinstance(tags, list): + return 0 + changed = 0 + new_tags = [] + seen = set() + for t in tags: + if not isinstance(t, str): + new_tags.append(t) + continue + nt = clean_tag(t) + if nt != t: + changed += 1 + # Dedup after normalization + if nt in seen: + changed += 1 # removed duplicate + continue + seen.add(nt) + new_tags.append(nt) + if changed == 0: + return 0 + data['tags'] = new_tags + path.write_text(json.dumps(data, ensure_ascii=False, indent=2) + '\n') + return changed + +def main(): + root = Path('firstdata/sources') + total_files = 0 + total_changes = 0 + for p in sorted(root.rglob('*.json')): + c = process_file(p) + if c > 0: + total_files += 1 + total_changes += c + print(f"FIX {p}: {c} tag change(s)") + print(f"\nSummary: {total_changes} tag changes across {total_files} files") + +if __name__ == '__main__': + main() diff --git a/scripts/taxonomy-health-check.py b/scripts/taxonomy-health-check.py new file mode 100644 index 00000000..3871183e --- /dev/null +++ b/scripts/taxonomy-health-check.py @@ -0,0 +1,374 @@ +#!/usr/bin/env python3 +""" +Taxonomy Health Check for FirstData +==================================== +Detects structural issues in the sources/ taxonomy: + 1. Duplicate paths — same country/entity in multiple L1 locations + 2. Illegitimate L1 — top-level dirs violating R4 consensus (allowlist: countries/ + international/) + 3. Directory underscore violations — should be kebab-case + 4. Domain format inconsistency — same concept in different formats + +Output: JSON report + human-readable summary to stdout. + +Usage: + python scripts/taxonomy-health-check.py [--json] [--ci] + + --json Print only JSON report (for CI integration) + --ci Exit with code 1 if any blocking issues found +""" + +import datetime +import json +import sys +import os +import re +from pathlib import Path +from collections import defaultdict + +def find_sources_dir(): + """Find the firstdata/sources directory.""" + # Try relative to script location + script_dir = Path(__file__).resolve().parent + candidates = [ + script_dir.parent / "firstdata" / "sources", + Path.cwd() / "firstdata" / "sources", + ] + for c in candidates: + if c.is_dir(): + return c + print("ERROR: Cannot find firstdata/sources/ directory", file=sys.stderr) + sys.exit(2) + + +def load_all_sources(sources_dir): + """Load all JSON source files.""" + sources = [] + for json_file in sorted(sources_dir.rglob("*.json")): + if json_file.name == "_index.json": + continue + try: + data = json.loads(json_file.read_text(encoding="utf-8")) + rel = json_file.relative_to(sources_dir) + sources.append({ + "file": str(rel), + "path_parts": list(rel.parts), + "id": data.get("id", ""), + "name": data.get("name", ""), + "domains": data.get("domains", []), + }) + except (json.JSONDecodeError, OSError) as e: + print(f"WARNING: Failed to parse {json_file}: {e}", file=sys.stderr) + return sources + + +def check_duplicate_paths(sources): + """ + Detect country/entity-level duplicates: same country scattered across + multiple L1 directories. + + Two sub-checks: + a) Country L1 orphans — top-level dirs like india/, japan/ that duplicate + entries already under countries/ + b) Country alias conflicts — e.g., us/ vs usa/ vs countries/us/ vs + countries/north-america/usa/ + + Does NOT flag subject categories (agriculture, finance, etc.) that + naturally appear under multiple country/org trees. + """ + # Known country aliases to group together + COUNTRY_ALIASES = { + "us": "united-states", + "usa": "united-states", + "cn": "china", + "hk": "hong-kong", + "uk": "united-kingdom", + } + + # R4 consensus: final top-level = country dirs + international/ + # academic/ and sectors/ are NOT legitimate L1 — should be dispersed + # into country directories. Only countries/ and international/ survive. + LEGITIMATE_L1 = {"countries", "international"} + + # Step 1: Build country → {path_prefix: [files]} from L1 dirs + l1_dirs = set() + for s in sources: + l1_dirs.add(s["path_parts"][0]) + + # Candidate country L1s: top-level dirs not in LEGITIMATE_L1 + candidate_countries = {d for d in l1_dirs - LEGITIMATE_L1 + if d not in ("academic", "sectors", "regional")} + + # Step 2: For each candidate, find all paths where this country appears + duplicates = [] + + # Group candidates by normalized name + country_groups = defaultdict(set) # norm_name → {l1_dir_name, ...} + for c in candidate_countries: + norm = COUNTRY_ALIASES.get(c, c) + country_groups[norm].add(c) + + for norm_name, l1_names in sorted(country_groups.items()): + paths = {} + + # Files directly under these L1 dirs + for l1 in l1_names: + prefix = l1 + "/" + files = [s["file"] for s in sources if s["path_parts"][0] == l1] + if files: + paths[prefix] = files + + # Files under countries/ tree that match this country + search_names = l1_names | {norm_name} + for s in sources: + if s["path_parts"][0] != "countries": + continue + # Check if any path part matches our country names + for part in s["path_parts"][1:-1]: + part_norm = COUNTRY_ALIASES.get(part, part) + if part_norm == norm_name or part in search_names: + # Build the path prefix up to this country folder + idx = s["path_parts"].index(part) + prefix = "/".join(s["path_parts"][:idx+1]) + "/" + paths.setdefault(prefix, []) + if s["file"] not in paths[prefix]: + paths[prefix].append(s["file"]) + + if len(paths) > 1: + total = sum(len(f) for f in paths.values()) + entry = { + "entity": norm_name, + "paths": {}, + "total_files": total + } + for prefix, files in sorted(paths.items()): + entry["paths"][prefix] = { + "count": len(files), + "files": sorted(files) + } + duplicates.append(entry) + + return duplicates + + +def check_illegitimate_l1(sources): + """ + Find L1 directories that violate R4 consensus. + + R4 three-party consensus (taxonomy design study round 4): + Decision: academic/ and sectors/ do NOT remain as top-level directories; + they should be dispersed into country directories by geographic affiliation. + Final top-level structure: country directories + international/ + Only `countries/` and `international/` are legitimate L1 directories. + + Everything else (academic/, sectors/, china/, india/, etc.) should be + dispersed into the country tree. + """ + # See R4 consensus above. This is NOT arbitrary — changing this set + # requires a new three-party decision. + LEGITIMATE_L1 = {"countries", "international"} + + l1_counts = defaultdict(list) + for s in sources: + l1 = s["path_parts"][0] + l1_counts[l1].append(s["file"]) + + illegitimate = [] + for l1, files in sorted(l1_counts.items()): + if l1 not in LEGITIMATE_L1: + illegitimate.append({ + "l1": l1, + "file_count": len(files), + "category": _classify_l1(l1), + "files": sorted(files) if len(files) <= 5 else sorted(files)[:5] + [f"... and {len(files)-5} more"] + }) + return illegitimate + + +def _classify_l1(l1_name): + """Classify why an L1 directory is illegitimate.""" + country_names = { + "china", "india", "japan", "singapore", "thailand", + "us", "usa", "cn", "hk", "uk", + } + if l1_name in country_names: + return "country-orphan" + if l1_name in ("academic", "sectors"): + return "non-geographic-axis" + if l1_name == "regional": + return "scope-axis" + # Default to country-orphan: academic/sectors/regional have explicit + # branches above, so anything else is most likely a country directory. + return "country-orphan" + + +def check_directory_underscores(sources_dir): + """Find directory names containing underscores (should be kebab-case).""" + violations = defaultdict(list) + for json_file in sources_dir.rglob("*.json"): + if json_file.name == "_index.json": + continue + rel = json_file.relative_to(sources_dir) + for part in rel.parts[:-1]: + if "_" in part: + violations[part].append(str(rel)) + + return [ + { + "directory": dirname, + "suggested": dirname.replace("_", "-"), + "affected_files": len(files), + "files": sorted(files) + } + for dirname, files in sorted(violations.items()) + ] + + +def check_domain_format_conflicts(sources): + """Find domain values where the same concept uses different formatting.""" + # Collect all domain values + all_domains = [] + for s in sources: + for d in s["domains"]: + all_domains.append(d) + + # Normalize and group + normalized = defaultdict(lambda: defaultdict(int)) + for d in all_domains: + norm = d.lower().replace("-", " ").replace("_", " ").strip() + normalized[norm][d] += 1 + + conflicts = [] + for concept, variants in sorted(normalized.items()): + if len(variants) > 1: + conflicts.append({ + "concept": concept, + "variants": dict(sorted(variants.items())), + "total_occurrences": sum(variants.values()) + }) + + # Summary stats + total = len(all_domains) + has_space = sum(1 for d in all_domains if " " in d) + has_hyphen = sum(1 for d in all_domains if "-" in d) + has_underscore = sum(1 for d in all_domains if "_" in d) + format_stats = { + "total_entries": total, + "with_spaces": has_space, + "with_hyphens": has_hyphen, + "with_underscores": has_underscore, + "conflict_groups": len(conflicts), + } + + return conflicts, format_stats + + +def main(): + json_only = "--json" in sys.argv + ci_mode = "--ci" in sys.argv + + sources_dir = find_sources_dir() + sources = load_all_sources(sources_dir) + + # Run all checks + duplicate_paths = check_duplicate_paths(sources) + illegitimate_l1 = check_illegitimate_l1(sources) + dir_underscores = check_directory_underscores(sources_dir) + domain_conflicts, domain_stats = check_domain_format_conflicts(sources) + + # Count misplaced files + misplaced_files = sum(item["file_count"] for item in illegitimate_l1) + + # Build report + report = { + "scan_date": datetime.date.today().isoformat(), + "total_sources": len(sources), + "checks": { + "duplicate_paths": { + "count": len(duplicate_paths), + "severity": "warning", + "items": duplicate_paths + }, + "illegitimate_l1": { + "count": len(illegitimate_l1), + "severity": "error", + "description": "L1 dirs violating R4 consensus (only countries/ + international/ are legitimate)", + "misplaced_files": misplaced_files, + "items": illegitimate_l1 + }, + "directory_underscores": { + "count": len(dir_underscores), + "severity": "error", + "items": dir_underscores + }, + "domain_format_conflicts": { + "count": len(domain_conflicts), + "severity": "info", + "stats": domain_stats, + "items": domain_conflicts + } + }, + "summary": { + "errors": len(dir_underscores) + len(illegitimate_l1), + "warnings": len(duplicate_paths), + "info": len(domain_conflicts), + "pass": len(dir_underscores) == 0 and len(illegitimate_l1) == 0 + } + } + + if json_only: + print(json.dumps(report, indent=2, ensure_ascii=False)) + else: + # Human-readable summary + print("=" * 60) + print(" FirstData Taxonomy Health Check") + print(f" Sources scanned: {len(sources)}") + print("=" * 60) + + # Check 1: Duplicate paths + print(f"\n🔴 Duplicate Paths: {len(duplicate_paths)} entities") + for dp in duplicate_paths: + print(f"\n [{dp['entity']}] — {dp['total_files']} files across {len(dp['paths'])} paths:") + for path, info in dp["paths"].items(): + print(f" {path} → {info['count']} file(s)") + + # Check 2: Illegitimate L1 (R4 consensus) + print(f"\n🔴 Illegitimate L1 Directories: {len(illegitimate_l1)} ({misplaced_files} files misplaced)") + print(f" R4 consensus: only countries/ + international/ are legitimate") + for item in illegitimate_l1: + tag = {"country-orphan": "🌍", "non-geographic-axis": "📁", "scope-axis": "🔲"}.get(item["category"], "❓") + files_display = item["files"] if item["file_count"] <= 5 else f"{item['files'][:3]}... ({item['file_count']} total)" + print(f" {tag} {item['l1']}/ → {item['file_count']} file(s) [{item['category']}]") + + # Check 3: Directory underscores + print(f"\n🔴 Directory Underscore Violations: {len(dir_underscores)}") + for v in dir_underscores: + print(f" {v['directory']}/ → {v['suggested']}/ ({v['affected_files']} files)") + + # Check 4: Domain format conflicts + print(f"\n📊 Domain Format Stats:") + print(f" Total entries: {domain_stats['total_entries']}") + print(f" With spaces: {domain_stats['with_spaces']} ({100*domain_stats['with_spaces']/domain_stats['total_entries']:.1f}%)") + print(f" With hyphens: {domain_stats['with_hyphens']} ({100*domain_stats['with_hyphens']/domain_stats['total_entries']:.1f}%)") + print(f" Conflicting format groups: {domain_stats['conflict_groups']}") + if domain_conflicts: + print(f"\n Top conflicts:") + for c in domain_conflicts[:10]: + variants = ", ".join(f'"{v}"' for v in c["variants"]) + print(f" {c['concept']}: [{variants}]") + if len(domain_conflicts) > 10: + print(f" ... and {len(domain_conflicts) - 10} more") + + # Summary + print("\n" + "=" * 60) + s = report["summary"] + status = "✅ PASS" if s["pass"] else "❌ FAIL" + print(f" {status} | Errors: {s['errors']} | Warnings: {s['warnings']} | Info: {s['info']}") + print("=" * 60) + + # CI exit code + if ci_mode and not report["summary"]["pass"]: + sys.exit(1) + + +if __name__ == "__main__": + main() diff --git a/skills/firstdata/SKILL.md b/skills/firstdata/SKILL.md new file mode 100644 index 00000000..2f4f7b34 --- /dev/null +++ b/skills/firstdata/SKILL.md @@ -0,0 +1,183 @@ +--- +name: firstdata +description: Find official portals, APIs, and download paths for authoritative primary data sources (governments, international organizations, research institutions, etc.). Use when users need to know "where to find this data from an official source", "which source is more authoritative", or "how to cite primary data". Covers 1000+ global data sources with authority comparison and site navigation guidance. +version: 0.0.2 +metadata: + openclaw: + homepage: https://github.com/MLT-OSS/FirstData + primaryEnv: FIRSTDATA_API_KEY + emoji: "📊" + requires: + env: + - FIRSTDATA_API_KEY + bins: + - curl +--- +# FirstData + +## What FirstData Is + +FirstData is the External Facts Context Layer for AI Agents — a purpose-built, authoritative collection of primary data sources, covering 1000+ sources to help agents locate official origins rather than generating unverified answers. + +It does not replace raw data — it acts as an "authoritative data navigator", taking vague user needs as input, recommending the most appropriate primary sources, and providing clear access paths, API information, and download methods so both users and agents can trace back to original evidence. + +**Coverage**: + +- International organizations: World Bank, IMF, OECD, WHO, FAO, etc. +- Chinese government agencies: PBC, National Bureau of Statistics, General Administration of Customs, CSRC, etc. +- National official agencies: US, Canada, Japan, UK, Australia, etc. +- Academic & research databases: NBER, Penn World Table, PubMed, etc. +- Corporate disclosure & market platforms: stock exchange disclosure systems, listed company filings, etc. +- Industry-specific databases: energy, finance, health, climate, legal & regulatory, etc. + +**When to use**: When users need to find official data sources, compare source authority, obtain official URLs/APIs/download paths, or build evidence-chain workflows. FirstData is a source locator, not an answer generator — after receiving results, guide users back to original sources for verification rather than treating them as final answers. + +## Capabilities + +**1. Source Locator** — Returns the top 3–5 most relevant sources with authority level, matching rationale, access URL, API documentation, and download methods. + +**2. Site Pathfinder** — Provides step-by-step navigation from homepage to target data for complex official websites, including alternative paths and API access methods. + +**3. Evidence-Ready Workflows** — Can be embedded into workflows requiring evidence chains: deep research, policy analysis, investment research, compliance auditing, fact-checking, etc. + +Each data source includes structured metadata: authority level (`government` / `international` / `research` / `market` / `commercial` / `other`), access URL, API information, download formats, geographic scope, update frequency, access level, etc. + +## Typical Queries + +Typical query scenarios when agents call FirstData via MCP: + +| User Need | Query Direction | Expected Output | +| ------------------------------------------------------------------------- | -------------------------------------------- | ------------------------------------------------------------- | +| "Which official source should I cite for China's 2023 NEV export volume?" | China Customs, National Bureau of Statistics | Official source + authority level + data page URL | +| "Where to download IPO prospectus for a Hong Kong-listed company?" | HKEXnews | Official platform + step-by-step navigation | +| "World Bank vs IMF GDP data — which is better for academic citation?" | World Bank WDI, IMF WEO | Source comparison + authority differences + API docs | +| "Need global climate data with API access" | NASA Earthdata, NOAA CDO | Data source + API docs + access methods | +| "Where is the official data for China's M2 money supply?" | People's Bank of China | Official data portal + update frequency + historical coverage | + +Full project background and feature documentation: [README](https://raw.githubusercontent.com/MLT-OSS/FirstData/refs/heads/main/README.md) + +## Quick Start + +This skill connects to the FirstData MCP server (`firstdata.deepminer.com.cn`), the project's official hosted API endpoint. An API key (`FIRSTDATA_API_KEY`) is required for authentication. + +**If you already have `FIRSTDATA_API_KEY` set**, configure the MCP connection: + +```bash +npx mcporter config add firstdata https://firstdata.deepminer.com.cn/mcp --header 'Authorization=Bearer ${FIRSTDATA_API_KEY}' +``` + +Or add manually to your MCP config: + +```json +{ + "mcpServers": { + "firstdata": { + "type": "streamable-http", + "url": "https://firstdata.deepminer.com.cn/mcp", + "headers": { + "Authorization": "Bearer " + } + } + } +} +``` + +**If you don't have an API key**, see [firstdata-register.md](references/firstdata-register.md) for the registration process (two API calls to the FirstData server to obtain a JWT token). + +Once connected, browse the tool list provided by the firstdata MCP and select the appropriate tool based on your needs. + +## MCP Tools Reference + +The FirstData MCP server provides 5 tools. Below is a reference with usage guidelines, limitations, and examples. + +### Common Limitations (all tools) + +- **Authentication required**: All tools require a valid API key (JWT token) via `Authorization: Bearer ` header. +- **Daily call quota**: API usage is subject to a per-token daily call quota. Quota varies by API key tier (trial accounts: 30 calls/day). MCP tool calls do not return remaining quota information. To check quota, use the Token verification API (`POST /api/token/verify`) which returns `remaining_daily` in the response — this is a separate HTTP call, not available through MCP tool invocation. +- **Network dependency**: All tools make HTTP calls to the FirstData server (`firstdata.deepminer.com.cn`). Network latency and server availability affect response times. + +### Tool: `search_source` + +**Purpose**: Unified data source search tool supporting keyword search, structured filtering, pagination, and multiple output modes. + +**Limitations**: +- Maximum **200** results per query (`limit` parameter range: 1–200, default: 20). +- ⚠️ **Each keyword is matched as an independent substring — pass each search term as a separate array element.** For example, use `["中国", "GDP"]` (173 results) instead of `["中国 GDP"]` (0 results). This is by design to preserve multi-word terms like `"New Zealand"` or `"World Bank"`. +- Keyword matching is **substring-based**, not semantic search. Keywords are matched against source metadata fields (name, description, tags, content). +- The `domain` parameter uses **substring matching**, not exact enum matching (e.g., `"finance"` matches `"public-finance"`, `"finance"`, `"financial-markets"`). +- No boolean operators (AND/OR/NOT). Multiple keywords in the array are combined with **OR logic** (results matching any keyword are returned, deduplicated). +- Response time: typically **~1 second**. + +### Tool: `get_source` + +**Purpose**: Retrieve full details for specific data sources by their IDs. + +**Limitations**: +- Invalid `source_id` values do NOT cause an error response (`isError: false`). Instead, the result array includes `{"id": "xxx", "error": "Not found"}` for each invalid ID alongside valid results. Callers must check individual items for `error` fields rather than relying solely on `isError`. +- No schema-level limit on the number of `source_ids` per request, but performance with large batches (50+) is unverified. As a practical guideline (not a hard limit), consider batching in groups of ~20. +- The `fields` parameter filters returned fields; when omitted, all fields are returned. + +### Tool: `ask_agent` + +**Purpose**: LLM-powered intelligent search agent for complex, cross-domain, or ambiguous queries that require multi-step reasoning. + +**Limitations**: +- Query length: 2–1,000 characters. +- Maximum results: 1–20 (default: 5). +- **Non-idempotent**: Same query may return different results across calls (LLM reasoning varies). +- **Response time: typically 2–8 seconds** (involves LLM inference). May take longer (10–30+ seconds) when the agent triggers `web_search` for external information. +- Internally uses LangChain ReAct agent with `jq` for local data queries plus optional `web_search`. The web search step is not user-controllable. +- **Use `search_source` instead** for simple keyword matching or structured filtering — it is faster, deterministic, and cheaper. + +### Tool: `get_access_guide` + +**Purpose**: Generate detailed access instructions for a specific data source using RAG (Retrieval-Augmented Generation). + +**Limitations**: +- **Not all data sources have instruction libraries.** If a source has no pre-built instructions, results will be empty or irrelevant. +- Invalid `source_id` returns `{"error": "数据源 xxx 不存在"}`. +- `top_k` range: 1–5 (default: 3). +- **Response time is highly variable: 3–20 seconds**, depending on RAG retrieval complexity and server load. +- Retrieval quality depends heavily on the specificity of the `operation` parameter. Vague descriptions yield lower-quality matches. Use specific action verbs and entity names (e.g., "查询2024年M2货币供应量数据" rather than "查数据"). + +### Tool: `report_feedback` + +**Purpose**: Submit user feedback to the development team when FirstData has a confirmed issue. + +**Limitations**: +- `feedback_message` length: 10–2,000 characters. +- **Non-idempotent**: Duplicate calls create duplicate feedback entries. Do not retry on success. +- Only use when a genuine issue is confirmed (missing source, incorrect data, broken functionality). Do not use as a general comment channel. + +**Examples**: + +``` +# Example 1: Broken link +feedback_message="链接失效:数据源 china-pbc 的 data_url 返回 404,无法访问数据页面。检索关键词:中国货币供应量" + +# Example 2: Outdated content +feedback_message="数据内容过时:数据源 worldbank-open-data 的 update_frequency 标注为 quarterly,但实际已超过 6 个月未更新" +``` + +## Description Quality Guidelines + +When adding or modifying MCP tool descriptions, follow these principles (based on [MCP tool description quality research](https://arxiv.org/abs/2602.14878)): + +**Core principle: "Write it right before writing it all"** — Functionality accuracy (+11.6% impact) matters ~8× more than Conciseness (+1.5%). + +**6-dimension checklist** (check all before submitting): + +- [ ] **Purpose**: Is the tool's function clearly stated in the first sentence? +- [ ] **Guidelines**: Are usage scenarios and when-to-use / when-not-to-use rules included? +- [ ] **Examples**: Are typical input/output examples provided? +- [ ] **Limitations**: Are constraints, edge cases, and known limitations documented? +- [ ] **Parameters**: Are all parameters described with types, ranges, and defaults? +- [ ] **Return Format**: Is the response structure documented? + +## Community + +FirstData is an open-source project — join us in building the External Facts Context Layer for AI Agents: + +- ⭐ [**Star**](https://github.com/MLT-OSS/FirstData) the project to help more agents and developers discover it +- 📝 [**Issue**](https://github.com/MLT-OSS/FirstData/issues) to report problems, suggest new data sources, or propose improvements +- 🔀 [**PR**](https://github.com/MLT-OSS/FirstData/pulls) to contribute code, data sources, or documentation improvements diff --git a/skills/firstdata/mcp-tool-descriptions-draft.md b/skills/firstdata/mcp-tool-descriptions-draft.md new file mode 100644 index 00000000..4c2a8f74 --- /dev/null +++ b/skills/firstdata/mcp-tool-descriptions-draft.md @@ -0,0 +1,91 @@ +# MCP Tool Descriptions — Server-Side Draft + +> **Purpose**: This file contains the text to be added to each tool's description in the MCP server Python code. +> After PR review approval, copy these Limitations sections into the server-side tool description strings. +> Content is condensed from `SKILL.md` for server-side use. Semantics must match; formatting may differ slightly for plain-text context. + +--- + +## search_source — Add to description + +``` +**Limitations:** +- Maximum 200 results per query (limit range: 1–200, default: 20) +- Each keyword is matched as an independent substring — pass each search term as a separate array element. Use ["中国", "GDP"] instead of ["中国 GDP"]. This preserves multi-word terms like "New Zealand" or "World Bank" +- Keyword matching is substring-based, not semantic search +- domain parameter uses substring matching, not exact enum matching +- No boolean operators (AND/OR/NOT). Multiple keywords use OR logic (results matching any keyword are returned, deduplicated) +- Response time: typically ~1 second +- Subject to daily API call quota per token. MCP tool calls do not return remaining quota; use Token verification API (POST /api/token/verify, returns remaining_daily) to check +``` + +## get_source — Add to description + +``` +**Limitations:** +- Invalid source_id does NOT set isError=true. Returns {"id": "xxx", "error": "Not found"} in the result array. Callers must check individual items for error fields +- No schema-level limit on source_ids count, but large batch performance is unverified. Practical guideline (not a hard limit): batch in groups of ~20 +- Subject to daily API call quota per token +``` + +## ask_agent — Add to description + +``` +**Limitations:** +- Query length: 2–1,000 characters +- Maximum results: 1–20 (default: 5) +- Non-idempotent: same query may return different results (LLM reasoning varies) +- Response time: typically 2–8 seconds; may reach 10–30+ seconds when web_search is triggered +- Subject to daily API call quota per token +``` + +## get_access_guide — Add to description + +``` +**Limitations:** +- Not all data sources have instruction libraries. Sources without pre-built instructions return empty or irrelevant results +- Invalid source_id returns {"error": "数据源 xxx 不存在"} +- top_k range: 1–5 (default: 3) +- Response time is highly variable: 3–20 seconds depending on RAG retrieval complexity and server load +- Retrieval quality depends on specificity of the operation parameter. Use specific action verbs and entity names +- Subject to daily API call quota per token +``` + +## report_feedback — Add to description + Example + +``` +**Limitations:** +- feedback_message length: 10–2,000 characters +- Non-idempotent: duplicate calls create duplicate feedback entries. Do not retry on success +- Subject to daily API call quota per token + +**示例:** +- 链接失效反馈: feedback_message="链接失效:数据源 china-pbc 的 data_url 返回 404,无法访问数据页面。检索关键词:中国货币供应量" +- 数据过时反馈: feedback_message="数据内容过时:数据源 worldbank-open-data 的 update_frequency 标注为 quarterly,但实际已超过 6 个月未更新" +``` + +--- + +## Verification Evidence + +Each limitation is backed by one of these sources: + +| Limitation | Source | +|---|---| +| search_source limit: 1–200 | inputSchema `maximum: 200, minimum: 1` | +| Keywords not auto-tokenized | Tested: `["中国 GDP"]` → 0 results; `["中国", "GDP"]` → 173 results | +| Multiple keywords use OR logic | Tested: `["GDP"]`→100, `["health"]`→78, `["GDP","health"]`→138 (>max, confirmed OR) | +| Substring matching | Tested: `["中国GDP"]` → 1 result (exact substring); `["GDP"]` → 100 results | +| domain substring matching | inputSchema description: "领域关键词,子串匹配" | +| get_source silent error | Tested: invalid ID returns `{"id":"xxx","error":"Not found"}` with `isError: false` | +| get_source mixed valid/invalid | Tested: valid IDs return data, invalid return error objects, no request interruption | +| ask_agent query length | inputSchema `minLength: 2, maxLength: 1000` | +| ask_agent max_results | inputSchema `minimum: 1, maximum: 20, default: 5` | +| ask_agent non-idempotent | annotations `idempotentHint: false` | +| ask_agent response time | Tested 3 runs: 7.4s, 2.9s, 1.8s | +| get_access_guide invalid source | Tested: returns `{"error": "数据源 xxx 不存在"}` | +| get_access_guide top_k | inputSchema `minimum: 1, maximum: 5, default: 3` | +| get_access_guide response time | Tested 3 runs: 3.0s, 17.6s, 19.1s | +| report_feedback message length | inputSchema `minLength: 10, maxLength: 2000` | +| Daily call quota exists | TokenVerifyResponse schema: `quota_allowed`, `remaining_daily` fields | +| Trial quota: 30/day | Tested via `/api/trial/session-info`: `total_calls: 30` | diff --git a/skills/firstdata/references/firstdata-register.md b/skills/firstdata/references/firstdata-register.md new file mode 100644 index 00000000..c98b68e5 --- /dev/null +++ b/skills/firstdata/references/firstdata-register.md @@ -0,0 +1,131 @@ +**Base URL:** `https://firstdata.deepminer.com.cn` + +## Quick Flow + +The registration flow has two steps: + +```text +POST /api/agent/register -> receive inactive access_token + verification challenge +POST /api/agent/verify -> submit answer and activate the token +``` + +Use the activated `access_token` as `FIRSTDATA_API_KEY` after verification succeeds. + +## Step 1: Register + +Send a POST request to register the agent and receive a verification challenge: + +```http +POST https://firstdata.deepminer.com.cn/api/agent/register +Content-Type: application/json + +{ + "agent_id": "my-unique-agent-name", + "contact_email": "owner@example.com", + "description": "Data analysis agent for quarterly reports" +} +``` + +Key fields: + +| Field | Required | Description | +| ----------------- | -------- | ------------------------------------------------------------------------- | +| `agent_id` | Yes | Globally unique identifier (max 100 chars). Acts as the agent's username. | +| `contact_email` | No | Owner's email for contact purposes | +| `description` | Yes | Brief description of the agent's purpose (max 500 chars) | + +**Success response** (`success: true`): + +```json +{ + "success": true, + "data": { + "agent_id": "my-unique-agent-name", + "access_token": "eyJhbGciOi...", + "verification": { + "verification_code": "a1b2c3d4-...", + "challenge_text": "...", + "expires_at": "2025-01-15T10:05:00", + "instructions": "..." + } + } +} +``` + +Save both `access_token` and `verification.verification_code`. The token is returned immediately but is not usable until verification succeeds. + +## Step 2: Solve the Challenge and Verify + +Read `verification.challenge_text`, follow `verification.instructions`, solve the math challenge, and submit the answer: + +```http +POST https://firstdata.deepminer.com.cn/api/agent/verify +Content-Type: application/json + +{ + "verification_code": "a1b2c3d4-...", + "answer": "your answer here" +} +``` + +Success response: + +```json +{ + "success": true, + "message": "验证成功,token 已激活", + "mcp_server_url": "https://mcp.firstdata.deepminer.com.cn" +} +``` + +After this step, the `access_token` from Step 1 becomes active. If `mcp_server_url` is returned, use it as the MCP endpoint. + +## After Activation + +- Use the activated `access_token` as `FIRSTDATA_API_KEY` +- Connect with `Authorization: Bearer ` +- The token is a JWT and is valid for **365 days** by default + +Rate limits: + +- **RPS limit:** 10 requests per second +- **Daily quota:** 5000 requests per day + +## Error Handling + +| Scenario | What happens | Action | +| ------------------------------------------------- | ------------------------------------------------------------ | ------------------------------------------------------------------------ | +| `agent_id` already registered with active token | Registration returns `success: false` | Choose a different `agent_id` or wait for the existing token to expire | +| Pending verification exists for this `agent_id` | Registration returns `success: false` | Complete the existing verification or wait for it to expire | +| Wrong answer | Verify returns `success: false` with remaining attempts | Re-read the challenge carefully and try again | +| All attempts exhausted | Verify returns `success: false`, status becomes `failed` | Start over with a new `/api/agent/register` call | +| Challenge expired | Verify returns `success: false` | Start over with a new `/api/agent/register` call | +| IP rate limited | HTTP 429 | Wait before retrying | + +## MCP Configuration + +After activation, configure the MCP connection using either method: + +**Option 1: MCPorter CLI (recommended)** + +```bash +npx mcporter config add firstdata https://firstdata.deepminer.com.cn/mcp --header 'Authorization=Bearer ${FIRSTDATA_API_KEY}' +``` + +**Option 2: Manual MCP configuration** + +```json +{ + "mcpServers": { + "firstdata": { + "type": "streamable-http", + "url": "https://firstdata.deepminer.com.cn/mcp", + "headers": { + "Authorization": "Bearer " + } + } + } +} +``` + +`FIRSTDATA_API_KEY` should be set to the activated `access_token`.