Skip to content

User Dump

Holds several user's data including their password hashes.

Model

attribute description
users*
[User]
An array of all the users

User

attribute description
username*
string
The name of the user
password_hash*
string
The hash of the users password
role*
string
The name of the role the user belongs to

Example

{ 
  "users": [
    {
      "username": "defaultAdmin",
      "password_hash": "9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08",
      "role": "admin"
    }
  ]
}