UsersLoginRequest

UsersLoginRequest

사용자 로그인 요청 바디 스키마예요. Docker Hub 계정의 사용자 이름(username)과 비밀번호 또는 PAT(password)를 보내요.

출처: 문서

본문

사용자 로그인 요청 바디 스키마예요. Docker Hub 계정의 사용자 이름(username)과 비밀번호 또는 PAT(password)를 보내요.

실제 JSON 스키마는 다음과 같아요.

{
  "description": "User login details",
  "examples": [
    {
      "password": "hunter2",
      "username": "myusername"
    }
  ],
  "properties": {
    "password": {
      "description": "The password or personal access token (PAT) of the Docker Hub account to authenticate with.",
      "example": "hunter2",
      "type": "string"
    },
    "username": {
      "description": "The username of the Docker Hub account to authenticate with.",
      "example": "myusername",
      "type": "string"
    }
  },
  "required": [
    "username",
    "password"
  ],
  "type": "object"
}

더 알아보기