---
title: "기본 스키마 정보 조회"
slug: "ai-application-service-aitems-schema-default"
updated: 2026-04-23T08:55:42Z
published: 2026-04-23T09:02:17Z
---

> ## Documentation Index
> Fetch the complete documentation index at: https://api.ncloud-docs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 기본 스키마 정보 조회

<p class="platform-info type-classic-vpc">Classic/VPC 환경에서 이용 가능합니다.</p>
 
데이터셋 타입에 따라 필수로 구성되는 기본 스키마 정보를 조회합니다.

## 요청<a name="요청"></a>
요청 형식을 설명합니다. 요청 형식은 다음과 같습니다.

| 메서드 | URI |
| :--- | :--- |
| GET | /schemas/default |

### 요청 헤더<a name="요청헤더"></a>
AiTEMS API에서 공통으로 사용하는 헤더에 대한 정보는 [AiTEMS 요청 헤더](/docs/aitems-overview#요청헤더)를 참조해 주십시오.

### 요청 쿼리 파라미터<a name="요청쿼리파라미터"></a>
요청 쿼리 파라미터에 대한 설명은 다음과 같습니다.

| 필드 | 타입 | 필수 여부 | 설명 |
| :---- | :---- | :---- | :---- |
| `datasetType` | String | Required | 데이터셋 타입<ul><li>`user` \| `item` \| `interaction`<ul><li>`user`: 사용자 정보(연령, 성별 등)를 담은 데이터</li><li>`item`: 상품 관련 정보(가격, 출시일, 카테고리 등)를 담은 데이터</li><li>`interaction`: 사용자와 상품 간 상호작용으로 얻은 기록을 담은 데이터</li></ul></li></ul> |

### 요청 예시<a name="요청예시"></a>
요청 예시는 다음과 같습니다.

```shell
curl --location --request GET 'https://aitems.apigw.ntruss.com/api/v1/schemas/default?datasetType=interaction' \
--header 'x-ncp-apigw-timestamp: {Timestamp}' \
--header 'x-ncp-iam-access-key: {Access Key}' \
--header 'x-ncp-apigw-signature-v2: {API Gateway Signature}' \
--header 'Content-Type: application/json'
```

## 응답<a name="응답"></a>
응답 형식을 설명합니다.

### 응답 바디<a name="응답바디"></a>
응답 바디에 대한 설명은 다음과 같습니다.

| 필드 | 타입 | 필수 여부 | 설명 |
| :---- | :---- | :---- | :---- |
| `datasetType` | String | - | 데이터셋 타입<ul><li>`user` \| `item` \| `interaction`<ul><li>`user`: 사용자 정보(연령, 성별 등)를 담은 데이터</li><li>`item`: 상품 관련 정보(가격, 출시일, 카테고리 등)를 담은 데이터</li><li>`interaction`: 사용자와 상품 간 상호작용으로 얻은 기록을 담은 데이터</li></ul></li></ul> |
| `name` | String | - | 스키마 이름 |
| `fields` | Array | - | 스키마 필드 정보: [fields](#fields) |
| `description` | String | - | 스키마에 대한 설명 |

#### `fields` <a name="fields"></a>
`fields`에 대한 설명은 다음과 같습니다.

| 필드 | 타입 | 필수 여부 | 설명 |
| :---- | :---- | :---- | :---- |
| `name` | String | - | 스키마 필드 이름 |
| `type` | Array | - | 스키마 필드의 데이터 타입<ul><li>`string` \| `int` \| `long` \| `boolean` \| `null`</li></ul> |
| `categorical` | Boolean | - | 범주형 필드 여부<ul><li>`true` \| `false` <ul><li>`true`: 범주가 정해진 데이터</li><li>`false`: 범주가 정해지지 않은 데이터</li></ul></li><li>`false`일 경우 표시되지 않음</li></ul> |

### 응답 상태 코드<a name="응답상태코드"></a>
AiTEMS API에서 공통으로 사용하는 응답 상태 코드에 대한 정보는 [AiTEMS 응답 상태 코드](/docs/aitems-overview#응답상태코드)를 참조해 주십시오.

### 응답 예시 <a name="응답예시"></a>
응답 예시는 다음과 같습니다.

```json
{
    "datasetType": "user",
    "name": "user-sample",
    "fields": [
        {
            "name": "USER_ID",
            "type": [
                "string"
            ]
        }
    ],
    "description": ""
}
```
