> ## Documentation Index
> Fetch the complete documentation index at: https://dripart-feat-openapi-i18n.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# API 概要

## 概要

カスタムノードレジストリは以下の構造に従います：

```mermaid theme={null}
erDiagram
    PUBLISHER {
        string id PK
    }

    USER {
        string id PK
        string name
        string publisher_id FK
    }

    CUSTOM_NODE {
        string id PK
        string name
        string publisher_id FK
    }

    NODE_VERSION {
        string id PK
        string version
        string node_id FK
    }

    PUBLISHER ||--o{ USER: "has many"
    PUBLISHER ||--o{ CUSTOM_NODE: "has many"
    CUSTOM_NODE ||--o{ NODE_VERSION: "has many"
```

## よく利用される API

* **すべてのノードを一覧表示** [API](/ja/registry/api-reference/nodes/retrieves-a-list-of-nodes)
* **ノードをインストール** [API](/ja/registry/api-reference/nodes/returns-a-node-version-to-be-installed)
