DreamFactory · Schema
DreamFactory User
A user account in a DreamFactory instance, representing a non-admin consumer who authenticates via email and password and is governed by role-based access control.
AutomationDeploymentDocumentationGenerationSecurity
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Unique identifier for the user. |
| name | string | Display name of the user. |
| first_name | string | First name of the user. |
| last_name | string | Last name of the user. |
| string | Email address used for login. | |
| is_active | boolean | Whether the user account is active. |
| phone | string | Phone number of the user. |
| created_date | string | Timestamp when the user was created. |
| last_modified_date | string | Timestamp when the user was last modified. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/dreamfactory/refs/heads/main/json-schema/dreamfactory-user.json",
"title": "DreamFactory User",
"description": "A user account in a DreamFactory instance, representing a non-admin consumer who authenticates via email and password and is governed by role-based access control.",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "Unique identifier for the user."
},
"name": {
"type": "string",
"description": "Display name of the user."
},
"first_name": {
"type": "string",
"description": "First name of the user."
},
"last_name": {
"type": "string",
"description": "Last name of the user."
},
"email": {
"type": "string",
"format": "email",
"description": "Email address used for login."
},
"is_active": {
"type": "boolean",
"description": "Whether the user account is active."
},
"phone": {
"type": "string",
"description": "Phone number of the user."
},
"created_date": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the user was created."
},
"last_modified_date": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the user was last modified."
}
},
"required": [
"email",
"name"
]
}