---
title: "스키마 생성"
slug: "ai-application-service-aitems-schema-create"
updated: 2026-04-23T08:55:42Z
published: 2026-04-23T09:02:17Z
canonical: "api.ncloud-docs.com/ai-application-service-aitems-schema-create"
---

> ## 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 |
| :--- | :--- |
| POST | /schemas |

### 요청 헤더<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> |
| `name` | String | Required | 스키마 이름<<ul><li>영문자, 숫자, 특수 문자 '\_', '-'를 조합하여 3~20자 이내로 입력</li><li>문자열의 시작은 영문자</li></ul> |
| `fields` | Array | Required | 스키마 필드 정보: [fields](#fields1) |
| `description` | String | Optional | 스키마에 대한 설명<ul><li>0~100자</li></ul> |

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

| 필드 | 타입 | 필수 여부| 설명 |
| :---- | :---- | :---- | :---- |
| `name` | String | Required | 스키마 필드 이름<ul><li>데이터 파일의 필드 이름과 동일하게 입력</li><li>[기본 스키마 정보 조회](/docs/ai-application-service-aitems-schema-default)를 통해 데이터셋 타입별 기본 스키마 필드를 확인 가능</li></ul> |
| `type` | Array | Required | 스키마 필드의 데이터 타입<ul><li>`string` \| `int` \| `long` \| `boolean` \| `null`</li></ul> |
| `categorical` | Boolean | Optional | 범주형 필드 여부<ul><li>`true` \| `false` (기본값)<ul><li>`true`: 범주가 정해진 데이터</li><li>`false`: 범주가 정해지지 않은 데이터</li></ul></li></ul> |

### 요청 예시<a name="요청예시"></a>
요청 예시는 다음과 같습니다. 
 
```shell
curl --location --request POST 'https://aitems.apigw.ntruss.com/api/v1/schemas' \
--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' \
--data '{
    "datasetType": "interaction",
    "name": "LogInfo",
    "fields": [
        {
            "name": "TIMESTAMP",
            "type": [
                "long"
            ]
        },
        {
            "name": "USER_ID",
            "type": [
                "string"
            ]
        },
        {
            "name": "ITEM_ID",
            "type": [
                "string"
            ]
        }
    ],
    "description": "desc"
}'
```

## 응답<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](#fields2) |
| `description` | String | - | 스키마에 대한 설명 |
| `createdDate` | String | - | 스키마 생성 일시 |

#### `fields` <a name="fields2"></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": "interaction",
    "name": "LogInfo",
    "fields": [
        {
            "name": "TIMESTAMP",
            "type": [
                "long"
            ]
        },
        {
            "name": "USER_ID",
            "type": [
                "string"
            ]
        },
        {
            "name": "ITEM_ID",
            "type": [
                "string"
            ]
        }
    ],
    "description": "desc",
    "createdDate": "2024-07-29T16:36:06.626"
}
```
