datalab_shopping_keywords
Analyze shopping keyword trends on Naver to identify market insights and consumer behavior patterns within specific timeframes and categories.
Instructions
Perform a trend analysis on Naver Shopping keywords. (네이버 쇼핑 키워드별 트렌드 분석)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | Yes | Category code | |
endDate | Yes | End date (yyyy-mm-dd) | |
keyword | Yes | Array of keyword name and value pairs | |
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": {
"category": {
"description": "Category code",
"type": "string"
},
"endDate": {
"description": "End date (yyyy-mm-dd)",
"type": "string"
},
"keyword": {
"description": "Array of keyword name and value pairs",
"items": {
"additionalProperties": false,
"properties": {
"name": {
"description": "Keyword name",
"type": "string"
},
"param": {
"description": "Keyword values",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"name",
"param"
],
"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",
"category",
"keyword"
],
"type": "object"
}