get_datasets_by_format
Find Hong Kong government datasets available in specific file formats like CSV, JSON, or GeoJSON to access open data resources that match your technical requirements.
Instructions
Get datasets that have resources in a specific file format.
Args: file_format: The file format to filter by (e.g., "CSV", "JSON", "GeoJSON") limit: Maximum number of datasets to return language: Language code (en, tc, sc)
Returns: A dictionary containing: - count: Total number of matching datasets - results: List of matching datasets
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_format | Yes | ||
language | No | en | |
limit | No |
Input Schema (JSON Schema)
{
"properties": {
"file_format": {
"type": "string"
},
"language": {
"default": "en",
"type": "string"
},
"limit": {
"default": 10,
"type": "integer"
}
},
"required": [
"file_format"
],
"type": "object"
}