datalab_shopping_category
Analyze Naver Shopping category trends by specifying time units, date ranges, and category codes to identify market patterns and consumer behavior.
Instructions
Perform a trend analysis on Naver Shopping category. (네이버 쇼핑 카테고리별 트렌드 분석)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | Yes | Array of category name and code pairs | |
endDate | Yes | End date (yyyy-mm-dd) | |
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": "Array of category name and code pairs",
"items": {
"additionalProperties": false,
"properties": {
"name": {
"description": "Category name",
"type": "string"
},
"param": {
"description": "Category codes",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"name",
"param"
],
"type": "object"
},
"type": "array"
},
"endDate": {
"description": "End date (yyyy-mm-dd)",
"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"
],
"type": "object"
}