Acronis · JSON Structure

Account Management User Structure

Acronis platform user account

Type: object Properties: 8
CybersecurityData ProtectionEndpoint Management

User is a JSON Structure definition published by Acronis, describing 8 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id login email firstname lastname enabled tenant_id created_at

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/acronis/refs/heads/main/json-structure/account-management-user-structure.json",
  "description": "Acronis platform user account",
  "type": "object",
  "properties": {
    "id": {
      "type": "uuid",
      "description": "User unique identifier"
    },
    "login": {
      "type": "string",
      "description": "Username/login for the user",
      "example": "jsmith"
    },
    "email": {
      "type": "string",
      "description": "User email address",
      "example": "jsmith@example.com"
    },
    "firstname": {
      "type": "string",
      "example": "John"
    },
    "lastname": {
      "type": "string",
      "example": "Smith"
    },
    "enabled": {
      "type": "boolean",
      "description": "Whether the user account is active"
    },
    "tenant_id": {
      "type": "uuid",
      "description": "Tenant the user belongs to"
    },
    "created_at": {
      "type": "datetime"
    }
  },
  "name": "User"
}