datalab_search
Analyze search keyword trends on Naver by specifying date ranges, keyword groups, and time units to identify patterns in user search behavior.
Instructions
Perform a trend analysis on Naver search keywords. (네이버 검색어 트렌드 분석)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endDate | Yes | End date (yyyy-mm-dd) | |
keywordGroups | Yes | Keyword groups | |
startDate | Yes | Start date (yyyy-mm-dd) | |
timeUnit | Yes | Time unit |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"endDate": {
"description": "End date (yyyy-mm-dd)",
"type": "string"
},
"keywordGroups": {
"description": "Keyword groups",
"items": {
"additionalProperties": false,
"properties": {
"groupName": {
"description": "Group name",
"type": "string"
},
"keywords": {
"description": "List of keywords",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"groupName",
"keywords"
],
"type": "object"
},
"type": "array"
},
"startDate": {
"description": "Start date (yyyy-mm-dd)",
"type": "string"
},
"timeUnit": {
"description": "Time unit",
"enum": [
"date",
"week",
"month"
],
"type": "string"
}
},
"required": [
"startDate",
"endDate",
"timeUnit",
"keywordGroups"
],
"type": "object"
}