Tufin · Schema

User

A SecureChange user

Cloud SecurityComplianceFirewall ManagementNetwork SecurityNetwork TopologyPolicy OrchestrationRisk ManagementSecurity Policy ManagementZero Trust

Properties

Name Type Description
id integer User identifier
username string Login username
email string User email address
first_name string First name
last_name string Last name
groups array Groups the user belongs to
View JSON Schema on GitHub

JSON Schema

tufin-user-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/User",
  "title": "User",
  "type": "object",
  "description": "A SecureChange user",
  "properties": {
    "id": {
      "type": "integer",
      "description": "User identifier"
    },
    "username": {
      "type": "string",
      "description": "Login username"
    },
    "email": {
      "type": "string",
      "description": "User email address"
    },
    "first_name": {
      "type": "string",
      "description": "First name"
    },
    "last_name": {
      "type": "string",
      "description": "Last name"
    },
    "groups": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Groups the user belongs to"
    }
  }
}