Schema
UsersLoginRequest
Type:
object
User login details
password
· required
Type:
string
The password or personal access token (PAT) of the Docker Hub account to authenticate with.
All schema constraints and annotations
{
"description": "The password or personal access token (PAT) of the Docker Hub account to authenticate with.\n",
"example": "p@ssw0rd",
"type": "string"
}username
· required
Type:
string
The username of the Docker Hub account to authenticate with.
All schema constraints and annotations
{
"description": "The username of the Docker Hub account to authenticate with.",
"example": "myusername",
"type": "string"
}All schema constraints and annotations
{
"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"
}