Acronis · Schema

TenantRequest

Request body for creating or updating a tenant

CybersecurityData ProtectionEndpoint Management

Properties

Name Type Description
name string Tenant display name
kind string Tenant type
parent_id string Parent tenant UUID
enabled boolean Whether the tenant should be enabled
contact object
View JSON Schema on GitHub

JSON Schema

acronis-tenantrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TenantRequest",
  "title": "TenantRequest",
  "type": "object",
  "required": [
    "name",
    "kind",
    "parent_id"
  ],
  "description": "Request body for creating or updating a tenant",
  "properties": {
    "name": {
      "type": "string",
      "description": "Tenant display name",
      "example": "New Partner"
    },
    "kind": {
      "type": "string",
      "enum": [
        "partner",
        "folder",
        "customer",
        "unit"
      ],
      "description": "Tenant type"
    },
    "parent_id": {
      "type": "string",
      "format": "uuid",
      "description": "Parent tenant UUID"
    },
    "enabled": {
      "type": "boolean",
      "description": "Whether the tenant should be enabled",
      "example": true
    },
    "contact": {
      "$ref": "#/components/schemas/Contact"
    }
  }
}