Swimlane · Schema
Swimlane User
A user account within the Swimlane platform.
SOARSecurity OrchestrationAutomationIncident ResponsePlaybooksCase ManagementSecurity OperationsAgentic AI
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique user identifier |
| displayName | string | User display name shown in the UI |
| string | User email address | |
| userName | string | Username used for login |
| roles | array | List of role identifiers assigned to the user |
| groups | array | List of group identifiers the user belongs to |
| isAdmin | boolean | Whether the user has administrator privileges |
| active | boolean | Whether the user account is active |
| disabled | boolean | Whether the user account is disabled |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/swimlane/main/json-schema/swimlane-user.json",
"title": "Swimlane User",
"description": "A user account within the Swimlane platform.",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique user identifier"
},
"displayName": {
"type": "string",
"description": "User display name shown in the UI"
},
"email": {
"type": "string",
"format": "email",
"description": "User email address"
},
"userName": {
"type": "string",
"description": "Username used for login"
},
"roles": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of role identifiers assigned to the user"
},
"groups": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of group identifiers the user belongs to"
},
"isAdmin": {
"type": "boolean",
"description": "Whether the user has administrator privileges"
},
"active": {
"type": "boolean",
"description": "Whether the user account is active"
},
"disabled": {
"type": "boolean",
"description": "Whether the user account is disabled"
}
}
}