get_dataset_details
Retrieve comprehensive information about specific Hong Kong government datasets, including metadata, resources, and optional tracking details for data analysis and research purposes.
Instructions
Get detailed information about a specific dataset
Args: dataset_id: The ID or name of the dataset to retrieve language: Language code (en, tc, sc) include_tracking: Add tracking information to dataset and resources
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dataset_id | Yes | ||
include_tracking | No | ||
language | No | en |
Input Schema (JSON Schema)
{
"properties": {
"dataset_id": {
"type": "string"
},
"include_tracking": {
"default": false,
"type": "boolean"
},
"language": {
"default": "en",
"type": "string"
}
},
"required": [
"dataset_id"
],
"type": "object"
}