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

# 배포자 사용자 이름 사용 가능 여부 검증

> 배포자 사용자 이름이 이미 사용 중인지 확인합니다.



## OpenAPI

````yaml /openapi/registry.ko.yaml get /publishers/validate
openapi: 3.0.2
info:
  title: Comfy API
  version: '1.0'
servers:
  - url: https://api.comfy.org
security: []
paths:
  /publishers/validate:
    get:
      tags:
        - Registry
      summary: 배포자 사용자 이름 사용 가능 여부 검증
      description: 배포자 사용자 이름이 이미 사용 중인지 확인합니다.
      operationId: ValidatePublisher
      parameters:
        - description: 검증할 배포자 사용자 이름.
          in: query
          name: username
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  isAvailable:
                    description: 사용자 이름을 사용할 수 있으면 참, 그렇지 않으면 거짓.
                    type: boolean
                type: object
          description: 사용자 이름 검증 결과
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: '잘못된 입력(예: 쿼리에 사용자 이름 누락됨).'
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: 내부 서버 오류
components:
  schemas:
    ErrorResponse:
      properties:
        error:
          type: string
        message:
          type: string
      required:
        - error
        - message
      type: object

````