> For the complete documentation index, see [llms.txt](https://docs.dfinery.ai/developer-guide/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.dfinery.ai/developer-guide/common/data-type.md).

# 데이터 타입

DFINERY의 API는 아래의 데이터 타입을 사용합니다. 사용자가 API를 연동할 때에는 API에서 요구하는 데이터 타입에 맞춰 요청하여야 합니다.

| 타입              | 포맷                | 예시                       |
| --------------- | ----------------- | ------------------------ |
| String          | -                 | "foo"                    |
| Long            | -                 | 1                        |
| Double          | -                 | 1.0                      |
| Boolean         | -                 | true                     |
| Array of String | -                 | \["foo", "bar"]          |
| Array of Long   | -                 | \[0, 1]                  |
| Array of Double | -                 | \[0.0, 1.0]              |
| Datetime        | ISO 8601 (밀리초 포함) | 2023-08-15T12:30:00.000Z |
| Date            | yyyy-MM-dd        | 2023-08-15               |
