datalab_shopping_keyword_by_age
Analyze Naver Shopping keyword trends by age groups to understand consumer behavior. Input keyword, category, date range, and age groups for targeted insights.
Instructions
Perform a trend analysis on Naver Shopping keywords by age. (네이버 쇼핑 키워드 연령별 트렌드 분석)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ages | Yes | Age groups | |
category | Yes | Category code | |
endDate | Yes | End date (yyyy-mm-dd) | |
keyword | Yes | Search keyword | |
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": {
"ages": {
"description": "Age groups",
"items": {
"enum": [
"10",
"20",
"30",
"40",
"50",
"60"
],
"type": "string"
},
"type": "array"
},
"category": {
"description": "Category code",
"type": "string"
},
"endDate": {
"description": "End date (yyyy-mm-dd)",
"type": "string"
},
"keyword": {
"description": "Search keyword",
"type": "string"
},
"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",
"ages"
],
"type": "object"
}