Backupify · JSON Structure

Saas Protection Api Seat Change Structure

A single seat change action

Type: object Properties: 3
SaaS BackupData ProtectionCloud BackupMicrosoft 365Google Workspace

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

Properties

remoteId action seatType

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/backupify/refs/heads/main/json-structure/saas-protection-api-seat-change-structure.json",
  "name": "SeatChange",
  "description": "A single seat change action",
  "type": "object",
  "properties": {
    "remoteId": {
      "type": "string",
      "description": "Remote identifier for the seat",
      "example": "user-abc123"
    },
    "action": {
      "type": "string",
      "enum": [
        "License",
        "Unlicense",
        "Pause"
      ],
      "description": "Action to perform on the seat",
      "example": "License"
    },
    "seatType": {
      "type": "string",
      "enum": [
        "User",
        "SharedMailbox",
        "Site",
        "TeamSite",
        "Team"
      ],
      "description": "Type of seat",
      "example": "User"
    }
  }
}