UsersLoginRequest 스키마
UsersLoginRequest 스키마
사용자 로그인 세부 정보예요.
출처: 문서
본문
스키마 — UsersLoginRequest · 유형: object — 사용자 로그인 세부 정보.
password · 필수 — 유형: string — 인증할 Docker Hub 계정의 비밀번호 또는 개인 액세스 토큰(PAT).
{
"description": "The password or personal access token (PAT) of the Docker Hub account to authenticate with.\n",
"example": "p@ssw0rd",
"type": "string"
}
username · 필수 — 유형: string — 인증할 Docker Hub 계정의 사용자 이름.
{
"description": "The username of the Docker Hub account to authenticate with.",
"example": "myusername",
"type": "string"
}
전체 스키마:
{
"description": "User login details",
"examples": [
{
"password": "p@ssw0rd",
"username": "myusername"
}
],
"properties": {
"password": {
"description": "The password or personal access token (PAT) of the Docker Hub account to authenticate with.\n",
"example": "p@ssw0rd",
"type": "string"
},
"username": {
"description": "The username of the Docker Hub account to authenticate with.",
"example": "myusername",
"type": "string"
}
},
"required": [
"username",
"password"
],
"type": "object"
}