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.",
"example": "hunter2",
"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": "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"
}