Backupify · Schema

SeatChangeResult

Result of a single seat change operation

SaaS BackupData ProtectionCloud BackupMicrosoft 365Google Workspace

Properties

Name Type Description
remoteId string Remote identifier for the seat
success boolean Whether the operation succeeded
message string Description of the result
View JSON Schema on GitHub

JSON Schema

saas-protection-api-seat-change-result-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/backupify/refs/heads/main/json-schema/saas-protection-api-seat-change-result-schema.json",
  "title": "SeatChangeResult",
  "description": "Result of a single seat change operation",
  "type": "object",
  "properties": {
    "remoteId": {
      "type": "string",
      "description": "Remote identifier for the seat",
      "example": "user-abc123"
    },
    "success": {
      "type": "boolean",
      "description": "Whether the operation succeeded",
      "example": true
    },
    "message": {
      "type": "string",
      "description": "Description of the result",
      "example": "Seat licensed successfully"
    }
  }
}