Schema 조회
- 인쇄
- PDF
Schema 조회
- 인쇄
- PDF
기사 요약
이 요약이 도움이 되었나요?
의견을 보내 주셔서 감사합니다.
해당 도메인에 설정된 검색 설정(Schema)를 조회합니다. 해당 요청을 수행하기 이전에 Domain 생성이 되어져 있어야 합니다.
GET https://cloudsearch.apigw.ntruss.com/CloudSearch/real/v1/domain/{name}/schema
요청
요청 파라미터
파라미터명 | 필수 여부 | 타입 | 제약 사항 | 설명 |
---|---|---|---|---|
name | Yes | string | 생성되어져 있는 Domain 이름 |
응답
필드명 | 타입 | 설명 | 비고 |
---|---|---|---|
document | Schema | 검색 설정 |
응답 Status
HTTP Status | Desc |
---|---|
200 | OK(조회 완료) |
400 | Bad Request |
401 | Unauthorized |
403 | Forbidden |
404 | Not Found |
500 | Internal Server Error |
예시
요청 예시
GET https://cloudsearch.apigw.ntruss.com/CloudSearch/real/v1/domain/car_dev/schema
GET /CloudSearch/real/v1/domain/car_dev/schema HTTP/1.1
Host:cloudsearch.apigw.ntruss.com
x-ncp-apigw-signature-v2: cDwtHuQeGmwWyNmwlN6XIGA66zge4iMXvfoDQNna05g=
x-ncp-apigw-timestamp: 1545817618751
x-ncp-iam-access-key: teGTwtcSEGA7fu28BGGi
응답 예시
{
"document": {
"primarySectionName": "docid",
"sections": [
{
"docProperties": [
{
"type": "string",
"name": "dp_docid"
}
],
"name": "docid"
},
{
"docProperties": [
{
"type": "string",
"name": "dp_brand"
}
],
"name": "brand"
},
{
"docProperties": [
{
"type": "string",
"name": "dp_name"
}
],
"name": "name"
},
{
"docProperties": [
{
"type": "string",
"name": "dp_price"
}
],
"name": "price"
},
{
"docProperties": [
{
"type": "float",
"name": "dp_name2"
}
],
"name": "name2"
}
],
"indexes": [
{
"documentTermWeight": "sum_wgt",
"buildInfos": [
{
"sections": [
"brand"
],
"sectionTermWeight": "1.0 * stw_2p(tf, 0.5, 0.25, 0., length / 128.0)",
"indexProcessors": [
{
"type": "hanaterm",
"method": "sgmt",
"option": "+korea +josacat +eomicat"
}
],
"name": "index_build_0"
},
{
"sections": [
"name"
],
"sectionTermWeight": "1.0 * stw_2p(tf, 0.5, 0.25, 0., length / 128.0)",
"indexProcessors": [
{
"type": "hanaterm",
"method": "sgmt",
"option": "+korea +josacat +eomicat"
}
],
"name": "index_build_1"
}
],
"name": "brand_name"
},
{
"documentTermWeight": "sum_wgt",
"buildInfos": [
{
"sections": [
"price"
],
"sectionTermWeight": "1.0 * stw_2p(tf, 0.5, 0.25, 0., length / 128.0)",
"indexProcessors": [
{
"type": "hanaterm",
"method": "sgmt",
"option": "+korea +josacat +eomicat"
}
],
"name": "index_build_0"
}
],
"name": "price"
}
]
}
}
이 문서가 도움이 되었습니까?