Acronis · Schema

Tenant

Acronis tenant representing a company, partner, or customer account

CybersecurityData ProtectionEndpoint Management

Properties

Name Type Description
id string Tenant unique identifier
name string Tenant display name
kind string Tenant type in the hierarchy
enabled boolean Whether the tenant is active
parent_id string Parent tenant UUID
customer_type string Customer account type
created_at string Tenant creation timestamp
updated_at string Last update timestamp
version integer Optimistic concurrency version
contact object
View JSON Schema on GitHub

JSON Schema

acronis-tenant-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Tenant",
  "title": "Tenant",
  "type": "object",
  "description": "Acronis tenant representing a company, partner, or customer account",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "Tenant unique identifier",
      "example": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
    },
    "name": {
      "type": "string",
      "description": "Tenant display name",
      "example": "Acme Corporation"
    },
    "kind": {
      "type": "string",
      "enum": [
        "root",
        "partner",
        "folder",
        "customer",
        "unit"
      ],
      "description": "Tenant type in the hierarchy",
      "example": "customer"
    },
    "enabled": {
      "type": "boolean",
      "description": "Whether the tenant is active",
      "example": true
    },
    "parent_id": {
      "type": "string",
      "format": "uuid",
      "description": "Parent tenant UUID"
    },
    "customer_type": {
      "type": "string",
      "enum": [
        "default",
        "trial"
      ],
      "description": "Customer account type",
      "example": "default"
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "Tenant creation timestamp",
      "example": "2025-03-15T14:30:00Z"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "description": "Last update timestamp"
    },
    "version": {
      "type": "integer",
      "description": "Optimistic concurrency version",
      "example": 1
    },
    "contact": {
      "$ref": "#/components/schemas/Contact"
    }
  }
}