---
title: "스키마 목록 조회"
slug: "ai-application-service-aitems-schema-list"
updated: 2026-07-23T09:04:22Z
published: 2026-07-23T09:04:22Z
canonical: "api.ncloud-docs.com/ai-application-service-aitems-schema-list"
---

> ## 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.

# 스키마 목록 조회

Classic/VPC 환경에서 이용 가능합니다.

생성된 스키마의 전체 목록을 조회합니다.

## 요청

요청 형식을 설명합니다. 요청 형식은 다음과 같습니다.

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

### 요청 헤더

AiTEMS API에서 공통으로 사용하는 헤더에 대한 정보는 [AiTEMS 요청 헤더](/docs/aitems-overview#%EC%9A%94%EC%B2%AD%ED%97%A4%EB%8D%94)를 참조해 주십시오.

### 요청 쿼리 파라미터

요청 쿼리 파라미터에 대한 설명은 다음과 같습니다.

| 필드 | 타입 | 필수 여부 | 설명 |
| --- | --- | --- | --- |
| `datasetType` | String | Optional | 데이터셋 타입 - `user` \| `item` \| `interaction` - `user`: 사용자 정보(연령, 성별 등)를 담은 데이터 - `item`: 상품 관련 정보(가격, 출시일, 카테고리 등)를 담은 데이터 - `interaction`: 사용자와 상품 간 상호작용으로 얻은 기록을 담은 데이터 |
| `offset` | Integer | Optional | 조회 데이터의 시작 위치 - 기본값: 0 |
| `limit` | Integer | Optional | 조회 데이터의 최대 개수 - 기본값: 1,000 |

### 요청 예시

요청 예시는 다음과 같습니다.

```
curl --location --request GET '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'
```

## 응답

응답 형식을 설명합니다.

### 응답 바디

응답 바디에 대한 설명은 다음과 같습니다.

| 필드 | 타입 | 필수 여부 | 설명 |
| --- | --- | --- | --- |
| `schemas` | Array | - | 스키마 정보: [schemas](/docs/ai-application-service-aitems-schema-list#schemas) |
| `offset` | Integer | - | 조회 데이터의 시작 위치 |
| `limit` | Integer | - | 조회 데이터의 최대 개수 |

#### `schemas`

`schemas`에 대한 설명은 다음과 같습니다.

| 필드 | 타입 | 필수 여부 | 설명 |
| --- | --- | --- | --- |
| `datasetType` | String | - | 데이터셋 타입 - `user` \| `item` \| `interaction` - `user`: 사용자 정보(연령, 성별 등)를 담은 데이터 - `item`: 상품 관련 정보(가격, 출시일, 카테고리 등)를 담은 데이터 - `interaction`: 사용자와 상품 간 상호작용으로 얻은 기록을 담은 데이터 |
| `name` | String | - | 스키마 이름 |
| `createdDate` | String | - | 스키마 생성 일시 |
| `actionName` | String | - | 조회한 항목에 대한 Sub Account 권한 |
| `permission` | String | - | Sub Account 권한 허용 여부 |

### 응답 상태 코드

AiTEMS API에서 공통으로 사용하는 응답 상태 코드에 대한 정보는 [AiTEMS 응답 상태 코드](/docs/aitems-overview#%EC%9D%91%EB%8B%B5%EC%83%81%ED%83%9C%EC%BD%94%EB%93%9C)를 참조해 주십시오.

### 응답 예시

응답 예시는 다음과 같습니다.

```
{
    "schemas": [
        {
            "datasetType": "interaction",
            "name": "interaction_schema",
            "createdDate": "2024-07-30T09:08:09.221",
            "actionName": "View/getSchemaDetail",
            "permission": "Allow"
        },
        {
            "datasetType": "user",
            "name": "user_schema",
            "createdDate": "2024-07-30T08:57:37.393",
            "actionName": "View/getSchemaDetail",
            "permission": "Allow"
        },
        {
            "datasetType": "item",
            "name": "item_schema",
            "createdDate": "2024-07-30T08:56:29.040",
            "actionName": "View/getSchemaDetail",
            "permission": "Allow"
        }
    ],
    "offset": 0,
    "limit": 1000
}
```
